body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1d3557;
  --secondary: #e63946;
  --tertiary: #457b9d;
  --light: #ffffff;
  --dark: #011a41;
}
::selection {
  background: var(--primary);
  color: var(--light);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4 {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}
.text-custom-primary {
  color: var(--primary);
}
.text-custom-secondary {
  color: var(--secondary);
}
.pricing span {
  font-size: 13px;
}
.pricing-item {
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fs-sm{
  font-size: 14px !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
#spinner.show img {
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.bg-custom-primary {
  color: var(--light);
  background: var(--primary);
}
.bg-custom-primary:hover {
  color: var(--light);
  background: var(--secondary);
}

.bg-custom-secondary {
  color: var(--light);
  background: var(--secondary);
}
.bg-custom-secondary:hover {
  color: var(--light);
  background: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.section-title {
  position: relative;
}
.section-title::before {
  position: absolute;
  content: "";
  width: 49px;
  height: 3px;
  bottom: 0;
  top: 125%;
  background: var(--secondary);
}
.section-title::after {
  position: absolute;
  content: "";
  width: 5px;
  border-radius: 1px;
  height: 3px;
  top: 125%;
  left: 53px;
  background: var(--secondary);
}

/*** Navbar ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(53, 94, 252, 0.07);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.navbar .dropdown .dropdown-item:hover {
 color: var(--light);
 background: var(--secondary);
}

.navbar .navbar-nav .nav-link {
  padding: 25px 15px;
  color: var(--dark);
  font-weight: 500;
  outline: none;
  transition: color 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}


@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

 
}

@media (max-width: 992px) and (min-width: 767px) {
 
    .navbar .navbar-nav .nav-link {
      padding: 5px;
      font-size: 13px;
}
}

/* hero */
#home{
  background: #fbfbfb;
}
#home .bg-wave {
  top: -30%;
  rotate: 45deg;
}
.header-content {
  height: 830px;
  width: 100%;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
  background-color: #fbfbfb;
}
@media only screen and (min-width: 568px) and (max-width: 691px) {
  .header-content {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .header-content {
    height: 100%;
  }

  #home .container{
    margin-top: 5rem;
  }

  .category-container .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 46px;
    gap: 20px;
  }
}
.header-content .header-shape {
  position: absolute !important;
}
.header-content .header-shape.shape-tow {
  top: -18px !important;
  left: 4% !important;
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-tow img {
    width: 40px;
  }
}
.header-content .header-shape.shape-three {
  top: 0 !important;
  left: 40% !important;
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-three img {
    width: 100px;
  }
}
.header-content .header-shape.shape-fore {
  top: 28px !important;
  right: 7.6% !important;
  left: auto !important;
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-fore img {
    width: 40px;
  }
}
.header-content .header-shape.shape-six {
  top: 44% !important;
  left: 13% !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-six img {
    width: 40px;
  }
}
.header-content .header-shape.shape-seven {
  left: 30px !important;
  bottom: 50px !important;
  top: auto !important;
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-seven {
    left: 15px !important;
    bottom: 25px !important;
  }
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-seven img {
    width: 100px;
  }
}
.header-content .header-shape.shape-eight {
  left: 90px !important;
  bottom: 140px !important;
  top: auto !important;
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-eight {
    left: 50px !important;
    bottom: 70px !important;
  }
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-eight img {
    width: 100px;
  }
}
.header-content .header-shape.shape-ten {
  right: 30px !important;
  bottom: 5px !important;
  left: auto !important;
  top: auto !important;
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-ten {
    right: 0px !important;
    bottom: 140px !important;
  }
}
@media (max-width: 767px) {
  .header-content .header-shape.shape-ten img {
    width: 100px;
  }
}

.header-content-right {
  position: relative;
}
.header-content-right .sub-title {
  font-size: 30px;
  color: #754ef9;
  text-transform: uppercase;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .header-content-right .sub-title {
    font-size: 24px;
  }
}
.header-content-right .title {
  font-size: 60px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .header-content-right .title {
    font-size: 38px;
  }
}
.header-content-right p {
  padding-bottom: 40px;
}

.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.learn-more {
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.425rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0;
  margin: 0 0 0 0;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: #fff;
}

/* services */
#services a {
  color: #fff;
}
.service-item {
  position: relative;
  min-height: 300px;
  padding: 0px 20px;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  border-radius: 25px !important;
}
.service-item::before {
  content: "";
  position: absolute;
  right: 0;
  width: 56px;
  height: 50px;
  top: 0;
  background-image: url(../img/about-box-bg.png);
}
.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 56px;
  height: 50px;
  bottom: 0;
  rotate: 180deg;
  background-image: url(../img/about-box-bg.png);
}

.service-item:hover {
  background: var(--primary);
}
.service-item p{
  color: #777777;
}

.service-item h2,
.service-item p {
  transition: 0.5s;
}

.service-item:hover h2,
.service-item:hover p {
  color: var(--light);
}

.service-item a.btn {
  position: relative;
  display: flex;
  color: var(--secondary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover a.btn {
  color: var(--light);
}

.service-item a.btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  border-radius: 35px;
  transition: 0.5s;
  z-index: -1;
}

.service-item:hover a.btn::before {
  width: 100%;
  background: var(--secondary);
}
.nav-tabs .nav-link {
  color: var(--primary);
}
.nav-tabs .nav-link.active {
  color: var(--secondary);
}
@media (max-width: 407px) {
  .service-item {
    height: auto;
  }
  .pricing-item {
    height: 649px;
  }
}

#services p {
  font-size: 15px;
}

.service .nav .nav-link {
  transition: 0.5s;
}

.service .nav .nav-link.active {
  border-color: var(--primary) !important;
  background: var(--primary);
}

.service .nav .nav-link.active h5 {
  color: #ffffff !important;
}

.service .nav .nav-link.active h5 i {
  color: #ffffff !important;
}

.category-container ul.category-item{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    border-bottom: 1px solid #b4c8e0;
    padding: 0;
}
.category-container ul.category-item .category.active {
  color: var(--tertiary);
}

.category-container ul.category-item .category {
  list-style: none;
  padding: 15px;
  margin: 0 15px;
  color: #4c4c4c;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: 0.4s;
}

.category-container ul.category-item .category.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 4px;
  left: 0;
  background: var(--tertiary);
}

.category-container .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 46px;
  gap: 20px;
}

.category-container .gallery .item {
  overflow: hidden;
  border-radius: 8px;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.category-container .gallery .item img {
  width: 60px;
  margin-bottom: 30px;
}
.category-container .gallery .item {
  transition: 0.3s;
  background-color: rgba(255,255,255,0.5);
  box-shadow: 0 5px 13px rgb(0 0 0 / 10%);
}
.category-container .gallery .item:hover {
  scale: 1.1;
}
.category-container .gallery .item p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #4c4c4c;
  text-align: center;
}

@media (max-width: 700px) {
  .category-container .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 46px;
    gap: 20px;
  }
}

/* carousel */
.vendor-carousel .owl-stage {
  display: flex;
  align-items: center;
}

/* about */
#about {
  background-image: url(../img/about-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

#about .box {
  min-height: 240px;
  max-width: 240px;
  background: #fff;
  box-shadow: 0 5px 13px rgb(0 0 0 / 22%);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
#about .box > div {
  max-width: 150px;
}
#about .box:after {
  content: "";
  position: absolute;
  right: 0;
  width: 56px;
  height: 50px;
  top: 0;
  background-image: url(../img/about-box-bg.png);
}
#about .box .green h2 {
  color: var(--tertiary);
}
#about .box .orange h2 {
  color: #ffc7a2;
}
#about .box .primary h2 {
  color: var(--primary);
}
#about .box .secondary h2 {
  color: var(--secondary);
}
#about .box .green:after {
  background: var(--tertiary);
}
#about .box .orange:after {
  background: #ffc7a2;
}

#about .box .secondary:after {
  background: var(--secondary);
}

#about .box .primary:after {
  background: var(--primary);
}

#about .box > div:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 17px;
  bottom: 0;
  border-radius: 0 0 20px 20px;
}

#about .col-md-6:first-child .box:first-child {
  margin-bottom: 48px;
}
#about .col-md-6.mt .box:first-child {
  margin-bottom: 48px;
  margin-top: 68px;
}

/* opportunity */
.radio-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.radio-inputs > * {
  margin: 6px;
}

.radio-input:checked + .radio-tile {
  border-color: var(--secondary);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: var(--secondary);
}

.radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.radio-input:checked + .radio-tile .radio-icon svg {
  fill: var(--secondary);
}

.radio-input:checked + .radio-tile .radio-label {
  color: var(--secondary);
}

.radio-input:focus + .radio-tile {
  border-color: var(--secondary);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #fcb5b5;
}

.radio-input:focus + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-height: 80px;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}

.radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}

.radio-tile:hover {
  border-color: var(--secondary);
}

.radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-icon svg {
  width: 2rem;
  height: 2rem;
  fill: #494949;
}

.radio-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 13px;
}

.radio-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}




.resume-input svg path {
  fill: currentColor;
}

.resume-input [hidden] {
  display: none !important;
  visibility: hidden !important;
}

.resume-input .file-container {
  padding: 1rem;
  background-color: white;
  border-radius: 0.25rem;
  border: var(--border-on-light);
  box-shadow: 0 0.1875rem 0.0625rem -0.125rem rgba(0, 0, 0, 0.2), 0 0.125rem 0.125rem 0rem rgba(0, 0, 0, 0.14), 0 0.0625rem 0.3125rem 0rem rgba(0, 0, 0, 0.12);
}

.file-input {
  margin: 0 0 0.25rem;
  padding: 0.5rem 0.75rem 0.1875rem;
  color: var(--primary-text-on-light);
  border: var(--border-on-light);
  border-radius: 0.25rem;
}
.file-input__label {
  margin-left: -0.25rem;
  padding: 0 0.25rem;
  font-size: 0.875rem;
  color: var(--secondary-text-on-light);
}
.file-input__input {
  align-items: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.file-input:focus-within {
  border-color: var(--tertiary-dark);
}
.file-input:focus-within .file-input__label {
  color: var(--tertiary-dark);
}
.file-input__helper {
  margin-left: 0.8125rem;
  font-size: 0.75rem;
  color: var(--secondary-text-on-light);
}

.input {
  position: relative;
}
.input__left {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.input__no-file {
  margin-right: 1rem;
  white-space: wrap;
}
.input__choose {
  display: inline-flex;
  align-items: center;
  min-height: 2.125rem;
  margin-right: 1rem;
  padding: 0.25rem 1rem;
  color: var(--primary-text-on-tertiary);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.078125rem;
  background: var(--tertiary);
  border-radius: 0.25rem;
  white-space: nowrap;
  cursor: pointer;
}
.input__choose:focus {
  background-color: var(--tertiary-dark);
  box-shadow: 0 0 0 0.1875rem rgba(0, 0, 0, 0.2);
}
.input__remove {
  position: absolute;
  font-size: 0;
  right: 0;
  top: 0.25rem;
  color: var(--secondary-text-on-light);
  border-radius: 50%;
}
.input__remove:focus {
  box-shadow: 0 0 0 0.1875rem rgba(0, 0, 0, 0.2);
}
.input__remove:active {
  color: var(--primary-text-on-light);
}

.input__remove svg {
  height: 26px;
  width: 26px;
}

.chip {
  display: inline-flex;
  justify-content: space-between;
  height: 2rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem 0 0.75rem;
  align-items: center;
  background-color: #fafafa;
  border: var(--border-on-light);
  border-radius: 1.0625rem;
  white-space: nowrap;
}
.chip__container {
  padding-right: 1.5rem;
}
.chip__text {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.875rem;
}


/* bg */

.bg-illus{
  background-image: url(../img/bg-illus.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.bg-wwd{
  background-image: url(../img/bg-strategy.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-services{
  background-image: url(../img/bg-illus.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}



.container .list .num {
  padding: 0.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.25s;
}
.container .list .num:nth-child(0):before {
  content: "0";
}
.container .list .num:nth-child(1):before {
  content: "1";
}
.container .list .num:nth-child(2):before {
  content: "2";
}

.container .list .num:nth-child(3):before {
  content: "3";
}
.container .list .num:nth-child(4):before {
  content: "4";
}
.container .list .num:nth-child(5):before {
  content: "5";
}
.container .list .num:nth-child(6):before {
  content: "6";
}
.container .list .num:nth-child(7):before {
  content: "7";
}
.container .list .num:nth-child(8):before {
  content: "8";
}
.container .list .num:nth-child(9):before {
  content: "9";
}
.container .list .num:nth-child(10):before {
  content: "10";
}
.container .list .num:nth-child(11):before {
  content: "11";
}
.container .list .num:nth-child(12):before {
  content: "12";
}
.container .list .num:before {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  width: 2rem;
  opacity: 0.09;
  transition: 0.25s;
}
.container .list .num h3 {
  position: relative;
  left: -1.5rem;
  color: var(--primary);
  font-size: 0.85rem;
  transition: 0.25s;
}
.container .list .num:hover {
  background-color: #fafafa;
  cursor: pointer;
}
.container .list .num:hover:before {
  opacity: 0.2;
}
.container .list .num:hover h3 {
  left: 0.5rem;
}
@media (hover: hover) {
  .container .list .num:hover {
    background-color: #fafafa;
    cursor: pointer;
  }
  .container .list .num:hover:before {
    opacity: 0.2;
  }
  .container .list .num:hover h3 {
    left: 0.5rem;
  }
}
/* testimonials */
.section-padding {
  padding: 80px 0;
}

.client-testimonial-carousel .owl-dots button {
  height: 5px;
  background: var(--primary) !important;
  width: 20px;
  display: inline-block;
  margin: 5px;
  transition: 0.2s;
  border-radius: 2px;
  outline: 0;
  border: 0;
}

.client-testimonial-carousel .owl-dot.active {
  background: var(--secondary) !important;
  width: 30px;
}

.client-testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.single-testimonial-item {
  position: relative;
  box-shadow: 0 0 2px #dadfd3;
  margin: 2px;
  padding: 20px;
  font-style: italic;
  padding-left: 85px;
}

.single-testimonial-item:before {
  font-family: "Font Awesome 5 Free";
  content: "\f10e";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  font-size: 20px;
  color: var(--secondary);
  line-height: 30px;
  margin-top: -15px;
}

.single-testimonial-item:after {
  background: #ddd;
  content: "";
  height: 70%;
  left: 60px;
  position: absolute;
  top: 10%;
  width: 1px;
}

.single-testimonial-item h3 {
  font-size: 20px;
  font-style: normal;
  margin-bottom: 0;
}

.single-testimonial-item h3 span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}

/* contact */
.contact-us {
  padding-top: 130px;
}

.fill-form {
  padding: 80px 30px 80px 30px;
}

.fill-form .info-post {
  margin-bottom: 20px;
}

.fill-form .icon {
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 23px;
  padding: 25px 15px;
}

.fill-form .icon img {
  max-width: 40px;
  display: block;
  margin: 0 auto;
}

.fill-form .icon a {
  margin-top: 15px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
  transition: all 0.3s;
}

.fill-form .icon:hover a {
  color: var(--secondary);
}

.contact-form input,
select {
  height: 46px;
  background-color: transparent;
  border: 1px solid #bababa;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  border-radius: 23px;
  margin-top: 30px;
}
.contact-form input:focus,
textarea:focus,
select {
  border: 1px solid var(--secondary);
}

.contact-form input::placeholder {
  color: #8c8c8c;
}

.contact-form textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 200px;
  min-height: 200px;
  height: 200px;
  border-radius: 23px;
  background-color: transparent;
  border: 1px solid #bababa;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-top: 30px;
}

.contact-form textarea::placeholder {
  color: #999999;
}
.contact-form textarea:focus {
  border: 1px solid var(--secondary);
  box-shadow: none;
}

.contact-form button {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary);
  margin-top: 30px;
  width: 100%;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: 1px solid var(--secondary);
  transition: all 0.3s;
  outline: none;
}

.contact-form button:hover {
  background-color: var(--secondary) !important;
  color: #fff !important;
}

/* Footer */
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--secondary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  border-top: 1px solid #fff;
  color: var(--light);
  background: var(--dark);
}

.copyright a:hover {
  color: var(--light);
}
