@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-dark: #212121;
  --c-primary:#fe5f00;
  --bg-dark: #0a0b0f;
  --card-bg: rgba(18, 20, 28, 0.95);
  --card-hover: #1a1d2a;
  --text-primary: #ffffff;
  --text-secondary: #8b8d93;
  --c-gray:#ebebeb;
  --c-white-light-2:#ececec;
  --c-black-5:#5b5b5b;
  --c-black-dark:#1b1c1b;
  --c-black-light:#565656;
}

.container {
  padding: 0 15px;
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1495px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
}

a {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  pointer-events: auto;
}

h2 {
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1400px) {
  h2 {
    font-size: 35px;
  }
}
@media screen and (min-width: 1600px) {
  h2 {
    font-size: 40px;
  }
}

.bg-dark {
  background-color: var(--c-dark-1);
}

.bg-dark-2 {
  background-color: var(--c-dark-2);
  color: var(--c-white);
}

.yellow-link a {
  text-decoration: none;
  color: var(--c-white);
  border: 2px solid var(--c-white);
  background-color: var(--c-primary);
  font-weight: 400;
  line-height: 1.1;
  padding: 12px 24px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.yellow-link a:hover {
  background: transparent;
  color: var(--c-white);
}

.black-link a {
  text-decoration: none;
  color: var(--c-white);
  border: 2px solid var(--c-dark-3);
  background-color: var(--c-dark-3);
  font-weight: 400;
  line-height: 1.1;
  padding: 12px 24px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.black-link a:hover {
  background: transparent;
  color: var(--c-dark-3);
}

.white-title h3 {
  color: var(--c-white);
  letter-spacing: 2.3px;
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
}
.white-title h3::after {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  margin: 0 auto;
  height: 2px;
  background: var(--c-white);
  bottom: 0;
  left: 0;
  right: 0;
}

.black-title h3 {
  color: var(--c-dark-4);
  letter-spacing: 2.3px;
  font-weight: 500;
  margin-bottom: 0;
  border-bottom: 2px solid var(--c-dark-4);
  padding-bottom: 10px;
  display: inline-block;
}

.breadcrumb-wrapper .breadcrumb {
  color: var(--c-grey-2);
  font-size: 12px;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
}
.breadcrumb-wrapper .breadcrumb a {
  color: var(--c-grey-2);
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
  font-weight: 400;
  margin-right: 11px;
  text-transform: capitalize;
}
.breadcrumb-wrapper .breadcrumb span {
  display: inline-block;
  margin-right: 10px;
  -webkit-mask-image: url("../images/right-grey-arrow.svg");
          mask-image: url("../images/right-grey-arrow.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 15px;
  height: 10px;
  font-size: 0;
  background-color: var(--c-grey-2);
}

.black-title-2 h2 {
  color: var(--c-dark-4);
  letter-spacing: 2.3px;
  font-weight: 600;
  margin-bottom: 0;
  display: inline-block;
  text-transform: uppercase;
}

.loader-wheel {
  font-size: 50px;
  position: relative;
  height: 1em;
  width: 1em;
  padding-left: 0.45em;
  -webkit-animation: loader-wheel-rotate 1s steps(12) infinite;
  animation: loader-wheel-rotate 1s steps(12) infinite;
  overflow: hidden;
  margin: 50px auto;
}
.loader-wheel i {
  display: block;
  position: absolute;
  height: 0.3em;
  width: 0.1em;
  border-radius: 0.05em;
  background: var(--c-dark);
  opacity: 0.9;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  -webkit-transform-origin: center 0.5em;
  transform-origin: center 0.5em;
}

.max-1240 {
  max-width: 960px;
  margin: 0 auto;
}

@-webkit-keyframes loader-wheel-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-wheel-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.f-65 {
  font-size: 25px;
}
@media screen and (min-width: 992px) {
  .f-65 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .f-65 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .f-65 {
    font-size: 50px;
  }
}
@media screen and (min-width: 1600px) {
  .f-65 {
    font-size: 65px;
  }
}

.f-72 {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .f-72 {
    font-size: 42px;
  }
}
@media screen and (min-width: 992px) {
  .f-72 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1200px) {
  .f-72 {
    font-size: 62px;
  }
}
@media screen and (min-width: 1400px) {
  .f-72 {
    font-size: 72px;
  }
}

.f-56, .contact-form-wrapper .section-header h2, .main-title h2 {
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .f-56, .contact-form-wrapper .section-header h2, .main-title h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 992px) {
  .f-56, .contact-form-wrapper .section-header h2, .main-title h2 {
    font-size: 46px;
  }
}
@media screen and (min-width: 1200px) {
  .f-56, .contact-form-wrapper .section-header h2, .main-title h2 {
    font-size: 56px;
  }
}

.f-39, .contact-form-wrapper .contact-form h2 {
  font-size: 25px;
  line-height: 28px;
}
@media screen and (min-width: 992px) {
  .f-39, .contact-form-wrapper .contact-form h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .f-39, .contact-form-wrapper .contact-form h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .f-39, .contact-form-wrapper .contact-form h2 {
    font-size: 35px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .f-39, .contact-form-wrapper .contact-form h2 {
    font-size: 39px;
    line-height: 40px;
  }
}

.f-26, .cards-section .card-items .card-body h5, .black-title-2 h2 {
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .f-26, .cards-section .card-items .card-body h5, .black-title-2 h2 {
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .f-26, .cards-section .card-items .card-body h5, .black-title-2 h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .f-26, .cards-section .card-items .card-body h5, .black-title-2 h2 {
    font-size: 26px;
  }
}

.f-23, .white-title h3, .black-title h3 {
  font-size: 15px;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .f-23, .white-title h3, .black-title h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .f-23, .white-title h3, .black-title h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .f-23, .white-title h3, .black-title h3 {
    font-size: 23px;
  }
}

.f-20 {
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .f-20 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .f-20 {
    font-size: 20px;
  }
}

.f-18, .contact-form-wrapper .contact-form .input-box input[type=submit], .cards-section .card-items .link a span {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .f-18, .contact-form-wrapper .contact-form .input-box input[type=submit], .cards-section .card-items .link a span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .f-18, .contact-form-wrapper .contact-form .input-box input[type=submit], .cards-section .card-items .link a span {
    font-size: 18px;
  }
}

.f-16, .contact-form-wrapper .contact-form .input-box span, .testinomial-outer .testimonial-inner .text-wrapper .text P, .yellow-link a, .black-link a {
  font-size: 14px;
}
@media screen and (min-width: 1400px) {
  .f-16, .contact-form-wrapper .contact-form .input-box span, .testinomial-outer .testimonial-inner .text-wrapper .text P, .yellow-link a, .black-link a {
    font-size: 16px;
  }
}

.f-14 {
  font-size: 12px;
}
@media screen and (min-width: 992px) {
  .f-14 {
    font-size: 14px;
  }
}

.py-100 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .py-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pt-100 {
  padding-top: 60px;
}
@media screen and (min-width: 1200px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.mt-70 {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .mt-70 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .mt-70 {
    margin-top: 70px;
  }
}

.pt-50 {
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .pt-50 {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .pt-50 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .pb-100 {
    padding-bottom: 100px;
  }
}

.py-150 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .py-150 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .py-150 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1400px) {
  .py-150 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1600px) {
  .py-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.pt-150 {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .pt-150 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .pt-150 {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1400px) {
  .pt-150 {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1600px) {
  .pt-150 {
    padding-top: 150px;
  }
}

.py-100 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .py-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pb-50 {
  padding-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .pb-50 {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .pb-50 {
    padding-bottom: 50px;
  }
}

.pt-50 {
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .pt-50 {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .pt-50 {
    padding-top: 50px;
  }
}

.pb-60 {
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

.pt-130 {
  padding-top: 50px;
}
@media screen and (min-width: 992px) {
  .pt-130 {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .pt-130 {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .pt-130 {
    padding-top: 130px;
  }
}

.pb-130 {
  padding-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .pb-130 {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .pb-130 {
    padding-bottom: 130px;
  }
}

.pt-120 {
  padding-top: 40px;
}
@media screen and (min-width: 992px) {
  .pt-120 {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1400px) {
  .pt-120 {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1600px) {
  .pt-120 {
    padding-top: 120px;
  }
}

.pb-120 {
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .pb-120 {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1400px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1600px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}

.pt-140 {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .pt-140 {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .pt-140 {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1400px) {
  .pt-140 {
    padding-top: 110px;
  }
}
@media screen and (min-width: 1600px) {
  .pt-140 {
    padding-top: 140px;
  }
}

.pb-140 {
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .pb-140 {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .pb-140 {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1400px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .pb-140 {
    padding-bottom: 140px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 101;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  min-height: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
          box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
header .top-header .top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 8px 0;
}
header .top-header .top-inner .email-phone-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .top-header .top-inner .email-phone-wrapper .phone, header .top-header .top-inner .email-phone-wrapper .email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10px;
}
header .top-header .top-inner .email-phone-wrapper .phone:hover a, header .top-header .top-inner .email-phone-wrapper .email:hover a {
  color: var(--c-primary);
}
header .top-header .top-inner .email-phone-wrapper .phone svg, header .top-header .top-inner .email-phone-wrapper .email svg {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  header .top-header .top-inner .email-phone-wrapper .phone svg, header .top-header .top-inner .email-phone-wrapper .email svg {
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 1400px) {
  header .top-header .top-inner .email-phone-wrapper .phone svg, header .top-header .top-inner .email-phone-wrapper .email svg {
    width: 20px;
    height: 20px;
  }
}
header .top-header .top-inner .email-phone-wrapper .phone svg path, header .top-header .top-inner .email-phone-wrapper .email svg path {
  fill: #f2a73e;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
header .top-header .top-inner .email-phone-wrapper .phone a, header .top-header .top-inner .email-phone-wrapper .email a {
  display: inline-block;
  margin-left: 10px;
  font-size: 8px;
  line-height: 14.25px;
  font-weight: 400;
  color: #d3d3d3;
  margin: 0;
  margin-left: 10px;
  text-decoration: none;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
@media screen and (min-width: 768px) {
  header .top-header .top-inner .email-phone-wrapper .phone a, header .top-header .top-inner .email-phone-wrapper .email a {
    font-size: 12px;
  }
}
header .top-header .top-inner .social-icon-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .top-header .top-inner .social-icon-wrapper ul li {
  padding: 0 1px;
}
@media screen and (min-width: 450px) {
  header .top-header .top-inner .social-icon-wrapper ul li {
    padding: 5px;
  }
}
header .top-header .top-inner .social-icon-wrapper ul li a {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--c-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3px;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
@media screen and (min-width: 450px) {
  header .top-header .top-inner .social-icon-wrapper ul li a {
    padding: 5px;
    width: 25px;
    height: 25px;
  }
}
header .top-header .top-inner .social-icon-wrapper ul li a:hover {
  background-color: var(--c-primary);
}
header .top-header .top-inner .social-icon-wrapper ul li a svg {
  background: transparent;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
}
header .top-header .top-inner .social-icon-wrapper ul li a svg path {
  fill: var(--c-black-dark);
}
header .main-header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .main-header .logo {
  width: 150px;
  max-width: 100%;
}
header .main-header .logo img {
  height: auto;
}
header .main-header .right-navigtion-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .main-header .right-navigtion-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
@media screen and (max-width: 991.72px) {
  header .main-header .right-navigtion-section ul {
    position: absolute;
    left: -1000%;
    top: 52px;
    width: 100%;
    height: calc(100vh - 0px);
    z-index: 9999;
    background: var(--c-white);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
header .main-header .right-navigtion-section ul li {
  padding-top: 5px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 992px) {
  header .main-header .right-navigtion-section ul li {
    margin: 0 8px;
    padding: 20px 10px;
  }
}
header .main-header .right-navigtion-section ul li a {
  text-decoration: none;
  display: block;
  color: var(--c-black-light);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 300;
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  header .main-header .right-navigtion-section ul li a {
    font-size: 14px;
    color: var(--c-white);
  }
}
@media screen and (min-width: 1400px) {
  header .main-header .right-navigtion-section ul li a {
    font-size: 16px;
  }
}
header .main-header .right-navigtion-section ul li a:hover {
  color: var(--c-primary);
}
header .main-header .right-navigtion-section ul li a:hover::after {
  width: 100%;
}
header .main-header .right-navigtion-section ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-primary);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.fixed header {
  position: fixed !important;
  min-height: auto;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
          box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.fixed .top-header {
  display: none;
}
.fixed .main-header .header-inner {
  border: 0;
}

.humburger {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0 none;
  cursor: pointer;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 100;
  display: block;
}
@media screen and (min-width: 992px) {
  .humburger {
    display: none;
  }
}
.humburger span {
  position: absolute;
  padding: 1px 0 1px;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -1px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.humburger span:nth-child(2) {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.humburger span:nth-child(3) {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.menu-open {
  overflow: hidden;
}
.menu-open .humburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-open .humburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-open .humburger span:nth-child(1) {
  opacity: 0;
}
.menu-open header .main-header .right-navigtion-section ul {
  left: 0 !important;
  margin: 0 !important;
  right: 0;
}

.banner-section {
  position: relative;
  height: 100vh;
}
.banner-section .banner-swiper {
  height: 100%;
}
.banner-section .image-wrapper {
  height: 100%;
  position: relative;
}
.banner-section .image-wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.banner-section img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner-section .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-section .content .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner-section .content .content-inner h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.banner-section .content .content-inner .text, .banner-section .content .content-inner .title {
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .banner-section .content .content-inner .text, .banner-section .content .content-inner .title {
    max-width: 450px;
  }
}
@media screen and (min-width: 992px) {
  .banner-section .content .content-inner .text, .banner-section .content .content-inner .title {
    max-width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-section .content .content-inner .text, .banner-section .content .content-inner .title {
    max-width: 680px;
  }
}
@media screen and (min-width: 1400px) {
  .banner-section .content .content-inner .text, .banner-section .content .content-inner .title {
    max-width: 680px;
  }
}
.banner-section .content .content-inner .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-section .content .content-inner .link a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-radius: 5px;
  background: var(--c-primary);
  -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.banner-section .content .content-inner .link a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0%;
  height: 100%;
  background: var(--c-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.banner-section .content .content-inner .link a:hover::after {
  left: 0;
  width: 100%;
}
.banner-section .content .content-inner .link a:hover span {
  color: var(--c-primary);
  -webkit-animation: scaleUp 0.3s ease-in-out;
          animation: scaleUp 0.3s ease-in-out;
  z-index: 1;
}
.banner-section .content .content-inner .link a:not(:hover) span {
  -webkit-animation: scaleDown 0.3s ease-in-out;
          animation: scaleDown 0.3s ease-in-out;
}
.banner-section .content .content-inner .link a span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  line-height: 1;
  color: var(--c-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banner-section .baaner-buttons {
  display: none;
}
@media screen and (min-width: 576px) {
  .banner-section .baaner-buttons {
    display: block;
  }
}
.banner-section .baaner-buttons .swiper-button-next, .banner-section .baaner-buttons .swiper-button-prev {
  width: 25px;
  height: 25px;
  background-color: var(--c-primary);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 60px;
          mask-size: 60px;
}
@media screen and (min-width: 1400px) {
  .banner-section .baaner-buttons .swiper-button-next, .banner-section .baaner-buttons .swiper-button-prev {
    -webkit-mask-size: 8 0px;
            mask-size: 8 0px;
    width: 40px;
    height: 40px;
  }
}
.banner-section .baaner-buttons .swiper-button-next::after, .banner-section .baaner-buttons .swiper-button-prev::after {
  font-size: 0;
}
.banner-section .baaner-buttons .swiper-button-next {
  -webkit-mask-image: url("../images/angle-right.svg");
          mask-image: url("../images/angle-right.svg");
  right: 5px;
}
.banner-section .baaner-buttons .swiper-button-prev {
  -webkit-mask-image: url("../images/angle-right.svg");
          mask-image: url("../images/angle-right.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 5px;
}

.About-section .about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.About-section .about-inner .image-wrapper {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .About-section .about-inner .image-wrapper {
    width: 50%;
  }
}
.About-section .about-inner .image-wrapper .image {
  height: 100%;
}
.About-section .about-inner .image-wrapper .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.About-section .about-inner .text-wrapper {
  width: 100%;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .About-section .about-inner .text-wrapper {
    width: 50%;
    padding-left: 60px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .About-section .about-inner .text-wrapper {
    padding-left: 80px;
  }
}
.About-section .about-inner .text-wrapper .title {
  padding-bottom: 20px;
}

.masnory-section .masonry {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  padding: 0;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: 0.85em;
}
@media screen and (min-width: 768px) {
  .masnory-section .masonry {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (min-width: 992px) {
  .masnory-section .masonry {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (min-width: 992px) {
  .masnory-section .masonry {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
.masnory-section .masonry .item {
  display: inline-block;
  background: #fff;
  padding: 1em;
  margin: 0 0 1.5em;
  width: 100%;
  -webkit-transition: 1s ease all;
  transition: 1s ease all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.cards-section .card-items {
  width: 100%;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .cards-section .card-items {
    width: 50%;
    padding: 10px;
  }
}
@media screen and (min-width: 992px) {
  .cards-section .card-items {
    width: 33.33%;
  }
}
.cards-section .card-items .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cards-section .card-items .link a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-radius: 5px;
  background: var(--c-primary);
  -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.cards-section .card-items .link a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0%;
  height: 100%;
  background: var(--c-black-dark);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cards-section .card-items .link a:hover::after {
  left: 0;
  width: 100%;
}
.cards-section .card-items .link a:hover span {
  color: var(--c-white);
  -webkit-animation: scaleUp 0.3s ease-in-out;
          animation: scaleUp 0.3s ease-in-out;
}
.cards-section .card-items .link a:not(:hover) span {
  -webkit-animation: scaleDown 0.3s ease-in-out;
          animation: scaleDown 0.3s ease-in-out;
}
.cards-section .card-items .link a span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 15px 20px;
  line-height: 1;
  color: var(--c-white);
  letter-spacing: 1px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1200px) {
  .cards-section .card-items .link a span {
    padding: 18px 25px;
  }
}

.main-title h2 {
  text-transform: capitalize;
}

.testinomial-outer {
  background: url("../images/flower-bg.jpg");
  padding: 60px 0px;
  background-size: cover;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 99;
}
.testinomial-outer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.testinomial-outer .main-tilte h2 {
  color: var(--c-white);
}
.testinomial-outer .testimonial-swiper {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .testinomial-outer .testimonial-swiper {
    max-width: 90%;
  }
}
@media screen and (min-width: 992px) {
  .testinomial-outer .testimonial-swiper {
    max-width: 70%;
  }
}
.testinomial-outer .testimonial-inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .testinomial-outer .testimonial-inner {
    width: 80%;
  }
}
.testinomial-outer .testimonial-inner .image {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.testinomial-outer .testimonial-inner .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.testinomial-outer .testimonial-inner .star-wrapper {
  padding-top: 10px;
}
.testinomial-outer .testimonial-inner .star-wrapper .star-image svg {
  font-size: 20px;
}
@media screen and (min-width: 1400px) {
  .testinomial-outer .testimonial-inner .star-wrapper .star-image svg {
    font-size: 25px;
  }
}
.testinomial-outer .testimonial-inner .fill-2 svg {
  color: #000000;
}
.testinomial-outer .testimonial-inner .fill-2 svg:nth-child(1) {
  color: #febc37;
}
.testinomial-outer .testimonial-inner .fill-3 svg {
  color: #000000;
}
.testinomial-outer .testimonial-inner .fill-3 svg:nth-child(2) {
  color: #febc37;
}
.testinomial-outer .testimonial-inner .fill-4 svg {
  color: #000000;
}
.testinomial-outer .testimonial-inner .fill-4 svg:nth-child(4) {
  color: #febc37;
}
.testinomial-outer .testimonial-inner .fill-5 {
  color: #febc37;
}
.testinomial-outer .testimonial-inner .text-wrapper .text P {
  color: var(--c-white);
  padding: 15px 0;
  margin: 0;
}
.testinomial-outer .testimonial-inner .text-wrapper .name {
  font-weight: bold;
  color: #fff;
  display: block;
  padding-bottom: 10px;
}
.testinomial-outer .testimonial-inner .svg-inline--fa {
  display: inline-block;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.testinomial-outer .testimonial-inner svg:not(:host).svg-inline--fa {
  overflow: visible;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.testinomial-outer .testimonial-inner svg:not(:root).svg-inline--fa {
  overflow: visible;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.testinomial-outer .baaner-buttons {
  display: none;
}
@media screen and (min-width: 576px) {
  .testinomial-outer .baaner-buttons {
    display: block;
  }
}
.testinomial-outer .baaner-buttons .swiper-button-next, .testinomial-outer .baaner-buttons .swiper-button-prev {
  width: 25px;
  height: 25px;
  background-color: var(--c-primary);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 60px;
          mask-size: 60px;
}
@media screen and (min-width: 1400px) {
  .testinomial-outer .baaner-buttons .swiper-button-next, .testinomial-outer .baaner-buttons .swiper-button-prev {
    -webkit-mask-size: 8 0px;
            mask-size: 8 0px;
    width: 40px;
    height: 40px;
  }
}
.testinomial-outer .baaner-buttons .swiper-button-next::after, .testinomial-outer .baaner-buttons .swiper-button-prev::after {
  font-size: 0;
}
.testinomial-outer .baaner-buttons .swiper-button-next {
  -webkit-mask-image: url("../images/angle-right.svg");
          mask-image: url("../images/angle-right.svg");
  right: 5px;
}
.testinomial-outer .baaner-buttons .swiper-button-prev {
  -webkit-mask-image: url("../images/angle-right.svg");
          mask-image: url("../images/angle-right.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 5px;
}

.contact-form-wrapper {
  background-image: url("https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact-form-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.contact-form-wrapper .section-header {
  margin-bottom: 50px;
  text-align: center;
}
.contact-form-wrapper .section-header h2 {
  color: #FFF;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-form-wrapper .section-header p {
  color: #FFF;
}
.contact-form-wrapper .contact-info {
  width: 50%;
}
.contact-form-wrapper .contact-info .contact-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.contact-form-wrapper .contact-info .contact-info-item .contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}
.contact-form-wrapper .contact-info .contact-info-item .contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}
.contact-form-wrapper .contact-info .contact-info-item .contact-info-icon .contact-info-content {
  margin-left: 20px;
}
.contact-form-wrapper .contact-info .contact-info-item .contact-info-icon .contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}
.contact-form-wrapper .contact-info .contact-info-item .contact-info-icon .contact-info-content p {
  color: var(--c-white);
  font-size: 1em;
}
.contact-form-wrapper .contact-form {
  background-color: var(--c-white);
  padding: 15px;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .contact-form-wrapper .contact-form {
    width: 85%;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .contact-form-wrapper .contact-form {
    width: 75%;
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .contact-form-wrapper .contact-form {
    width: 65%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-form-wrapper .contact-form {
    width: 45%;
  }
}
.contact-form-wrapper .contact-form h2 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.contact-form-wrapper .contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
  border-bottom: 2px solid #333;
}
.contact-form-wrapper .contact-form .input-box input {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  outline: none;
  resize: none;
}
.contact-form-wrapper .contact-form .input-box input:focus ~ span {
  color: var(--c-primary);
  font-size: 12px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.contact-form-wrapper .contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  outline: none;
  resize: none;
}
.contact-form-wrapper .contact-form .input-box textarea:focus ~ span {
  color: var(--c-primary);
  font-size: 12px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.contact-form-wrapper .contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  margin: 10px 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #666;
}
.contact-form-wrapper .contact-form .input-box input[type=submit] {
  width: 100%;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  cursor: pointer;
  padding: 10px;
  border: 1px solid var(--c-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-form-wrapper .contact-form .input-box input[type=submit]:hover {
  background: #FFF;
  color: var(--c-primary);
}

.select-menu {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
}
.select-menu .select-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.select-menu span.sBtn-text {
  position: unset !important;
  margin: 0 !important;
}
.select-menu .options {
  position: absolute;
  width: 330px;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}
.select-menu .options .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.select-menu .options .option:hover {
  background: #f2f2f2;
}
.select-menu .options .option i {
  font-size: 25px;
  margin-right: 12px;
}
.select-menu .options .option .option-text {
  font-size: 18px !important;
  color: #333 !important;
  position: unset !important;
  padding: 10px !important;
  margin: 0 !important;
}
.select-menu.active .select-btn i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

.select-btn i {
  font-size: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}
@keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}
.select-container {
  position: relative;
}
.select-container .select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.select-container .select input {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  background: none;
  outline: none;
  border: none;
  font-size: 1.4rem;
  color: #666;
  cursor: pointer;
}
.select-container .select i {
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.select-container.active .select i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.select-container.active .option-container {
  height: 240px;
}
.select-container .option-container {
  background: #6e6477;
  height: 0;
  overflow-y: scroll;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 55px;
}
.select-container .option-container::-webkit-scrollbar {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  width: 10px;
}
.select-container .option-container::-webkit-scrollbar-thumb {
  background: #0f0e11;
}
.select-container .option-container .option {
  position: relative;
  padding-left: 15px;
  height: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.select-container .option-container .option.selected {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.select-container .option-container .option:hover {
  background: rgba(0, 0, 0, 0.2);
  padding-left: 20px;
}
.select-container .option-container .option label {
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
}

.footer-section {
  background: #151414;
  position: relative;
}
.footer-section ul {
  margin: 0px;
  padding: 0px;
}
.footer-section .single-cta {
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .footer-section .single-cta {
    padding: 0;
  }
}
.footer-section .footer-cta {
  border-bottom: 1px solid #373636;
}
.footer-section .single-cta i {
  color: var(--c-primary);
  font-size: 20px;
  float: left;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer-section .single-cta i {
    font-size: 30px;
  }
}
.footer-section .cta-text {
  padding-left: 15px;
  display: inline-block;
}
.footer-section .cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-section .cta-text span {
  color: #757575;
}
.footer-section .cta-text a {
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: width 0.32s ease-in-out;
  transition: width 0.32s ease-in-out;
  color: var(--c-black-5);
}
.footer-section .cta-text a:hover {
  color: var(--c-primary);
}
.footer-section .footer-content {
  position: relative;
  z-index: 2;
}
.footer-section .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-section .footer-logo {
  margin-bottom: 30px;
}
.footer-section .footer-logo img {
  max-width: 200px;
}
.footer-section .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-section .footer-social-icon {
  padding-bottom: 20px;
}
.footer-section .footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-section .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-section .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.footer-section .google-bg, .footer-section .twitter-bg, .footer-section .facebook-bg {
  background: var(--c-black-5);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.footer-section .google-bg:hover, .footer-section .twitter-bg:hover, .footer-section .facebook-bg:hover {
  background: var(--c-primary);
}
.footer-section .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-section .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--c-primary);
}
.footer-section .footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}
.footer-section .footer-widget ul li a:hover {
  color: var(--c-primary);
}
.footer-section .footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  padding-bottom: 8px;
}
.footer-section .footer-widget ul li a:hover {
  color: #f2a73e;
}
.footer-section .footer-widget ul li a:hover::after {
  width: 100%;
}
.footer-section .footer-widget ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f2a73e;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer-section .subscribe-form {
  position: relative;
  overflow: hidden;
}
.footer-section .subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: var(--c-black-5);
  border: 1px solid #2E2E2E;
  color: #fff;
}
.footer-section .subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--c-primary);
  padding: 13px 20px;
  border: 1px solid var(--c-primary);
  top: 0;
}
.footer-section .subscribe-form button i {
  color: #fff;
  font-size: 22px;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
.footer-section .copyright-area {
  background: #202020;
  padding: 25px 0;
}
.footer-section .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.footer-section .copyright-text p a {
  color: var(--c-primary);
}
.footer-section .footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-section .footer-menu li:hover a {
  color: var(--c-primary);
}
.footer-section .footer-menu li a {
  font-size: 14px;
  color: #878787;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scaleDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */