@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&amp;display=swap");

:root {
  --grey: #5e5e5e;
  --white: #fff;
  --lightBlack: #3c3c3c;
  --orange: #f48221;
  --yellow: #f3d895;
  --teal: #0a3542;
  --green: #28b5a7;
  --lightOrange: #faad66;
  --lightPink: #f421d1;
  --black: #000;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--white);
}

::-webkit-scrollbar-thumb {
  background-color: var(--teal);
  transform: skew(10deg, -10deg);
}

::selection {
  background: #222;
  color: #fff;
}

::-moz-selection {
  background: #222;
  color: #fff;
}

html {
  font-size: 14px;
}

body {
  font-family: "Montserrat", sans-serif;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: 0;
  outline: none;
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1320px) {
  .container {
    max-width: 1250px;
  }
}

@media (min-width: 1420px) {
  .container {
    max-width: 1300px;
  }
}

@media (min-width: 1520px) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1620px) {
  .container {
    max-width: 1500px;
  }
}

@media (min-width: 1720px) {
  .container {
    max-width: 1600px;
  }

  html {
    font-size: 18px;
  }
}

@media (min-width: 1820px) {
  .container {
    max-width: 1700px;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 20px;
  }

  .container {
    max-width: 1800px;
  }
}

/* loader */
#loading-area {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 999999999;
  background-image: url(../images/Loading.svg);
  background-repeat: no-repeat;
  background-size: 80px;
  background-position: center;
}

/* Animation */
.animateThis {
  position: relative;
  will-change: opacity transform;
}

.slideLeft {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate3d(50px, 0px, 0px);
  -ms-transform: translate3d(50px, 0px, 0px);
  transform: translate3d(50px, 0px, 0px);
}

.slideLeft.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.slideRight {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate3d(-50px, 0px, 0px);
  -ms-transform: translate3d(-50px, 0px, 0px);
  transform: translate3d(-50px, 0px, 0px);
}

.slideRight.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.slideTop {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translate3d(0px, 50px, 0px);
  -webkit-transform: translate3d(0px, 50px, 0px);
  -o-transform: translate3d(0px, 50px, 0px);
  -ms-transform: translate3d(0px, 50px, 0px);
  transform: translate3d(0px, 50px, 0px);
}

.slideTop.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.fadeGrow {
  opacity: 0;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.fadeGrow.in-view {
  opacity: 1;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

* .fadeIn.in-view {
  opacity: 1;
}

.rollFromLeft.in-view {
  animation: rollFromLeft 1s ease-in-out forwards;
}

@keyframes rollFromLeft {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (min-width: 1199.99px) {
  section.swiper-slide .slideTop {
    opacity: 0;
    transition: all 1s ease;
    transform: translate3d(0px, 50px, 0px);
  }

  section.swiper-slide.swiper-slide-active .slideTop {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }

  section.swiper-slide .slideRight {
    opacity: 0;
    transition: all 1s ease;
    transform: translate3d(-50px, 0px, 0px);
  }

  section.swiper-slide.swiper-slide-active .slideRight {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }

  section.swiper-slide .fadeGrow {
    opacity: 0;
    transform: translate3d(-50px, 0px, 0px);
  }

  section.swiper-slide.swiper-slide-active .fadeGrow {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }

  section.swiper-slide.swiper-slide-active .rollFromLeft {
    animation: rollFromLeft 1s ease-in-out forwards;
  }

  section.swiper-slide .fadeGrow {
    opacity: 0;
    transform: scale(0.5);
  }

  section.swiper-slide.swiper-slide-active .fadeGrow.in-view {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======================== UI ======================== */

.title {
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
}

.title a {
  color: var(--orange);
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 5px;
}

.title a::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 30px;
  height: 30px;
  transition: all 0.5s 0.4s ease;
  /* background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23e96852' xmlns='http://www.w3.org/2000/svg'><path d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z'/></svg>"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* .title a:hover:before {left: 120%; bottom: 150%; opacity: 0;} */

.title a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  z-index: -1;
  transition: all 0.3s ease;
}

.title a:hover:before {
  height: 100%;
}

.title a:hover {
  color: var(--white);
}

.titleWhite {
  color: var(--white);
}

.titleWhite a {
  color: var(--teal);
}

.titleWhite a::after {
  /* background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23355059' xmlns='http://www.w3.org/2000/svg'><path d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z'/></svg>"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.titleWhite a::before {
  background: var(--teal);
}

@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .title {
    font-size: 3rem;
  }
}

@media (max-width: 991.99px) {
  .title a::after {
    display: none;
  }
}

/*  */
.orangeBtn {
  background: var(--orange);
  color: var(--white);
  padding: 12px 50px;
  position: relative;
  z-index: 1;
  display: table;
}

.orangeBtn:hover {
  color: var(--white);
}

.orangeBtn:before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--teal);
  transition: all 0.3s ease;
}

.orangeBtn:hover:before {
  height: 100%;
}

/* Colors */
.yellowClr {
  color: var(--yellow);
}

.greenClr {
  color: var(--green);
}

.orangeClr {
  color: var(--orange);
}

.singleArwSlider {
  position: relative;
  padding-right: 30px;
}

.singleArwSlider .swiper-button-next {
  width: 70px;
  height: 70px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  right: 0;
  transition: all 0.3s ease;
}

.singleArwSlider .swiper-button-next:hover {
  background: var(--white);
}

.singleArwSlider .swiper-button-next:hover svg {
  fill: var(--orange);
}

.singleArwSlider .swiper-button-next:after {
  display: none;
}

@media (max-width: 1400.99px) {
  .singleArwSlider {
    padding-right: 25px;
  }

  .singleArwSlider .swiper-button-next {
    width: 50px;
    height: 50px;
    padding: 10px;
  }
}

/* white Arw */

.whiteArw {
  width: 60px;
  height: 15px;
  /* background: url(../images/white-arw.png) no-repeat left; */
  display: block;
  transition: all 0.3s ease;
}

.whiteArw:hover {
  /* background: url(../images/white-arw.png) no-repeat right; */
  display: block;
}

/* ======================== UI ======================== */

/* Header */
header {
  background: var(--white);
  z-index: 999;
  padding: 5px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #dadada;
}

.logo {
  width: 178px;
  display: block;
}

@media (max-width: 575px) {
  .logo {
    width: 150px;
  }
}

/* Menu */

/* .menuBtn {
  display: block;
  padding: 0;
  width: 45px;
  height: 45px;
  position: relative;
  border: 2px solid #3c3c3c;
  border-radius: 100px;
} */

.menuBtn {
  display: block;
  padding: 0;
  width: 54px;
  height: 54px;
  position: relative;
  border: 4px solid #3c3c3c;
  border-radius: 100px;
  background-color: #f48221;
}



.menuBtn span {
  width: 50%;
  height: 3.5px;
  display: block;
  background: #3c3c3c;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
}

.menuBtn span:nth-child(1) {
  top: 33.33%;
}

.menuBtn span:nth-child(2),
.menuBtn span:nth-child(3) {
  top: 50%;
  width: 25%;
  margin-left: 25%;
  transition: all 0.3s ease-in-out;
}

.menuBtn span:nth-child(4) {
  top: 66.66%;
}

.menuBtn.active span:nth-child(1),
.menuBtn.active span:nth-child(4) {
  width: 0;
  top: 50%;
}

.menuBtn.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menuBtn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menuBtn.active span:nth-child(2),
.menuBtn.active span:nth-child(3) {
  width: 50%;
  margin-left: 25%;
}

.menuWrp {
  visibility: hidden;
  position: fixed;
  top: 87.46px;
  left: 0;
  width: 100%;
  height: calc(100% - 87.46px);
  transition: all 0.3s ease-in-out;
}

.menuWrp.active {
  visibility: visible;
}

.menuWrp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgb(0 0 0 / 80%);
  transition: all 0.8s ease-in-out;
}

.menuWrp.active:before {
  width: 100%;
}

.menuPanel {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 300px;
  background: rgba(236, 234, 234, 0.9);
  height: 100%;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 1.1s ease-in-out;
}

.menuWrp.active .menuPanel {
  left: 0;
}

.menuList>li {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.menuList>li>a {
  text-transform: uppercase;
  padding: 1rem 3rem;
  position: relative;
  display: block;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.menuList>li>a:hover {
  color: var(--orange);
}

.menuList>li>a.dropdownArw:after {
  content: "";
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
  transform-origin: 50% 0;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 100%;
}

.menuList>li.active>a.dropdownArw:after {
  transform: rotate(90deg);
}

.menuList>li:nth-child(6n + 1) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 1):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.menuList>li:nth-child(6n + 2) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 2):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.menuList>li:nth-child(6n + 3) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 3):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.menuList>li:nth-child(6n + 4) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 4):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.menuList>li:nth-child(6n + 5) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 5):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.menuList>li:nth-child(6n + 6) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 6):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.menuList>li:nth-child(6n + 7) {
  transition: background 0.3s ease;
}

.menuList>li:nth-child(6n + 7):hover {
  background: #4b4f51;
  /* Darker Slate Gray on hover */
}

.dropdown {
  display: none;
}

.dropdown li {
  position: relative;
  text-transform: capitalize;
}

.dropdown li a {
  padding: 5px 15px;
  font-size: 1.1rem;
  display: table;
  position: relative;
  color: var(--white);
}

.dropdown li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
  transition: all 0.3s ease-in-out;
  background: var(--white);
}

.dropdown li a:hover:before {
  width: 100%;
}

.dropdown li:last-child a {
  border: 0;
}

@media (max-width: 575px) {
  .menuWrp {
    top: 68.09px;
    height: calc(100% - 68.09px);
  }
}

.searchBtn {
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  position: relative;
  background: transparent;
  display: block;
}

.searchBtn span {
  transition: all 0.2s ease;
}

.searchBtn span.circle {
  width: 22px;
  height: 22px;
  display: block;
  border: 2px solid #3c3c3c;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  transform: rotate(0deg);
  transform-origin: 0% 50%;
}

.searchBtn span.line {
  width: 12px;
  height: 2px;
  display: block;
  background: #3c3c3c;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
  transform-origin: 100% 50%;
  border-radius: 2px;
}

.searchBtn.active span.circle {
  width: 30px;
  height: 2px;
  border-radius: 0;
  border: 0;
  background: #3c3c3c;
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}

.searchBtn.active span.line {
  width: 30px;
  bottom: 3px;
  right: 4px;
  background: #3c3c3c;
}

.search-overlay {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  background: #f6f6f6;
  z-index: 2;
  box-shadow: 0 100px 100px rgba(0, 0, 0, 0.6);
}

.search-overlay .searchForm {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border: 0;
}

.search-overlay .searchForm .input-group {
  height: 70px;
  background: #fff;
  transition: all 0.4s 0.8s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  position: relative;
  top: 8px;
  left: -8px;
}

.search-overlay.show .searchForm .input-group {
  box-shadow: -2px 2px 0 #ccc, -3px 3px 0 #ccc, -4px 4px 0 #ccc, -5px 5px 0 #ccc,
    -6px 6px 0 #ccc, -7px 7px 0 #ccc, -8px 8px 0 #ccc;
  top: 0;
  left: 0;
}

.search-overlay .searchForm .searchSubmit {
  background: var(--orange);
  color: #fff;
  font-weight: 500;
  border: 0;
  padding: 0 30px;
  height: 100%;
  border: 1px solid #666;
  overflow: hidden;
}

.search-overlay .searchForm .searchSubmit:hover {
  background: var(--black);
}

.search-overlay .searchForm .form-control {
  padding: 0 20px;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  background: transparent;
  border: 1px solid #666;
}

.search-overlay .searchForm .form-control:focus {
  outline: none;
  box-shadow: none;
}

.searchCloseBtn,
.searchCloseBtn:hover {
  width: auto;
  height: 50px;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  margin: auto;
  padding: 0;
  color: #000;
}

.searchCloseBtn small {
  font-size: 14px;
  vertical-align: middle;
  letter-spacing: 0.1em;
}

.socialLinks li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.socialLinks li a svg {
  width: 20px;
  height: 20px;
  fill: var(--lightBlack);
}

.socialLinks li a:hover {
  background: var(--orange);
}

.socialLinks li a:hover svg {
  fill: var(--white);
}

.menuSocial {
  margin: 20px 0;
}

.menuSocial li a {
  background: var(--teal);
}

.menuSocial li a svg {
  fill: var(--white);
}

/* Main  */
@media (min-width: 1199.99px) {
  .sectionSwiper {
    height: calc(100vh - 87.46px);
  }

  .sectionSwiper .swiper-pagination .swiper-pagination-bullet:last-child {
    display: none;
  }
}

.sectionSwiper .swiper-pagination {
  right: 20px;
}

.sectionSwiper .swiper-pagination .pageNavName {
  position: absolute;
  right: 25px;
  display: block;
  font-size: 0.85rem;
  white-space: nowrap;
  color: transparent;
  opacity: 0;
}

.sectionSwiper .swiper-pagination .swiper-pagination-bullet {
  background: none;
  width: 20px;
  height: 20px;
  margin: 10px 0;
  display: block;
  color: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.sectionSwiper .swiper-pagination .swiper-pagination-bullet:hover .pageNavName {
  color: var(--orange);
  opacity: 1;
}

.sectionSwiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--orange);
  opacity: 0;
  border-radius: 100px;
  animation: rotate 13s linear infinite;
}

.sectionSwiper .swiper-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}

.sectionSwiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 100px;
}

@keyframes rotate {
  0% {
    transform: rotate(-360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Home Banner */

.homeBanner .hbSlide {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hbSlidePic {
  overflow: hidden;
  height: 100%;
}

.homeBanner .hbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 9s linear;
  transform: scale(1.1);
}

.homeBanner .swiper-slide-active .hbImg {
  transform: scale(1);
}

.homeBanner .hbSlideText {
  max-width: 1080px;
  opacity: 0;
  transition: all 1s 1.4s ease;
  filter: blur(30px);
  transform: translateY(200px);
}

.homeBanner .hbContent {
  text-align: center;
}

.homeBanner .swiper-slide-active .hbSlideText {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.homeBanner .bigText {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  padding: 2rem 0;
}

.homeBanner .bigText span {
  color: var(--yellow);
}

@media (min-width: 1300px) {
  .homeBanner .bigText {
    font-size: 3.5rem;
  }
}

@media (min-width: 991.99px) {
  .homeBanner {
    height: 100%;
  }

  .hbSlidePic {
    height: 100%;
  }

  .homeBanner .hbSlide:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.5) 80%);
  }

  .homeBanner .hbContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    text-align: center;
  }
}

@media (max-width: 991.99px) {
  .hbSlidePic {
    height: 0;
    padding-bottom: 50%;
    position: relative;
  }

  .hbImg {
    position: absolute;
    top: 0;
    left: 0;
  }

  br {
    display: none;
  }
}

@media (max-width: 575.99px) {
  .hbSlidePic {
    padding-bottom: 100%;
  }
}

/* About Section */
.aboutSection {
  background: var(--white);
}

.aboutSection p {
  color: var(--teal);
}

.aboutSection p:last-child {
  margin: 0;
}

.aboutSection p span {
  font-weight: 600;
}

.aboutTabsWrp {
  background: var(--teal);
}

.aboutPic {
  position: relative;
  height: 100%;
  z-index: 1;
}

.aboutPic img {
  border-radius: 0 50rem 50rem 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutTabsWrp .nav li button {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
}

.aboutTabsWrp .nav li button.active {
  color: var(--white);
  text-shadow: none;
}

.aboutTabsWrp .tab-content h6 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 25px;
}

.aboutTabsWrp .tab-content h6 span {
  display: block;
  color: rgba(255, 255, 255, 0.22);
}

.aboutTabsWrp .tab-content p {
  color: #e0e0e0d1;
  /*font-size: 1.1rem;*/
}

/* .aboutTabsWrp .tab-content p span {color: var(--orange);} */
.aboutTabsWrp .tab-content a {
  margin-top: 30px;
  display: block;
}

@media (min-width: 991.99px) {
  .aboutTabsWrp {
    padding-right: 100px;
    border-radius: 0 50rem 50rem 0;
  }

  .aboutContainer {
    max-width: inherit;
  }
}

@media (max-width: 991.99px) {
  .aboutPic::before {
    content: "";
    width: 100%;
    height: 50%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .aboutTabsWrp .tab-content h6 {
    margin-bottom: 15px;
  }
}

@media (max-width: 575.99px) {
  .aboutTabsWrp .nav li button {
    font-size: 1.2rem;
  }
}

/* Services Section */
.servicesWrp {
  background: var(--green);
  height: 100%;
}

.servicesPicSwiperWrp {
  /*max-width: 1020px; margin: 0 auto;*/
  position: relative;
  padding-right: 35px;
}

.servicesPicSwiperWrp .swiper-button-next {
  width: 70px;
  height: 70px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  right: 0;
  transition: all 0.3s ease;
}

.servicesPicSwiperWrp .swiper-button-next:hover {
  background: var(--white);
}

.servicesPicSwiperWrp .swiper-button-next:hover svg {
  fill: var(--orange);
}

.servicesPicSwiperWrp .swiper-button-next:after {
  display: none;
}

.servicePic {
  padding-top: 50%;
  height: 0;
  position: relative;
  overflow: hidden;
}

.servicePic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.servicesTxtBox {
  color: var(--white);
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: end;
  transition: all 0.3s ease;
}

.servicesTxtBox h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.servicesTxtBox p {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.servicesTxtSwiper .swiper-slide {
  height: auto;
  border-bottom: 1px solid var(--white);
  transition: all 0.3s ease;
}

.swiper-slide-thumb-active .swiper-slide {
  border-bottom: 3px solid var(--white);
}

.swiper-slide-thumb-active .servicesTxtBox h3 {
  font-weight: 800;
}

.servicesTxtBox a {
  opacity: 0;
  display: block;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.swiper-slide-thumb-active .servicesTxtBox a {
  opacity: 1;
}

.servicesTxtSwiper .swiper-slide-thumb-active {
  padding-top: 0;
  transition: all 0.3s ease;
}

@media (min-width: 991.99px) {
  /* .servicesTxtContainer {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    width: 100%;
  } */

  .sliderContainer {
    padding-bottom: 120px;
  }
}

@media (max-width: 768.99px) {
  .servicesPicSwiperWrp .swiper-button-next {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .servicesPicSwiperWrp {
    padding-right: 20px;
  }

  .servicesTxtContainer {
    margin-top: 20px;
  }

  .searchDesktop {
    display: none;
  }

}

/* Team */
.teamWrp {
  background: var(--yellow);
  height: 100%;
}

.teamBox {
  color: var(--teal);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.teamBox button.stretched-link:after {
  z-index: 2;
}

.teamBox .teamPic {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  background: rgb(5, 5, 5);
  background: radial-gradient(circle,
      rgba(5, 5, 5, 1) 0%,
      rgba(6, 6, 6, 1) 50%,
      rgba(2, 2, 2, 1) 100%);
}

.teamBox .teamPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.teamBox h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.teamBox .teamDesig {
  margin: 5px 0;
  display: block;
}

.teamBox .teamPara {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  display: none;
}

.teamBox ul {
  display: flex;
  z-index: 3;
  position: relative;
}

.teamBox ul li {
  margin-right: 15px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}

.teamBox ul li:last-child {
  margin-right: 0;
}

.teamBox ul li::after {
  content: "|";
  display: inline-block;
  margin-left: 15px;
}

.teamBox ul li:last-child:after {
  display: none;
}

.teamBox ul li a svg {
  fill: var(--green);
  width: 30px;
  height: 30px;
}

.teamBox ul li a:hover svg {
  fill: var(--orange);
}

.teamWrp .singleArwSlider .swiper-button-next {
  background: var(--white);
  backdrop-filter: none;
  top: 35%;
}

.teamPopContent .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
}

.teamPopContent .teamPara {
  display: block;
}

.teamPopContent .teamBox .teamPic::before,
.teamPopContent .teamBox .teamPic::after {
  display: none;
}

.teamPopContent .teamBox .teamPic {
  margin: 0;
}

.teamPopContent .teamBorder {
  border-bottom: 1px solid var(--teal);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

/* @media(min-width:1600.99px){
    .teamBox::before, .teamBox::after {width: 300px; height: 300px;}
} */

.teamBox .teamPic {
  margin-top: 30px;
}

/* .teamBox .teamPic::before, .teamBox .teamPic::after {content: ''; position: absolute; top: -30px; left: 0; right: 0; background: var(--orange); width:300px; height: 300px; margin: 0 auto; border-radius: 100%; transform: scale(0); z-index: 1; transition: all 0.3s ease-in-out;} */
.teamBox:hover .teamPic::before {
  transform: scale(0.9);
}

.teamBox .teamPic::after {
  border: 2px dashed var(--orange);
  background: none;
}

.teamBox:hover .teamPic:after {
  transform: scale(1);
}

.teamBox .teamPic img:hover {
  transform: scale(1.1);
}

@media (max-width: 1550px) {

  .teamBox .teamPic::before,
  .teamBox .teamPic::after {
    width: 230px;
    height: 230px;
  }
}

@media (max-width: 1200.99px) {

  .teamBox .teamPic::before,
  .teamBox .teamPic::after {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 991.99px) {

  .teamBox .teamPic::before,
  .teamBox .teamPic::after {
    display: none;
  }
}

/* Insights */
.insightWrp {
  background: var(--lightOrange);
  height: 100%;
}

.insightListing li a {
  color: var(--teal);
  padding: 25px 0;
  border-bottom: 1px solid #b37740;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.insightListing li:last-child a {
  border: 0;
}

.insightListing li a:hover {
  background: #ffcc9d;
}

.insightListing li a span {
  text-transform: capitalize;
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
}

.insightListing li a p span {
  color: #000;
  font-weight: 700;
}

.insightListing li a p {
  margin: 0;
  color: var(--black);
}

.hoverImg {
  width: 300px;
  height: 200px;
  display: table;
  margin: 0 auto;
  border: 1px dashed var(--white);
  padding: 5px;
}

.hoverImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insightListing li a:hover .hoverImg {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 991.99px) {
  .hoverImg {
    position: absolute;
    opacity: 0;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
  }

  .insightListing {
    position: absolute;
    height: 100%;
    top: 0;
    left: 15px;
    right: 15px;
    overflow: auto;
    overflow-x: hidden;
  }
}

@media (max-width: 991.99px) {
  .hoverImg {
    opacity: 1;
    margin-top: 15px;
  }
}

@media (max-width: 768.99px) {
  .hoverImg {
    width: 100%;
  }
}

/* Job Openings */
.jobOpenWrp {
  background: var(--teal);
  position: relative;
  color: var(--white);
}

.joSideImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
}

.joSideImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lweList {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgb(255 255 255 / 20%);
  letter-spacing: 15px;
  text-transform: uppercase;
}

.lweList li {
  position: relative;
}

.lweList li::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 0;
  width: 12px;
  height: 12px;
  background: rgb(255 255 255 / 20%);
  border-radius: 100px;
}

.lweList li:last-child:after {
  display: none;
}

.postBox {
  border-bottom: 1px solid var(--white);
  padding-bottom: 15px;
}

.postBox h6 {
  text-transform: uppercase;
}

.postBox ul li {
  text-transform: capitalize;
  position: relative;
  opacity: 0.5;
}

.postBox ul li:not(:last-child):after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--white);
  opacity: 0.5;
  font-size: 1rem;
}

.joSideBoxInner {
  height: 100%;
}

.joSideBoxInner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}

.joSideBoxInner:hover img {
  filter: grayscale(0);
  transform: scale(0.97);
}

@media (min-width: 991.99px) {
  .joSideBox {
    position: absolute;
  }

  .joSideBox1 {
    width: 35%;
    height: 20%;
    top: 0;
    right: 0;
  }

  .joSideBox2 {
    transform: translateY(-50%);
    top: 50%;
    right: 5%;
    width: 35%;
    height: 50%;
  }

  .joSideBox3 {
    bottom: 0;
    right: 0;
    width: 40%;
    height: 20%;
  }
}

@media (max-width: 1550.99px) {
  .lweList {
    font-size: 2rem;
  }
}

@media (max-width: 1300.99px) {
  .lweList {
    font-size: 1.8rem;
  }
}

@media (max-width: 991.99px) {

  .joSideBox1 .joSideBoxInner,
  .joSideBox3 .joSideBoxInner {
    height: 150px;
  }

  .tab-content .tab-pane {
    padding: 0 15px;
  }
}

/*  */
.collaborateWrp h3 {
  color: #c3c3c3;
  font-weight: 900;
  font-size: 3rem;
  text-transform: capitalize;
  margin-bottom: 3rem;
}

.contactBtnWrp {
  position: relative;
}

.contactBtnWrp:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed var(--orange);
  /* transform: scale(1.2); */
  border-radius: 100px;
  animation: rotate 13s linear infinite;
}

.collaborateWrp .orangeBtn {
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  width: 150px;
  height: 150px;
  overflow: hidden;
  transition: 0.3s ease;
}

.collaborateWrp .orangeBtn::before {
  border-radius: 100px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0);
  width: 0;
  height: 0;
}

.collaborateWrp .orangeBtn:hover:before {
  transform: scale(1);
  width: 100%;
  height: 100%;
}

.contactFormWrap {
  background: #fff;
  box-shadow: 2px 2px 55px 0px rgba(0, 0, 0, 0.08);
}

.contactFormWrap h3 {
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.contactFormWrap h3 span {
  color: var(--orange);
}

.formWrapper .form-control {
  border: 0;
  border: 1px solid #3c3c3c;
  background-color: var(--white);
  color: #606060;
  padding: 10px;
  text-transform: capitalize;
}

.formWrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--teal);
}

.formWrapper .form-select option {
  color: #606060;
  font-size: 12px;
  font-weight: 300;
}

.contactFormWrap .form-check-input:checked {
  background-color: #393939;
  border-color: #393939;
}

.buttonGroup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.contactBtnWrp {
  display: table;
  margin: 0 auto;
}

@media (max-width: 767.99px) {
  .contactFormWrap h3 {
    font-size: 2rem;
  }
}

@media (max-width: 575.99px) {
  .contactFormWrap h3 {
    font-size: 1.5rem;
  }

  .collaborateWrp .orangeBtn {
    width: 120px;
    height: 120px;
  }

  .contactBtnWrp:before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .homeBanner .bigText {
    height: 120px;
  }
}

/* Footer */
footer.swiper-slide {
  height: auto;
}

.footLinkHead {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--teal);
}

.footLinks li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.pageFooter a {
  transition: all 0.3s ease;
  position: relative;
}

.pageFooter a:hover {
  color: var(--orange);
}

.copyRight {
  border-top: 1px solid var(--teal);
  padding-top: 25px;
  font-weight: 600;
  font-size: 0.75rem;
}

@media (min-width: 991.98px) {
  .footLinkHead {
    pointer-events: none;
  }
}

@media (max-width: 991.98px) {
  .footLinkBox {
    border-bottom: 1px solid #666;
  }

  .footLinkHead {
    margin-bottom: 10px;
  }

  .footLinkHead[role="button"] {
    padding-right: 40px;
    position: relative;
  }

  .footLinkHead[role="button"]:before {
    content: "";
    width: 20px;
    height: 1px;
    display: block;
    background: var(--teal);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }

  .footLinkHead[role="button"]:after {
    content: "";
    width: 1px;
    height: 20px;
    display: block;
    background: var(--teal);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: all 0.5s ease-in-out;
  }

  .footLinkHead[aria-expanded="false"]:after {
    transform: rotate(0deg);
  }

  .footLinkHead[aria-expanded="true"]:after {
    transform: rotate(450deg);
  }
}

.subscribeBox {
  background: var(--teal);
  color: var(--white);
}

.subscribeBox h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.subscribeBox .input-group {
  border-bottom: 2px solid var(--white);
  text-transform: uppercase;
}

.subscribeBox .input-group .form-control {
  background: none;
  border: 0;
  padding: 15px 15px 15px 0;
  color: var(--white);
}

.subscribeBox .input-group .form-control:focus {
  outline: none;
  box-shadow: none;
}

.subscribeBox .input-group button {
  text-transform: uppercase;
  color: var(--teal);
  padding: 8px 20px;
  transition: all 0.3s ease;
  background: var(--white);
}

.subscribeBox .input-group button:hover {
  background: var(--orange);
  color: var(--white);
}

.subscribeBox .input-group .form-control::placeholder {
  color: #7d7d7d;
}

/* Enquire Now */
.enquireWrp {
  position: fixed;
  bottom: 0;
  right: 1%;
  z-index: 3;
}

.enquireBtn {
  background: var(--orange);
  color: var(--white);
  padding: 5px 20px;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.enquireForm {
  width: 300px;
  background: var(--white);
  padding: 20px 15px;
  display: none;
}

.enquireForm h5 {
  color: var(--orange);
  font-weight: 600;
}

.enquireForm .form-control {
  border: 0;
  border-radius: 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #ddd;
}

.enquireForm .form-control:focus {
  box-shadow: none;
}

.enquireForm .submitBtn {
  text-transform: uppercase;
  color: var(--orange);
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.enquireForm .submitBtn:hover {
  color: var(--white);
}

.enquireForm .submitBtn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 15px;
  height: 15px;
  transition: all 0.5s 0.4s ease;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23e96852' xmlns='http://www.w3.org/2000/svg'><path d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.enquireForm .submitBtn:hover:before {
  left: 120%;
  bottom: 150%;
  opacity: 0;
}

.enquireForm .submitBtn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.enquireForm .submitBtn:hover:after {
  height: 100%;
}

.enquireClose {
  display: none;
}

.blackOverlay {
  background: rgb(0 0 0 / 70%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}

/* video */

.hbVideo {
  width: 100%;
  overflow: hidden;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .hbVideo {
    width: 100%;
  }

  .hbVideo video {
    object-fit: cover;
    width: 100%;
    height: 75vh;
  }
}

/* accordian */

.titleFont {
  font-size: 2rem;
  font-weight: 400;
  color: var(--darkColor);
  text-transform: uppercase;
}

.titleBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titleBox:before {
  content: "";
  width: 55px;
  height: 44px;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: url(../images/phoenix.html);
  background-size: auto 100%;
}

*,
::after,
::before {
  box-sizing: border-box;
}

form {
  padding: 0;
  margin: 0;
}

/* Expandable search box */
/* Note: don't change 0.8s in transition. */
/* --------------------- */
input.search-text {
  color: #222;
  position: absolute;
  transition: z-index 0.8s, width 0.5s, background 0.3s ease, border 0.3s;
  z-index: 5;
  height: 45px;
  width: 0;
  margin: 0;
  padding: 5px 0 5px 40px;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  border: 1px solid transparent;
  /*background: url(search.png) no-repeat left 9px center transparent;*/
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUxMiA1MTIiIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB3aWR0aD0iNTEycHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGQ9Ik01MDMuODY2LDQ3Ny45NzRMMzYwLjk1OCwzMzUuMDUyYzI4LjcyNS0zNC41NDQsNDYuMDE3LTc4LjkxMiw0Ni4wMTctMTI3LjMzNiAgYzAtMTEwLjA4NC04OS4yMjctMTk5LjMxMi0xOTkuMzEyLTE5OS4zMTJDOTcuNTk5LDguNDAzLDguMzUxLDk3LjYzMSw4LjM1MSwyMDcuNzE1YzAsMTEwLjA2NCw4OS4yNDgsMTk5LjMxMiwxOTkuMzEyLDE5OS4zMTIgIGM0OC40MzUsMCw5Mi43OTItMTcuMjkyLDEyNy4zMzYtNDYuMDE3bDE0Mi45MDgsMTQyLjkyMkw1MDMuODY2LDQ3Ny45NzR6IE0yOS4zMzEsMjA3LjcxNWMwLTk4LjMzNCw3OS45ODctMTc4LjMzMiwxNzguMzMyLTE3OC4zMzIgIGM5OC4zMjUsMCwxNzguMzMyLDc5Ljk5OCwxNzguMzMyLDE3OC4zMzJzLTgwLjAwNywxNzguMzMyLTE3OC4zMzIsMTc4LjMzMkMxMDkuMzE4LDM4Ni4wNDcsMjkuMzMxLDMwNi4wNSwyOS4zMzEsMjA3LjcxNXoiIGZpbGw9IiMzNzQwNEQiLz48L3N2Zz4=) no-repeat left 9px center transparent;
  background-size: 24px;
  right: 0;
}

input.search-text:focus {
  width: 270px;
  border: 1px solid #666;
  background-color: white;
  outline: none;
  cursor: auto;
  padding: 5px 20px 5px 20px;
  background-position: 95% 50%;
}

input.search-submit {
  position: relative;
  z-index: 4;
  top: 17px;
  left: 49px;
  width: 45px;
  height: 45px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 30px;
  cursor: pointer;
  background: none;
}

input.search-text::-webkit-search-cancel-button {
  cursor: pointer;
}

.searchDesktop {
  position: relative;
}

.homeContact .wpcf7 form .wpcf7-response-output {
  margin-top: 1em;
}

.homeContact .contactFormWrap {
  padding-bottom: 5rem !important;
  padding-top: 2rem !important;
}

/* <------------- my css -----------------> */


.servicesTxtBox p {
  display: none;
  margin-bottom: -13px;
}

.new-swiper {
  height: 448px !important;
  width: 520px !important;
}


.brabd-text {
  position: absolute;
  color: black;
  z-index: 9999;
  background: #d7e3be7d;
  text-align: center;
}


@media (min-width: 1024px) {
  .brabd-text {
    margin-top: 284px;
    margin-left: 170px;
  }
}


@media (max-width: 1024px) {
  .brabd-text {
    margin-top: 235px;
    margin-left: 159px;
    width: auto;
    font-size: 1.2em;
  }
}


@media (max-width: 768px) {
  .brabd-text {
    position: absolute;
    margin: 50px auto;
    width: 90%;
    font-size: 1em;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .brabd-text {
    margin-top: 102px;
    width: 95%;
    font-size: 0.9em;
  }
}


.heading {
  opacity: .8;
  font-weight: 700;
}




.scroll-arrow {
  position: absolute;
  top: 49%;
  z-index: 10;
  transform: translateY(-51%) rotate(267deg);
  left: 36%;
}

.swiper-button-next,
.swiper-button-prev {
  width: 335px;
  color: #ffffff63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: translateY(-51%) rotate(183deg);
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 1024px) {

  /* Tablets */
  .scroll-arrow {
    top: 44%;
    left: 69%;
    transform: translateY(-50%) rotate(90deg);
  }
}

@media (max-width: 768px) {

  /* Mobile Devices */
  .scroll-arrow {
    top: 45%;
    left: 25%;
    transform: translateY(-50%) rotate(90deg);
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  /* Small Mobile Screens */
  .scroll-arrow {
    top: 54%;
    left: 88%;
    transform: translateY(-50%) rotate(90deg);
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}