/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&amp;display=swap");

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"),
    url("../fonts/Satoshi-Bold.woff") format("woff"),
    url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"),
    url("../fonts/Satoshi-Medium.woff") format("woff"),
    url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

/* 1.1 Theme Reset Style */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi";
  color: #ffff;
  background-color: #0a2c37;
  font-size: 15px;
  font-size: 0.8333333333rem;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 18px;
  color: #ffff;
  line-height: 1.8em;
}

@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffff;
  font-family: "Parkinsans";
  font-weight: 700;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.sr-only {
  display: none;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1430px) {
  .container {
    max-width: 1430px;
  }
}

/* Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 60px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100%;
  margin-top: 15px;
}

.contact-validation-active label.error,
.contact-validation-active label.error2 {
  color: red;
  font-size: 0.7777777778rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #c-loader,
.contact-validation-active #loader,
.contact-validation-active #loader2 {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #c-loader i,
.contact-validation-active #loader i,
.contact-validation-active #loader2 i {
  font-size: 30px;
  font-size: 1.6666666667rem;
  color: #0a2c37;
  display: inline-block;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #success2,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error,
.contact-validation-active #error2 {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #success2,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error,
  .contact-validation-active #error2 {
    font-size: 15px;
  }
}

.contact-validation-active #c-success,
.contact-validation-active #success,
.contact-validation-active #success2 {
  background-color: rgb(0, 153.5, 0);
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error,
.contact-validation-active #error2 {
  background-color: rgb(255, 25.5, 25.5);
  border-left: 5px solid red;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotating {
  animation: rotating 5s alternate infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translate(0);
  }

  25% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(10px);
  }

  75% {
    transform: translateY(-20px);
  }
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee-s2 {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes margin {
  0% {
    transform: translateY(-60px);
  }

  50% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(-60px);
  }
}

@keyframes marginOdd {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-60px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee-s2 {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

/*** back to top **/
.back-to-top {
  background-color: #0a2c37;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #e7eeff;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: #0a2c37;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 999999;
}

.fancybox-wrap {
  z-index: 9999999;
}

.rolling-text {
  display: inline-block;
  overflow: hidden;
  height: 20px;
  line-height: 16px;
  position: relative;
}

.rolling-text .text-wrapper {
  display: flex;
  flex-direction: column;
  transform: translateY(0%);
}

.rolling-text .text-line {
  display: block;
  height: 20px;
  line-height: 16px;
  white-space: nowrap;
  top: 4px;
  position: relative;
}

.new_img-animet {
  visibility: hidden;
  overflow: hidden;
}

.middle-light {
  position: relative;
  overflow: hidden;
}

.middle-light::before {
  background: rgba(66, 198, 82, 0.2);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
  z-index: 1;
}

.middle-light:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
}

.left-to-right-light {
  position: relative;
  overflow: hidden;
}

.left-to-right-light:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.left-to-right-light:hover:before {
  animation: shadeLf 1s;
}

.moving-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.wpo-section-title,
.wpo-section-title-s2 {
  text-align: center;
  margin-bottom: 60px;
  margin-top: -15px;
}

@media (max-width: 991px) {
  .wpo-section-title,
  .wpo-section-title-s2 {
    margin-bottom: 35px;
  }
}

.wpo-section-title span,
.wpo-section-title-s2 span {
  color: #0a2c37;
  font-size: 24px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.24px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .wpo-section-title span,
  .wpo-section-title-s2 span {
    font-size: 22px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-section-title span,
  .wpo-section-title-s2 span {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .wpo-section-title span,
  .wpo-section-title-s2 span {
    font-size: 20px;
    line-height: 45px;
  }
}

@media (max-width: 425px) {
  .wpo-section-title span,
  .wpo-section-title-s2 span {
    font-size: 18px;
  }
}

.wpo-section-title span i,
.wpo-section-title-s2 span i {
  line-height: unset;
  margin-right: 10px;
  position: relative;
  top: -2px;
  max-width: 35px;
}

.wpo-section-title h2,
.wpo-section-title-s2 h2 {
  margin: 0;
  color: #ffff;
  font-size: 60px;
  font-weight: 400;
  line-height: 89%;
}

@media (max-width: 1645px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2 {
    font-size: 55px;
  }
}

@media (max-width: 1199px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2 {
    font-size: 40px;
  }
}

@media (max-width: 425px) {
  .wpo-section-title h2,
  .wpo-section-title-s2 h2 {
    font-size: 30px;
  }
}

.wpo-section-title p,
.wpo-section-title-s2 p {
  margin: 0;
  color: #444141;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  max-width: 730px;
  margin: 0 auto;
  padding-top: 20px;
}

@media (max-width: 1199px) {
  .wpo-section-title p,
  .wpo-section-title-s2 p {
    font-size: 17px;
    line-height: 27.8px;
    max-width: 690px;
  }
}

@media (max-width: 575px) {
  .wpo-section-title p,
  .wpo-section-title-s2 p {
    font-size: 16px;
    line-height: 26.8px;
    max-width: unset;
    padding-top: 10px;
  }
}

.wpo-section-title-s2 {
  text-align: left;
}

@media (max-width: 991px) {
  .wpo-section-title-s2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

.wpo-section-title-s2 span {
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .wpo-section-title-s2 span {
    justify-content: center;
  }
}

.wpo-section-title-s2 p {
  margin: 0;
  color: #ffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
}

@media (max-width: 575px) {
  .wpo-section-title-s2 p {
    font-size: 16px;
    line-height: 26.8px;
    max-width: unset;
  }
}

.theme-btn,
.theme-btn-s2,
.theme-btn-s3 {
  background: #0a2c37;
  color: #fff;
  display: inline-block;
  padding: 21px 50px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-family: "Satoshi";
  border-radius: 43px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  overflow: hidden;
  padding-right: 58px;
}

.theme-btn::after,
.theme-btn-s2::after,
.theme-btn-s3::after {
  background-color: #c49228;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom left;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
  z-index: -1;
}

.theme-btn::before,
.theme-btn-s2::before,
.theme-btn-s3::before {
  position: absolute;
  right: 45px;
  top: 52%;
  transform: translateY(-50%);
  content: "";
  transition: all 0.3s;
  color: #fff;
}

@media (max-width: 767px) {
  .theme-btn:hover::before,
  .theme-btn:focus::before,
  .theme-btn:active::before,
  .theme-btn-s2:hover::before,
  .theme-btn-s2:focus::before,
  .theme-btn-s2:active::before,
  .theme-btn-s3:hover::before,
  .theme-btn-s3:focus::before,
  .theme-btn-s3:active::before {
    right: 25px;
  }
}

.theme-btn:hover::after,
.theme-btn-s2:hover::after,
.theme-btn-s3:hover::after {
  transform-origin: top right;
  transform: scale(1);
}

@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    padding: 15px 30px;
    font-size: 14px;
    padding-right: 40px;
  }
}

.theme-btn-s2 {
  background-color: #0a2c37;
  color: #fff;
}

.theme-btn-s2::before {
  content: "\e649";
  font-family: "themify";
  font-size: 10px;
  transition: all ease 0.4s;
}

@media (max-width: 767px) {
  .theme-btn-s2::before {
    right: 28px;
  }
}

.theme-btn-s2::after {
  background-color: #c9a24d;
}

.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
  color: #fff;
}

.theme-btn-s2:hover::before,
.theme-btn-s2:focus::before,
.theme-btn-s2:active::before {
  right: 40px;
}

@media (max-width: 767px) {
  .theme-btn-s2:hover::before,
  .theme-btn-s2:focus::before,
  .theme-btn-s2:active::before {
    right: 23px;
  }
}

.theme-btn-s3 {
  background: transparent;
  box-shadow: none;
  padding-left: 30px;
  color: #000;
}

.theme-btn-s3::before {
  background: url(../images/black-arrow.svg);
  width: 17.684px;
  height: 13.073px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 35px;
}

@media (max-width: 767px) {
  .theme-btn-s3::before {
    right: 18px;
  }
}

.theme-btn-s3:after {
  display: none;
}

.theme-btn-s3:hover,
.theme-btn-s3:focus,
.theme-btn-s3:active {
  color: #000;
}

.theme-btn-s3:hover::before,
.theme-btn-s3:focus::before,
.theme-btn-s3:active::before {
  right: 31px;
}

@media (max-width: 767px) {
  .theme-btn-s3:hover::before,
  .theme-btn-s3:focus::before,
  .theme-btn-s3:active::before {
    right: 12px;
  }
}

.form input,
.form textarea,
.form select {
  border-color: rgb(191.25, 191.25, 191.25);
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: rgb(89.25, 89.25, 89.25);
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #0a2c37;
  -o-box-shadow: 0 0 5px 0 rgb(97.5942622951, 129.2336065574, 219.4057377049);
  -ms-box-shadow: 0 0 5px 0 rgb(97.5942622951, 129.2336065574, 219.4057377049);
  box-shadow: 0 0 5px 0 rgb(97.5942622951, 129.2336065574, 219.4057377049);
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: rgb(89.25, 89.25, 89.25);
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-moz-placeholder {
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: rgb(97.5942622951, 129.2336065574, 219.4057377049);
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #0a2c37;
}

.breadcumb-area {
  background: #fff;
  min-height: 406px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  background: url(../images/page-title.jpg);
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .breadcumb-area {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .breadcumb-area {
    min-height: 300px;
  }
}

.breadcumb-area:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    249deg,
    rgba(16, 40, 0, 0) -3.38%,
    rgba(16, 40, 0, 0.16) -6.18%,
    rgba(9, 32, 97, 0.85) 42.42%,
    #141635 66.17%
  );
  content: "";
  z-index: -1;
}

.breadcumb-area .breadcumb-wrap h2 {
  color: #0a2c37;
  font-family: "Satoshi";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 65px;
  letter-spacing: -0.2px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .breadcumb-area .breadcumb-wrap h2 {
    font-size: 17px;
    line-height: 28px;
  }
}

.breadcumb-area .breadcumb-wrap h3 {
  color: #fff;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .breadcumb-area .breadcumb-wrap h3 {
    font-size: 60px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .breadcumb-area .breadcumb-wrap h3 {
    font-size: 40px;
    line-height: 40px;
  }
}

.preloader {
  background-color: #0a2c37;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1111111111111111200;
  overflow: hidden;
}

.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
  max-width: 55px;
}

.preloader * {
  transition: all 0.3s;
}

.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}

.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

/**** pagination ****/
/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-weight: 600;
  color: #ffff;
  background: rgb(245, 250, 255);
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #0a2c37;
  border-color: #0a2c37;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 17px;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

.service-sidebar {
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .service-sidebar {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .service-sidebar {
    margin-top: 50px;
    max-width: 450px;
  }
}

.service-catagory ul li {
  margin-bottom: 13px;
}

.service-catagory ul li a {
  border-radius: 12px;
  background: rgba(98, 116, 255, 0.06);
  color: #ffff;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 40px;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 575px) {
  .service-catagory ul li a {
    padding: 10px 20px;
  }
}

.service-catagory ul li a i {
  width: 32px;
  height: 32px;
  line-height: 36px;
  text-align: center;
  color: #0a2c37;
  margin-right: 20px;
}

@media (max-width: 575px) {
  .service-catagory ul li a i {
    margin-right: 10px;
  }
}

.service-catagory ul li a::before {
  position: absolute;
  right: 40px;
  top: 33px;
  transform: translateY(-50%);
  content: "\f123";
  font-family: flaticon_fixaroo;
  transition: all 0.3s ease-in-out;
  color: #4b5563;
}

@media (max-width: 575px) {
  .service-catagory ul li a::before {
    right: 20px;
  }
}

.service-catagory ul li a:hover,
.service-catagory ul li a.active {
  background: #0a2c37;
  color: #fff;
}

.service-catagory ul li a:hover::before,
.service-catagory ul li a.active::before {
  color: #fff;
}

.service-info {
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: 40px;
  border-radius: 8px;
  background: rgba(131, 136, 173, 0.06);
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
}

.service-info .icon {
  width: 88px;
  height: 76px;
  line-height: 76px;
  border-radius: 4px;
  background: #fff;
  color: #0a2c37;
  font-size: 35px;
  display: inline-block;
  margin-bottom: 30px;
}

.service-info h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  max-width: 244px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.service-info span {
  font-family: "Parkinsans";
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.service-info .num span {
  border-radius: 24px;
  background: #0a2c37;
  color: #fff;
  text-align: center;
  font-family: "Parkinsans";
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  display: block;
  padding: 8px 10px;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/* 2.1 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
}
.header {
  background-color: #fff;
}

.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  box-shadow: 0 -5px 15px rgba(12, 56, 92, 0.29);
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.wpo-site-header .navigation > .container {
  position: relative;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 10px 0;
  }
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #0e1fb9;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar > ul > li > a:hover:before,
  .wpo-site-header #navbar > ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }

  .wpo-site-header
    #navbar
    > ul
    > li
    > .sub-menu
    > .menu-item-has-children
    > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.wpo-site-header .container-fluid {
  display: block;
}

@media (max-width: 991px) {
  .wpo-site-header .container-fluid {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .row {
    flex-wrap: nowrap;
  }

  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }

  .wpo-site-header .header-right {
    right: 15px;
  }
}

@media (max-width: 991px) and (max-width: 425px) {
  .wpo-site-header .header-right {
    right: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}

.wpo-site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul {
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #0a2c37;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}

.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}

.wpo-site-header .header-right button {
  padding: 0;
  border: 0;
  outline: 0;
}

.wpo-site-header .header-right > div {
  float: left;
  position: relative;
  margin-right: 8px;
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right > div {
    margin-right: 0;
  }
}

.wpo-site-header .header-right .close-form .theme-btn-s2 {
  padding: 13px 35px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 24px;
  text-transform: lowercase;
}

@media (max-width: 1400px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 {
    padding: 10px 15px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 {
    padding: 12px 15px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 {
    padding: 12px;
    border-radius: 50%;
  }
}

@media (max-width: 425px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 span {
    display: none;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 i {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .header-right .close-form .theme-btn-s2 i svg {
    width: 20px;
    height: 20px;
  }
}

.wpo-site-header .header-right .close-form .theme-btn-s2::before {
  display: none;
}

.wpo-site-header .header-right > div:last-child {   
  left: -10px;
  position: relative;
}

@media (max-width: 991px) {
  .page-wrapper {
    transition: all 0.3s;
  }

  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.3s;
  }
}

.wpo-site-header .header-right .header-search-form-wrapper {
  position: relative;
}

.wpo-site-header .header-right .header-search-form-wrapper i {
  font-size: 22px;
}

.wpo-site-header .header-right .header-search-form i {
  font-size: 22px;
}

@media (max-width: 450px) {
  .wpo-site-header .header-right .cart-toggle-btn {
    display: none;
  }
}

.wpo-site-header .header-right .search-toggle-btn,
.wpo-site-header .header-right .cart-toggle-btn {
  background-color: rgba(7, 1, 67, 0.05);
  line-height: 0.66em;
  color: #ffff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border: 0;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
}

@media (max-width: 425px) {
  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.wpo-site-header .header-right .search-toggle-btn .fi,
.wpo-site-header .header-right .cart-toggle-btn .fi {
  font-size: 22px;
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .search-toggle-btn .fi:before,
  .wpo-site-header .header-right .cart-toggle-btn .fi:before {
    font-size: 18px;
  }
}

@media (max-width: 425px) {
  .wpo-site-header .header-right .search-toggle-btn .fi:before,
  .wpo-site-header .header-right .cart-toggle-btn .fi:before {
    font-size: 20px;
  }
}

.wpo-site-header .header-right .search-toggle-btn .ti-close,
.wpo-site-header .header-right .cart-toggle-btn .ti-close {
  display: block;
  line-height: 20px;
  position: relative;
  top: -2px;
}

/*** cart-search-contact ***/
.cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.cart-search-contact .fi {
  font-size: 30px;
}

.cart-search-contact > div {
  float: left;
  position: relative;
}

.cart-search-contact > div + div {
  margin-left: 12px;
}

.cart-search-contact .header-search-form {
  position: absolute;
  width: 350px;
  right: 0;
  top: 79px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
}

@media (max-width: 991px) {
  .cart-search-contact .header-search-form {
    top: 65px;
  }
}

@media (max-width: 767px) {
  .cart-search-contact .header-search-form {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .cart-search-contact .header-search-form {
    width: 260px;
    padding: 15px;
  }
}

.cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 18px;
}

.cart-search-contact form div {
  position: relative;
}

.cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
  font-size: 22px;
}

.cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dedede;
}

.cart-search-contact input:focus {
  box-shadow: none;
  border-color: #0a2c37;
}

.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: scale(1);
}

.header-search-area {
  background: #fff;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.header-search-area h3 {
  font-size: 45px;
  margin: 0 0 1em;
}

.header-search-area form {
  position: relative;
}

.header-search-area input {
  height: 50px;
  font-size: 18px;
  font-size: 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  box-shadow: none;
}

.header-search-area input:focus {
  box-shadow: none;
  border-color: #0a2c37;
}

.header-search-area form button {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-size: 1.33333rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.header-search-area form button:focus {
  border: none;
  outline: none;
}

.header-search-area .close-form {
  position: absolute;
  right: 35px;
  top: 35px;
  bottom: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.header-search-area .close-form button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-size: 0.86667rem;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  z-index: 99;
}

.header-search-area .close-form button:focus {
  border: 0;
  outline: 0;
}

.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

.wpo-site-header .navigation > .container {
  position: relative;
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #0a2c37;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    padding: 0;
  }

  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar > ul > li > a {
    font-size: 16px;
    padding: 40px 30px;
    display: block;
    position: relative;
    text-transform: capitalize;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
  }

  .wpo-site-header #navbar > ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 225px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
  }

  .wpo-site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: #ffff;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    text-transform: capitalize;
  }

  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #0a2c37;
    content: "";
    transition: all 0.3s;
    border-radius: 5px;
  }

  .wpo-site-header #navbar > ul > li .sub-menu a:hover,
  .wpo-site-header #navbar > ul > li .sub-menu a.active {
    color: #0a2c37;
  }

  .wpo-site-header #navbar > ul > li .sub-menu a:hover:after,
  .wpo-site-header #navbar > ul > li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
    transition: all 0.3s;
    transform: none;
    transform-origin: none;
    transition: all 0.3s ease-in-out 0s;
  }

  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }

  .wpo-site-header
    #navbar
    > ul
    > li
    > .sub-menu
    > .menu-item-has-children
    > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6111111111rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
  }

  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li a {
    display: block;
    font-size: 15px;
    font-size: 0.8333333333rem;
    color: #fff;
    font-weight: 600;
  }

  .wpo-site-header #navbar > ul > li a:hover,
  .wpo-site-header #navbar > ul > li a.active {
    color: #fff;
  }

  .wpo-site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }

  .wpo-site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }

  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }

  .wpo-site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }

  .wpo-site-header #navbar > ul .menu-item-has-children > a:hover,
  .wpo-site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }

  .wpo-site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6111111111rem;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }

  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }

  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate {
    color: #fff;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header .open-btn {
    display: none;
  }

  .wpo-site-header #navbar .close-navbar {
    display: none;
  }
}

.wpo-site-header .menu-close {
  display: none;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .container {
    width: 100%;
  }

  .wpo-site-header .mobail-menu button {
    background-color: #0a2c37;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }

  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }

  .wpo-site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 4px;
  }

  .wpo-site-header .mobail-menu button span.first-angle {
    margin-top: 2px;
  }

  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }

  .wpo-site-header .mobail-menu button .sr-only {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar {
    background: #0a2c37;
    display: block;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }

  .wpo-site-header #navbar > ul {
    position: relative;
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #0a2c37;
  }

  .wpo-site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }

  .wpo-site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #fff;
    border: 0;
    text-align: center;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }

  .wpo-site-header #navbar.slideInn {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 18px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

.wpo-site-header .navbar-header .navbar-brand {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0 !important;
}

/* @media (max-width: 1200px) {
  .wpo-site-header .navbar-header .navbar-brand {
    padding-left: 30px;
  }
} */

@media (max-width: 991px) {
  .wpo-site-header .navbar-header .navbar-brand {
    padding-left: 0;
  }
}

.wpo-site-header .navbar-header .navbar-brand img {
  max-width: 70px;
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}

@media (max-width: 425px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 60px;
  }
}

.wpo-site-header {
  padding-left: 30px;
  padding-right: 30px;
}

/* @media (max-width: 1700px) {
  .wpo-site-header {
    padding-left: 70px;
  }
} */

@media (max-width: 1399px) {
  .wpo-site-header {
    padding: 0 10px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 15px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    padding: 0;
  }
}

@media (max-width: 1700px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 32px 12px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 20px 14px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 30px 10px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .header-right .theme-btn {
    padding: 20px 12px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 15px 30px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header,
  .wpo-header-style-2 {
    z-index: 99999;
  }
}

.wpo-site-header .navigation.sticky-header {
  padding: 0 80px;
}

@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 50px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 30px;
  }
}

@media (max-width: 1700px) {
  .wpo-site-header .sticky-header .navigation.sticky-header {
    padding: 0 30px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 60px !important;
  }
  .wpo-site-header .navbar-header .logo-txt {
    font-size: 16px !important;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0;
  }
}

@media (max-width: 425px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0;
  }
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-section {
  background: url(../images/hero/hero-bg.jpg) no-repeat right;
  position: relative;
  height: 860px;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-left: 90px;
}

@media (max-width: 1199px) {
  .wpo-hero-section {
    margin-left: 60px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section {
    height: auto;
    padding: 100px 0;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section {
    margin-left: 30px;
    padding: 70px 0;
  }
}

.wpo-hero-section::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: linear-gradient(
    258deg,
    rgba(239, 239, 240, 0) 36.38%,
    rgba(239, 239, 240, 0.31) 41.51%,
    rgba(239, 239, 240, 0.56) 45.53%,
    #efeff0 51.07%,
    #efeff0 60.52%,
    #efeff0 71.12%,
    #efeff0 94.37%
  );
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 1199px) {
  .wpo-hero-section::before {
    background: linear-gradient(
      258deg,
      rgba(239, 239, 240, 0) -0.62%,
      rgba(239, 239, 240, 0.31) 12.51%,
      rgba(239, 239, 240, 0.56) 45.53%,
      #efeff0 51.07%,
      #efeff2 57.52%,
      #efeff0 72.12%,
      #efeff0 84.37%
    );
  }
}

.wpo-hero-section .hero-wapper .hero-side-left {
  position: absolute;
  left: -280px;
  top: 315px;
}

@media (max-width: 1199px) {
  .wpo-hero-section .hero-wapper .hero-side-left {
    left: -265px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section .hero-wapper .hero-side-left {
    top: 260px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section .hero-wapper .hero-side-left {
    left: -217px;
    top: 250px;
  }
}

.wpo-hero-section .hero-wapper .hero-side-left .hero-side-left-items {
  transform: rotate(90deg);
}

.wpo-hero-section .hero-wapper .hero-side-left .hero-side-left-items ul {
  display: flex;
}

.wpo-hero-section .hero-wapper .hero-side-left .hero-side-left-items ul li {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 75%;
  text-transform: capitalize;
  margin-right: 10px;
}

@media (max-width: 575px) {
  .wpo-hero-section .hero-wapper .hero-side-left .hero-side-left-items ul li {
    font-size: 15px;
    line-height: 65%;
  }
}

.wpo-hero-section .hero-wapper .hero-side-left .hero-side-left-items ul li a {
  color: #000;
  display: flex;
}

.wpo-hero-section .hero-wapper .hero-side-left .hero-side-left-items ul li a i {
  padding-right: 5px;
  font-size: 18px;
}

@media (max-width: 575px) {
  .wpo-hero-section
    .hero-wapper
    .hero-side-left
    .hero-side-left-items
    ul
    li
    a
    i {
    font-size: 16px;
  }
}

.wpo-hero-section .hero-wapper .hero-content {
  position: relative;
  z-index: 1;
  padding-left: 200px;
}

@media (max-width: 1199px) {
  .wpo-hero-section .hero-wapper .hero-content {
    padding-left: 80px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section .hero-wapper .hero-content {
    text-align: center;
    padding-left: 0;
  }
}

.wpo-hero-section .hero-wapper .hero-content .hero-title span {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-title span {
    font-size: 16px;
    line-height: 25px;
  }
}

.wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 {
  color: #000;
  font-size: 80px;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -2.4px;
  text-transform: capitalize;
  max-width: 790px;
  padding-top: 12px;
}

@media (max-width: 991px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 {
    font-size: 60px;
    line-height: 70px;
    max-width: 410px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 {
    font-size: 50px;
    line-height: 60px;
    padding-top: 0;
  }
}

@media (max-width: 425px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 {
    font-size: 41px;
    line-height: 48px;
  }
}

.wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 span {
  font-weight: 300;
  font-size: 80px;
}

@media (max-width: 767px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 span {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 span {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-sub-title h2 span {
    font-size: 41px;
    line-height: 48px;
  }
}

.wpo-hero-section .hero-wapper .hero-content .hero-btns {
  display: flex;
  padding-top: 25px;
}

@media (max-width: 767px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-btns {
    padding-top: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 425px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-btns {
    display: block;
  }
}

@media (max-width: 767px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-btns .theme-btn-s2 {
    padding: 15px 30px;
    font-size: 14px;
    line-height: 22px;
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section
    .hero-wapper
    .hero-content
    .hero-btns
    .theme-btn-s2::before {
    top: 50%;
  }
}

@media (max-width: 418px) {
  .wpo-hero-section
    .hero-wapper
    .hero-content
    .hero-btns
    .theme-btn-s2::before {
    top: 52%;
  }
}

.wpo-hero-section .hero-wapper .hero-content .hero-content-shape {
  position: absolute;
  top: -47px;
  left: 150px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-content-shape {
    left: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section .hero-wapper .hero-content .hero-content-shape {
    display: none;
  }
}

.wpo-hero-section .shape-2 {
  position: absolute;
  bottom: 63px;
  left: -64px;
}

@media (max-width: 1199px) {
  .wpo-hero-section .shape-2 {
    left: -51px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section .shape-2 {
    display: none;
  }
}

.wpo-hero-section .shape-2 img {
  animation: wave 6s ease-in-out infinite;
}

/* hero style 2*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #efeff0;
  overflow: hidden;
  z-index: 1;
}

.hero-slider .slide-inner {
  position: absolute;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-slider .slide-inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 34, 125, 0.4);
    z-index: -1;
  }
}

.hero-slider .slide-inner .bottom-shape {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

@media (max-width: 767px) {
  .hero-slider .slide-content {
    padding: 30px 15px;
  }
}

.hero-slider .slide-content .slide-title {
  position: absolute;
  top: 70px;
  right: 250px;
}

@media (max-width: 1600px) {
  .hero-slider .slide-content .slide-title {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .hero-slider .slide-content .slide-title {
    position: unset;
    padding-top: 90px;
    text-align: center;
  }
}

.hero-slider .slide-content .slide-title p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  max-width: 413px;
}

@media (max-width: 575px) {
  .hero-slider .slide-content .slide-title p {
    font-size: 18px;
    line-height: 26px;
    max-width: 413px;
  }
}

.hero-slider .slide-content .slide-title .hero-btn {
  padding-top: 30px;
}

@media (max-width: 575px) {
  .hero-slider .slide-content .slide-title .hero-btn {
    padding-top: 20px;
  }
}

.hero-slider .slide-content .slide-title .hero-btn .theme-btn {
  padding: 15px 54px;
  background-color: #fff;
  color: #000;
}

.hero-slider .slide-content .slide-title .hero-btn .theme-btn:hover {
  color: #fff;
}

.hero-slider .slide-content .slide-sub-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0a2c37;
}

.hero-slider .slide-content .slide-sub-title h2 {
  text-align: center;
  margin: 0;
  color: #c9a24d;
  font-size: 140px;
  font-weight: 600;
  line-height: 180px;
  letter-spacing: -4.2px;
  text-transform: capitalize;
  border-bottom: 4px double #c9a24d;
}

@media (max-width: 1845px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 40px;
    line-height: 170px;
  }
}

@media (max-width: 1600px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 32px;
    line-height: 150px;
    letter-spacing: 1px;
    border-bottom: 4px double #c9a24d;
  }
  
}

@media (max-width: 1399px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 32px;
    line-height: 60px;
    border-bottom: 4px double #c9a24d;
    letter-spacing: 1px;
  }
}

@media (max-width: 1199px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 32px;
    line-height: 110px;
    border-bottom: 4px double #c9a24d;
    letter-spacing: 1px;
  }
}

@media (max-width: 991px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 28px;
    line-height: 95px;
    border-bottom: 4px double #c9a24d;
    letter-spacing: 1px;
  }
}

@media (max-width: 767px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 25px;
    line-height: 60px;
    letter-spacing: 1px;
  }
}

@media (max-width: 425px) {
  .hero-slider .slide-content .slide-sub-title h2 {
    font-size: 20px;
    line-height: 43px;
    letter-spacing: 1px;
  }
}

.hero-slider .slide-content .hero-circle {
  position: absolute;
  left: 250px;
  top: 200px;
}

@media (max-width: 991px) {
  .hero-slider .slide-content .hero-circle {
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero-slider .slide-content .hero-circle .circle-content {
  width: 160px;
  height: 160px;
  position: relative;
  background: rgba(1, 19, 71, 0.4);
  border: 1px solid #0a2c37;
  padding: 5px;
  box-shadow: 0 2px 12px rgba(4, 0, 52, 0.06);
  font-family: "DM Sans";
  font-size: 11px;
  letter-spacing: 6.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 100%;
  color: #fff;
}

.hero-slider .slide-content .hero-circle .circle-content .rotate-anm {
  animation: roted 30s linear infinite;
}

.hero-slider .slide-content .hero-circle .circle-content svg textPath {
  fill: #fff;
}

.hero-slider .slide-content .hero-circle .circle-content .arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke-width: 0.818px;
  width: 82px;
  height: 82px;
  line-height: 79px;
  border-radius: 82px;
  text-align: center;
}

.hero-slider .swiper-slide {
  overflow: hidden;
}

.hero-slider .swiper-container,
.hero-slider .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner,
.hero-slider .hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  opacity: 0.9;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-pagination-bullet {
    display: none;
  }
}

.hero-slider .swiper-pagination-bullet-active {
  color: #fff;
  background: #0a2c37;
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 15px;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 25px;
}

.hero-slider
  .swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 8px;
  color: #fff;
  background: #fff;
  width: 10px;
  height: 10px;
}

.hero-slider .gradient-overlay + .container {
  position: relative;
  z-index: 11;
}

.hero-slider .swiper-slide {
  position: relative;
  z-index: 11;
}

@keyframes rotateAniamtion {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes roted {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* hero style 3*/
.wpo-hero-section-s3 {
  position: relative;
  height: 900px;
  background: #f5f8fe;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

@media (max-width: 991px) {
  .wpo-hero-section-s3 {
    height: auto;
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section-s3 {
    padding: 70px 0;
  }
}

.wpo-hero-section-s3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 60%;
  background: #f5f8fe;
  clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
}

.wpo-hero-section-s3 .hero-right-content .hero-title span {
  color: #0a2c37;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .wpo-hero-section-s3 .hero-right-content .hero-title span {
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-section-s3 .hero-right-content .hero-title span {
    font-size: 15px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-section-s3 .hero-right-content .hero-title span {
    font-size: 17px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-section-s3 .hero-right-content .hero-title span {
    font-size: 16px;
    line-height: 25px;
  }
}

.wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 {
  margin: 0;
  font-size: 80px;
  font-weight: 600;
  line-height: 85px;
  letter-spacing: -2.4px;
  text-transform: capitalize;
  padding-top: 20px;
}

@media (max-width: 1399px) {
  .wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 {
    font-size: 70px;
    line-height: 75px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 {
    font-size: 60px;
    line-height: 65px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 {
    font-size: 55px;
    line-height: 60px;
    padding-top: 10px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 {
    font-size: 45px;
    line-height: 54px;
  }
}

@media (max-width: 425px) {
  .wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

.wpo-hero-section-s3 .hero-right-content .hero-sub-title h2 span {
  color: #0a2c37;
}

.wpo-hero-section-s3 .hero-right-content .hero-discription {
  padding-top: 20px;
}

@media (max-width: 991px) {
  .wpo-hero-section-s3 .hero-right-content .hero-discription {
    padding-top: 10px;
  }
}

.wpo-hero-section-s3 .hero-right-content .hero-discription p {
  margin: 0;
  color: #ffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

@media (max-width: 575px) {
  .wpo-hero-section-s3 .hero-right-content .hero-discription p {
    font-size: 16px;
    line-height: 26.8px;
  }
}

.wpo-hero-section-s3 .hero-right-content .hero-btns {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .wpo-hero-section-s3 .hero-right-content .hero-btns {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-section-s3 .hero-right-content .hero-btns {
    gap: 20px;
  }
}

.wpo-hero-section-s3 .hero-right-content .hero-btns .hero-btn-video .video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  text-align: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
  animation: spineerb 2s infinite;
}

@media (max-width: 575px) {
  .wpo-hero-section-s3
    .hero-right-content
    .hero-btns
    .hero-btn-video
    .video-btn {
    width: 50px;
    height: 50px;
  }
}

.wpo-hero-section-s3
  .hero-right-content
  .hero-btns
  .hero-btn-video
  .video-btn
  svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 575px) {
  .wpo-hero-section-s3
    .hero-right-content
    .hero-btns
    .hero-btn-video
    .video-btn
    svg {
    width: 20px;
    height: 20px;
  }
}

.wpo-hero-section-s3 .hero-image .image {
  position: absolute;
  left: 0;
  top: 0;
  height: 900px;
  width: 55%;
  z-index: -11;
  background: url(../images/hero/slide-3.jpg) no-repeat right center;
}

@media (max-width: 991px) {
  .wpo-hero-section-s3 .hero-image .image {
    display: none;
  }
}

/*--------------------------------------------------------------
4. footer-section
--------------------------------------------------------------*/
.footer-common,
.footer-section-s1 {
  position: relative;
  background: #dddddd;
  overflow: hidden;
  z-index: 1;
  padding-top: 0;
  background-color: #0a2c37;
}

@media (max-width: 991px) {
  .footer-common,
  .footer-section-s1 {
    padding-top: 0;
  }
}

.footer-common .footer,
.footer-section-s1 .footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-top: 1px dashed #C9A24D;
}

@media (max-width: 991px) {
  .footer-common .footer,
  .footer-section-s1 .footer {
    flex-wrap: wrap;
  }
}

.footer-common .item,
.footer-section-s1 .item {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .footer-common .item,
  .footer-section-s1 .item {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .footer-common .item,
  .footer-section-s1 .item {
    padding: 30px 0;
  }
}

.footer-common .item ul li,
.footer-section-s1 .item ul li {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-common .item ul li,
  .footer-section-s1 .item ul li {
    font-size: 15px;
  }
}

.footer-common .item ul li a,
.footer-section-s1 .item ul li a {
  color: #0a2c37;
  transition: all 0.3s ease-in-out;
}

.footer-common .item ul li a:hover,
.footer-section-s1 .item ul li a:hover {
  color: #f5f8fe;
}

.footer-common .item ul li + li,
.footer-section-s1 .item ul li + li {
  padding-top: 15px;
}

.footer-common .item:first-child,
.footer-section-s1 .item:first-child {
  max-width: 550px;
  width: 100%;
  padding-left: 0px;
}

@media (max-width: 991px) {
  .footer-common .item:first-child,
  .footer-section-s1 .item:first-child {
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-common .item:first-child,
  .footer-section-s1 .item:first-child {
    max-width: 100%;
    width: 100%;
  }
}

.footer-common .item:nth-child(2),
.footer-section-s1 .item:nth-child(2) {
  max-width: 240px;
  width: 100%;
  padding-left: 95px;
  border-left: 1px solid #2c2e34;
}

@media (max-width: 1399px) {
  .footer-common .item:nth-child(2),
  .footer-section-s1 .item:nth-child(2) {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .footer-common .item:nth-child(2),
  .footer-section-s1 .item:nth-child(2) {
    padding-left: 20px;
    max-width: 100%;
    width: 50%;
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .footer-common .item:nth-child(2),
  .footer-section-s1 .item:nth-child(2) {
    padding-left: 0;
    width: 100%;
    padding-top: 0;
    border-top: 0;
    padding-bottom: 30px;
  }
}

.footer-common .item:nth-child(3),
.footer-section-s1 .item:nth-child(3) {
  max-width: 180px;
  width: 100%;
  padding-left: 35px;
}

@media (max-width: 1399px) {
  .footer-common .item:nth-child(3),
  .footer-section-s1 .item:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .footer-common .item:nth-child(3),
  .footer-section-s1 .item:nth-child(3) {
    padding-left: 0;
    border-top: 0;
    padding-top: 0;
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-common .item:nth-child(3),
  .footer-section-s1 .item:nth-child(3) {
    width: 100%;
    padding-bottom: 30px;
  }
}

.footer-common .item:last-child,
.footer-section-s1 .item:last-child {
  max-width: 180px;
  width: 100%;
  padding-left: 0;
}

@media (max-width: 991px) {
  .footer-common .item:last-child,
  .footer-section-s1 .item:last-child {
    padding-left: 20px;
    border-top: 0;
    padding-top: 0;
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-common .item:last-child,
  .footer-section-s1 .item:last-child {
    width: 100%;
    padding-left: 0;
    padding-bottom: 30px;
  }
}

.footer-common .title,
.footer-section-s1 .title {
  color: #002025;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-common .widget-newsletter h2,
.footer-section-s1 .widget-newsletter h2 {
  color: #002025;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  max-width: 381px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .footer-common .widget-newsletter h2,
  .footer-section-s1 .widget-newsletter h2 {
    font-size: 30px;
  }
}

@media (max-width: 375px) {
  .footer-common .widget-newsletter h2,
  .footer-section-s1 .widget-newsletter h2 {
    font-size: 27px;
  }
}

.footer-common .widget-newsletter .newsletter .form-fild,
.footer-section-s1 .widget-newsletter .newsletter .form-fild {
  display: flex;
  gap: 10px;
}

@media (max-width: 1199px) {
  .footer-common .widget-newsletter .newsletter .form-fild,
  .footer-section-s1 .widget-newsletter .newsletter .form-fild {
    gap: 5px;
  }
}

.footer-common .widget-newsletter .newsletter .form-fild .input-items,
.footer-section-s1 .widget-newsletter .newsletter .form-fild .input-items {
  max-width: 335px;
  width: 100%;
}

@media (max-width: 767px) {
  .footer-common .widget-newsletter .newsletter .form-fild .input-items,
  .footer-section-s1 .widget-newsletter .newsletter .form-fild .input-items {
    max-width: 280px;
  }
}

.footer-common .widget-newsletter .newsletter .form-fild .input-items .fild,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  border: transparent;
  transition: all 0.3s ease-in-out;
  background: #fff;
  padding: 14px 25px;
  width: 100%;
  z-index: 1;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #f3f4f6;
}

@media (max-width: 1199px) {
  .footer-common .widget-newsletter .newsletter .form-fild .input-items .fild,
  .footer-section-s1
    .widget-newsletter
    .newsletter
    .form-fild
    .input-items
    .fild {
    padding: 14px 17px;
  }
}

@media (max-width: 767px) {
  .footer-common .widget-newsletter .newsletter .form-fild .input-items .fild,
  .footer-section-s1
    .widget-newsletter
    .newsletter
    .form-fild
    .input-items
    .fild {
    max-width: 280px;
    padding: 12px 17px;
  }
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild:focus-visible,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild::-webkit-input-placeholder,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild::-webkit-input-placeholder {
  color: #ffff;
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild::-moz-placeholder,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild::-moz-placeholder {
  color: #ffff;
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild:-ms-input-placeholder,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild:-ms-input-placeholder {
  color: #ffff;
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild:-moz-placeholder,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-items
  .fild:-moz-placeholder {
  color: #ffff;
}

.footer-common .widget-newsletter .newsletter .form-fild .input-btn,
.footer-section-s1 .widget-newsletter .newsletter .form-fild .input-btn {
  max-width: 210px;
  width: 100%;
}

@media (max-width: 1199px) {
  .footer-common .widget-newsletter .newsletter .form-fild .input-btn,
  .footer-section-s1 .widget-newsletter .newsletter .form-fild .input-btn {
    max-width: 140px;
  }
}

@media (max-width: 425px) {
  .footer-common .widget-newsletter .newsletter .form-fild .input-btn,
  .footer-section-s1 .widget-newsletter .newsletter .form-fild .input-btn {
    max-width: 113px;
  }
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-btn
  .theme-btn-s2,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-btn
  .theme-btn-s2 {
  padding: 17px 46px;
  padding-right: 68px;
  border-radius: 6px;
}

@media (max-width: 1199px) {
  .footer-common
    .widget-newsletter
    .newsletter
    .form-fild
    .input-btn
    .theme-btn-s2,
  .footer-section-s1
    .widget-newsletter
    .newsletter
    .form-fild
    .input-btn
    .theme-btn-s2 {
    padding: 17px 20px;
    padding-right: 40px;
  }
}

@media (max-width: 1199px) {
  .footer-common
    .widget-newsletter
    .newsletter
    .form-fild
    .input-btn
    .theme-btn-s2::before,
  .footer-section-s1
    .widget-newsletter
    .newsletter
    .form-fild
    .input-btn
    .theme-btn-s2::before {
    right: 27px;
  }
}

.footer-common
  .widget-newsletter
  .newsletter
  .form-fild
  .input-btn
  .theme-btn-s2:hover::before,
.footer-section-s1
  .widget-newsletter
  .newsletter
  .form-fild
  .input-btn
  .theme-btn-s2:hover::before {
  right: 45px;
}

@media (max-width: 1199px) {
  .footer-common
    .widget-newsletter
    .newsletter
    .form-fild
    .input-btn
    .theme-btn-s2:hover::before,
  .footer-section-s1
    .widget-newsletter
    .newsletter
    .form-fild
    .input-btn
    .theme-btn-s2:hover::before {
    right: 24px;
  }
}

.footer-common .widget-newsletter .newsletter p,
.footer-section-s1 .widget-newsletter .newsletter p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding-top: 30px;
  max-width: 316px;
}

@media (max-width: 991px) {
  .footer-common .widget-newsletter .newsletter p,
  .footer-section-s1 .widget-newsletter .newsletter p {
    font-size: 14px;
    padding-top: 20px;
  }
}

.footer-common .widget-newsletter .newsletter p a,
.footer-section-s1 .widget-newsletter .newsletter p a {
  color: #0a2c37;
  text-decoration: underline;
}

/* footer-section-s1 */
.footer-section-s1 .footer-topbar {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 991px) {
  .footer-section-s1 .footer-topbar {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .footer-section-s1 .footer-topbar {
    padding: 25px 0;
  }
}

.footer-section-s1 .footer-topbar .wraper .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
}

@media (max-width: 1610px) {
  .footer-section-s1 .footer-topbar .wraper .marquee {
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  .footer-section-s1 .footer-topbar .wraper {
    display: block;
    text-align: center;
  }
}

.footer-section-s1 .footer-topbar .booking-btn a {
  width: 180px;
  height: 180px;
  background: #0a2c37;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  text-transform: capitalize;
  color: #036c5f;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 991px) {
  .footer-section-s1 .footer-topbar .booking-btn a {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 575px) {
  .footer-section-s1 .footer-topbar .booking-btn a {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
}

.footer-section-s1 .footer-topbar .booking-btn a small {
  display: block;
  max-width: 121px;
  color: #fff;
}

@media (max-width: 575px) {
  .footer-section-s1 .footer-topbar .booking-btn a small {
    max-width: 100px;
  }
}

.footer-section-s1 .footer-topbar:hover .booking-btn a {
  visibility: visible;
  opacity: 1;
}

.footer-section-s1 .footer-topbar .marquee-s2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.footer-section-s1 .footer-topbar .marquee-s2::before,
.footer-section-s1 .footer-topbar .marquee-s2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.footer-section-s1 .footer-topbar .marquee-s2::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.footer-section-s1 .footer-topbar .marquee-s2::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.footer-section-s1 .footer-topbar h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 100px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .footer-section-s1 .footer-topbar h2 {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .footer-section-s1 .footer-topbar h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

.footer-section-s1 .footer-topbar h2 small {
  display: block;
  margin: 0 5px;
}

.footer-section-s1 .footer-lower .row {
  border-top: 1px solid #2c2e34;
  padding: 25px 0;
}

.footer-section-s1 .footer-lower p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
}

@media (max-width: 991px) {
  .footer-section-s1 .footer-lower p {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer-section-s1 .footer-lower p {
    font-size: 15px;
  }
}

.footer-section-s1 .footer-lower p a {
  color: #c9a24d;
  transition: all ease 0.4s;
}

.footer-section-s1 .footer-lower p a:hover {
  color: #0a2c37;
}

.footer-section-s1 .widget-social {
  text-align: right;
  margin-top: 0;
}

@media (max-width: 991px) {
  .footer-section-s1 .widget-social {
    text-align: center;
  }
}

.footer-section-s1 .widget-social li {
  display: inline;
  margin: 0 10px;
}

@media (max-width: 575px) {
  .footer-section-s1 .widget-social li {
    margin: 0 5px;
  }
}

.footer-section-s1 .widget-social li:last-child {
  margin-right: 0;
}

.footer-section-s1 .widget-social li a {
  color: #d1d1d1;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .footer-section-s1 .widget-social li a {
    font-size: 15px;
    line-height: 22px;
  }
}

.footer-section-s1 .widget-social li a:hover {
  color: #0a2c37;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 1111;
  opacity: 0;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*3.2 wpo-about-section*/
.wpo-about-section {
  padding: 110px 0;
  padding-bottom: 230px;
}

@media (max-width: 991px) {
  .wpo-about-section {
    padding: 80px 0;
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .about-title-left {
    text-align: center;
  }
}

.wpo-about-section .about-title-left span {
  color: #0a2c37;
  font-size: 24px;
  font-weight: 600;
  line-height: 65px;
  letter-spacing: -0.24px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .wpo-about-section .about-title-left span {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .wpo-about-section .about-title-left span {
    font-size: 20px;
    line-height: 35px;
  }
}

.wpo-about-section .about-title-left span i {
  line-height: unset;
  margin-right: 10px;
  position: relative;
  top: -2px;
  max-width: 35px;
}

.wpo-about-section .about-title-right {
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .wpo-about-section .about-title-right {
    text-align: center;
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-about-section .about-title-right {
    margin-bottom: 30px;
  }
}

.wpo-about-section .about-title-right h2 {
  color: #ffff;
  font-size: 55px;
  font-weight: 500;
  line-height: 65px;
  letter-spacing: -1.1px;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-title-right h2 {
    font-size: 43px;
    line-height: 55px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section .about-title-right h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-title-right h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 425px) {
  .wpo-about-section .about-title-right h2 {
    font-size: 23px;
    line-height: 33px;
  }
}

.wpo-about-section .about-title-right h2 span {
  font-size: 55px;
  font-weight: 300;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-title-right h2 span {
    font-size: 43px;
    line-height: 55px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section .about-title-right h2 span {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-title-right h2 span {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 425px) {
  .wpo-about-section .about-title-right h2 span {
    font-size: 25px;
    line-height: 35px;
  }
}

.wpo-about-section .about-max .about-wrap {
  display: flex;
  text-align: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .wpo-about-section .about-max .about-wrap {
    flex-wrap: wrap;
  }
}

.wpo-about-section .about-max .about-wrap .about-items {
  max-width: 571px;
  width: 100%;
  border-radius: 41px;
  text-align: center;
  padding: 80px 116px 65px;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-max .about-wrap .about-items {
    padding: 40px 70px 50px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .about-max .about-wrap .about-items {
    padding: 25px 40px 30px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-max .about-wrap .about-items {
    padding: 40px;
    margin-bottom: 30px;
  }
}

@media (max-width: 429px) {
  .wpo-about-section .about-max .about-wrap .about-items {
    padding: 40px 10px;
  }
}

.wpo-about-section .about-max .about-wrap .about-items .items-image img {
  border-radius: 41px;
}

.wpo-about-section .about-max .about-wrap .about-items .about-text {
  padding-top: 45px;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text {
    padding-top: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text {
    padding-top: 20px;
  }
}

.wpo-about-section .about-max .about-wrap .about-items .about-text h3 {
  margin: 0;
  color: #000;
  font-size: 50px;
  font-weight: 500;
  line-height: 35px;
  text-transform: capitalize;
  padding-bottom: 60px;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text h3 {
    padding-bottom: 40px;
    font-size: 45px;
    line-height: 33px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text h3 {
    padding-bottom: 30px;
    font-size: 40px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text h3 {
    font-size: 35px;
    line-height: 27px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text h3 {
    padding-bottom: 25px;
  }
}

@media (max-width: 429px) {
  .wpo-about-section .about-max .about-wrap .about-items .about-text h3 {
    font-size: 29px;
  }
}

.wpo-about-section .about-max .about-wrap .about-items .about-text ul li + li {
  margin-top: 17px;
}

.wpo-about-section .about-max .about-wrap .about-items .about-text ul li span {
  border-radius: 20.5px;
  background: #fff;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.02);
  display: inline-block;
  font-size: 16px;
  font-family: "Parkinsans";
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  padding: 7px 25px;
  padding-left: 49px;
  position: relative;
}

@media (max-width: 991px) {
  .wpo-about-section
    .about-max
    .about-wrap
    .about-items
    .about-text
    ul
    li
    span {
    font-size: 15px;
  }
}

@media (max-width: 429px) {
  .wpo-about-section
    .about-max
    .about-wrap
    .about-items
    .about-text
    ul
    li
    span {
    font-size: 13px;
    padding: 6px 17px;
    padding-left: 40px;
  }
}

.wpo-about-section
  .about-max
  .about-wrap
  .about-items
  .about-text
  ul
  li
  span:before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  height: 29px;
  content: "\e64c";
  background: #f6f7f9;
  font-family: "themify";
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s;
}

@media (max-width: 429px) {
  .wpo-about-section
    .about-max
    .about-wrap
    .about-items
    .about-text
    ul
    li
    span:before {
    width: 22px;
    height: 22px;
    font-size: 10px;
    line-height: 22px;
  }
}

.wpo-about-section
  .about-max
  .about-wrap
  .about-items
  .about-text
  ul
  li:hover
  span:before,
.wpo-about-section
  .about-max
  .about-wrap
  .about-items
  .about-text
  ul
  li.active
  span:before {
  background: #0a2c37;
  color: #fff;
}

.wpo-about-section .about-max .about-wrap .about-items:nth-child(1) {
  background: #0a2c37;
  transform: rotate(-10.459deg);
  position: relative;
  left: 30px;
  top: 14px;
  padding: 80px 70px 65px;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(1) {
    padding: 40px 70px 50px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(1) {
    padding: 25px 40px 30px;
    left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(1) {
    transform: none;
    top: 0;
    padding: 40px;
  }
}

@media (max-width: 429px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(1) {
    transform: none;
    top: 0;
    padding: 40px 10px;
  }
}

.wpo-about-section
  .about-max
  .about-wrap
  .about-items:nth-child(1)
  .about-text
  h3 {
  color: #fff;
}

.wpo-about-section
  .about-max
  .about-wrap
  .about-items:nth-child(1)
  .about-text
  ul
  li
  span {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
}

.wpo-about-section
  .about-max
  .about-wrap
  .about-items:nth-child(1)
  .about-text
  ul
  li
  span:before {
  color: #000;
}

.wpo-about-section
  .about-max
  .about-wrap
  .about-items:nth-child(1)
  .about-text
  li:hover
  span:before {
  background: #0a2c37;
  color: #fff;
}

.wpo-about-section .about-max .about-wrap .about-items:nth-child(2) {
  border-radius: 41px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(51.5px);
  backdrop-filter: blur(51.5px);
  position: relative;
  margin-left: -190px;
}

@media (max-width: 1399px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(2) {
    margin-left: -210px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(2) {
    margin-left: -260px;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(2) {
    margin-left: 0;
    background-color: rgba(233, 233, 233, 0.62);
  }
}

.wpo-about-section .about-max .about-wrap .about-items:nth-child(3) {
  padding: 0;
  transform: rotate(10.847deg);
  position: relative;
  z-index: -1;
  top: 14px;
  margin-left: -226px;
}

@media (max-width: 1430px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(3) {
    right: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(3) {
    right: 0;
  }
}

@media (max-width: 767px) {
  .wpo-about-section .about-max .about-wrap .about-items:nth-child(3) {
    transform: none;
    top: 0;
    margin-left: 0;
    margin-bottom: 0;
  }
}

/*3.3 marquee-section*/
.marquee-section .marquee_container,
.marquee-section-s2 .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #00cc83;
  padding: 0.5rem 0;
}

.marquee-section .marquee,
.marquee-section-s2 .marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@media (max-width: 1610px) {
  .marquee-section .marquee,
  .marquee-section-s2 .marquee {
    padding-left: 70px;
  }
}

.marquee-section h2,
.marquee-section-s2 h2 {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 0;
  color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 65px;
  text-transform: uppercase;
}

.marquee-section h2 span,
.marquee-section-s2 h2 span {
  text-decoration: underline;
}

@media (max-width: 1399px) {
  .marquee-section h2,
  .marquee-section-s2 h2 {
    margin-right: 20px;
  }
}

@media (max-width: 575px) {
  .marquee-section h2,
  .marquee-section-s2 h2 {
    font-size: 18px;
    line-height: 45px;
  }
}

.marquee-section h2 img,
.marquee-section-s2 h2 img {
  line-height: 50px;
  padding-right: 25px;
}

@media (max-width: 1399px) {
  .marquee-section h2 img,
  .marquee-section-s2 h2 img {
    padding-right: 20px;
  }
}

/*3.4 wpo-service-section*/
.wpo-service-section {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 190px;
  background: #061d61;
  border-bottom-right-radius: 48px;
  border-bottom-left-radius: 48px;
}

@media (max-width: 991px) {
  .wpo-service-section {
    padding-bottom: 160px;
  }
}

@media (max-width: 767px) {
  .wpo-service-section {
    padding: 60px 0;
    padding-bottom: 130px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section {
    padding-bottom: 100px;
  }
}

.wpo-service-section .wpo-section-title span {
  color: white;
}

.wpo-service-section .wpo-section-title h2 {
  color: white;
}

.wpo-service-section .wpo-section-title p {
  color: white;
}

.wpo-service-section .service-wrap {
  display: flex;
  overflow: hidden;
  height: 540px;
  gap: 20px;
}

@media (max-width: 991px) {
  .wpo-service-section .service-wrap {
    flex-direction: column;
    height: 650px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section .service-wrap {
    flex-direction: column;
    height: 500px;
    gap: 10px;
  }
}

.wpo-service-section .service-wrap .service-items {
  overflow: hidden;
  flex: 1;
  color: #0b1f4b;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  writing-mode: vertical-rl;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #fff;
}

@media (max-width: 991px) {
  .wpo-service-section .service-wrap .service-items {
    writing-mode: horizontal-tb;
  }
}

.wpo-service-section .service-wrap .service-items .service-default .service-bg {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-size: 22px;
  position: relative;
  z-index: 11;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-default
    .service-bg {
    writing-mode: horizontal-tb;
    transform: rotate(0);
  }
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-default
  .service-bg
  h3 {
  margin: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 63px;
  text-transform: capitalize;
  padding-top: 7px;
}

@media (max-width: 1199px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-default
    .service-bg
    h3 {
    font-size: 25px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-default
    .service-bg
    h3 {
    font-size: 16px;
    line-height: 40px;
  }
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-default
  .service-bg
  img {
  transform: rotate(89.445deg);
}

@media (max-width: 1199px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-default
    .service-bg
    img {
    width: 100%;
    max-width: 70px;
  }
}

@media (max-width: 991px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-default
    .service-bg
    img {
    transform: rotate(0);
    max-width: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-default
    .service-bg
    img {
    max-width: 40px;
  }
}

.wpo-service-section .service-wrap .service-items .service-expanded {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-expanded
  .service-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-expanded
  .service-content {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: 50px;
  left: 40px;
  width: 400px;
}

@media (max-width: 1399px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-expanded
    .service-content {
    left: 15px;
  }
}

@media (max-width: 1199px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-expanded
    .service-content {
    width: 330px;
  }
}

@media (max-width: 991px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-expanded
    .service-content {
    bottom: 20px;
    width: 100%;
  }
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-expanded
  .service-content
  h4 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 63px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-expanded
    .service-content
    h4 {
    font-size: 25px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-expanded
    .service-content
    h4 {
    font-size: 20px;
    line-height: 40px;
  }
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-expanded
  .service-content
  h4
  a {
  color: #fff;
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-expanded
  .service-content
  p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  max-width: 394px;
}

@media (max-width: 575px) {
  .wpo-service-section
    .service-wrap
    .service-items
    .service-expanded
    .service-content
    p {
    font-size: 15px;
    line-height: 20.8px;
    max-width: 263px;
  }
}

.wpo-service-section
  .service-wrap
  .service-items
  .service-expanded
  .service-content
  .arrow {
  position: relative;
  top: 0;
  bottom: auto;
  right: 0;
}

.wpo-service-section .service-wrap .active {
  flex: 3;
  writing-mode: horizontal-tb;
  padding: 20px;
  border: 0;
  border-radius: 30px;
}

.wpo-service-section .service-wrap .active::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 25.55%,
    rgba(0, 0, 0, 0) 37.62%,
    rgba(20, 35, 77, 0.37) 47.76%,
    rgba(31, 53, 116, 0.55) 60.64%,
    #0a2c37 71.95%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .wpo-service-section .service-wrap .active::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 30.55%,
      rgba(0, 0, 0, 0) 30.62%,
      rgba(20, 35, 77, 0.37) 40.76%,
      rgba(31, 53, 116, 0.55) 50.64%,
      #0a2c37 67.95%
    );
  }
}

.wpo-service-section .service-wrap .service-items.active .service-default {
  display: none;
}

.wpo-service-section .service-items.active .service-expanded {
  display: flex;
}

.wpo-service-section .shape {
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.wpo-service-section .shape svg {
  width: 481px;
  height: 121px;
}

@media (max-width: 767px) {
  .wpo-service-section .shape svg {
    height: 90px;
  }
}

.wpo-service-section .service-btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .wpo-service-section .service-btn {
    bottom: -30px;
  }
}

@media (max-width: 500px) {
  .wpo-service-section .service-btn {
    max-width: 300px;
    width: 100%;
    text-align: center;
  }
}

.wpo-service-section .box {
  position: absolute;
  background-color: #fff;
  width: 105px;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .wpo-service-section .box {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section .box {
    display: none;
  }
}

.wpo-service-section .box-2 {
  position: absolute;
  background-color: #00cc83;
  width: 105px;
  height: 100px;
  bottom: 100px;
  left: 105px;
  z-index: -1;
}

@media (max-width: 991px) {
  .wpo-service-section .box-2 {
    width: 60px;
    height: 60px;
    bottom: 60px;
    left: 60px;
  }
}

@media (max-width: 575px) {
  .wpo-service-section .box-2 {
    display: none;
  }
}

@media (max-width: 991px) {
  .wpo-video-section .booking-btn a {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 575px) {
  .wpo-video-section .booking-btn a {
    width: 90px;
    height: 90px;
  }
}

.wpo-video-section .booking-btn a svg {
  width: 25px;
  height: 25px;
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .wpo-video-section .booking-btn a svg {
    width: 16px;
    height: 16px;
  }
}

.wpo-video-section .booking-btn a small {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Parkinsans";
  font-size: 18px;
  font-weight: 600;
  line-height: 128%;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .wpo-video-section .booking-btn a small {
    font-size: 14px;
  }
}

.wpo-video-section .video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wpo-video-section .video-text h2 {
  color: #fff;
  font-size: 200px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
  text-transform: capitalize;
}

@media (max-width: 1500px) {
  .wpo-video-section .video-text h2 {
    font-size: 160px;
    line-height: 80%;
  }
}

@media (max-width: 1199px) {
  .wpo-video-section .video-text h2 {
    font-size: 140px;
    line-height: 70%;
  }
}

@media (max-width: 991px) {
  .wpo-video-section .video-text h2 {
    font-size: 110px;
  }
}

@media (max-width: 767px) {
  .wpo-video-section .video-text h2 {
    font-size: 78px;
  }
}

@media (max-width: 575px) {
  .wpo-video-section .video-text h2 {
    font-size: 62px;
  }
}

@media (max-width: 425px) {
  .wpo-video-section .video-text h2 {
    font-size: 45px;
  }
}

.wpo-video-section:hover .booking-btn a {
  visibility: visible;
  opacity: 1;
}

/*3.7 wpo-odometer-section*/
.wpo-odometer-section,
.wpo-odometer-section-s2 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .wpo-odometer-section,
  .wpo-odometer-section-s2 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .wpo-odometer-section,
  .wpo-odometer-section-s2 {
    padding-top: 60px;
  }
}

.wpo-odometer-section .odometer-title,
.wpo-odometer-section-s2 .odometer-title {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .wpo-odometer-section .odometer-title,
  .wpo-odometer-section-s2 .odometer-title {
    margin-bottom: 30px;
  }
}

.wpo-odometer-section .odometer-title h2,
.wpo-odometer-section-s2 .odometer-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .wpo-odometer-section .odometer-title h2,
  .wpo-odometer-section-s2 .odometer-title h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

.wpo-odometer-section .odometer-content,
.wpo-odometer-section-s2 .odometer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wpo-odometer-section .odometer-content,
  .wpo-odometer-section-s2 .odometer-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.wpo-odometer-section .odometer-content .odometer-items,
.wpo-odometer-section-s2 .odometer-content .odometer-items {
  position: relative;
  text-align: center;
  width: 100%;
}

@media (max-width: 991px) {
  .wpo-odometer-section .odometer-content .odometer-items,
  .wpo-odometer-section-s2 .odometer-content .odometer-items {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .wpo-odometer-section .odometer-content .odometer-items,
  .wpo-odometer-section-s2 .odometer-content .odometer-items {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

.wpo-odometer-section .odometer-content .odometer-items h2,
.wpo-odometer-section-s2 .odometer-content .odometer-items h2 {
  margin: 0;
  color: #ffffff;
  font-size: 64px;
  font-weight: 600;
  line-height: 82%;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .wpo-odometer-section .odometer-content .odometer-items h2,
  .wpo-odometer-section-s2 .odometer-content .odometer-items h2 {
    font-size: 60px;
  }
}

.wpo-odometer-section .odometer-content .odometer-items h2 .small,
.wpo-odometer-section-s2 .odometer-content .odometer-items h2 .small {
  font-size: 89px;
  font-weight: 500;
  line-height: 82%;
  position: relative;
  top: 6px;
}

@media (max-width: 575px) {
  .wpo-odometer-section .odometer-content .odometer-items h2 .small,
  .wpo-odometer-section-s2 .odometer-content .odometer-items h2 .small {
    font-size: 75px;
    top: 5px;
  }
}

.wpo-odometer-section .odometer-content .odometer-items h3,
.wpo-odometer-section-s2 .odometer-content .odometer-items h3 {
  margin: 0;
  margin-top: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  text-transform: lowercase;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

@media (max-width: 1199px) {
  .wpo-odometer-section .odometer-content .odometer-items h3,
  .wpo-odometer-section-s2 .odometer-content .odometer-items h3 {
    font-size: 18px;
  }
}

/* 3.8 wpo-project-section*/
.wpo-project-section {
  padding: 80px 0;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .wpo-project-section {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .wpo-project-section {
    padding-top: 30px;
  }
}

.wpo-project-section .title-btn-right {
  text-align: right;
}

@media (max-width: 991px) {
  .wpo-project-section .title-btn-right {
    text-align: center;
    margin-bottom: 30px;
  }
}

.wpo-project-section .project-slider {
  position: relative;
}

.wpo-project-section .project-slider .owl-stage {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 200px;
}

@media (max-width: 1199px) {
  .wpo-project-section .project-slider .owl-stage {
    margin-left: 2px;
  }
}

.wpo-project-section .project-slider .owl-item {
  max-width: 510px;
}

.wpo-project-section .project-slider .owl-nav {
  display: none;
}

.wpo-project-section .project-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .wpo-project-section .project-slider .owl-dots {
    display: none;
  }
}

.wpo-project-section .project-slider .owl-dots button {
  margin: 5px;
  border: 1px solid #f5f8fe;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.wpo-project-section .project-slider .owl-dots button.active {
  background: #c9a24d;
}

.wpo-project-section .project-wrapper {
  max-width: 1830px;
  margin: 0 auto;
}

.wpo-project-section .project-wrapper .project-card {
  position: relative;
  z-index: 1;
}

.wpo-project-section .project-wrapper .project-card .image img {
  border-radius: 16px;
  max-width: 510px;
  width: 100%;
}

.wpo-project-section .project-wrapper .project-card .image .content {
  width: 100%;
  max-width: 395px;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.13);
  padding: 40px 33px;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 21px;
  background: #0a2c373a;
  -webkit-backdrop-filter: blur(51.5px);
  backdrop-filter: blur(51.5px);
}

@media (max-width: 1399px) {
  .wpo-project-section .project-wrapper .project-card .image .content {
    max-width: 340px;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-project-section .project-wrapper .project-card .image .content {
    max-width: 240px;
    padding: 15px;
  }
}

.wpo-project-section .project-wrapper .project-card .image .content h2 {
  margin-bottom: 0;
  max-width: 185px;
  font-family: "Parkinsans";
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.84px;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .wpo-project-section .project-wrapper .project-card .image .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-project-section .project-wrapper .project-card .image .content h2 {
    font-size: 18px;
    max-width: 140px;
  }
}

.wpo-project-section .project-wrapper .project-card .image .content h2 a {
  color: #ffff;
  transition: all ease-in 0.4s;
}

.wpo-project-section .project-wrapper .project-card .image .content .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a2c37;
  border-radius: 100px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  right: 40px;
  top: 40px;
}

@media (max-width: 1399px) {
  .wpo-project-section .project-wrapper .project-card .image .content .icon {
    top: 22px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-project-section .project-wrapper .project-card .image .content .icon {
    width: 40px;
    height: 40px;
    right: 10px;
  }
  .about-image img {
    height: auto !important;
  }
}

.wpo-project-section
  .project-wrapper
  .project-card
  .image
  .content
  .icon
  a
  img {
  max-width: 20px;
  width: 100%;
}

.wpo-project-section .project-wrapper .project-card .image:hover .content {
  visibility: visible;
  opacity: 1;
}

/* 3.9 wpo-history-section*/
.wpo-history-section,
.wpo-history-section-s2 {
  position: relative;
  z-index: 1;
}

.wpo-history-section::before,
.wpo-history-section-s2::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(246, 247, 251, 0) 0%, #f4f6ff 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 425px) {
  .wpo-history-section .wpo-section-title span,
  .wpo-history-section-s2 .wpo-section-title span {
    font-size: 19px;
    line-height: 36px;
  }
}

@media (max-width: 425px) {
  .wpo-history-section .wpo-section-title h2,
  .wpo-history-section-s2 .wpo-section-title h2 {
    font-size: 29px;
  }
}

.wpo-history-section .history-item,
.wpo-history-section-s2 .history-item {
  text-align: center;
}

@media (max-width: 991px) {
  .wpo-history-section .history-item,
  .wpo-history-section-s2 .history-item {
    margin-bottom: 40px;
  }
}

.wpo-history-section .history-item h2,
.wpo-history-section-s2 .history-item h2 {
  margin: 0;
  color: #0a2c37;
  font-size: 180px;
  font-weight: 500;
  line-height: 55px;
  text-transform: capitalize;
  line-height: 170px;
}

@media (max-width: 1199px) {
  .wpo-history-section .history-item h2,
  .wpo-history-section-s2 .history-item h2 {
    font-size: 155px;
    line-height: 140px;
  }
}

@media (max-width: 991px) {
  .wpo-history-section .history-item h2,
  .wpo-history-section-s2 .history-item h2 {
    font-size: 120px;
    line-height: 110px;
  }
}

@media (max-width: 575px) {
  .wpo-history-section .history-item h2,
  .wpo-history-section-s2 .history-item h2 {
    font-size: 95px;
    line-height: 90px;
  }
}

@media (max-width: 425px) {
  .wpo-history-section .history-item h2,
  .wpo-history-section-s2 .history-item h2 {
    font-size: 80px;
    line-height: 85px;
  }
}

.wpo-history-section .history-item .text,
.wpo-history-section-s2 .history-item .text {
  padding-top: 40px;
}

@media (max-width: 991px) {
  .wpo-history-section .history-item .text,
  .wpo-history-section-s2 .history-item .text {
    padding-top: 0;
  }
}

.wpo-history-section .history-item .text h3,
.wpo-history-section-s2 .history-item .text h3 {
  margin: 0;
  color: #ffff;
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: normal;
}

@media (max-width: 1399px) {
  .wpo-history-section .history-item .text h3,
  .wpo-history-section-s2 .history-item .text h3 {
    font-size: 23px;
  }
}

@media (max-width: 1199px) {
  .wpo-history-section .history-item .text h3,
  .wpo-history-section-s2 .history-item .text h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .wpo-history-section .history-item .text h3,
  .wpo-history-section-s2 .history-item .text h3 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .wpo-history-section .history-item .text h3,
  .wpo-history-section-s2 .history-item .text h3 {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .wpo-history-section .col:last-child .history-item,
  .wpo-history-section-s2 .col:last-child .history-item {
    margin-bottom: 0;
  }
}

/*3.14 wpo-cta-section*/

@media (max-width: 991px) {
  .wpo-faq-section {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .wpo-faq-section {
    padding: 60px 0;
  }
}

.wpo-faq-section .wpo-section-title-s2 span {
  color: #fff;
}

.wpo-faq-section .wpo-section-title-s2 h2 {
  color: #fff;
}

.wpo-faq-section .wpo-section-title-s2 p {
  max-width: 466px;
  color: #fff;
}

@media (max-width: 991px) {
  .wpo-faq-section .wpo-section-title-s2 p {
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .wpo-faq-section .wpo-faq-items {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-faq-section .wpo-faq-box {
    text-align: center;
  }
}

.wpo-faq-section .accordion-item {
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(243, 243, 243, 0.1);
  padding: 5px 20px;
  background-color: transparent;
  padding-left: 0;
}

@media (max-width: 575px) {
  .wpo-faq-section .accordion-item {
    padding: 0 10px;
  }
}

.wpo-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.wpo-faq-section .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  .wpo-faq-section .accordion-item .accordion-body {
    padding-top: 0;
  }
}

.wpo-faq-section .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 575px) {
  .wpo-faq-section .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 25px;
  }
}

.wpo-faq-section .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.wpo-faq-section .accordion-item button {
  padding: 25px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: "Parkinsans";
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.42px;
}

@media (max-width: 1399px) {
  .wpo-faq-section .accordion-item button {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .wpo-faq-section .accordion-item button {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .wpo-faq-section .accordion-item button {
    line-height: 25px;
    padding: 12px 0;
  }
}

.wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 700;
}

.wpo-faq-section .accordion-item button.collapsed {
  color: #fff;
}

.wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-faq-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #f5f3f3;
}

.wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-faq-section .accordion-button {
  background: transparent;
}

.wpo-faq-section .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: #0a2c37;
  z-index: -1;
}

@media (max-width: 991px) {
  .wpo-faq-section .shape-1 {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .wpo-faq-section .shape-1 {
    width: 30px;
    height: 30px;
  }
}

.wpo-faq-section .shape-2 {
  position: absolute;
  bottom: 0;
  left: 200px;
  width: 100px;
  height: 100px;
  background: #fff;
  z-index: -1;
}

@media (max-width: 991px) {
  .wpo-faq-section .shape-2 {
    width: 40px;
    height: 40px;
    left: 80px;
  }
}

@media (max-width: 767px) {
  .wpo-faq-section .shape-2 {
    width: 30px;
    height: 30px;
    left: 60px;
  }
}

.wpo-faq-section .shape-3 {
  position: absolute;
  bottom: 100px;
  left: 100px;
  width: 100px;
  height: 100px;
  background-color: #e7fcaf;
  z-index: -1;
}

@media (max-width: 991px) {
  .wpo-faq-section .shape-3 {
    width: 40px;
    height: 40px;
    bottom: 40px;
    left: 40px;
  }
}

@media (max-width: 767px) {
  .wpo-faq-section .shape-3 {
    width: 30px;
    height: 30px;
    bottom: 30px;
    left: 30px;
  }
}

/* 3.11 wpo-brand-partner-section*/
.wpo-brand-partner-section,
.wpo-brand-partner-sections-s2 {
  background-color: #f2fafb;
}

.wpo-brand-partner-section .client-wrap,
.wpo-brand-partner-sections-s2 .client-wrap {
  width: 100%;
  table-layout: flex;
}

.wpo-brand-partner-section .client-wrap .client-logo ul,
.wpo-brand-partner-sections-s2 .client-wrap .client-logo ul {
  display: flex;
  flex-wrap: wrap;
}

.wpo-brand-partner-section .client-wrap .client-logo ul li,
.wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li {
  border-collapse: collapse;
  flex-basis: 16%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 240px;
  height: 205px;
  line-height: 205px;
  margin-top: -1px;
  margin-right: -1px;
}

@media (max-width: 1399px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li {
    flex-basis: 20%;
  }
}

@media (max-width: 1199px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li {
    flex-basis: 25%;
    width: 200px;
    height: 170px;
    line-height: 170px;
  }
}

@media (max-width: 991px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li {
    flex-basis: 33.33%;
    width: 170px;
    height: 140px;
    line-height: 140px;
  }
}

@media (max-width: 575px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li {
    height: 100px;
    line-height: 100px;
  }
}

@media (max-width: 425px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li {
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li img,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li img {
    max-width: 125px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .wpo-brand-partner-section .client-wrap .client-logo ul li img,
  .wpo-brand-partner-sections-s2 .client-wrap .client-logo ul li img {
    max-width: 100px;
    width: 100%;
  }
}

/* 3.12 text-marquee*/
.text-marquee {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.29);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.29);
}

@media (max-width: 991px) {
  .text-marquee {
    padding: 30px 0;
  }
}

@media (max-width: 991px) {
  .text-marquee {
    padding: 20px 0;
  }
}

.text-marquee .wraper .marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
}

@media (max-width: 1610px) {
  .text-marquee .wraper .marquee {
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  .text-marquee .wraper {
    display: block;
    text-align: center;
  }
}

.text-marquee .booking-btn a {
  width: 180px;
  height: 180px;
  background: #0a2c37;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  text-transform: capitalize;
  color: #036c5f;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 991px) {
  .text-marquee .booking-btn a {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 575px) {
  .text-marquee .booking-btn a {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
}

.text-marquee .booking-btn a small {
  display: block;
  max-width: 121px;
  color: #fff;
}

@media (max-width: 575px) {
  .text-marquee .booking-btn a small {
    max-width: 100px;
  }
}

.text-marquee:hover .booking-btn a {
  visibility: visible;
  opacity: 1;
}

.text-marquee .marquee-s2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.text-marquee .marquee-s2::before,
.text-marquee .marquee-s2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.text-marquee .marquee-s2::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.text-marquee .marquee-s2::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.text-marquee h2 {
  text-align: center;
  color: #000;
  font-size: 100px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .text-marquee h2 {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .text-marquee h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

.text-marquee h2 small {
  display: block;
  margin: 0 5px;
}

/*5.13 wpo-testimonial-section*/
.wpo-testimonial-section {
  padding-top: 90px;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section {
    padding: 90px 0;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section {
    padding: 60px 0;
  }
}

.wpo-testimonial-section .testimonial-wrap {
  background: transparent;
  box-shadow: 0px 4px 31px 0px transparent;
  padding: 0 70px 52px 70px;
  display: flex;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .testimonial-wrap {
    padding: 40px 20px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section .testimonial-wrap {
    display: block;
    padding: 0px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section .content {
    padding-bottom: 50px;
  }
}

.wpo-testimonial-section .content p {
  color: #222;
  font-size: 30px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.9px;
  margin-bottom: 40px;
  max-width: 725px;
}

@media (max-width: 1399px) {
  .wpo-testimonial-section .content p {
    font-size: 25px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section .content p {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section .content p {
    font-size: 25px;
    line-height: 30px;
  }
}

.wpo-testimonial-section .content .client-name {
  border-top: 1px solid rgba(24, 24, 94, 0.1);
  padding-top: 50px;
}

@media (max-width: 991px) {
  .wpo-testimonial-section .content .client-name {
    padding-top: 30px;
  }
}

.wpo-testimonial-section .content .client-name h4 {
  margin: 0;
  display: inline;
  color: #222;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.66px;
}

.wpo-testimonial-section .content .client-name span {
  display: inline;
  color: #696969;
  font-size: 14px;
  font-weight: 400;
}

.wpo-testimonial-section .slick-list {
  overflow: visible;
}

.wpo-testimonial-section .image {
  width: 428px;
  display: inline-block;
}

@media (max-width: 767px) {
  .wpo-testimonial-section .image {
    width: 100%;
  }
}

.wpo-testimonial-section .image .item {
  position: relative;
}

.wpo-testimonial-section .image .item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wpo-testimonial-section .image .feedback {
  text-align: center;
  color: #0a2c37;
  position: absolute;
  right: 136px;
  top: -27px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .image .feedback {
    right: 50px;
  }
}

@media (max-width: 575px) {
  .wpo-testimonial-section .image .feedback {
    display: none;
  }
}

.wpo-testimonial-section .image .feedback i {
  font-size: 45px;
  color: #0a2c37;
}

.wpo-testimonial-section .image .item ul {
  border-radius: 22px;
  background: #fff;
  width: 189px;
  text-align: center;
  position: absolute;
  left: 35%;
  bottom: -80px;
  transform: translateX(-50%);
  border-radius: 22.5px;
  border: 1px solid #e1e1e1;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .image .item ul {
    left: 45%;
  }
}

@media (max-width: 449px) {
  .wpo-testimonial-section .image .item ul {
    left: 50%;
    bottom: -75px;
  }
}

.wpo-testimonial-section .image .item ul::before {
  position: absolute;
  content: "";
  left: 43%;
  top: -17px;
  width: 25px;
  height: 22px;
  background: #fff;
  z-index: -1;
  background: url(../images/testimonial/shape.svg);
}

.wpo-testimonial-section .image .item ul li {
  display: inline-block;
}

.wpo-testimonial-section .image .item ul li i {
  font-size: 16px;
  color: #ff8c22;
  padding: 9px 3px;
  display: block;
}

.wpo-testimonial-section .image .item img {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  background: #d9d9d9;
}

@media (max-width: 575px) {
  .wpo-testimonial-section .image .item img {
    height: 100%;
  }
  .wpo-about-section-s2 .wpo-section-title-s2 span {
    width: 10rem !important;
  }
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .image {
    width: 340px;
  }
}

.wpo-testimonial-section .content-wrap {
  width: calc(100% - 460px);
  padding-left: 0;
}

@media (max-width: 1199px) {
  .wpo-testimonial-section .content-wrap {
    width: calc(100% - 340px);
  }
}

@media (max-width: 991px) {
  .wpo-testimonial-section .content-wrap {
    width: 100%;
    display: block;
    margin-top: 100px;
  }
}

.wpo-testimonial-section .slick-arrow {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: -30px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

@media (max-width: 991px) {
  .wpo-testimonial-section .slick-arrow {
    bottom: -45px;
  }
}

.wpo-testimonial-section .slick-arrow.slick-prev,
.wpo-testimonial-section .slick-arrow.slick-next {
  right: 80px;
}

.wpo-testimonial-section .slick-arrow.slick-prev::after,
.wpo-testimonial-section .slick-arrow.slick-next::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\f10c";
  font-family: flaticon_fixaroo;
  font-size: 15px;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.wpo-testimonial-section .slick-arrow.slick-prev::before,
.wpo-testimonial-section .slick-arrow.slick-next::before {
  display: none;
}

.wpo-testimonial-section .slick-arrow.slick-next {
  right: 0;
}

.wpo-testimonial-section .slick-arrow.slick-next::after {
  content: "\f10d";
}

.wpo-testimonial-section .slick-arrow.slick-next::before {
  display: none;
}

.wpo-testimonial-section .slick-arrow:hover {
  background: #0a2c37;
}

.wpo-testimonial-section .slick-arrow:hover::after {
  color: #fff;
}

/*3.14 wpo-cta-section - Enhanced*/
.wpo-cta-section {
  background: rgba(98, 135, 144, 0.385);
  position: relative;
  z-index: 1;
  padding: 40px 0;
  margin: 0 40px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .wpo-cta-section {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .wpo-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .wpo-cta-section {
    padding: 40px 0;
    margin: 0;
    border-radius: 0;
  }
}

.wpo-section-title {
  background-color: #c9a24d;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}

.wpo-section-title p {
  color: #0a2c37;
}
/* Improved Contact Form Styles */
.contact-form-wrap {
  background: #c9a24d;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 30px 20px;
  }
}

.contact-form-wrap:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.contact-form-wrap h3 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media (max-width: 575px) {
  .contact-form-wrap h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

/* Modern Form Group Styling */
.contact-form-wrap .form-group {
  margin-bottom: 24px;
  position: relative;
}

.contact-form-wrap .form-group label {
  display: block;
  color: #212020;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.contact-form-wrap .form-group label::after {
  content: "*";
  color: #0a2c37;
  margin-left: 4px;
  font-size: 16px;
}

/* Enhanced Input Fields */
.contact-form-wrap .form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  background: #f8f9fa;
  border: 1px solid #797979;
  border-radius: 10px;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form-wrap .form-control::placeholder {
  color: #999;
  font-size: 14px;
}

.contact-form-wrap .form-control:hover {
  background: #f0f2f5;
  border-color: #e0e4e8;
}

.contact-form-wrap .form-control:focus {
  background: #ffffff;
  border-color: #0a2c37;
  box-shadow: 0 0 0 4px rgba(56, 96, 210, 0.1);
}

/* Select Dropdown Enhancement */
.contact-form-wrap select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

/* Textarea Specific */
.contact-form-wrap textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Input Icons (Optional Enhancement) */
.contact-form-wrap .form-group.has-icon {
  position: relative;
}

.contact-form-wrap .form-group.has-icon .form-control {
  padding-left: 45px;
}

.contact-form-wrap .form-group.has-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 18px;
  pointer-events: none;
}

/* Enhanced Submit Button */
.contact-form-wrap .theme-btn {
  width: 300px;
  padding: 16px 32px;
  background: #0a2c37;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.contact-form-wrap .theme-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 96, 210, 0.3);
}

.contact-form-wrap .theme-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(56, 96, 210, 0.2);
}

.contact-form-wrap .theme-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-form-wrap .theme-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Form Validation States */
.contact-form-wrap .form-control.is-invalid {
  border-color: #dc3545;
  background: #fff5f5;
}

.contact-form-wrap .form-control.is-valid {
  border-color: #28a745;
  background: #f0fff4;
}

.contact-form-wrap .invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

/* Loading State */
.contact-form-wrap .theme-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-form-wrap .theme-btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 0.8s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/* Enhanced Contact Info Section */
.contact-info {
  margin-top: 30px;
  padding: 24px;
  background-color: #c9a24d;
  border-radius: 12px;
}

.contact-info p {
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: #1a1a1a;
  font-weight: 600;
  display: inline-block;
  min-width: 85px;
}

.contact-info a {
  color: #0a2c37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #f5f8fe;
  text-decoration: underline;
}

/* Accessibility Improvements */
.contact-form-wrap .form-control:focus-visible {
  outline: 2px solid #0a2c37;
  outline-offset: 2px;
}

/* Mobile Optimizations */
@media (max-width: 575px) {
  .contact-form-wrap .form-control {
    font-size: 16px;
    padding: 12px 16px;
  }

  .contact-form-wrap .theme-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/*3.15 wpo-blog-section*/
@media (max-width: 991px) {
  .wpo-blog-section.section-padding {
    padding: 90px 0;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-section.section-padding {
    padding: 60px 0;
    padding-bottom: 30px;
  }
}

.wpo-blog-section .title-btn-right {
  text-align: right;
}

@media (max-width: 991px) {
  .wpo-blog-section .title-btn-right {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-blog-section .blog-card {
    margin-bottom: 30px;
  }
}

.wpo-blog-section .blog-card .blog-image {
  position: relative;
  overflow: hidden;
  transform: scale(1);
}

.wpo-blog-section .blog-card .blog-image img {
  width: 100%;
  transition: all ease-in-out 0.4s;
}

.wpo-blog-section .blog-card .blog-image::before {
  position: absolute;
  top: 0;
  left: -79%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-30deg);
}

.wpo-blog-section .blog-card .blog-image:hover img {
  transform: scale(1.1);
}

.wpo-blog-section .blog-card .blog-image:hover::before {
  animation: shine 0.95s;
}

.wpo-blog-section .blog-card .blog-text {
  padding-top: 35px;
}

@media (max-width: 991px) {
  .wpo-blog-section .blog-card .blog-text {
    padding-top: 20px;
  }
}

@media (max-width: 425px) {
  .wpo-blog-section .blog-card .blog-text {
    padding-top: 10px;
  }
}

.wpo-blog-section .blog-card .blog-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  max-width: 505px;
}

@media (max-width: 1199px) {
  .wpo-blog-section .blog-card .blog-text h2 {
    font-size: 20px;
    line-height: 30px;
    max-width: 376px;
  }
}

@media (max-width: 425px) {
  .wpo-blog-section .blog-card .blog-text h2 {
    font-size: 17px;
    line-height: 22px;
  }
}

.wpo-blog-section .blog-card .blog-text h2 a {
  color: #043460;
  transition: all ease-in-out 0.4s;
}

.wpo-blog-section .blog-card .blog-text h2 a:hover {
  color: #4d60bd;
}

.wpo-blog-section .blog-card .blog-text h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 34px;
  max-width: 603px;
}

@media (max-width: 1199px) {
  .wpo-blog-section .blog-card .blog-text h3 {
    font-size: 30px;
    line-height: 30px;
    max-width: 510px;
  }
}

@media (max-width: 574px) {
  .wpo-blog-section .blog-card .blog-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 425px) {
  .wpo-blog-section .blog-card .blog-text h3 {
    font-size: 17px;
    line-height: 23px;
  }
}

.wpo-blog-section .blog-card .blog-text h3 a {
  color: #043460;
  transition: all ease-in-out 0.4s;
}

.wpo-blog-section .blog-card .blog-text h3 a:hover {
  color: #4d60bd;
}

.wpo-blog-section .blog-card .blog-text .blog-bottom {
  padding-top: 20px;
}

@media (max-width: 425px) {
  .wpo-blog-section .blog-card .blog-text .blog-bottom {
    padding-top: 10px;
  }
}

.wpo-blog-section .blog-card .blog-text .blog-bottom .more-btn {
  position: relative;
  color: #095091;
  text-decoration: underline;
  transition: all ease 0.4s;
}

.wpo-blog-section .blog-card .blog-text .blog-bottom .ti {
  position: relative;
  top: 3px;
  color: #095091;
  transition: all ease 0.4s;
}

.wpo-blog-section .blog-card .blog-text .blog-bottom:hover .more-btn {
  color: #4d60bd;
}

.wpo-blog-section .blog-card .blog-text .blog-bottom:hover .ti {
  color: #4d60bd;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/*======================================
5. Home-style-2
 =======================================*/
/* 5.1 wpo-about-section-s2*/
.wpo-about-section-s2,
.wpo-about-section-s3 {
  padding-top: 50px;
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .wpo-about-section-s2,
  .wpo-about-section-s3 {
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s2,
  .wpo-about-section-s3 {
    padding: 90px 0;
  }
}

@media (max-width: 757px) {
  .wpo-about-section-s2,
  .wpo-about-section-s3 {
    padding: 80px 0;
  }
}

.wpo-about-section-s2 .wpo-section-title-s2,
.wpo-about-section-s3 .wpo-section-title-s2 {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-section-title-s2,
  .wpo-about-section-s3 .wpo-section-title-s2 {
    margin-bottom: 30px;
  }
}

.wpo-about-section-s2 .wpo-section-title-s2 span,
.wpo-about-section-s3 .wpo-section-title-s2 span {
  background: #fff;
  width: 11rem;
  display: flex;
  align-items: center;
  color: #0a2c37;
}

.wpo-about-section-s2 .wpo-section-title-s2 h3,
.wpo-about-section-s3 .wpo-section-title-s2 h3 {
  margin: 0;
  font-size: 20px;
  max-width: 750px;
  line-height: 30px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .wpo-about-section-s2 .wpo-section-title-s2 h3,
  .wpo-about-section-s3 .wpo-section-title-s2 h3 {
    padding-top: 10px;
  }
}

.wpo-about-section-s2 .about-left .about-image,
.wpo-about-section-s3 .about-left .about-image {
  position: relative;
}

.wpo-about-section-s2 .about-left .about-image .about-list,
.wpo-about-section-s3 .about-left .about-image .about-list {
  bottom: 0px;
  right: 0px;
  padding: 30px;
  border-radius: 41px;
  background: hsl(41, 53%, 55%);
  -webkit-backdrop-filter: blur(51.5px);
  backdrop-filter: blur(51.5px);
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-left .about-image .about-list,
  .wpo-about-section-s3 .about-left .about-image .about-list {
    right: -10px;
    bottom: -130px;
    max-height: 400px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .about-left .about-image .about-list,
  .wpo-about-section-s3 .about-left .about-image .about-list {
    position: unset; 
    text-align: center;
  }
  .wpo-about-section-s2 .about-left .about-image,
  .wpo-about-section-s3 .about-left .about-image {
    position: relative;
    margin: auto;
    display: flex;
  }
}

@media (max-width: 425px) {
  .wpo-about-section-s2 .about-left .about-image .about-list,
  .wpo-about-section-s3 .about-left .about-image .about-list {
    padding: 30px 10px 30px;
  }
}

.wpo-about-section-s2 .about-left .about-image .about-list .icon img,
.wpo-about-section-s3 .about-left .about-image .about-list .icon img {
  max-width: 50px;
  width: 100%;
  max-height: 50px;
}

.wpo-about-section-s2 .about-left .about-image .about-list .about-text,
.wpo-about-section-s3 .about-left .about-image .about-list .about-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpo-about-section-s2 .about-left .about-image .about-list .about-text h3,
.wpo-about-section-s3 .about-left .about-image .about-list .about-text h3 {
  margin: 0;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 65px;
  text-transform: capitalize;
}

@media (max-width: 425px) {
  .wpo-about-section-s2 .about-left .about-image .about-list .about-text h3,
  .wpo-about-section-s3 .about-left .about-image .about-list .about-text h3 {
    font-size: 34px;
    line-height: 35px;
    padding-top: 15px;
    padding-bottom: 0;
  }
}

.wpo-about-section-s2 .about-left .about-image .about-list ul li,
.wpo-about-section-s3 .about-left .about-image .about-list ul li {
  margin-top: 10px;
}

.wpo-about-section-s2 .about-left .about-image .about-list ul li span,
.wpo-about-section-s3 .about-left .about-image .about-list ul li span {
  box-shadow: none;
  background-color: transparent;
}

.wpo-about-section-s2 .about-right,
.wpo-about-section-s3 .about-right {
  padding-left: 0px;
}

@media (max-width: 1450px) {
  .wpo-about-section-s2 .about-right,
  .wpo-about-section-s3 .about-right {
    padding-left: 0px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-right,
  .wpo-about-section-s3 .about-right {
    padding-left: 10px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .about-right,
  .wpo-about-section-s3 .about-right {
    padding-left: 0;
    padding-top: 30px;
  }
}

.wpo-about-section-s2 .about-right .about-title-right h2,
.wpo-about-section-s3 .about-right .about-title-right h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: -1.1px;
  max-width: 535px;
}

@media (max-width: 1450px) {
  .wpo-about-section-s2 .about-right .about-title-right h2,
  .wpo-about-section-s3 .about-right .about-title-right h2 {
    font-size: 40px;
    line-height: 60px;
    max-width: 450px;
  }
}

@media (max-width: 1199px) {
  .wpo-about-section-s2 .about-right .about-title-right h2,
  .wpo-about-section-s3 .about-right .about-title-right h2 {
    font-size: 40px;
    line-height: 55px;
    max-width: 399px;
  }
}

/* @media (max-width: 991px) {
  .wpo-about-section-s2 .about-right .about-title-right h2,
  .wpo-about-section-s3 .about-right .about-title-right h2 {
    margin: 0 auto;
  }
} */

@media (max-width: 425px) {
  .wpo-about-section-s2 .about-right .about-title-right h2,
  .wpo-about-section-s3 .about-right .about-title-right h2 {
    font-size: 32px;
    line-height: 45px;
  }
}

.wpo-about-section-s2 .about-right .about-title-right p,
.wpo-about-section-s3 .about-right .about-title-right p {
  margin: 0;
  color: #ffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .about-right .about-title-right p,
  .wpo-about-section-s3 .about-right .about-title-right p {
    margin: 0 auto;
  }
}

@media (max-width: 425px) {
  .wpo-about-section-s2 .about-right .about-title-right p,
  .wpo-about-section-s3 .about-right .about-title-right p {
    padding-top: 10px;
    font-size: 17px;
    line-height: 26.8px;
  }
}

.wpo-about-section-s2 .about-right .about-list .about-text,
.wpo-about-section-s3 .about-right .about-list .about-text {
  padding-top: 30px;
}

@media (max-width: 425px) {
  .wpo-about-section-s2 .about-right .about-list .about-text,
  .wpo-about-section-s3 .about-right .about-list .about-text {
    padding-top: 15px;
  }
}

.wpo-about-section-s2 .about-right .about-btn,
.wpo-about-section-s3 .about-right .about-btn {
  padding-top: 40px;
}

@media (max-width: 575px) {
  .wpo-about-section-s2 .about-right .about-btn,
  .wpo-about-section-s3 .about-right .about-btn {
    padding-top: 20px;
  }
  .hero-slider {
    height: 50vh;
  }
}

.wpo-about-section-s2 .about-right .about-btn .theme-btn,
.wpo-about-section-s3 .about-right .about-btn .theme-btn {
  padding: 18px 52px;
  color: #fff;
  border-radius: 30px;
  box-shadow: -2px -2px 4px 0 rgba(0, 0, 0, 0.12) inset;
}

.wpo-about-section-s2 .about-list,
.wpo-about-section-s3 .about-list {
  max-width: 390px;
}

@media (max-width: 991px) {
  .wpo-about-section-s2 .about-list,
  .wpo-about-section-s3 .about-list {
    margin: 0 auto;
  }
}

.wpo-about-section-s2 .about-list ul li + li,
.wpo-about-section-s3 .about-list ul li + li {
  margin-top: 17px;
}

.wpo-about-section-s2 .about-list ul li span,
.wpo-about-section-s3 .about-list ul li span {
  border-radius: 20.5px;
  background: #c9a24d;
  -webkit-backdrop-filter: blur(51.5px);
  backdrop-filter: blur(51.5px);
  color: #0a2c37;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.02);
  display: inline-block;
  font-size: 16px;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  padding: 5px 25px;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 575px) {
  .wpo-about-section-s2 .about-list ul li span,
  .wpo-about-section-s3 .about-list ul li span {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .wpo-about-section-s2 .about-list ul li span,
  .wpo-about-section-s3 .about-list ul li span {
    font-size: 18px;
    padding: 7px 16px;
    padding-left: 44px;
  }
}

.wpo-about-section-s2 .about-list ul li span:before,
.wpo-about-section-s3 .about-list ul li span:before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  height: 29px;
  content: "\e64c";
  background: #4a7bdd;
  font-family: "themify";
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s;
}

.wpo-about-section-s2 .about-list ul li span:before,
.wpo-about-section-s2 .about-list ul li.active span:before,
.wpo-about-section-s3 .about-list ul li:hover span:before,
.wpo-about-section-s3 .about-list ul li.active span:before {
  background: #0a2c37;
  color: #fff;
}

/* 5.2 marquee-section-s2*/
.marquee-section-s2 .marquee_container {
  background-color: #0a2c37;
}

/* 5.3 wpo-service-section-s2*/
@media (max-width: 991px) {
  .wpo-service-section-s2.section-padding,
  .wpo-service-section-s3.section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .wpo-service-section-s2.section-padding,
  .wpo-service-section-s3.section-padding {
    padding: 60px 0;
    padding-bottom: 40px;
  }
  .wpo-about-section-s2 .about-left .about-image,
  .wpo-about-section-s3 .about-left .about-image {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
}

.wpo-service-section-s2 .service-wrap,
.wpo-service-section-s3 .service-wrap {
  border-radius: 28px;
  background: #c9a24d;
  padding: 60px 40px 0;
  position: relative;
  transition: all ease-in-out 0.4s;
}

@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-wrap,
  .wpo-service-section-s3 .service-wrap {
    padding: 60px 25px 0;
  }
}

@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-wrap,
  .wpo-service-section-s3 .service-wrap {
    padding: 60px 20px 0;
  }
}

@media (max-width: 991px) {
  .wpo-service-section-s2 .service-wrap,
  .wpo-service-section-s3 .service-wrap {
    margin-bottom: 30px;
  }
}

.wpo-service-section-s2 .service-wrap .service-item,
.wpo-service-section-s3 .service-wrap .service-item {
  padding-bottom: 55px;
}

@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-wrap .service-item,
  .wpo-service-section-s3 .service-wrap .service-item {
    padding-bottom: 35px;
  }
}

.wpo-service-section-s2 .service-wrap .service-item h3,
.wpo-service-section-s3 .service-wrap .service-item h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-wrap .service-item h3,
  .wpo-service-section-s3 .service-wrap .service-item h3 {
    font-size: 24px;
  }
}

.wpo-service-section-s2 .service-wrap .service-item h3 a,
.wpo-service-section-s3 .service-wrap .service-item h3 a {
  color: #000;
  transition: all ease-in-out 0.4s;
}

.wpo-service-section-s2 .service-wrap .service-item p,
.wpo-service-section-s3 .service-wrap .service-item p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  max-width: 400px;
  padding-top: 5px;
  padding-left: 18px;
  position: relative;
  transition: all ease-in-out 0.4s;
}

.wpo-service-section-s2 .service-wrap .service-item p::before,
.wpo-service-section-s3 .service-wrap .service-item p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 5px;
  color: #fff;
  font-size: 20px;
}

@media (max-width: 1199px) {
  .wpo-service-section-s2 .service-wrap .service-item p,
  .wpo-service-section-s3 .service-wrap .service-item p {
    padding-top: 0;
    font-size: 17px;
    line-height: 26.8px;
  }
}

.wpo-service-section-s2 .service-wrap .image,
.wpo-service-section-s3 .service-wrap .image {
  overflow: hidden;
  position: relative;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

@media (max-width: 991px) {
  .wpo-service-section-s2 .service-wrap .image,
  .wpo-service-section-s3 .service-wrap .image {
    bottom: 1px;
  }
}

.wpo-service-section-s2 .service-wrap .image img,
.wpo-service-section-s3 .service-wrap .image img {
  transform: scale(1);
  width: 100%;
  transition: all ease-in-out 0.4s;
}

.wpo-service-section-s2 .service-wrap .icon a,
.wpo-service-section-s3 .service-wrap .icon a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 47px;
  border-radius: 50%;
  text-align: center;
  background-color: #dfe3f0;
  position: absolute;
  top: 25px;
  right: 30px;
  transition: all ease-in-out 0.4s;
}

@media (max-width: 1399px) {
  .wpo-service-section-s2 .service-wrap .icon a,
  .wpo-service-section-s3 .service-wrap .icon a {
    top: 15px;
  }
}

.wpo-service-section-s2 .service-wrap:hover,
.wpo-service-section-s2 .service-wrap.active,
.wpo-service-section-s3 .service-wrap:hover,
.wpo-service-section-s3 .service-wrap.active {
  background-color: #173e4a74;
}

.wpo-service-section-s2 .service-wrap:hover img,
.wpo-service-section-s2 .service-wrap.active img,
.wpo-service-section-s3 .service-wrap:hover img,
.wpo-service-section-s3 .service-wrap.active img {
  transform: scale(1.1);
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

.wpo-service-section-s2 .service-wrap:hover .service-item h3 a,
.wpo-service-section-s2 .service-wrap.active .service-item h3 a,
.wpo-service-section-s3 .service-wrap:hover .service-item h3 a,
.wpo-service-section-s3 .service-wrap.active .service-item h3 a {
  color: #fff;
}

.wpo-service-section-s2 .service-wrap:hover .service-item p,
.wpo-service-section-s2 .service-wrap.active .service-item p,
.wpo-service-section-s3 .service-wrap:hover .service-item p,
.wpo-service-section-s3 .service-wrap.active .service-item p {
  color: #fff;
}

.wpo-service-section-s2 .service-wrap:hover .icon a,
.wpo-service-section-s2 .service-wrap.active .icon a,
.wpo-service-section-s3 .service-wrap:hover .icon a,
.wpo-service-section-s3 .service-wrap.active .icon a {
  background-color: #fff;
}

/* wpo-service-section style-3*/
.wpo-service-section.style-3 {
  background: #fff;
  padding: 60px 0;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .wpo-service-section.style-3 {
    padding: 90px 0;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .wpo-service-section.style-3 {
    padding: 60px 0;
    padding-bottom: 50px;
  }
}

.wpo-service-section.style-3 .wpo-section-title span {
  color: #0a2c37;
}

.wpo-service-section.style-3 .wpo-section-title h2 {
  color: #ffff;
}

.wpo-service-section.style-3 .wpo-section-title p {
  color: #444141;
}

.wpo-service-section.style-3 .service-wrap {
  padding: 20px;
}

.wpo-service-section.style-3 .service-wrap .service-items {
  background: #fff;
  box-shadow: 0 2px 12px 2px rgba(4, 0, 52, 0.1);
}

/* 5.4 wpo-team-section*/
.wpo-team-section {
  padding: 40px 0;
}

@media (max-width: 991px) {
  .wpo-team-section {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-team-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (max-width: 425px) {
  .wpo-team-section .wpo-section-title h2 {
    font-size: 34px;
  }
}

.wpo-team-section .team-wrap {
  max-width: 1734px;
  margin: 0 auto;
}

.wpo-team-section .team-wrap .team-card {
  padding-bottom: 30px;
}

.wpo-team-section .team-wrap .team-card .image {
  overflow: hidden;
  transform: scale(1);
  border-radius: 27px;
  position: relative;
}

.wpo-team-section .team-wrap .team-card .image::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(1, 14, 51, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.wpo-team-section .team-wrap .team-card .image img {
  width: 100%;
  transition: all ease-in-out 0.4s;
}

.wpo-team-section .team-wrap .team-card .image .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.wpo-team-section .team-wrap .team-card .image .social-links li {
  display: inline-block;
  margin-right: 7px;
  position: relative;
  transform: translateY(-100px);
  transition: all 0.5s ease 0s;
}

.wpo-team-section .team-wrap .team-card .image .social-links li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: #fff;
  top: 0;
  left: 5px;
  right: 0;
  margin: 0 auto;
}

.wpo-team-section .team-wrap .team-card .image .social-links li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 43px;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  color: #000;
  margin-top: 50px;
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.wpo-team-section .team-wrap .team-card .image .social-links li a:hover {
  color: #0a2c37;
}

.wpo-team-section .team-wrap .team-card .text {
  text-align: center;
  margin-top: 20px;
  border-radius: 20px;
  background: #ffffffce;
  padding: 35px 0;
  border-radius: 20px;
  border: 1px solid #132869;
}

@media (max-width: 991px) {
  .wpo-team-section .team-wrap .team-card .text {
    padding: 20px 0;
  }
}

.wpo-team-section .team-wrap .team-card .text h2 {
  margin: 0;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  color: #0a2c37;
  text-transform: capitalize;
  padding-bottom: 3px;
}
.wpo-team-section .team-wrap .team-card .text > span {
  color: #0a2c37 !important;
}

@media (max-width: 1399px) {
  .wpo-team-section .team-wrap .team-card .text h2 {
    font-size: 27px;
  }
}

@media (max-width: 1199px) {
  .wpo-team-section .team-wrap .team-card .text h2 {
    font-size: 23px;
    margin-bottom: 4px;
  }
}

.wpo-team-section .team-wrap .team-card .text h2 a {
  color: #ffff;
  transition: all ease-in-out 0.4s;
}

.wpo-team-section .team-wrap .team-card .text h2 a:hover {
  color: #0a2c37;
}

.wpo-team-section .team-wrap .team-card .text span {
  color: #095091;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .wpo-team-section .team-wrap .team-card .text span {
    font-size: 17px;
  }
}

@media (max-width: 1199px) {
  .wpo-team-section .team-wrap .team-card .text span {
    font-size: 14px;
  }
}

.wpo-team-section .team-wrap .team-card:hover .image::after {
  opacity: 1;
}

.wpo-team-section .team-wrap .team-card:hover .image img {
  transform: scale(1.1);
}

.wpo-team-section .team-wrap .team-card:hover .image .social-links li {
  transform: translateY(0);
}

.wpo-team-section .team-wrap .team-card:hover .image .social-links li a {
  opacity: 1;
}

.wpo-team-section .team-wrap .team-card:hover .social-links li:nth-child(odd) {
  transition-delay: 0.5s;
}

.wpo-team-section .team-wrap .team-card:hover .social-links li:nth-child(even) {
  transition-delay: 0.8s;
}

/* 5.5 wpo-project-section-s2*/
.wpo-project-section-s2 .project-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .wpo-project-section-s2 .project-wrap {
    gap: 10px;
  }
}

.wpo-project-section-s2 .project-wrap .project-items {
  width: 32%;
}

@media (max-width: 1199px) {
  .wpo-project-section-s2 .project-wrap .project-items {
    width: 31%;
  }
}

@media (max-width: 991px) {
  .wpo-project-section-s2 .project-wrap .project-items {
    width: 48%;
  }
}

@media (max-width: 575px) {
  .wpo-project-section-s2 .project-wrap .project-items {
    width: 100%;
  }
}

.wpo-project-section-s2 .project-wrap .project-items .project-image {
  position: relative;
  overflow: hidden;
}

.wpo-project-section-s2 .project-wrap .project-items .project-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(
      353deg,
      #00081e -26.71%,
      rgba(0, 66, 255, 0) 56.71%
    ),
    rgba(2, 34, 125, 0.2);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.wpo-project-section-s2 .project-wrap .project-items .project-image img {
  width: 100%;
}

.wpo-project-section-s2
  .project-wrap
  .project-items
  .project-image
  .project-text {
  text-align: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.wpo-project-section-s2
  .project-wrap
  .project-items
  .project-image
  .project-text
  h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 29px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .wpo-project-section-s2
    .project-wrap
    .project-items
    .project-image
    .project-text
    h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-project-section-s2
    .project-wrap
    .project-items
    .project-image
    .project-text
    h3 {
    font-size: 19px;
  }
}

.wpo-project-section-s2
  .project-wrap
  .project-items
  .project-image
  .project-text
  h3
  a {
  color: #fff;
}

.wpo-project-section-s2
  .project-wrap
  .project-items
  .project-image
  .project-text
  h3
  a:hover {
  color: #00cc83;
}

.wpo-project-section-s2
  .project-wrap
  .project-items
  .project-image:hover::before {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.wpo-project-section-s2
  .project-wrap
  .project-items
  .project-image:hover
  .project-text {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

/* wpo-project-section style-3*/
.wpo-project-section.style-3 {
  padding: 60px 0;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .wpo-project-section.style-3 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .wpo-project-section.style-3 {
    padding-top: 60px;
  }
}

/* 5.6 wpo-brand-partner-section-s2*/
.wpo-brand-partner-section-s2 .client-wrap .owl-stage-outer {
  padding-top: 1px;
  margin: -1px;
}

.wpo-brand-partner-section-s2 .client-wrap .grid {
  text-align: center;
  height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: -1px;
  margin-right: -1px;
}

@media (max-width: 991px) {
  .wpo-brand-partner-section-s2 .client-wrap .grid {
    height: 80px;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .wpo-brand-partner-section-s2 .client-wrap .grid {
    padding: 20px;
  }
}

.wpo-brand-partner-section-s2 .client-wrap .grid img {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}

.wpo-brand-partner-section-s2 .client-wrap .owl-nav {
  display: none;
}

.wpo-brand-partner-section-s2 .client-wrap .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .wpo-brand-partner-section-s2 .client-wrap .owl-dots {
    display: none;
  }
}

.wpo-brand-partner-section-s2 .client-wrap .owl-dots button {
  margin: 5px;
  border: 1px solid #0a2c37;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.wpo-brand-partner-section-s2 .client-wrap .owl-dots button.active {
  background: #0a2c37;
}

/* 5.7 wpo-blog-section-s2*/
.wpo-blog-section-s2 {
  padding: 60px 0;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .wpo-blog-section-s2 {
    padding: 90px 0;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-section-s2 {
    padding: 60px 0;
    padding-bottom: 40px;
  }
}

.wpo-blog-section-s2 .title-btn-right {
  text-align: right;
}

@media (max-width: 991px) {
  .wpo-blog-section-s2 .title-btn-right {
    text-align: center;
    margin-bottom: 30px;
  }
}

.wpo-blog-section-s2 .blog-card {
  border-radius: 16px;
  box-shadow: 0px 10px 60px 0px rgba(174, 174, 174, 0.2);
  background: #fff;
  position: relative;
  margin-bottom: 30px;
}

.wpo-blog-section-s2 .blog-card .image {
  position: relative;
  overflow: hidden;
  transform: scale(1);
  border-radius: 16px 16px 0 0;
}

.wpo-blog-section-s2 .blog-card .image img {
  border-radius: 16px 16px 0 0;
  width: 100%;
  transition: all ease-in-out 0.4s;
}

.wpo-blog-section-s2 .blog-card .image::before {
  position: absolute;
  top: 0;
  left: -79%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-30deg);
}

.wpo-blog-section-s2 .blog-card .image:hover img {
  transform: scale(1.1);
}

.wpo-blog-section-s2 .blog-card .image:hover::before {
  animation: shine 0.95s;
}

.wpo-blog-section-s2 .blog-card .date {
  min-width: 70px;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #0a2c37;
  border-radius: 6px;
  position: absolute;
  right: 25px;
  top: -30px;
}

.wpo-blog-section-s2 .blog-card .date h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.84px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .wpo-blog-section-s2 .blog-card .date h3 {
    font-size: 20px;
  }
}

.wpo-blog-section-s2 .blog-card .date span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.wpo-blog-section-s2 .blog-card .content {
  background: #fff;
  border-radius: 0 0 16px 16px;
  position: relative;
}

.wpo-blog-section-s2 .blog-card .content .text {
  padding: 30px;
  padding-top: 35px;
  position: relative;
}

@media (max-width: 1430px) {
  .wpo-blog-section-s2 .blog-card .content .text {
    padding: 15px;
    padding-top: 30px;
  }
}

.wpo-blog-section-s2 .blog-card .content .text::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  content: "";
  background: rgba(0, 23, 38, 0.1);
}

.wpo-blog-section-s2 .blog-card .content .text span {
  color: #0a2c37;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.32px;
}

.wpo-blog-section-s2 .blog-card .content .text h2 {
  margin: 0;
  font-family: "Parkinsans";
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.66px;
  padding-top: 10px;
}

@media (max-width: 1430px) {
  .wpo-blog-section-s2 .blog-card .content .text h2 {
    font-size: 20px;
    line-height: 35px;
  }
}

@media (max-width: 991px) {
  .wpo-blog-section-s2 .blog-card .content .text h2 {
    font-size: 19px;
    line-height: 33px;
  }
}

.wpo-blog-section-s2 .blog-card .content .text h2 a {
  color: #ffff;
  transition: all 0.3s ease-in-out;
}

.wpo-blog-section-s2 .blog-card .content .text h2 a:hover {
  color: #0a2c37;
}

.wpo-blog-section-s2 .blog-card .content .comment {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1430px) {
  .wpo-blog-section-s2 .blog-card .content .comment {
    padding: 15px;
  }
}

@media (max-width: 1199px) {
  .wpo-blog-section-s2 .blog-card .content .comment {
    padding: 15px;
    flex-direction: column;
    align-items: start;
  }
}

.wpo-blog-section-s2 .blog-card .content .comment li {
  display: flex;
  align-items: center;
}

.wpo-blog-section-s2 .blog-card .content .comment li i {
  color: #4d4b4b;
  font-size: 18px;
}

.wpo-blog-section-s2 .blog-card .content .comment li span {
  color: #4d4b4b;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.32px;
  padding-left: 7px;
}

.wpo-blog-section-s2 .blog-card .content .comment li span a {
  color: #4d4b4b;
  transition: all 0.3s ease-in-out;
}

.wpo-blog-section-s2 .blog-card .content .comment li span a:hover {
  color: #0a2c37;
}

/*======================================
6. Home-style-3
 =======================================*/
/* 6.1 wpo-about-section-s3*/
.wpo-about-section-s3 {
  padding: 60px 0;
}

@media (max-width: 991px) {
  .wpo-about-section-s3 {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .wpo-about-section-s3 {
    padding: 60px 0;
  }
}

.wpo-about-section-s3 .about-left .about-image {
  position: relative;
}

.wpo-about-section-s3 .about-left .about-image .video-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wpo-about-section-s3 .about-left .about-image .video-wrap .video-btn {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  z-index: 1;
  border: 2px solid #fff;
}

@media (max-width: 575px) {
  .wpo-about-section-s3 .about-left .about-image .video-wrap .video-btn {
    width: 70px;
    height: 70px;
  }
}

.wpo-about-section-s3
  .about-left
  .about-image
  .video-wrap
  .video-btn
  .fi::before {
  font-size: 35px;
  position: relative;
  color: #fff;
  z-index: 1;
}

@media (max-width: 575px) {
  .wpo-about-section-s3
    .about-left
    .about-image
    .video-wrap
    .video-btn
    .fi::before {
    font-size: 27px;
  }
}

.wpo-about-section-s3 .about-title-right span {
  color: #0a2c37;
  font-size: 24px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.24px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .wpo-about-section-s3 .about-title-right span {
    font-size: 22px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s3 .about-title-right span {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .wpo-about-section-s3 .about-title-right span {
    font-size: 20px;
    line-height: 35px;
  }
}

.wpo-about-section-s3 .about-title-right span i {
  line-height: unset;
  margin-right: 10px;
  position: relative;
  top: -2px;
  max-width: 35px;
}

.wpo-about-section-s3 .about-right {
  padding-left: 60px;
}

@media (max-width: 1199px) {
  .wpo-about-section-s3 .about-right {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section-s3 .about-right {
    padding-left: 0;
  }
}

/* 6.2 wpo-service-section-s3*/
.wpo-service-section-s3 .service-wrap {
  padding: 35px 30px;
}

@media (max-width: 1199px) {
  .wpo-service-section-s3 .service-wrap {
    padding: 25px 20px;
  }
}

.wpo-service-section-s3 .service-wrap .service-item {
  padding-top: 30px;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .wpo-service-section-s3 .service-wrap .service-item {
    padding-top: 15px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
}

.wpo-service-section-s3 .service-wrap .service-item p {
  max-width: 375px;
}

@media (max-width: 1199px) {
  .wpo-service-section-s3 .service-wrap .service-item p {
    max-width: 210px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .wpo-service-section-s3 .service-wrap .service-item p {
    max-width: 400px;
    font-size: 17px;
  }
}

.wpo-service-section-s3 .service-wrap .icon a {
  top: auto;
  bottom: 50px;
}

@media (max-width: 1199px) {
  .wpo-service-section-s3 .service-wrap .icon a {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .wpo-service-section-s3 .service-wrap .icon a {
    margin-top: 10px;
    position: unset;
  }
}
.video-thumb {
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  transition: transform 0.3s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent white;
}
.floating-icons {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.floating-icons a > i {
  font-size: 30px;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.whatsapp {
  background-color: #25d366;
}

.phone {
  background-color: #0d6efd;
}

.section-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 15px;
}

.choose-card {
  background: #C9A24D;
  padding: 30px 20px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.choose-card:hover {
  transform: translateY(-6px);
}

.choose-card .icon {
  font-size: 38px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  color: #0a2c37;
  margin-bottom: 15px;
  display: inline-block;
}

.choose-card h5 { 
  font-weight: 600;
  margin-bottom: 10px;
  color: #00081e;
}

.choose-card p {
  font-size: 16px;
}

/* Mobile view */
@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
}
