@charset "UTF-8";

/* Table of contents
=========================
1. Preloader
2. Scrollup
3. Module CSS
4. Sidebar
5. Pages
Footer

===========================*/
/* Theme Default CSS */
:root {
  --primary: #009441;
  --secondary: #434242;
  --light: #eee;
  --dark: #434242;
  --text: #656565;
  --font-ttl:"Geologica", sans-serif;
  --font-txt:"Geologica", sans-serif;
  --color1:rgba(57, 49, 133, 1);
  --color2:rgba(229, 9, 127, 1);
  --color3:rgba(0, 160, 227, 1);
  --color4:rgba(0, 148, 65, 1);
}

* {
  margin: 0;
  border: 0;
  outline: none;
}

html,
body {
  font-size: 15px;
  font-weight: 300;
  font-family: var(--font-ttl);
  color: var(--text);
  vertical-align: baseline;
  line-height: 22px;
}

p {
  margin: 0 0 16px;
}
h6:has(~p), h5:has(~p), h4:has(~p) {
  margin-bottom: 0.2rem;
}
img {
  max-width: 100%;
  height: auto;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-txt);
  color: var(--dark);
  font-style: normal;
  margin-bottom: 1rem;
  letter-spacing: -0.02rem;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

h1 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 26px;
    line-height: 32px;
  }
}

h2 {
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

h3 {
  font-size: 24px;
  line-height:30px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h3 {
    font-size: 22px;
    line-height: 28px;
  }
}

h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

h5 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h5 {
    font-size: 18px;
    line-height: 25px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

label {
  color: #575959;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

button {
  cursor: pointer;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

a,
button {
  color: var(--dark);
  outline: medium none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--primary);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus {
  color: var(--dark);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.bg-primary {
  background: var(--primary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.text-justify {
  text-align: justify;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: var(--dark);
  text-shadow: none;
  color: #fff;
}

::selection {
  background: var(--dark);
  text-shadow: none;
  color: #fff;
}

textarea:focus,
input:focus {
  outline: none;
}

.background-black {
  background-color: var(--dark);
}

.background-blue {
  background-color: #003869;
}

.background-skye {
  background-color: #1eae98;
}

.background-gray {
  background-color: #eef5f8;
}

.page-bg {
  background-color: #020a27;
}

.background-primary {
  background-color: #f8f8f1;
}

.page-area {
  padding-top: 111px;
  padding-bottom: 100px;
}

.blog-area {
  padding-top: 30px;
  padding-bottom: 0;
}

@media (max-width: 991px) {

  .page-area,
  .blog-area {
    padding-top: 100px;
    padding-bottom: 52px;
  }
}

@media (max-width: 767px) {

  .page-area,
  .blog-area {
    padding-top: 40px;
    padding-bottom: 22px;
  }
}

.page-area .page-links,
.blog-area .page-links {
  margin-bottom: 20px;
}

.theme-btn,
.wp-block-loginout a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--bs-white);
  padding: 6px 25px;
  border: 1px solid var(--primary);
  text-align: center;
  border-radius: 10px;
  background: var(--primary);
  text-transform: capitalize;
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  gap: 10px;
}

.reset-btn {
  color: var(--primary);
  padding: 6px 25px;
  border: 1px solid var(--primary);
  text-align: center;
  border-radius: 10px;
  text-transform: capitalize;
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

  .theme-btn,
  .wp-block-loginout a, .reset-btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .theme-btn,
  .wp-block-loginout a {
    font-size: 16px;
  }
}

.theme-btn:hover,
.wp-block-loginout a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.theme-btn.style-two,
.wp-block-loginout a.style-two {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.theme-btn.style-two:hover,
.wp-block-loginout a.style-two:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.theme-btn.style-three,
.wp-block-loginout a.style-three {
  border: 1px solid #575959;
  color: var(--dark);
  background: transparent;
  padding: 16px 24px;
  line-height: 170%;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

  .theme-btn.style-three,
  .wp-block-loginout a.style-three {
    padding: 12px 24px;
  }
}

.theme-btn.style-three:hover,
.wp-block-loginout a.style-three:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: transparent;
}

.theme-btn.style-four,
.wp-block-loginout a.style-four {
  border: 1px solid transparent;
}

.theme-btn.style-four:hover,
.wp-block-loginout a.style-four:hover {
  background: transparent;
  border-color: #ffffff;
}

.theme-transparant-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.theme-transparant-btn:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: transparent;
}

.background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.pl-312 {
  padding-left: 312px;
}

.mt-64 {
  margin-top: 64px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-lg-64 {
    margin-top: 64px;
  }
}

.mt-48 {
  margin-top: 48px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.custom-container {
  max-width: 1728px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--dark);
}

@media (max-width: 1800px) {
  .custom-container {
    background-size: cover;
  }
}

.breadcrumb-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  top: 0;
  left: 0;
}

.custom-container-60 {
  width: 100%;
  overflow: hidden;
  padding-right: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .custom-container-60 {
    padding: 0 12px;
    width: 100%;
  }
}

.certified {
  z-index: 5;
  position: absolute;
  top: 31px;
  left: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(224, 247, 128, 0.5);
  width: 135px;
  height: 135px;
  border-radius: 100px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .certified {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .certified {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .certified {
    width: 100px;
    height: 100px;
  }
}

.certified i {
  color: var(--dark);
  font-size: 34px;
  position: absolute;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .certified i {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .certified i {
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .certified i {
    font-size: 20px;
  }
}

.certified .rounded-text {
  width: 115px;
  height: 115px;
  text-transform: uppercase;
  -webkit-transform: rotate(-106deg);
  transform: rotate(-106deg);
  color: #fff;
  font-weight: 400;
  z-index: 10;
  font-family: var(--font-txt);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .certified .rounded-text {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .certified .rounded-text {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .certified .rounded-text {
    width: 90px;
    height: 90px;
  }
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.certified .rotating {
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}

.bg-icon {
  background-color: var(--secondary);
}

.bg-gray {
  background-color: var(--bs-gray-200)!important;
}

.upDown {
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

/* Deafult Margin & Padding */
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-245 {
  margin-bottom: 245px;
}

.mb-250 {
  margin-bottom: 250px;
}


.mt-n80 {
  margin-top: -80px;
}

.mt-n90 {
  margin-top: -90px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-21 {
  padding-top: 21px;
}

.pt-22 {
  padding-top: 22px;
}

.pt-23 {
  padding-top: 23px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-85 {
  padding-top: 85px;
}

.pt-86 {
  padding-top: 85px;
}

.pt-87 {
  padding-top: 85px;
}

.pt-88 {
  padding-top: 85px;
}

.pt-89 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-250 {
  padding-top: 250px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-21 {
  padding-bottom: 21px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-23 {
  padding-bottom: 23px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 35px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

/** padding top & bottom **/
.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.py-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.py-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-105 {
  padding-top: 105px;
  padding-bottom: 105px;
}

.py-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.py-115 {
  padding-top: 115px;
  padding-bottom: 115px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.py-125 {
  padding-top: 125px;
  padding-bottom: 125px;
}

.py-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.py-135 {
  padding-top: 135px;
  padding-bottom: 135px;
}

.py-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.py-145 {
  padding-top: 145px;
  padding-bottom: 145px;
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.py-155 {
  padding-top: 155px;
  padding-bottom: 155px;
}

.py-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.py-165 {
  padding-top: 165px;
  padding-bottom: 165px;
}

.py-170 {
  padding-top: 170px;
  padding-bottom: 170px;
}

.py-175 {
  padding-top: 175px;
  padding-bottom: 175px;
}

.py-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.py-185 {
  padding-top: 185px;
  padding-bottom: 185px;
}

.py-190 {
  padding-top: 190px;
  padding-bottom: 190px;
}

.py-195 {
  padding-top: 195px;
  padding-bottom: 195px;
}

.py-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.py-205 {
  padding-top: 205px;
  padding-bottom: 205px;
}

.py-210 {
  padding-top: 210px;
  padding-bottom: 210px;
}

.py-215 {
  padding-top: 215px;
  padding-bottom: 215px;
}

.py-220 {
  padding-top: 220px;
  padding-bottom: 220px;
}

.py-225 {
  padding-top: 225px;
  padding-bottom: 225px;
}

.py-230 {
  padding-top: 230px;
  padding-bottom: 230px;
}

.py-235 {
  padding-top: 235px;
  padding-bottom: 235px;
}

.py-240 {
  padding-top: 240px;
  padding-bottom: 240px;
}

.py-250 {
  padding-top: 250px;
  padding-bottom: 250px;
}

.py-260 {
  padding-top: 260px;
  padding-bottom: 260px;
}

.py-270 {
  padding-top: 270px;
  padding-bottom: 270px;
}

.py-280 {
  padding-top: 280px;
  padding-bottom: 280px;
}

.py-290 {
  padding-top: 290px;
  padding-bottom: 290px;
}

.py-300 {
  padding-top: 300px;
  padding-bottom: 300px;
}

.py-310 {
  padding-top: 310px;
  padding-bottom: 310px;
}

.py-320 {
  padding-top: 320px;
  padding-bottom: 320px;
}

.py-330 {
  padding-top: 330px;
  padding-bottom: 330px;
}

.py-340 {
  padding-top: 340px;
  padding-bottom: 340px;
}

.py-350 {
  padding-top: 350px;
  padding-bottom: 350px;
}

/** padding left & right **/
.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.px-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.px-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.px-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.px-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.px-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.px-105 {
  padding-left: 105px;
  padding-right: 105px;
}

.px-110 {
  padding-left: 110px;
  padding-right: 110px;
}

.px-115 {
  padding-left: 115px;
  padding-right: 115px;
}

.px-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.px-125 {
  padding-left: 125px;
  padding-right: 125px;
}

.px-130 {
  padding-left: 130px;
  padding-right: 130px;
}

.px-135 {
  padding-left: 135px;
  padding-right: 135px;
}

.px-140 {
  padding-left: 140px;
  padding-right: 140px;
}

.px-145 {
  padding-left: 145px;
  padding-right: 145px;
}

.px-150 {
  padding-left: 150px;
  padding-right: 150px;
}

.px-155 {
  padding-left: 155px;
  padding-right: 155px;
}

.px-160 {
  padding-left: 160px;
  padding-right: 160px;
}

.px-165 {
  padding-left: 165px;
  padding-right: 165px;
}

.px-170 {
  padding-left: 170px;
  padding-right: 170px;
}

.px-175 {
  padding-left: 175px;
  padding-right: 175px;
}

.px-180 {
  padding-left: 180px;
  padding-right: 180px;
}

.px-185 {
  padding-left: 185px;
  padding-right: 185px;
}

.px-190 {
  padding-left: 190px;
  padding-right: 190px;
}

.px-195 {
  padding-left: 195px;
  padding-right: 195px;
}

.px-200 {
  padding-left: 200px;
  padding-right: 200px;
}

.px-205 {
  padding-left: 205px;
  padding-right: 205px;
}

.px-210 {
  padding-left: 210px;
  padding-right: 210px;
}

.px-215 {
  padding-left: 215px;
  padding-right: 215px;
}

.px-220 {
  padding-left: 220px;
  padding-right: 220px;
}

.px-225 {
  padding-left: 225px;
  padding-right: 225px;
}

.px-230 {
  padding-left: 230px;
  padding-right: 230px;
}

.px-235 {
  padding-left: 235px;
  padding-right: 235px;
}

.px-240 {
  padding-left: 240px;
  padding-right: 240px;
}

.px-250 {
  padding-left: 250px;
  padding-right: 250px;
}

.px-260 {
  padding-left: 260px;
  padding-right: 260px;
}

.px-270 {
  padding-left: 270px;
  padding-right: 270px;
}

.px-280 {
  padding-left: 280px;
  padding-right: 280px;
}

.px-290 {
  padding-left: 290px;
  padding-right: 290px;
}

.px-300 {
  padding-left: 300px;
  padding-right: 300px;
}

.px-310 {
  padding-left: 310px;
  padding-right: 310px;
}

.px-320 {
  padding-left: 320px;
  padding-right: 320px;
}

.px-330 {
  padding-left: 330px;
  padding-right: 330px;
}

.px-340 {
  padding-left: 340px;
  padding-right: 340px;
}

.px-350 {
  padding-left: 350px;
  padding-right: 350px;
}

/* WordPress Core
===================*/
body {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 25px;
}

ol {
  padding-left: 20px;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

/* Protected Post Type */
.post-password-form label {
  width: 100%;
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.post-password-form input[type="password"] {
  font-size: 1.2rem;
  line-height: 20px;
  padding: 12px 20px;
  border: 1px solid #E4E4F2;
  width: 100%;
}

.post-password-form input[type="submit"] {
  background-color: var(--dark);
  border: none;
  padding: 10px 40px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.post-password-form input[type="submit"]:hover {
  background-color: var(--dark);
}

/* Table */
table {
  margin-bottom: 20px;
  width: 100%;
}

table caption {
  border: 1px solid #dfe2e9;
  padding: 6px 10px;
  border-top: 0;
  color: #575959;
}

table th,
table td {
  background-color: transparent;
  border: 1px solid #dfe2e9;
  text-align: center;
  padding: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  table th,
  table td {
    padding: 5px;
  }
}

table th#today,
table td#today {
  background: var(--dark);
  color: #ffffff;
}

table th#today a,
table td#today a {
  color: #ffffff;
}

.page-content .size-full.alignright {
  margin-bottom: 15px;
  margin-top: 20px;
}

.page-content figure.wp-caption.aligncenter {
  margin-top: 40px;
}

.page-content dl,
.page-content ol,
.page-content ul {
  margin-bottom: 11px;
}

.page-content .custom-comment-respond {
  margin-top: 78px;
  margin-bottom: 20px;
}

.page-content .latest-comments .comment-respond {
  margin-bottom: 40px;
}

.page-content .post-comments {
  margin-top: 80px;
}

.page-content .comment-respond .contacts-message {
  margin-top: 60px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .page-content .comment-respond .contacts-message {
    margin-top: 40px;
    margin-bottom: 0px;
  }

  .mt-n90 {
    margin-top: -65px;
  }
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*
 Caption
============================*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  font-size: 14px;
  font-style: italic;
}

.wp-caption-text {
  text-align: center;
}

/*
 Galleries
============================*/
.gallery {
  margin-bottom: 10px;
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding-right: 5px !important;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

.size-thumbnail {
  margin-bottom: 20px;
}

img.emoji {
  width: 15px;
  height: 15px;
}

/*
 Alignments
============================*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em !important;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em !important;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/*
 Block Unit Test Widget
============================*/
.wp-block-search__input {
  border: 1px solid #dfe2e9 !important;
}

.wp-block-search__button {
  margin-left: 0 !important;
}

.wp-block-social-links {
  padding-left: 0 !important;
}

.wp-block-social-links li {
  padding-top: 0 !important;
}

.single-post-item.format-quote blockquote {
  padding: 45px;
}

@media (max-width: 767px) {
  .single-post-item.format-quote blockquote {
    padding: 35px;
  }
}

blockquote {
  overflow: hidden;
  margin: 48px 0;
  position: relative;
  z-index: 1;
  padding-left: 24px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  blockquote {
    padding-left: 16px;
  }
}

blockquote p {
  font-size: 16px;
  font-family: var(--font-ttl);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  margin-top: 0 !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  blockquote p {
    font-size: 16px;
    line-height: 28px;
  }
}

blockquote p a {
  color: var(--dark);
  text-decoration: underline;
}

blockquote footer {
  font-size: 16px;
  font-family: var(--font-txt);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  color: var(--dark);
  margin-top: 16px;
}

.wp-block-quote,
blockquote {
  border-left: solid 5px var(--dark);
}

.wp-block-pullquote {
  border-top: 5px solid var(--dark) !important;
  border-bottom: 5px solid var(--dark) !important;
  background-color: #ffffff;
}

.wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
  margin-top: 10px;
  display: block;
}

.wp-block-column:not(:first-child),
.wp-block-column:nth-child(2n) {
  margin-left: 10px;
}

.wp-block-column:not(:last-child) {
  margin-right: 10px;
}

.wp-block-column:nth-child(2n+1) {
  margin-right: 10px;
}

.post-content>.alignwide {
  margin-left: 0;
  margin-right: 0;
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
}

.post-content h2.has-small-font-size {
  line-height: 24px;
}

.post-content h2.has-medium-font-size {
  line-height: 32px;
}

.post-content h2.has-large-font-size {
  line-height: 48px;
}

.post-content p.has-large-font-size {
  font-size: 36px;
  line-height: 1.2;
}

.post-content .wp-block-search {
  margin-bottom: 15px;
}

.post-content .wp-block-file {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-content .wp-block-group__inner-container p {
  margin-top: 0 !important;
}

.post-content ul {
  padding-left: 0;
}

.has-very-light-gray-color.has-very-light-gray-color {
  color: #fff;
  background: var(--dark) !important;
}

.wp-block-button {
  margin-bottom: 10px;
}

.wp-block-archives select,
.wp-block-categories select {
  height: 50px;
  width: 200px;
  border: 1px solid #ddd;
  padding: 0 10px;
  margin-bottom: 10px;
}

.wp-block-latest-comments {
  padding-left: 0 !important;
}

.wp-block-cover p.wp-block-cover-text,
.wp-block-cover.is-light .wp-block-cover__inner-container {
  color: #fff !important;
}

.wp-block-cover-text a {
  color: #fff;
}

.wp-block-rss {
  padding-left: 0 !important;
}

.widget .wp-block-archives-dropdown,
.widget .wp-block-categories-dropdown,
.widget .wp-block-loginout,
.widget .wp-block-social-links,
.widget.widget_archive select,
.widget.widget_categories select,
.widget.widget_text select,
.widget.widget_tag_cloud .tagcloud,
.widget .wp-block-tag-cloud {
  margin-bottom: 6px;
  border-color: #dfe2e9;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title {
  display: inline-block;
  width: 100%;
}

nav.wp-calendar-nav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav.wp-calendar-nav a {
  color: #575959;
}

nav.wp-calendar-nav a:hover {
  color: var(--dark);
}

/*
 Media
============================*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
  width: 100%;
}

.comment-respond.style-two .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3232 !important;
}

.comment-respond .wpcf7-form .wpcf7-not-valid {
  border-color: #dc3232 !important;
}

.comment-respond .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 5px;
}

.comment-respond .wpcf7-form.sent .wpcf7-response-output {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #72DC60;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  background: #F4FFF5;
  border: 1px solid #CDF5C8 !important;
  border-radius: 10px;
}

.comment-respond .wpcf7-form.invalid .wpcf7-response-output {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #dc3232;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  background: #FFF7F7;
  border: 1px solid #FED8D8 !important;
  border-radius: 10px;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 22px !important;
  height: 22px !important;
  border-color: #dfe2e9;
  border-radius: 3px !important;
  background-color: transparent !important;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative !important;
  padding: 0 !important;
  cursor: pointer;
  margin-top: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

input[type="radio"]::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: var(--dark);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

input[type="checkbox"]::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.44899 7.76355C3.36328 7.84971 3.24641 7.89784 3.12495 7.89784C3.00349 7.89784 2.88662 7.84971 2.80091 7.76355L0.213156 5.17534C-0.0554271 4.90676 -0.0554271 4.47134 0.213156 4.20321L0.537198 3.87917C0.805781 3.61059 1.24074 3.61059 1.50932 3.87917L3.12495 5.4948L7.49057 1.12917C7.75916 0.860589 8.19457 0.860589 8.4627 1.12917L8.78674 1.45321C9.05532 1.7218 9.05532 2.15721 8.78674 2.42534L3.44899 7.76355Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: var(--dark);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  border-color: var(--dark) !important;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: 0;
  gap: 10px;
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
}

.logged-in .comment-respond textarea {
  margin-bottom: 12px;
}

.zoom-instagram-widget p {
  color: #ffffff;
}

.zoom-instagram-widget p a {
  color: #ff6731;
}

.zoom-instagram-widget ul {
  list-style: none;
}

.zoom-instagram-widget ul li {
  color: #ffffff;
}

body.admin-bar .header-menu-area.sticky_menu {
  top: 30px;
}

@media (max-width: 600px) {
  body.admin-bar .header-menu-area.sticky_menu {
    top: 0;
  }
}

.page-template-default.page-id-146 .page-content p:last-child {
  margin-bottom: 10px;
}

.page-template-default.page-id-1133 .page-content .comment-respond {
  margin-top: 78px;
  display: inline-block;
  width: 100%;
}

.page-template-default.page-id-3 .page-area {
  padding-top: 104px;
}

.post-template-default.postid-163 .blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 34px;
}

.post-template-default.postid-150 .blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 34px;
}

.post-template-default.postid-150 .blog-details-wrapper .single-post-item .post-content .wp-block-group.is-layout-constrained:last-child {
  border: 1px solid #000;
}

.post-template-default.postid-51 .blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 25px;
}

.post-template-default.postid-51 .blog-details-wrapper .single-post-item .post-content p:last-child {
  margin-bottom: 0;
}

.post-template-default.postid-1163 .blog-details-wrapper .single-post-item .post-content .wp-caption,
.post-template-default.postid-568 .blog-details-wrapper .single-post-item .post-content .wp-caption {
  margin-top: 20px;
}

.post-template-default.postid-1785 .blog-details-wrapper .single-post-item .post-content .wp-block-button__link {
  color: #ffffff !important;
  background-color: var(--dark);
}

.post-template-default.postid-1149 .blog-details-wrapper .latest-comments li .comments-box .comments-text p {
  margin-bottom: 0;
}

.post-template-default.postid-555 .blog-details-wrapper .single-post-item .post-content .gallery {
  margin-top: 20px;
}

.post-template-default.postid-1786 .single-post-item .post-title {
  margin-bottom: 30px;
}

.error-404.not-found {
  margin-top: -20px;
  margin-bottom: 40px;
}

.error-404.not-found .error-content .error-btn-bh {
  margin-top: 20px;
}

@-webkit-keyframes MovefadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes MovefadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.MovefadeUp {
  -webkit-animation-name: MovefadeUp;
  animation-name: MovefadeUp;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes animatelinebar {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
  }
}

@keyframes animatelinebar {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
  }
}

@-webkit-keyframes slideUpIn {
  0% {
    -webkit-transform: translateY(40px);
  }

  100% {
    -webkit-transform: translateY(0);
  }

  0% {
    -webkit-transform: translateY(40px);
  }
}

@keyframes slideUpIn {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@-webkit-keyframes MoveLeftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

@keyframes MoveLeftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

@-webkit-keyframes MoveUpDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes MoveUpDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@-webkit-keyframes MoveUpDownCorner {
  0% {
    -webkit-transform: translate(-30%, 10%);
    transform: translate(-30%, 10%);
  }

  100% {
    -webkit-transform: translate(-50%, 15%);
    transform: translate(-50%, 15%);
  }
}

@keyframes MoveUpDownCorner {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  100% {
    -webkit-transform: translate(-50%, 15%);
    transform: translate(-50%, 15%);
  }
}

@-webkit-keyframes CustomMoveUpDown {
  0% {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }

  100% {
    -webkit-transform: translate(-50%, 40%);
    transform: translate(-50%, 40%);
  }
}

@keyframes CustomMoveUpDown {
  0% {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }

  100% {
    -webkit-transform: translate(-50%, 40%);
    transform: translate(-50%, 40%);
  }
}

@-webkit-keyframes Animated3 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes Animated3 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes Animated4 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

@keyframes Animated4 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

@-webkit-keyframes Rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes Rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotating-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes Rotating-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* 1. Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999999;
  right: 0;
  bottom: 0;
}

#preloader-status {
  height: 210px;
  width: 210px;
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  position: absolute;
  left: 50%;
  top: 50%;
}

/* 2. Scrollup */
.scrollup-wrapper {
  position: fixed;
  right: 40px;
  bottom: 20px;
  z-index: 9999;
}

.scrollup-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  border-radius: 50px;
  padding-top: 3px;
  border: 2px solid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.scrollup-btn i {
  margin-top: -3px;
  display: block;
}

/* 3. Partials */
.header-area {
  position: sticky;
  top: -40px;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-top {
  background-color: var(--primary);
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  z-index: 10;
}

@media (max-width: 1399px) {
  .header-top {
    padding: 0 28px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-top {
    padding: 0 16px;
  }
}

.header-top .header-top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .header-top .header-top-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.header-top .header-top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
}

@media (max-width: 1199px) {
  .header-top .header-top-info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}

.header-top .header-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 24px;
  padding: 8px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-top .header-contact-info {
    padding-top: 0;
  }
}

.header-top .header-contact-info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-ttl);
}

.header-top .header-contact-info span.contact-info-item {
  gap: 0 10px !important;
}

.header-top .header-contact-info span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  font-family: var(--font-ttl);
}

.header-top .header-contact-info span a i {
  color: #63c38d;
  font-size: 16px;
}

.header-top .header-contact-info span i {
  font-size: 16px;
  color: var(--dark);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-top .header-top-btn {
    display: none;
  }
}

.header-top .header-top-btn a {
  position: relative;
  padding: 12px 46px;
  font-size: 16px;
  font-family: var(--font-txt);
  color: #ffffff;
  margin-bottom: -100px;
  display: inline-block;
  font-weight: 700;
  z-index: 2;
}

.header-top .header-top-btn a:before {
  position: absolute;
  content: "";
  border-radius: 0 0 10px 10px;
  background-color: #ff6731;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-top .social-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-top .social-profile a {
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 24px;
  height: 24px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-top .social-profile a i {
  font-size: 13px;
  line-height: 14px;
  color: #ffffff;
}

.header-top .social-profile a:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  color: #1eae98;
}

.header-menu-area {
  width: 100%;
  background: transparent;
  z-index: 999;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: relative;
  padding-right: 96px;
  padding-left: 96px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-menu-area.sticky-header {
  width: 100%;
  z-index: 999;
  padding: 0 28px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .35);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-menu-area.sticky_menu {
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .35);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .35);
}

.header-menu-area.sticky_menu .logo {
  height: 80px;
}

@media (max-width: 991px) {
  .header-menu-area.sticky_menu .logo {
    height: 45px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-menu-area {
    padding: 12px 15px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-menu-area {
    padding: 12px 30px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-menu-area {
    padding: 0 16px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .header-menu-area {
    padding: 8px 28px;
  }
}

.header-menu-area.sticky_menu .logo .standard-logo {
  display: none;
}

.header-menu-area.sticky_menu .logo .sticky-logo {
  display: block;
}

.header-menu-area.sticky_menu .logo .sticky-logo img {
  width: 75px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-menu-area.sticky_menu .main-menu ul li a {
  padding: 20px 15px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-menu-area.sticky_menu .main-menu ul li a:before {
  right: 3px;
}

.header-menu-area.sticky_menu .main-menu ul li ul li a {
  padding: 8px 20px;
}

.header-menu-area .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-menu-area .logo .standard-logo img {
  height: 85px;
}

@media (max-width: 991px) {
  .header-menu-area .logo {
    height: 65px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-menu-area .logo {
    width: 65px;
    height: 45px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-menu-area .logo .standard-logo {
    display: none;
  }
}

.header-menu-area .logo .standard-logo img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-menu-area .logo .sticky-logo {
  display: none;
}

@media only screen and (max-width: 767px) {
  .header-menu-area .logo .sticky-logo {
    width: 170px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-menu-area .logo .sticky-logo {
    display: block;
  }
}

.header-menu-area .logo .sticky-logo img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 80px
}

.header-menu-area .logo .retina-logo {
  display: none;
}

.main-menu ul {
  margin: 0;
  padding: 0;
  position: relative;
}
.main-menu ul li.megamenu {
  position: static;
}

.main-menu ul li .submenu .submenu {
  width: 580px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  padding: 15px;
  background: #f5f5f5;
}
.main-menu ul li .submenu .submenu li {
  flex: 0 1 170px;
}

.main-menu ul li {
  display: inline-block;
  padding: 0;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.main-menu ul li.active {
  position: relative;
}

.main-menu ul li.active>a {
  color: var(--primary);
}

.main-menu ul li.active>a:before {
  border-color: var(--primary);
}

.main-menu ul li.dropdown>a {
  padding-right: 26px;
}

.main-menu ul li.dropdown>a:before {
  visibility: visible;
  border-color: var(--dark);
}

.main-menu ul li.dropdown .dropdown>a:before {
  visibility: visible;
  right: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main-menu ul li a {
  position: relative;
  padding-right: 15px;
}

.main-menu > ul > li > a:has(~ ul):before {
  position: absolute;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: solid var(--dark);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  margin: auto;
  top: 62%;
  right: 0px;
}

.main-menu ul li ul.submenu li.active>a {
  position: relative;
  z-index: 2;
  color: var(--dark);
}

.main-menu ul li ul.submenu li.active>a:before {
  border-color: #ffffff;
}

.main-menu ul li ul.submenu li.active>a:after {
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
  z-index: -1;
}

.main-menu ul li a {
  display: block;
  padding: 18px;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  color: var(--dark);
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 185%;
  font-weight: 300;
  /* display: -webkit-inline-box; */
  /* display: -ms-inline-flexbox; */
  /* display: inline-flex; */
  /* -webkit-box-align: center; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
  /* gap: 8px; */
}
.main-menu > ul > li > a {
  font-weight: 600;
}


.main-menu > ul li:hover > a {
  color: var(--primary);
}

.main-menu ul li a:hover:before {
  border-color: var(--primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li a {
    padding: 18px 24px;
  }
}

.main-menu ul li:hover>ul {
  visibility: visible;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.main-menu ul li ul li:hover ul {
  visibility: visible;
  top: -2px;
}

.main-menu ul ul {
  background-color: #ffffff;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: left;
  top: 100%;
  visibility: hidden;
  z-index: 99999;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border-top: 2px solid var(--primary);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  border-radius: 0 0 4px 4px;
}
.main-menu > ul ul {
  right: 0;
  left: auto;
}
.main-menu ul ul li {
  float: none;
  width: 200px;
}

.main-menu ul ul li ul {
  visibility: hidden;
}

.main-menu ul ul li i {
  float: right;
}

.main-menu ul ul li a {
  font-size: 14px;
  line-height: 130%;
  padding: 10px 20px;
  color: var(--dark);
  border-bottom: 1px solid #f5f5f5;
  margin-left: 0;
  width: 100%;
}
.main-menu ul li .submenu .submenu li a {
  padding: 5px 20px;
  font-size: 14px;
}

.main-menu > ul > li > ul.submenu > li:hover > a {
  background-color: var(--primary);
  color: #fff;
}
.main-menu ul > ul > li:hover > a {
  color: var(--primary);
}

.main-menu ul ul > li > a:hover:before {
  border-color: #ffffff;
}

.main-menu ul ul li:last-child a {
  border-bottom: 0px;
}

.main-menu ul ul ul {
  left: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  border-top: 0px;
  border-top: 2px solid var(--dark);
}
.main-menu > ul li:nth-child(n+4) ul ul {
  right: 100%;
  left: auto;
}
.animation {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slideUpIn {
  -webkit-animation-name: slideUpIn;
  animation-name: slideUpIn;
}

@media only screen and (max-width: 1199px) {
  .header-btn-wrapper {
    display: none;
  }
}

.menu-icon img {
  width: 25px;
  filter:invert(26%) sepia(6%) saturate(23%) hue-rotate(316deg) brightness(93%) contrast(94%);
  transition: all .2s ease-in-out;
}
.menu-icon  {
    text-align: center;
 }
 .main-menu ul li:hover a img {
  filter: invert(33%) sepia(39%) saturate(5539%) hue-rotate(135deg) brightness(92%) contrast(101%);
  transition: all .2s ease-in-out;
 }






.section-title .icon {
  font-size: 25px;
  width: 65px;
  height: 40px;
  border-radius: 50px;
  background: #e0f780;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-btn a {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px 8px 8px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  font-family: var(--font-txt);
  text-transform: capitalize;
}

.header-btn i {
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 11px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-btn:hover a {
  border-color: var(--primary);
}

.header-btn:hover i {
  background: var(--dark);
  color: #ffffff;
}

.header-btn.style-two a {
  background: var(--dark);
  border-radius: 12px;
  padding:8px 18px 8px 8px;
  color: #ffffff;
  font-family: var(--font-ttl);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.header-btn.style-two:hover a {
  background: var(--primary);
  color: var(--dark);
}

.header-btn.style-two:hover i {
  background: var(--dark);
}
.btn.style-three,.btn.style-two  {
  padding: 0;
  width: 100%;
}
.btn a {
  background: var(--primary);
  display: block;
  text-align: center;
  padding: 15px 22px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}
.btn.style-three a {
  background: linear-gradient(90deg, var(--color2) 0%, var(--color3) 100%);
  transition: all .3s ease-in-out;
}
.btn.style-three a:hover  {
  background: linear-gradient(90deg, var(--color3) 0%, var(--color4) 100%);
  transition: all .3s ease-in-out;
}


.header-btn.style-three {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-btn.style-three a {
  background: var(--dark);
  color: #ffffff;
  border-radius: 12px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header-btn.style-three i {
  color: var(--dark);
}

.header-btn.style-three:hover a {
  background: #f8f8f1;
  color: var(--dark);
}

.header-btn.style-three:hover i {
  background: var(--primary);
}

.header-area.style-two .header-top .header-top-btn a {
  margin-bottom: inherit;
  padding: 6px 46px;
}

.header-area.style-two .header-top .header-top-btn a:before {
  border-radius: 0;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.header-area.style-two .header-menu-area .logo {
  height: 107px;
}

@media (max-width: 991px) {
  .header-area.style-two .header-menu-area .logo {
    height: 80px;
  }
  .menu-icon {
    display: inline-block;
    padding-right: 15px;
}

}

.header-area.style-two .header-menu-area .main-menu ul ul {
  border-color: var(--dark);
}

.header-area.style-two .header-menu-area .main-menu ul li a {
  color: var(--dark);
  padding: 39.5px 24px;
}

.header-area.style-two .header-menu-area .main-menu ul li a:before {
  border-color: var(--dark);
  right: 8px;
}

.header-area.style-two .header-menu-area .main-menu ul li a:hover:before {
  border-color: var(--dark);
}

.header-area.style-two .header-menu-area .main-menu ul li.active a:before {
  border-color: var(--dark);
}

.header-area.style-two .header-menu-area .main-menu ul li ul li a {
  padding: 10px 20px;
}

.header-area.style-three {
  position: unset;
}

.header-area.style-three .header-top .header-top-btn a {
  margin-bottom: inherit;
  padding: 6px 46px;
}

.header-area.style-three .header-top .header-top-btn a:before {
  border-radius: 0;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.header-area.style-three .header-menu-area .logo {
  height: 107px;
}

@media (max-width: 991px) {
  .header-area.style-three .header-menu-area .logo {
    height: 80px;
  }
}

.header-area.style-three .header-menu-area .main-menu ul ul {
  border-color: var(--dark);
}

.header-area.style-three .header-menu-area .main-menu ul li a {
  color: var(--dark);
  padding: 39.5px 24px;
}

.header-area.style-three .header-menu-area .main-menu ul li a:before {
  border-color: var(--dark);
  right: 8px;
}

.header-area.style-three .header-menu-area .main-menu ul li a:hover:before {
  border-color: var(--dark);
}

.header-area.style-three .header-menu-area .main-menu ul li.active a:before {
  border-color: var(--dark);
}

.header-area.style-three .header-menu-area .main-menu ul li ul li a {
  padding: 10px 20px;
}

/* 3. Module CSS */
/*!
MeanMenu 2.0.8 -------- To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/) 
*/
.mean-bar .meanmenu-reveal {
  display: none !important;
}

a.meanmenu-reveal {
  display: none;
}

.mobile-nav-menu.mean-container {
  width: 100%;
  padding: 0;
}

.mean-container .mean-bar {
  width: 100%;
  position: relative;
  z-index: 999999;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px;
  border-radius: 4px;
  position: absolute;
  right: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  display: block;
  font-weight: 700;
  margin-right: 15px;
  margin-top: -77px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .mean-container a.meanmenu-reveal {
    margin-top: -65px;
  }
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--dark);
  height: 2px;
  margin-top: 5px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #fff;
  overflow-x: hidden;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  padding: 10px 30px 10px 0;
  margin: 0;
  text-align: left;
  color: #575959;
  border-top: 1px solid #ebecee;
  text-decoration: none;
  text-transform: capitalize;
  width: 100%;
}

.mean-container .mean-nav ul li li a {
  width: 85%;
  padding: 10px 20px;
  border-top: 1px solid #ebecee;
  text-shadow: none !important;
  visibility: visible;
}
.mean-container .mean-nav ul li.dropdown-opened > a { 
  color: var(--primary);
}
.mean-container .mean-nav ul li li li > a { 
  font-size: 14px;
  padding: 7px 0 7px 0;
  line-height: 20px;
}
.mean-container .mean-nav ul li.mean-last a {
  border-bottom: 0;
  margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
  width: 75%;
  padding-left: 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding-left: 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding-left: 25%;
}

.mean-container .mean-nav ul li a:hover {
  background: #2c2e3d;
  background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
  width: 48px;
  height: 50px;
  padding: 0 !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 1px solid #ebecee;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--dark);
  color: #fff;
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.mean-remove {
  display: none !important;
}

.icon-card {
  background: #ffffff;
  padding: 23px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.service-slider a.icon-card {
  max-height: 100%;
}

.swiper_overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(2, 0, 36, 0) 50%, rgb(143 143 143 / 100%) 100%);
  z-index: 1;
}



@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-slider a.icon-card {
    max-height: 100%;
  }

  .icon-card {
    padding: 12px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .icon-card {
    margin-bottom: 24px;
    padding: 18px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .icon-card {
    padding: 32px 26px;
  }
}

.icon-card .icon {
  border-bottom: 4px solid var(--primary);
  color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  z-index: 5;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.book-now {
  display: inline-block;
  font-size: 14px;
  border: 1px solid var(--primary);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--primary);
}
.call-now {
  display: inline-block;
  font-size: 15px;
  background: var(--primary);
  padding: 5px 15px;
  border-radius: 5px;
  color: var(--bs-white);
}
.price-bx {
  position: absolute;
  top: 13px;
  left: 10px;
  z-index: 9999;
  font-size: 13px;
}

.price-bx span {
  background: var(--primary);
  padding: 3px 10px;
  border-radius: 15px;
  font-family: var(--font-txt);
  color: #fff;
  font-weight: 200;
  font-size: 12px;
}

.content-wrap:has(.shortlist) {
  padding: 16px;
  border: 1px solid #eee;
  padding-bottom: 65px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  position: relative;
 }
.shortlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.shortlist a {
  background: var(--dark);
  display: block;
  color: #fff;
  text-align: center;
  padding: .7rem;
  width: 100%;
}
.shortlist a:hover {
  background: var(--primary);
}
.shortlist a:first-child {
  border-right: 1px solid #727272;
}

.tabs-content .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tabs-content .content.active {
  max-height: 1000px; /* or auto with JS */
}
.visa-bx {
  background: #fff;
  box-shadow: 0 6.08317px 18.2495px rgba(0,0,0,.15);
  border-radius: 2rem;
  padding: 30px;
}
.visa-country .counrty-card img {
  border-radius: 100%;
  overflow: hidden;
  width: 180px;
  height: 160px;
  margin-bottom: 8px;
  text-align: center;
  display: inline-block;
  transition: all.2s ease-in-out;
}
.visa-country .counrty-card:hover img { 
  opacity:.8 ;
  transition: all.2s ease-in-out;
}
.visa-country .counrty-card:hover h6 { 
  color: var(--primary);
  transition: all.2s ease-in-out;
}
.visa-country .counrty-card {
  text-align: center;
  display: block;
}
.counrty-card .country-info h6 {
  margin: 0;
}
.counrty-card .country-info small {
  font-size: 14px;
  color: #757575;
}



.team-member-card:hover span.book-now,
.icon-card:hover span.book-now {
  background-color: var(--primary);
  color: #fff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .book-now {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

.icon-card .icon svg path {
  fill: var(--dark);
}

.icon-card .icon i,
.icon-card .icon img,
.icon-card .icon svg {
  font-size: 55px;
  z-index: 10;
  position: relative;
  border-radius: 15px 15px 0 0;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.icon-card .icon .icon-color {
  width: 26px;
  height: 26px;
  background-color: var(--primary);
  border-radius: 50px;
  position: absolute;
  top: 20px;
  left: 38px;
}

.icon-card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  font-family: var(--font-ttl);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 5;
  width: 100%;
}

.icon-card .content .desc {
  font-family: var(--font-ttl);
  font-weight: 400;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 0;
}

h6.title:has(~ ul.stay)  {
  margin-bottom: 0;
  line-height: 24px;
}

ul.stay {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
ul.stay li {
  position: relative;
  font-size: 14px;
  font-weight: 200;
  list-style: none;
}
ul.stay li:before {
  content: '|';
  position: relative;
  left: 0;
  top: 0;
  padding: 8px;
  color: #b7b7b7;
}
ul.stay li:first-child::before {
  display: none;
}

ul.facility {
  padding-left: 16px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
ul.facility li {
  flex: 1 1 150px;
  font-weight: 300;
  font-size: 15px;
}
h6.price {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin: 0;
  color: var(--primary);
}
h6.price span {
  font-size: 12px;
  font-weight: 200;
  line-height: 12px;
  color: var(--dark);
}


@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card .content .desc {
    padding: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .icon-card .content .desc br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .icon-card .content .desc {
    padding: 0;
    font-size: 14px;
  }

  .icon-card .content .desc br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .icon-card .content .desc {
    padding: 0;
    font-size: 14px;
  }
}

.icon-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.icon-card:hover .icon {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.icon-card:hover:after {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.common-card-wrapper {
  background: #4566d4;
  padding: 100px 50px;
}

.icon-card-wrapper-two {
  padding: 70px;
  border-radius: 8px;
  overflow: hidden;
  background: #2c3236;
}

.icon-card.style-two {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px 40px;
  border-radius: 8px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.icon-card.style-two .icon {
  background: var(--primary);
  width: 80px;
  height: 80px;
  -ms-flex-item-align: start;
  align-self: start;
}

.icon-card.style-two .icon i {
  font-size: 48px;
  font-weight: 500;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-two .icon {
    -ms-flex-item-align: center;
    align-self: center;
  }
}

.icon-card.style-two .content .title {
  text-align: start;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-two .content .title {
    text-align: center;
    font-size: 24px;
  }
}

.icon-card.style-two .content .desc {
  text-align: start;
  font-size: 16px;
  line-height: 31px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-two .content .desc {
    text-align: center;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.icon-card.style-three {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background: #f8f8f1;
  padding: 18px;
}

.icon-card.style-three .icon .icon-color {
  width: 39px;
  height: 39px;
  top: 0;
  left: unset;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.icon-card.style-three .content {
  gap: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 767px) {
  .icon-card.style-three .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.icon-card.style-three .content .desc {
  padding: 0;
  margin-bottom: 0;
  font-family: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 170%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .icon-card.style-three .icon {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .icon-card.style-three {
    padding: 24px;
  }

  .icon-card.style-three .icon {
    width: 80px;
    height: 80px;
  }
}

.icon-card.style-four {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 78px 28px;
  margin-top: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-four {
    padding: 48px 12px;
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .icon-card.style-four {
    padding: 48px 12px;
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .icon-card.style-four {
    padding: 48px 12px;
    margin-bottom: 24px;
  }
}

.icon-card.style-four .icon {
  background: var(--primary);
  width: 80px;
  height: 80px;
  border: none;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.icon-card.style-four .icon i {
  font-size: 48px;
  font-weight: 500;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-four .icon {
    -ms-flex-item-align: center;
    align-self: center;
  }
}

.icon-card.style-four .content .desc {
  font-size: 16px;
}

.icon-card.style-four .content .title {
  font-size: 24px;
}

.icon-card.style-four:hover .icon {
  background: var(--primary) !important;
  border-color: var(--dark);
}

.icon-card.style-five {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 16px;
}

.icon-card.style-five .icon {
  background: var(--primary);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 10px;
}

.icon-card.style-five .icon i {
  font-size: 24px;
  color: var(--light);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-five .icon i {
    font-size: 16px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-five .icon {
    width: 48px;
    height: 48px;
  }
}

.icon-card.style-five .content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.icon-card.style-five .content .title {
  text-align: start;
}

.icon-card.style-five .content .desc {
  text-align: start;
  padding: 0;
}

.icon-card.style-five:hover .icon {
  -webkit-transform: rotateY(-360deg) !important;
  transform: rotateY(-360deg) !important;
}

.icon-card.style-five:hover:after {
  display: none;
}

.icon-card.style-six {
  background: #f8f8f1;
  padding: 55px 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .icon-card.style-six {
    padding: 30px 16px;
  }
}

.icon-card.style-six .content .desc {
  padding: 0;
}

.icon-card.style-seven {
  background-color: #f8f8f1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 26px 0;
  gap: 16px;
  margin-top: 54px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .icon-card.style-seven {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .icon-card.style-seven {
    padding: 16px 12px;
  }
}

.icon-card.style-seven .icon {
  background: var(--primary);
  width: 80px;
  height: 80px;
  border: transparent;
}

.icon-card.style-seven .icon i {
  color: var(--dark);
}

.icon-card.style-seven .content .title {
  font-size: 24px;
  line-height: 34px;
  color: var(--dark);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card.style-seven .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.icon-card.style-seven.slick-current {
  background-color: var(--dark);
  border-color: transparent;
}

.icon-card.style-seven.slick-current .content .title {
  color: #ffffff;
}

.icon-card.style-seven:hover:after {
  display: none;
}

.video-popup-card {
  position: relative;
}

.video-popup-card .video-popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-popup-card .video-popup-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-popup-card .video-popup-btn a {
  width: 86px;
  height: 86px;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  background: rgba(224, 247, 128, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-popup-card .video-popup-btn a {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-card .video-popup-btn a {
    width: 60px;
    height: 60px;
  }
}

.video-popup-card .video-popup-btn a i {
  color: var(--dark);
  font-size: 24px;
}

.video-popup-card .video-popup-btn a:hover {
  -webkit-animation: none;
  animation: none;
}

.video-popup-card.style-two {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.video-popup-card.style-two .video-popup-btn a {
  width: 100px;
  height: 100px;
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-image: none;
  border: 2px solid #ffffff;
}

.video-popup-card.style-two .video-popup-btn a i {
  color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-card.style-two .video-popup-btn a {
    width: 80px;
    height: 80px;
  }
}

.video-popup-card.style-three {
  overflow: visible;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.video-popup-card.style-three .video-popup-image {
  border-radius: 12px;
  overflow: hidden;
}

.video-popup-card.style-three .video-popup-btn {
  left: 0;
}

@media (max-width: 1199px) {
  .video-popup-card.style-three .video-popup-btn {
    left: 50%;
  }
}

.video-popup-card.style-three .video-popup-btn a {
  background: #e30008;
  background: linear-gradient(65deg, #e30008 0%, #faae00 100%);
}

.counter-card {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0 48px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-card:before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-card {
    padding: 0;
  }
}

.counter-card .counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-card .counter-item {
    padding: 20px 0;
    gap: 0;;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-card .counter-item {
    padding: 35px 0;
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .counter-card .counter-item.style-two:before {
    display: none;
  }
}

.counter-card .counter-item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80px;
  background:var(--color1);
  left: -24px;
}

.counter-card .counter-item:first-child:before {
  display: none;
}

@media (max-width: 991px) {
  .counter-card .counter-item:nth-child(3):before {
    display: none;
  }
}

.counter-card .counter-item .counter-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.counter-card .counter-item .number {
  text-align: center;
  color: #ffffff;
  font-size: 50px;
  font-weight: 800;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-card .counter-item .number {
    font-size: 48px;
    line-height: 60px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-card .counter-item .number {
    font-size: 32px;
    line-height: 40px;
  }
}

.counter-card .counter-item .text {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 31px;
  font-weight: 200;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-card .counter-item .text {
    font-size: 14px;
  }
}

.process-wrapper-two {
  background: #393d48;
  padding: 50px;
}

.process-step-slider-wrapper {
  position: relative;
}

@media (min-width: 1440px) {
  .process-step-slider-wrapper .process-step-sketch {
    position: absolute;
    width: 188px;
    height: 188px;
    bottom: -30px;
    left: -94px;
    top: unset;
    z-index: 1;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.process-step {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: relative;
}

@media (min-width: 1440px) {
  .process-step .process-step-sketch {
    position: absolute;
    width: 188px;
    height: 188px;
    bottom: -30px;
    left: -94px;
    top: unset;
    z-index: 1;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.process-step .image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.process-step .image img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.process-step .image img:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .process-step .image {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-step .image {
    width: 100%;
  }
}

.process-step .content-wrapper {
  width: 50%;
  padding: 95px 111px 96px 133px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  background: #f8f8f1;
}

.process-step .content-wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.process-step .content-wrapper .content .icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.process-step .content-wrapper .content .icon i {
  font-size: 48px;
  line-height: 48px;
  color: var(--dark);
}

.process-step .content-wrapper .content .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .process-step .content-wrapper .content .title-wrapper h4 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .process-step .content-wrapper {
    width: 100%;
    padding: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-step .content-wrapper {
    width: 100%;
    padding: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-step .content-wrapper {
    padding: 24px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .process-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.process-step-slider-tab .slick-list {
  padding: 0 !important;
  margin: 0 -12px;
}

@media only screen and (min-width: 992px) and (max-width: 2560px) {
  .process-step-slider-tab .slick-list .slick-track {
    -webkit-transform: none !important;
    transform: none !important;
  }
}

.process-step-slider-tab .slick-list .slick-track .slick-slide {
  margin: 0 12px;
}

@media (max-width: 991px) {
  .process-step-slider-tab .slick-list .slick-track .slick-slide .content .title {
    text-align: left;
  }
}

.home-three-review-slider {
  overflow: hidden;
}

.testimonial-cards {
  background: #eef5f8;
  padding: 50px 0;
}

.testimonial-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 32px;
  padding: 20px;
  background: #ffffff;
  border-radius: 25px;
}

.testimonial-card .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.testimonial-card .content-wrapper .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-card .content-wrapper .content .text {
  font-size: 16px;
  line-height: 28px;
  color: #575959;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card .content-wrapper .content .text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card .content-wrapper .content .text {
    font-size: 14px;
  }
}

.testimonial-card .content-wrapper .meta-user .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.testimonial-card .content-wrapper .meta-user .user-info .image {
  width: 88px;
  height: 88px;
  border-radius: 50px;
  overflow: hidden;
}

.testimonial-card .content-wrapper .meta-user .user-info .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.testimonial-card .content-wrapper .meta-user .user-info .info h6,
.testimonial-card .content-wrapper .meta-user .user-info .info p {
  margin-bottom: 0;
}

.testimonial-card.style-two {
  margin-top: 64px;
  background: transparent;
  padding: 0;
  gap: 0;
}

.testimonial-card.style-two .image-wrapper {
  overflow: hidden;
  max-width: 50%;
  width: 100%;
  padding-right: 134px;
  position: relative;
}

.testimonial-card.style-two .image-wrapper .image img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 220px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two .image-wrapper .image img {
    border-radius: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two .image-wrapper {
    max-width: 100%;
    padding-right: 0;
    overflow: visible;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card.style-two .image-wrapper {
    max-width: 100%;
    padding-right: 0;
    overflow: visible;
  }
}

.testimonial-card.style-two .content-wrapper {
  gap: 48px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  max-width: 50%;
  width: 100%;
  padding-right: 45px;
  position: relative;
}

.testimonial-card.style-two .content-wrapper .count {
  width: 66px;
  height: 66px;
  border-radius: 50px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-card.style-two .content-wrapper .count p {
  color: var(--dark);
  font-size: 34px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two .content-wrapper .count p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two .content-wrapper .count {
    width: 45px;
    height: 45px;
  }
}

.testimonial-card.style-two .content-wrapper .icon {
  display: none;
}

.testimonial-card.style-two .content-wrapper .content .text {
  color: #ffffff;
  font-family: var(--font-txt);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two .content-wrapper .content .text {
    font-size: 16px;
    font-weight: 500;
  }
}

.testimonial-card.style-two .content-wrapper .meta-user .user-info .image {
  display: none;
}

.testimonial-card.style-two .content-wrapper .meta-user .user-info .info h6 {
  color: var(--primary);
}

.testimonial-card.style-two .content-wrapper .meta-user .user-info .info p {
  color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two .content-wrapper {
    max-width: 100%;
    margin-top: 48px;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card.style-two .content-wrapper {
    max-width: 100%;
    margin-top: 48px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.testimonial-card.style-three .content-wrapper {
  gap: 16px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-three .content-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.testimonial-card.style-three .content .text {
  font-family: var(--font-txt);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--dark);
}

@media (max-width: 767px) {
  .testimonial-card.style-three .content .text {
    font-size: 16px;
    text-align: center;
  }
}

.testimonial-card.style-three .meta-user {
  margin-top: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-three .meta-user .user-info .info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.testimonial-card.style-three .meta-user .user-info .image {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-card.style-three .meta-user {
    margin-top: 0;
  }
}

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-slider-wrapper .slick-list {
  overflow: visible;
}

.testimonial-slider-wrapper .slick-list .slick-slide {
  margin: 0 12px;
  border-radius: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-wrapper .slick-list .slick-slide.slick-active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 1px 8px 44px rgba(20, 20, 43, 0.03);
  box-shadow: 1px 8px 44px rgba(20, 20, 43, 0.03);
  visibility: visible;
  opacity: 1;
}

.testimonial-slider-wrapper .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: -65px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

@media (max-width: 991px) {
  .testimonial-slider-wrapper .slick-dots {
    position: unset;
    right: unset;
    top: unset;
    -webkit-transform: inherit;
    transform: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
  }
}

.testimonial-slider-wrapper .slick-dots li {
  display: inline-block;
  line-height: 0;
  outline: 2px solid transparent;
  border: 4px solid transparent;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-wrapper .slick-dots li button {
  font-size: 0;
  padding: 0;
  width: 17px;
  height: 17px;
  background-color: #b2bacb;
  background-color: #b2bacb;
  border-radius: 50px;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-wrapper .slick-dots li.slick-active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  outline: 2px solid #ff6731;
}

.testimonial-slider-wrapper .slick-dots li.slick-active button {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-wrapper button.testimonial-arrow-btn {
  display: none !important;
}

.testimonial-slider-wrapper button.testimonial-arrow-btn.prev-btn {
  left: 30px;
}

.testimonial-slider-wrapper button.testimonial-arrow-btn.next-btn {
  right: 30px;
}

.testimonial-slider-wrapper:before,
.testimonial-slider-wrapper:after {
  background: #f3f7fc;
}

button.testimonial-arrow-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #dfe2e9;
  cursor: pointer;
  bottom: 0;
  overflow: hidden;
}

button.testimonial-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

button.testimonial-arrow-btn:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: #e30008;
  background: linear-gradient(65deg, #e30008 0%, #faae00 100%);
  border-color: #ff6731;
}

button.testimonial-arrow-btn:hover i {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-arrow {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 991px) {
  .testimonial-slider-arrow {
    display: none;
  }
}

.testimonial-slider-wrapper.style-three:before,
.testimonial-slider-wrapper.style-three:after {
  display: none;
}

.testimonial-slider-wrapper.style-three .slick-list {
  overflow: hidden;
}

.testimonial-slider-wrapper.style-three .slick-list .slick-slide {
  border-radius: 0;
}

.testimonial-slider-wrapper.style-three .slick-list .slick-slide.slick-active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.testimonial-slider-wrapper.style-three .slick-dots {
  margin-top: 20px;
  position: unset;
  padding-left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.testimonial-slider-wrapper.has-backgorund-slider:before,
.testimonial-slider-wrapper.has-backgorund-slider:after {
  display: none;
}

.testimonial-slider-wrapper.has-backgorund-slider .slick-dots {
  margin-top: 65px;
  margin-bottom: 0;
  position: unset;
  padding-left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.custom-slider-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .custom-slider-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.custom-slider-btn a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #ffffff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .custom-slider-btn a {
    width: 40px;
    height: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-slider-btn a {
    width: 45px;
    height: 45px;
  }
}

.custom-slider-btn a i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.custom-slider-btn a:hover {
  background: var(--primary);
  border-color: transparent;
}

.custom-slider-btn a:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.custom-slider-btn.style-two {
  margin-top: 0;
}

.custom-slider-btn.style-two a {
  border: 1px solid #828282;
}

.custom-slider-btn.style-two a i {
  color: var(--dark);
}

.custom-slider-btn.style-two a:hover {
  border-color: transparent;
}

.slider-container {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-container {
    padding: 0 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-container {
    padding: 0 12px;
  }
}

.slider-area {
  position: relative;
}

@media (min-width: 1440px) {
  .slider-area .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 35px;
    right: 450px;
    z-index: 6;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@media (min-width: 1440px) {
  .slider-area .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 30px;
    left: 42px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating 5s linear infinite;
    animation: Rotating 5s linear infinite;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.slider-area .slider-wrapper .slick-active .slider-short-title,
.slider-area .slider-wrapper .slick-active .slider-title,
.slider-area .slider-wrapper .slick-active .slider-short-desc,
.slider-area .slider-wrapper .slick-active .slider-btn-wrapper {
  -webkit-animation-name: MovefadeUp;
  animation-name: MovefadeUp;
  -webkit-animation-fill-mode: both;
}

.slider-area .slider-wrapper .slick-active .slider-short-title {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.slider-area .slider-wrapper .slick-active .slider-title {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.slider-area .slider-wrapper .slick-active .slider-short-desc {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.slider-area .slider-wrapper .slick-active .slider-btn-wrapper {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}

.slider-area .slider-wrapper .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  position: absolute;
  bottom: 0;
  right: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .slider-wrapper .slick-dots {
    display: none !important;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    right: 70px;
    -webkit-transform: none;
    transform: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-wrapper .slick-dots {
    right: 12px;
  }
}

.slider-area .slider-wrapper .slick-dots li {
  line-height: 0;
  border: 3px solid transparent;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  margin-left: -5px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
}

.slider-area .slider-wrapper .slick-dots li:before,
.slider-area .slider-wrapper .slick-dots li:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

.slider-area .slider-wrapper .slick-dots li:before {
  border: 3px solid transparent;
}

.slider-area .slider-wrapper .slick-dots li:hover:before {
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  border-bottom-color: var(--primary);
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.slider-area .slider-wrapper .slick-dots li:after {
  border: 0 solid transparent;
}

.slider-area .slider-wrapper .slick-dots li:hover:after {
  border-top: 3px solid var(--primary);
  border-left-width: 3px;
  border-right-width: 3px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.slider-area .slider-wrapper .slick-dots li button {
  font-size: 0;
  line-height: 14px;
  padding: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  color: var(--primary);
  border-radius: 50px;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.slider-area .slider-wrapper .slick-dots li.slick-active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border-color: var(--primary);
}

.slider-area .slider-wrapper .slick-dots li.slick-active:before,
.slider-area .slider-wrapper .slick-dots li.slick-active:after {
  display: none;
}

.slider-area .slider-wrapper .slick-dots li.slick-active button {
  font-size: 16px;
  background: transparent;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.slider-area button.slider-arrow-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #ffffff;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
  display: none !important;
}

@media (max-width: 1650px) {
  .slider-area button.slider-arrow-btn {
    width: 44px;
    height: 44px;
    bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .slider-area button.slider-arrow-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1650px) {
  .slider-area button.slider-arrow-btn {
    bottom: 0;
    top: unset;
    display: none !important;
  }
}

.slider-area button.slider-arrow-btn.prev-btn {
  margin-left: 30px;
  left: 0;
}

@media (max-width: 1650px) {
  .slider-area button.slider-arrow-btn.prev-btn {
    left: 50%;
    margin-left: -50px;
  }
}

.slider-area button.slider-arrow-btn.next-btn {
  margin-right: 30px;
  right: 0;
}

@media (max-width: 1650px) {
  .slider-area button.slider-arrow-btn.next-btn {
    right: 50%;
    margin-right: -50px;
  }
}

.slider-area button.slider-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.slider-area button.slider-arrow-btn:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: var(--primary);
}

.slider-area button.slider-arrow-btn:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.slider-area .single-slider {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 2;
  padding: 0;
  height: auto;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .single-slider {
    height: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .single-slider {
    padding: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .single-slider {
    padding: 0 24px 64px 24px;
  }
}

.slider-area .single-slider .slider-content-wrapper {
  position: relative;
  z-index: 99;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .single-slider .slider-content-wrapper {
    padding: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .single-slider .slider-content-wrapper {
    padding: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content {
    text-align: center;
    position: relative;
    z-index: 5;
  }
}

.slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-title {
  font-family: var(--font-txt);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  z-index: 99;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-title {
    font-size: 16px;
  }
}

.slider-area .single-slider .slider-content-wrapper .slider-content .slider-title {
  font-family: var(--font-txt);
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 55px;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-title {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-title {
    font-size: 48px;
    line-height: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-title {
    font-size: 36px;
    line-height: 52px;
  }

  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-title br {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-title {
    font-size: 26px;
    line-height: 35px;
  }

  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-title br {
    display: none;
  }
}

.slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc {
  font-family: var(--font-ttl);
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: var(--primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc {
    font-size: 16px;
    line-height: 32px;
  }

  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc {
    font-size: 16px;
    line-height: 32px;
  }

  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc br {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc {
    font-size: 16px;
    line-height: 32px;
  }

  .slider-area .single-slider .slider-content-wrapper .slider-content .slider-short-desc br {
    display: none;
  }
}

.slider-area .single-slider .slider-image {
  position: relative;
  z-index: 2;
  right: 0;
  top: 0;
  height: 100%;
  margin-bottom: 15px;
}

.slider-area .single-slider .slider-image img {
  height: 100%;
  position: relative;
  z-index: 5;
}

@media (min-width: 1440px) {
  .slider-area .single-slider .slider-image .sketch {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 25px;
    right: -15px;
    z-index: 6;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (min-width: 1440px) {
  .slider-area .single-slider .slider-image .brush-sketch {
    width: 122px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 40px;
    right: 0px;
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
    z-index: 8;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area .single-slider .slider-image {
    -webkit-animation: none;
    animation: none;
    margin: 0 auto;
    text-align: center;
    width: 300px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.slider-btn-wrapper {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-btn-wrapper {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.slider-btn-wrapper .slider-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 9px 25px;
  text-align: center;
  border-radius: 4px;
  text-transform: capitalize;
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-btn-wrapper .slider-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.slider-btn-wrapper .slider-btn.active {
  background: var(--primary);
  color: var(--dark);
  border: 1px solid transparent;
}

.slider-btn-wrapper .slider-btn.active:hover {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.slider-btn-wrapper .slider-btn:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: transparent;
}

.slider-btn-wrapper.style-two {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .slider-btn-wrapper.style-two {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.slider-btn-wrapper.style-two .slider-btn {
  border-color: #575959;
  color: var(--dark);
}

.slider-btn-wrapper.style-two .slider-btn.active {
  border-color: transparent;
}

.slider-btn-wrapper.style-two .slider-btn.active:hover {
  border-color: #575959;
  color: var(--dark);
}

.slider-btn-wrapper.style-two .slider-btn:hover {
  border-color: transparent;
}

.slider-area.style-2 {
  position: relative;
}

@media (min-width: 1440px) {
  .slider-area.style-2 .sketch-one {
    width: 230px;
    height: 230px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 40px;
    left: 0;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 991px) {
  .slider-area.style-2 .social-share {
    display: none;
  }
}

.slider-area.style-2 .single-slider {
  padding-top: 94px;
  height: 840px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area.style-2 .single-slider {
    padding: 50px 12px 150px 12px;
    height: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area.style-2 .single-slider {
    height: 100%;
    padding-top: 50px;
    padding-bottom: 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area.style-2 .single-slider {
    padding-top: 0;
    height: 786px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-area.style-2 .single-slider {
    padding-top: 0;
  }
}

.slider-area.style-2 .slider-wrapper .container {
  position: relative;
}

.slider-area.style-2 .slider-wrapper .slider-content-wrapper {
  position: relative;
  z-index: 1;
}

.slider-area.style-2 .slider-wrapper .slider-content-wrapper:after {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area.style-2 .slider-wrapper .slider-content-wrapper {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area.style-2 .slider-wrapper .slider-content-wrapper {
    padding: 0;
    margin-top: 24px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area.style-2 .slider-wrapper .slider-content-wrapper .slider-content {
    text-align: center;
  }
}

.slider-area.style-2 .slider-wrapper .slider-content-wrapper .slider-content .slider-short-title {
  font-family: var(--font-txt);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area.style-2 .slider-wrapper .slider-content-wrapper .slider-content .slider-short-title {
    font-size: 16px;
  }
}

.slider-area.style-2 .slider-wrapper .slider-content-wrapper .slider-content .slider-title {
  color: var(--dark);
}

.slider-area.style-2 .slider-wrapper .slider-content-wrapper .slider-content .slider-title .under-line img {
  right: unset;
  left: 0;
  width: 339px;
}

.slider-area.style-2 .slider-wrapper .slider-content-wrapper .slider-content .slider-short-desc {
  color: #575959;
}

.slider-area.style-2 .slider-wrapper .slider-image {
  position: relative;
  border-radius: 0 0 100px 0;
  overflow: visible;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area.style-2 .slider-wrapper .slider-image {
    border-radius: 4px;
    width: 300px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area.style-2 .slider-wrapper .slider-image {
    border-radius: 4px;
  }
}

.slider-area.style-2 .slider-wrapper .slider-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--dark);
  border-radius: 0 0 100px 0;
  margin: 24px 0 0 24px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area.style-2 .slider-wrapper .slider-image:before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area.style-2 .slider-wrapper .slider-image:before {
    display: none;
  }
}

.slider-area.style-2 .slider-wrapper .slider-image img {
  border-radius: 0 0 100px 0;
  position: relative;
  z-index: 3;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-area.style-2 .slider-wrapper .slider-image img {
    border-radius: 0 0 80px 0;
    z-index: -1;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area.style-2 .slider-wrapper .slider-image img {
    border-radius: 0 0 80px 0;
    z-index: -1;
  }
}

.slider-area.style-2 .slider-wrapper .slick-dots {
  display: none !important;
}

.slider-area.style-2 button.slider-arrow-btn {
  display: block !important;
  border: 1px solid #828282;
}

.slider-area.style-2 button.slider-arrow-btn i {
  color: var(--dark);
}

.slider-area.style-2 button.slider-arrow-btn:hover {
  border-color: transparent;
}

.accordion-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.accordion-wrapper .accordion-list-item {
  background: var(--bs-gray-100);
  border-radius: 12px;
  position: relative;
}

.accordion-wrapper .accordion-list-item .accordion-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  padding: 15px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper .accordion-list-item .accordion-head {
    padding: 15px 20px;
    gap: 8px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-wrapper .accordion-list-item .accordion-head {
    padding: 22.5px 28px;
    gap: 8px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .accordion-wrapper .accordion-list-item .accordion-head {
    padding: 36.5px 40px;
  }
}

.accordion-wrapper .accordion-list-item .accordion-head:after {
  position: relative;
  content: "\e913";
  font-family: "icomoon";
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.accordion-wrapper .accordion-list-item .accordion-head.collapsed:after {
  position: relative;
  content: "\e922";
  font-family: "icomoon";
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.accordion-wrapper .accordion-list-item .accordion-head .accordion-title {
  font-family: var(--font-txt);
  font-size: 18px;
  line-height: 24px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper .accordion-list-item .accordion-head .accordion-title {
    font-size: 17px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-wrapper .accordion-list-item .accordion-head .accordion-title {
    font-size: 20px;
    line-height: 30px;
  }
}

.accordion-wrapper .accordion-list-item .accordion-item-body {
  color: var(--dark);
  padding: 0 25px 25px 25px;
  position: relative;
}

.accordion-wrapper .accordion-list-item .accordion-item-body:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #E0E0E0;
  left: 0;
  top: -8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-wrapper .accordion-list-item .accordion-item-body:before {
    top: -10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-wrapper .accordion-list-item .accordion-item-body:before {
    top: -10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {}

.accordion-wrapper .accordion-list-item .accordion-item-body p {
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper .accordion-list-item .accordion-item-body p {
    font-size: 14px;
  }
}

.accordion-wrapper-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.accordion-wrapper-two .accordion-list-item {
  width: 100%;
  background: #ffffff;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  overflow: hidden;
  z-index: 2;
}

.accordion-wrapper-two .accordion-list-item:hover .accordion-head .icon {
  position: relative;
  border-color: var(--dark);
  z-index: 5;
}

.accordion-wrapper-two .accordion-list-item:hover .accordion-head .icon:after {
  opacity: 0.5;
}

.accordion-wrapper-two .accordion-list-item .accordion-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 24px;
  padding: 36px 40px;
  padding-bottom: 0;
  cursor: pointer;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head {
    padding: 40px;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head {
    padding: 20px 30px 0 30px;
  }
}

.accordion-wrapper-two .accordion-list-item .accordion-head.collapsed {
  padding-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head.collapsed {
    padding-bottom: 20px;
  }
}

.accordion-wrapper-two .accordion-list-item .accordion-head.collapsed .accordion-title {
  margin-top: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head.collapsed .accordion-title {
    margin-top: 0;
  }
}

.accordion-wrapper-two .accordion-list-item .accordion-head .icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50px;
  font-size: 48px;
  line-height: 48px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border: 1px solid transparent;
  color: var(--dark);
}

.accordion-wrapper-two .accordion-list-item .accordion-head .icon i {
  position: relative;
  z-index: 3;
}

.accordion-wrapper-two .accordion-list-item .accordion-head .accordion-title {
  font-size: 32px;
  line-height: 42px;
  color: var(--dark);
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head .accordion-title {
    font-size: 28px;
  }
}

@media (max-width: 430px) {
  .accordion-wrapper-two .accordion-list-item .accordion-head .accordion-title {
    font-size: 24px !important;
    line-height: 34px;
  }
}

.accordion-wrapper-two .accordion-list-item .accordion-item-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #575959;
  position: relative;
  z-index: 5;
  padding-left: 150px;
  padding-right: 118px;
  padding-bottom: 20px;
  top: 0;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.accordion-wrapper-two .accordion-list-item .accordion-item-body p {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .accordion-wrapper-two .accordion-list-item .accordion-item-body {
    padding-right: 60px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper-two .accordion-list-item .accordion-item-body {
    padding: 20px 40px 40px 40px;
    text-align: center;
  }
}

.accordion-wrapper-two .accordion-list-item .accordion-collapse.show .accordion-item-body {
  top: -16px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-wrapper-two .accordion-list-item .accordion-collapse.show .accordion-item-body {
    top: unset;
  }
}

.client-logo-wrapper {
  padding: 0 40px;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .client-logo-wrapper {
    padding: 0 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-wrapper {
    padding: 0 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-logo {
  padding-top: 20px;
  padding-bottom: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.client-logo img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.client-logo svg path {
  fill: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.client-logo:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.client-logo:hover svg path {
  fill: var(--primary);
}

.client-logo-wrapper {
  gap: 0 48px;
}

.client-logo.style-two {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.client-logo-wrapper .client-logo.style-three {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  padding: 24px 0;
}

.post-card-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-card-one {
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-card-one {
    margin-bottom: 24px;
  }
}

.post-card-one .post-image {
  overflow: hidden;
}

.post-card-one .post-image img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.post-card-one .content-wrapper {
  background: #ffffff;
  padding: 32px 32px 48px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-card-one .content-wrapper {
    padding: 24px;
    gap: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-card-one .content-wrapper {
    gap: 24px;
  }
}

.post-card-one .content-wrapper .post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.post-card-one .content-wrapper .post-content .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-card-one .content-wrapper .post-content .post-meta .meta-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.post-card-one .content-wrapper .post-content .post-meta .meta-info span,
.post-card-one .content-wrapper .post-content .post-meta .meta-info a {
  line-height: 21px;
  font-size: 14px;
  color: #575959;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.post-card-one .content-wrapper .post-content .post-meta .meta-info span i,
.post-card-one .content-wrapper .post-content .post-meta .meta-info a i {
  color: var(--dark);
  font-size: 16px;
}

.post-card-one .content-wrapper .post-content .post-meta .meta-info p {
  font-size: 14px;
  line-height: 21px;
}

.post-card-one .content-wrapper .post-content .title {
  margin-bottom: 0;
}

.post-card-one .content-wrapper .post-content .title a:hover {
  color: #020a27;
  text-decoration: underline;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-card-one .content-wrapper .post-content .title {
    font-size: 26px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .post-card-one .content-wrapper .post-content .title {
    font-size: 28px;
  }
}

.post-card-one .content-wrapper button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.post-card-one:hover .post-image img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.post-card-one.style-two {
  overflow: hidden;
}

.post-card-one.style-two .post-image {
  overflow: hidden;
}

.post-card-one.style-two .post-image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.post-card-one.style-two .content-wrapper {
  overflow: hidden;
  background: #f8f8f1;
  padding: 24px 25px 32px 24px;
  gap: 32px;
}

.post-card-one.style-two .content-wrapper .post-content {
  gap: 8px;
}

.post-card-one.style-two .content-wrapper .post-content .post-meta {
  gap: 0 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-card-one.style-two .content-wrapper .post-content .post-meta .meta-info a {
  padding: 4px 8px 4px 0;
  font-size: 16px;
  line-height: 27px;
  font-family: var(--font-ttl);
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-card-one.style-two .content-wrapper .post-content .post-meta .meta-info a {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .post-card-one.style-two .content-wrapper .post-content .post-meta .meta-info a {
    font-size: 14px;
  }
}

.post-card-one.style-two .content-wrapper .post-content .post-meta .meta-info a i {
  font-weight: 600;
}

.post-card-one.style-two .content-wrapper .post-content .title {
  font-size: 24px;
  line-height: 34px;
  height: 70px;
  overflow: hidden;
}

.post-card-one.style-two .content-wrapper .post-card-btn {
  border: 1px solid #828282;
  background: transparent;
}

.post-card-one.style-two .content-wrapper .post-card-btn:hover {
  color: var(--dark);
  background: var(--primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .post-card-one.style-two .content-wrapper {
    padding: 24px 20px 32px 20px;
  }
}

.post-card-one.style-two:hover .post-image img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.cta-wrapper {
  background: var(--dark);
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 1440px) {
  .cta-wrapper .sketch {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    left: 47%;
    bottom: 125px;
    width: 109px;
    height: 109px;
    z-index: 10;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.cta-wrapper .free-cta-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
  z-index: 3;
  position: relative;
  padding-left: 56px;
  padding-right: 50px;
}

.cta-wrapper .free-cta-text .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 24px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .cta-wrapper .free-cta-text .button-wrapper {
    gap: 15px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .cta-wrapper .free-cta-text {
    padding: 50px 26px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper .free-cta-text {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper .free-cta-text {
    padding: 50px 40px;
  }
}

.cta-wrapper .cta-img img {
  width: 100%;
}

.cta-wrapper .cta-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-wrapper .cta-img img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.cta-wrapper .cta-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.price-card-switch {
  text-align: end;
}

.price-card-switch ul {
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 10px;
}

.price-card-switch ul li {
  list-style: none;
  padding: 8px 14px;
  display: inline-block;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.price-card-switch ul li:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border-radius: 50px;
}

.price-card-switch ul li.active {
  color: #fff;
}

.price-card-switch ul li.active:before {
  background-color: var(--primary);
  width: 100%;
}

.price-card-wrapper {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .price-card-wrapper {
    margin-bottom: 24px;
  }
}

.price-card-wrapper .price-card {
  background: #f8f8f1;
  padding: 64px 38px 44px 36px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .price-card-wrapper .price-card {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .price-card-wrapper .price-card {
    padding: 45px 25px 35px 25px;
  }
}

.price-card-wrapper .price-card .card-title .sub-title {
  font-family: var(--font-txt);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--dark);
}

.price-card-wrapper .price-card .price {
  margin-top: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .price-card-wrapper .price-card .price {
    margin-top: 24px;
  }
}

.price-card-wrapper .price-card .price .price-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.price-card-wrapper .price-card .price .price-heading .duration {
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
}

.price-card-wrapper .price-card .price .price-desc {
  margin-top: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #575959;
}

.price-card-wrapper .price-card .divider {
  position: relative;
  margin-top: 20px;
}

.price-card-wrapper .price-card .divider:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.price-card-wrapper .price-card .list-title {
  font-family: var(--font-txt);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  margin: 24px 0;
}

.price-card-wrapper .price-card .list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.price-card-wrapper .price-card .list-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  margin-bottom: 0;
}

.price-card-wrapper .price-card .list-wrapper li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .price-card-wrapper .price-card .list-wrapper li {
    font-size: 14px;
  }
}

.price-card-wrapper .price-card .list-wrapper li:before {
  content: "\e90c";
  font-family: "icomoon";
  color: var(--dark);
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50px;
  background: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  font-size: 16px;
}

.price-card-wrapper .price-card .list-wrapper .price-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 76px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .price-card-wrapper .price-card .list-wrapper .price-btn {
    margin-top: 44px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-card-wrapper .price-card .list-wrapper .price-btn {
    margin-top: 44px;
  }
}

.price-card-wrapper .price-card .list-wrapper .price-btn a {
  padding: 15.5px 64px;
  border: 1px solid #575959;
  border-radius: 4px;
  font-family: var(--font-ttl);
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  text-align: center;
  color: var(--dark);
}

.price-card-wrapper .price-card .list-wrapper .price-btn a:hover {
  background: var(--dark);
  color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .price-card-wrapper .price-card .list-wrapper .price-btn a {
    padding: 14px 52px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-card-wrapper .price-card .list-wrapper .price-btn a {
    padding: 14px 52px;
  }
}

.price-card-wrapper .price-header {
  opacity: 0;
  overflow: hidden;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark);
  padding: 16px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .price-card-wrapper .price-header {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-card-wrapper .price-header {
    display: none;
  }
}

.price-card-wrapper .price-header .title {
  margin-bottom: 0;
}

.price-card-wrapper.active .price-header {
  opacity: 1;
  overflow: visible;
}

.price-card-wrapper.active .price-header p {
  color: #ffffff;
}

.price-card-wrapper.active .price-card {
  background: var(--primary);
}

.price-card-wrapper.active .price-card .divider:before {
  background: #ffffff;
}

.price-card-wrapper.active .list-wrapper .price-btn a {
  background: var(--dark);
  color: #ffffff;
}

.price-card-wrapper.active .list-wrapper .price-btn:hover a {
  background: transparent;
  color: var(--dark);
}

.price-card-wrapper.active .list-wrapper li:before {
  background: var(--dark);
  color: #ffffff;
}

.price-card-wrapper.reverse .price-header {
  background: var(--primary);
}

.price-card-wrapper.reverse .price-header p {
  color: var(--dark);
}

.price-card-wrapper.reverse .price-card {
  background: var(--dark);
}

.price-card-wrapper.reverse .price-card .card-title .sub-title {
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .price .price-heading {
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .price .price-heading .duration {
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .list-title {
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .list-wrapper .price-list-item .icon i {
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .list-wrapper .price-list-item .text {
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .list-wrapper .price-btn a {
  border-color: #ffffff;
  color: #ffffff;
}

.price-card-wrapper.reverse .price-card .list-wrapper .price-btn a:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: transparent;
}

.list-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.list-item-wrapper.style-two {
  gap: 8px;
}

.list-item-wrapper ul {
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.list-item-wrapper ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .list-item-wrapper ul li {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .list-item-wrapper ul li {
    font-size: 16px;
    line-height: 28px;
  }
}

.list-item-wrapper ul li:before {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: var(--primary);
  color: var(--dark);
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  content: "\e90c";
  font-family: "icomoon";
}

.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
}

.list-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  margin-top: 3px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.list-item .icon i {
  color: var(--bs-white);
}

.row div[class*="col-"]+div[class*="col-"] .list-item .icon {
  background: var(--bs-danger);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .list-item .icon i {
    font-size: 14px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .list-item .icon {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .list-item .icon {
    width: 28px;
    height: 28px;
  }
}

.list-item .text {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .list-item .text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .list-item .text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .list-item {
    gap: 10px;
  }
}

.list-item.style-two .icon {
  width: 20px;
  height: 20px;
}

.list-item.style-two .icon i {
  font-size: 12px;
  line-height: 7px;
}

.about-info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-info-card {
    margin-top: 24px;
  }
}

.about-info-card .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.about-info-card .content-wrapper .content .title {
  margin-bottom: 16px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-info-card .content-wrapper .content .title {
    margin-top: 0;
    font-size: 29px;
    line-height: 34px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-info-card .content-wrapper .content .title {
    font-size: 30px;
    line-height: 34px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-info-card .content-wrapper .content .title {
    font-size: 30px;
    line-height: 34px;
  }
}

.about-info-card .content-wrapper .content .desc {
  font-size: 16px;
  line-height: 31px;
  color: #575959;
  margin-bottom: 10px !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-info-card .content-wrapper .content .desc {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-info-card .content-wrapper .content .desc {
    font-size: 16px;
    line-height: 28px;
  }
}

.about-info-card .content-wrapper .about-counter-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 0 !important;
}

.about-info-card .content-wrapper .about-counter-card .counter-item {
  text-align: center;
}

.about-info-card .content-wrapper .about-counter-card .counter-item .counter-title {
  text-align: center;
}

.about-info-card .content-wrapper .about-counter-card .counter-item .counter-title .number {
  font-size: 43px;
  line-height: 52px;
  color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-info-card .content-wrapper .about-counter-card .counter-item .counter-title .number {
    font-size: 32px;
    line-height: 44px;
  }
}

.about-info-card .content-wrapper .about-counter-card .counter-item .counter-title .number span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about-info-card .content-wrapper .about-counter-card .counter-item .counter-content .text {
  font-size: 16px;
  line-height: 31px;
  color: var(--dark);
  margin-top: 8px;
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-info-card .content-wrapper .about-counter-card .counter-item .counter-content .text {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-info-card .content-wrapper .about-counter-card .counter-item .counter-content .text {
    font-size: 16px;
  }
}

.portfolio-card-wrapper {
  margin-bottom: 64px;
}

@media (max-width: 1199px) {
  .portfolio-card-wrapper {
    margin-bottom: 24px;
  }
}

.portfolio-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}

.portfolio-card .portfolio-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card .portfolio-image:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-top: 32px;
}

@media (max-width: 1399px) {
  .portfolio-card .content br {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card .content {
    margin-top: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-card .content {
    margin-top: 24px;
  }
}

.portfolio-card .content .icon {
  display: none;
  position: absolute;
  top: 0;
  right: 40px;
  -webkit-transform: translateY(-50%) rotateY(-360deg);
  transform: translateY(-50%) rotateY(-360deg);
  width: 64px;
  height: 64px;
  border-radius: 50px;
  background: var(--primary);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card .content .icon i {
  font-size: 21px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card .content .icon {
    right: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-card .content .icon {
    right: 20px;
  }
}

.portfolio-card .content h4,
.portfolio-card .content p {
  color: #ffffff;
}

.portfolio-card .content h4 {
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark);
}

.portfolio-card .content h4 a {
  color: #ffffff;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card .content h4 a:hover {
  color: #ffffff;
  -webkit-text-decoration-color: #ffffff;
  text-decoration-color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card .content h4 a {
    font-size: 26px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-card .content h4 a {
    font-size: 26px;
    line-height: 38px;
  }
}

.portfolio-card .content p {
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card .content p {
    font-size: 14px;
  }

  .portfolio-card .content p br {
    display: none;
  }
}

.portfolio-card:hover .content .icon {
  -webkit-transform: translateY(-50%) rotateY(0deg);
  transform: translateY(-50%) rotateY(0deg);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card:hover .portfolio-image img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.portfolio-card.style-two {
  gap: 0;
  overflow: hidden;
}

.portfolio-card.style-two .content {
  padding: 64px 40px;
  background: #f8f8f1;
  margin-top: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card.style-two .content {
    padding: 40px 26px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-card.style-two .content {
    padding: 40px 26px;
  }
}

.portfolio-card.style-two .content .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.portfolio-card.style-two .content h4 a {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card.style-two .content h4 a:hover {
  color: var(--dark);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--dark);
  text-decoration-color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card.style-two .content p {
  color: #575959;
}

.portfolio-card.style-two:hover .portfolio-image img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-filter: unset;
  filter: unset;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card.style-two {
    margin-top: 24px;
  }
}

.portfolio-card.style-three {
  gap: 0;
  overflow: visible;
}

.portfolio-card.style-three .content {
  background: #ffffff;
  padding: 44px 48px;
  margin-top: 0;
  overflow: visible;
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-card.style-three .content {
    padding: 40px 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-card.style-three .content {
    padding: 44px 40px;
  }
}

@media (max-width: 991px) {
  .portfolio-card.style-three .content {
    padding: 24px;
  }
}

.portfolio-card.style-three .content .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background: var(--dark);
  bottom: unset;
  right: 50px;
  top: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-card.style-three .content .icon i {
  color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-card.style-three .content .icon {
    width: 48px;
    height: 48px;
    right: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-card.style-three .content .icon {
    width: 48px;
    height: 48px;
    right: 24px;
  }
}

.portfolio-card.style-three .content .icon:hover {
  background: var(--primary);
}

.portfolio-card.style-three .content .icon:hover i {
  color: var(--dark);
}

.portfolio-card.style-three .content h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
}

.portfolio-card.style-three .content h4,
.portfolio-card.style-three .content p {
  color: var(--dark);
}

@media (max-width: 991px) {
  .portfolio-card.style-three .content p {
    font-size: 14px;
  }
}

.portfolio_card_wrapper {
  position: relative;
}

.portfolio_card_wrapper .slick-list {
  margin: 0 -12px;
}

.portfolio_card_wrapper .slick-list .slick-slide {
  margin: 0 12px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio_card_wrapper .slick-list .slick-slide.slick-active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.image-card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 64px;
}

.image-card-wrapper .image-card:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .image-card-wrapper .image-card:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.image-card-wrapper .image-card:nth-child(odd) .image {
  padding-right: 20px;
}

@media (max-width: 991px) {
  .image-card-wrapper .image-card:nth-child(odd) .image {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .image-card-wrapper .image-card:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.image-card-wrapper .image-card:nth-child(even) .image {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .image-card-wrapper .image-card:nth-child(even) .image {
    padding-left: 0;
  }
}

.image-card-wrapper .image-card .image-inner {
  overflow: hidden;
}

.image-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 32px;
  }
}

.image-card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  width: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .image-card .content {
    gap: 32px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card .content {
    width: 100%;
    padding-right: 0;
    gap: 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card .content {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .image-card .content {
    width: 100%;
    padding-right: 0;
    gap: 28px;
  }
}

.image-card .content .title {
  position: relative;
  margin-bottom: 16px;
  font-size: 43px;
  line-height: 53px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card .content .title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card .content .title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .image-card .content .title {
    font-size: 48px;
  }
}

.image-card .content .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card .content .desc {
    font-size: 16px;
    line-height: 28px;
  }
}

.image-card .content .title-wrapper .text,
.image-card .content .title-wrapper .desc {
  margin-bottom: 0;
}

.image-card .image-card-btn span {
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.image-card .image {
  width: 50%;
  height: 100%;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.image-card .image .image-wrapper {
  overflow: hidden;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card .image {
    width: 100%;
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card .image {
    width: 100%;
    padding: 0;
  }
}

.image-card .image:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.image-card .image .image-card-sketch {
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  width: 79px;
  height: 91px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}

@media (max-width: 576px) {
  .image-card .image .image-card-sketch {
    display: none;
  }
}

.image-card .image .image-card-sketch.style-two {
  top: unset;
  bottom: -60px;
  left: unset;
  right: -30px;
  z-index: 3;
}

.image-card .image .image-card-sketch.style-three {
  position: absolute;
  width: 188px;
  height: 188px;
  top: unset;
  bottom: -87px;
  left: -84px;
}

.image-card .image .image-card-sketch.style-four {
  top: 0;
  right: 0;
  left: unset;
  bottom: unset;
}

.image-card .image img {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.image-card.image-card-spacing {
  gap: 80px;
}

@media (max-width: 1199px) {
  .image-card.image-card-spacing {
    gap: 30px;
  }
}

.image-card.image-card-spacing .content {
  gap: 24px;
}

.image-card.image-card-spacing .content .theme-btn-wrapper {
  margin-top: 24px;
}

.image-card.large-title .content .title-wrapper .title {
  font-size: 57px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 1.14px;
}

@media (max-width: 991px) {
  .image-card.large-title .content .title-wrapper .title {
    font-size: 42px;
  }
}

.image-card.style-two {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.image-card.style-two .content .title {
  font-size: 43px;
  line-height: 53px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card.style-two .content .title {
    font-size: 30px;
    line-height: 52px;
  }
}

.image-card.style-two .image {
  overflow: visible;
  padding-left: unset;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.image-card.style-three {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 64px;
  z-index: 5;
  position: relative;
}

.image-card.style-three .content {
  padding-right: 30px;
}

.image-card.style-three .content .title {
  font-size: 43px;
  line-height: 52px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card.style-three .content .title {
    font-size: 38px;
  }

  .image-card.style-three .content .title br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card.style-three .content .title {
    font-size: 38px;
  }

  .image-card.style-three .content .title br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .image-card.style-three .content .title {
    font-size: 38px;
  }

  .image-card.style-three .content .title br {
    display: none;
  }
}

.image-card.style-three .content .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .image-card.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .image-card.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title {
    gap: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    gap: 15px;
  }
}

.section-title .short-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-txt);
  color: #ff6731;
}

.section-title .title {
  font-size: 34px;
  font-weight: 700;
  font-family: var(--font-txt);
  color: var(--dark);
  margin-bottom: 0;
  line-height: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title .title {
    font-size: 28px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 28px;
    line-height: 34px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 28px;
  }
}

.section-title .desc {
  font-family: var(--font-ttl);
  font-size: 16px;
  font-weight: 200;
  line-height: 28px;
  color: #575959;
  margin-bottom: 0;
  text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title .desc {
    font-size: 14px;
    line-height: 28px;
  }

  .section-title .desc br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title .desc {
    font-size: 16px;
    line-height: 28px;
  }

  .section-title .desc br {
    display: none;
  }
}

.section-title .text {
  margin-bottom: 0;
}

.section-title .divider {
  width: 72px;
  height: 6px;
  background-color: var(--dark);
}

.section-title.style-two {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 64px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px;
  }
}

.section-title.style-two .title {
  color: var(--dark);
  width: 50%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-two .title {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title.style-two .title {
    width: 100%;
  }
}

.section-title.style-two .desc {
  color: #575959;
  padding-left: 200px;
  width: 50%;
  text-align: start;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-two .desc {
    width: 100%;
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title.style-two .desc {
    width: 100%;
    padding-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title.style-two .desc {
    width: 50%;
    padding-left: 0;
  }
}

.section-title.style-three {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-title.style-three .title {
  color: var(--dark);
}

.section-title.style-three .desc {
  color: #575959;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 36px;
  }

  .section-title.style-three .title {
    text-align: center;
  }
}

.section-title.style-four {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-four {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.under-line {
  position: relative;
}

.under-line.style-2 img {
  width: 329px;
}

.under-line img {
  position: absolute;
  width: 271px;
  height: 12px;
  bottom: -12px;
  right: 0;
}

.page-breadcrumb-sec .sketch {
  position: absolute;
  top: 153px;
  left: 11px;
  background-position: center;
  background-repeat: no-repeat;
  width: 169px;
  height: 169px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .page-breadcrumb-sec .sketch {
    display: none;
  }
}


.filter-area {
  padding: 15px 0 0;
  margin-bottom: 40px;
  position: sticky;
  top: 90px;
  z-index: 1;
  background:#fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}
.filter-area .comment-respond .filter-field input[type="range"] {
  padding: 0;
  height: 52px;
  border: 0;
}
.filter-area .comment-respond .filter-col .filter-field {
  padding: 0 30px;
}
.filter-area .comment-respond .filter-field .label-value  {
  display: flex;
  justify-content: space-between;
}
.filter-area .comment-respond input, .filter-area .comment-respond select {
  height: 35px;
}
.filter-area .comment-respond .filter-field .label-value span {
  color: #b3b3b3;
  line-height: 1;
}
.filter-btn {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  margin-top: 7px;
  justify-content: center;
}
.filter-btn :is(.theme-btn,.reset-btn)  {
  padding: 1px 25px;
}

/*Range Tracker*/
.range-container {
  position: relative;
}

input[type="range"] {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 0;
  -webkit-appearance: none;
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
}

.bubble {
  position: absolute;
  top: -5px;
  transform: translateX(-50%);
  color: var(--primary);
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
}

.track {
  position: absolute;
  top:25px;
  height: 4px;
  background: #ddd;
  width: 100%;
  border-radius: 2px;
  z-index: 0;
}

.range-highlight {
  position: absolute;
  top:25px;
  height: 4px;
  background:  var(--primary);
  border-radius: 2px;
  z-index: 0;
}
/*Range Tracker End*/

.trip-navigation {
  background: #ffffff;
  padding: 15px 0;
  margin-bottom: 25px;
  position: sticky;
  top: 90px;
  z-index: 2;
}
.trip-navigation ul.trip-nav li a {
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 5px 12px;
  margin-right: 10px;
  color: var(--secondary);
}
.trip-navigation ul.trip-nav li a.active {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
}





.page-breadcrumb-sec {
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .page-breadcrumb-sec {
    min-height: 150px;
  }
  .filter-area .comment-respond .filter-col .filter-field {
    padding: 0 20px;
    margin-bottom: 60px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-breadcrumb-sec {
    min-height: 215px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .page-breadcrumb-sec {
    min-height: 150px;
  }
}

.page-overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 63, 71, 0.7)), to(rgba(3, 63, 71, 0.7)));
  background: linear-gradient(0deg, rgba(3, 63, 71, 0.7), rgba(3, 63, 71, 0.7));
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.page-heading {
  position: relative;
}

.page-heading h1,
.page-heading .page-title {
  font-family: var(--font-txt);
  font-weight: 600;
  font-size: 32px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  padding: 0 400px;
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

  .page-heading h1 br,
  .page-heading .page-title br {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

  .page-heading h1,
  .page-heading .page-title {
    font-size: 20px;
    line-height: 24px;
    padding: 0 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .page-heading h1,
  .page-heading .page-title {
    font-size: 28px;
    line-height: 32px;
    padding: 0 12px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .page-heading h1,
  .page-heading .page-title {
    font-size: 48px;
    line-height: 62px;
    padding: 0 136px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {

  .page-heading h1,
  .page-heading .page-title {
    padding: 0 300px;
  }
}

.breadcrumb-wrapper {
  padding: 0;
  position: relative;
  z-index: 5;
}

.breadcrumb-list {
  text-align: center;
}

.breadcrumb-list ul {
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadcrumb-list ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  position: relative;
  color: #ffffff;
}

.breadcrumb-list ul li:last-child {
  color: var(--primary);
}

.breadcrumb-list ul li:last-child a {
  color: var(--primary);
}

.breadcrumb-list ul li.active {
  color: var(--primary);
  font-family: var(--font-ttl);
  font-size: 16px;
  text-align: center;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 400;
}

.breadcrumb-list ul li.active:hover {
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.breadcrumb-list ul li.active a {
  color: var(--primary);
}

.breadcrumb-list ul li.active a:hover {
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.breadcrumb-list ul li a {
  font-family: var(--font-ttl);
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.breadcrumb-list ul li a:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: var(--primary);
}

.breadcrumb-list ul li:before {
  content: "\f054";
  font-size: 12px;
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.breadcrumb-list ul li:first-child:before {
  display: none;
}

.single-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-meta {
    gap: 4px;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-meta {
    gap: 4px;
  }
}

.single-post-meta .post-type {
  background-color: var(--primary);
  border-radius: 4px;
  color: var(--dark);
}

.single-post-meta span {
  font-size: 16px;
  line-height: 170%;
  font-weight: 400;
  color: #ffffff;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 4px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-meta span {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-meta span {
    font-size: 14px;
    padding: 4px 12px;
  }
}

.single-post-meta span i {
  color: var(--primary);
  font-size: 16px;
  line-height: 18px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-meta span i {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-meta span i {
    font-size: 16px;
  }
}

.single-post-meta span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.page-header {
  border-left: 4px solid #dfe2e9;
  padding-left: 45px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .page-header {
    padding-left: 30px;
  }
}

.page-header .page-title {
  font-size: 48px;
  line-height: 60px;
}

@media (max-width: 991px) {
  .page-header .page-title {
    font-size: 38px;
    line-height: 48px;
  }
}

.blog-area ol,
.blog-area ul {
  padding-left: 20px;
}

.blog-area ol li,
.blog-area ul li {
  padding: 7px 0;
}

.blog-area .blog-post-items .pageontent .search-form input {
  background: #f8f8f1;
  border-radius: 4px;
  padding: 0 25px;
  height: 60px;
  color: #575959;
  font-family: #f8f8f1;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  margin-right: 8px;
}

.blog-area .blog-post-items .pageontent .search-form button {
  color: var(--dark);
  padding: 14px 24px;
  position: relative;
  right: 0;
  background: var(--primary);
  top: 0;
  height: auto;
  border-radius: 4px;
  line-height: 30px;
  border-color: transparent;
}

.blog-details-wrapper .single-post-item {
  border: 0;
  padding: 0;
  background-color: transparent;
}

.blog-details-wrapper .single-post-item .post-title {
  margin-bottom: 16px;
}

.blog-details-wrapper .single-post-item .post-thumbnail,
.blog-details-wrapper .single-post-item .post-video,
.blog-details-wrapper .single-post-item .post-gallery,
.blog-details-wrapper .single-post-item .postbox-audio,
.blog-details-wrapper .single-post-item .wp-block-post-featured-image {
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 767px) {

  .blog-details-wrapper .single-post-item .post-thumbnail,
  .blog-details-wrapper .single-post-item .post-video,
  .blog-details-wrapper .single-post-item .post-gallery,
  .blog-details-wrapper .single-post-item .postbox-audio,
  .blog-details-wrapper .single-post-item .wp-block-post-featured-image {
    margin-bottom: 30px;
  }
}

.blog-details-wrapper .single-post-item .post-thumbnail:hover img,
.blog-details-wrapper .single-post-item .post-video:hover img,
.blog-details-wrapper .single-post-item .post-gallery:hover img,
.blog-details-wrapper .single-post-item .postbox-audio:hover img,
.blog-details-wrapper .single-post-item .wp-block-post-featured-image:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.blog-details-wrapper .single-post-item .post-thumbnail img,
.blog-details-wrapper .single-post-item .post-video img,
.blog-details-wrapper .single-post-item .post-gallery img,
.blog-details-wrapper .single-post-item .postbox-audio img,
.blog-details-wrapper .single-post-item .wp-block-post-featured-image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.blog-details-wrapper .single-post-item .post-content-wrapper {
  padding: 0 0 10px 0;
}

.blog-details-wrapper .single-post-item .post-content p {
  margin-bottom: 20px;
}

.blog-details-wrapper .single-post-item .post-meta {
  margin-bottom: 30px;
}

.blog-details-wrapper .single-post-item .postbox-audio iframe {
  width: 100%;
}

.blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 20px;
}

.blog-details-wrapper .single-post-item .post-content p {
  margin-top: 17px;
}

.blog-details-wrapper .single-post-item .post-content .wp-block-group {
  margin: 15px 0;
}

.blog-details-wrapper .single-post-item .post-content .wp-block-group p {
  margin-bottom: 0;
}

.blog-details-wrapper .single-post-item .post-content p {
  margin-top: 17px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-wrapper .single-post-item .post-content .mt-70 {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-wrapper .single-post-item .post-content .mt-70 {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-details-wrapper .single-post-item .post-content .mt-70 {
    margin-top: 50px;
  }
}

.blog-details-wrapper .single-post-item .post-content .duo-image {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.blog-details-wrapper .single-post-item .post-content .duo-image .single-img {
  width: 50%;
  overflow: hidden;
}

.blog-details-wrapper .single-post-item .post-content .duo-image .single-img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-wrapper .single-post-item .post-content .duo-image .single-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.blog-details-wrapper .single-post-item .post-content .duo-image .single-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.blog-details-wrapper .single-post-item .post-content .content-list-item {
  margin-top: 24px;
  padding-left: 24px;
}

.blog-details-wrapper .single-post-item .post-content .content-list-item li {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: var(--font-ttl);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: var(--dark);
  letter-spacing: 0.36px;
  padding: 0;
}

.blog-details-wrapper .single-post-item .post-content .content-list-item li.light {
  font-size: 16px;
  font-family: var(--font-txt);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  color: #575959;
}

.blog-details-wrapper .single-post-item .post-content p img {
  margin: 20px 0;
  border-radius: 8px;
}

.blog-details-wrapper .single-post-item .single-post-meta {
  margin-top: 48px;
  margin-bottom: 0;
}

.blog-details-wrapper .single-post-item .wp-block-search .wp-block-search__button {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--dark);
}

.blog-details-wrapper .single-post-item .wp-block-search .wp-block-search__button:hover {
  background-color: var(--dark);
  color: #ffffff;
}

.blog-details-wrapper .single-post-item .blog-post-tag span {
  margin-top: 8px;
}

.blog-details-wrapper .single-post-item .wp-block-social-links .wp-block-social-link {
  padding: 0;
}

.blog-details-wrapper .single-post-item .wp-block-page-list .wp-block-pages-list__item a:hover {
  color: #ff6731;
}

.blog-details-wrapper .wp-block-calendar {
  margin-bottom: 30px;
}

.blog-details-wrapper .comment-respond {
  margin-top: 78px;
  margin-bottom: 40px;
}

.blog-details-wrapper .comment-respond .theme-btn:hover {
  background-color: #ffffff;
  color: var(--dark);
}

@media (min-width: 1440px) {
  .blog-sketch {
    width: 169px;
    height: 169px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -60px;
    left: -94px;
    z-index: 3;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.single-post-item {
  background-color: #f8f8f1;
  overflow: hidden;
  margin-bottom: 30px;
  /* Quote Format Post */
  /* Sticky Post */
}

.single-post-item .post-content-wrapper {
  padding: 15px 20px 15px 20px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .post-content-wrapper {
    padding: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-item .post-content-wrapper {
    padding: 30px;
  }
}

.single-post-item .post-content-wrapper .post-content .detail {
  margin-bottom: 20px;
}

.single-post-item .post-content-wrapper .read-more {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 5px;
}

.single-post-item .post-content-wrapper .read-more a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark);
  padding: 16px 24px;
  text-align: center;
  border-radius: 4px;
  background: transparent;
  text-transform: capitalize;
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 170%;
  font-weight: 400;
  position: relative;
  z-index: 1;
  border: 1px solid #828282;
  gap: 4px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .post-content-wrapper .read-more a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-item .post-content-wrapper .read-more a {
    padding: 12px 18px;
    font-size: 16px;
  }
}

.single-post-item .post-content-wrapper .read-more a:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.single-post-item.format-quote .post-content {
  margin: 0;
}

.single-post-item.format-quote blockquote {
  margin: 0;
}

.single-post-item.format-quote blockquote cite a {
  font-family: var(--font-ttl);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #575959;
  margin-top: 20px;
  font-style: normal;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item.format-quote blockquote cite a:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: var(--dark);
}

.single-post-item.sticky {
  border: 2px solid var(--dark);
}

.single-post-item.sticky .post-content {
  margin-bottom: 0;
}

.single-post-item.sticky .post-content p {
  margin-bottom: 0;
}

.single-post-item.format-image {
  overflow: hidden;
}

.single-post-item.format-image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .post-title {
    font-size: 22px;
    line-height: 30px;
  }
}

.single-post-item .post-title:hover a {
  text-decoration: underline;
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item .post-content h2,
.single-post-item .post-content h3,
.single-post-item .post-content h5,
.single-post-item .post-content h6 {
  margin-bottom: 16px;
}

.single-post-item .post-content h4 {
  margin-bottom: 24px;
}

.single-post-item .post-content p {
  margin-bottom: unset;
}

.single-post-item .single-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 48px;
  margin-bottom: 48px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .single-post-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}

.single-post-item .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.single-post-item .social-share a.linkedin,
.single-post-item .social-share a.facebook,
.single-post-item .social-share a.twitter {
  color: var(--dark);
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--primary);
  border-radius: 50px;
}

.single-post-item .social-share a.linkedin i,
.single-post-item .social-share a.facebook i,
.single-post-item .social-share a.twitter i {
  line-height: 14px;
  font-size: 16px;
}

.single-post-item .social-share a:hover {
  background: var(--dark);
  color: #ffffff;
}

.single-post-item .social-share .social-share-title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ttl);
  color: var(--dark);
  margin-right: -6px;
  text-transform: capitalize;
}

.single-post-item .blog-post-tag {
  width: 100%;
  display: inline-block;
}

.single-post-item .blog-post-tag span {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ttl);
  color: var(--dark);
  margin-bottom: 0;
  margin-right: 16px;
  text-transform: capitalize;
  margin-top: 0;
  float: left;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .blog-post-tag span {
    width: 100%;
  }
}

.single-post-item .blog-post-tag .post-tag-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
}

.single-post-item .blog-post-tag .post-tag-list a {
  color: var(--dark);
  background-color: #F8F8F1;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 9px 12px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item .blog-post-tag .post-tag-list a:hover {
  background-color: var(--primary);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item .post-thumbnail,
.single-post-item .post-video,
.single-post-item .post-gallery,
.single-post-item .postbox-audio,
.single-post-item .wp-block-post-featured-image {
  position: relative;
  overflow: hidden;
}

.single-post-item .post-thumbnail img,
.single-post-item .post-video img,
.single-post-item .post-gallery img,
.single-post-item .postbox-audio img,
.single-post-item .wp-block-post-featured-image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item .post-thumbnail:hover a img,
.single-post-item .post-video:hover a img,
.single-post-item .post-gallery:hover a img,
.single-post-item .postbox-audio:hover a img,
.single-post-item .wp-block-post-featured-image:hover a img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.single-post-item .post-thumbnail .popup-video-wrapper,
.single-post-item .post-video .popup-video-wrapper,
.single-post-item .post-gallery .popup-video-wrapper,
.single-post-item .postbox-audio .popup-video-wrapper,
.single-post-item .wp-block-post-featured-image .popup-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.single-post-item .post-thumbnail .video-btn a,
.single-post-item .post-video .video-btn a,
.single-post-item .post-gallery .video-btn a,
.single-post-item .postbox-audio .video-btn a,
.single-post-item .wp-block-post-featured-image .video-btn a {
  width: 70px;
  height: 70px;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  background-color: #ffffff;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-post-item .post-thumbnail .video-btn a i,
.single-post-item .post-video .video-btn a i,
.single-post-item .post-gallery .video-btn a i,
.single-post-item .postbox-audio .video-btn a i,
.single-post-item .wp-block-post-featured-image .video-btn a i {
  color: var(--dark);
  font-size: 16px;
}

.single-post-item .post-thumbnail .video-btn a:hover,
.single-post-item .post-video .video-btn a:hover,
.single-post-item .post-gallery .video-btn a:hover,
.single-post-item .postbox-audio .video-btn a:hover,
.single-post-item .wp-block-post-featured-image .video-btn a:hover {
  -webkit-animation: none;
  animation: none;
}

.single-post-item .post-content {
  /* Unit Test Data Compatibility Start */
  /* Unit Test Data Compatibility End */
}

.single-post-item .post-content .wp-block-query .wp-block-post-template {
  padding-left: 0;
}

.single-post-item .post-content .wp-block-query .wp-block-post-template .wp-block-post {
  margin-bottom: 30px;
}

.single-post-item .post-content .wp-block-navigation__responsive-container-content .wp-block-page-list {
  padding-left: 0;
}

.single-post-item .post-content .wp-block-group {
  margin: 15px 0;
}

.single-post-item .post-content .wp-block-group p {
  margin-bottom: 0;
}

.single-post-item .post-content p img {
  margin: 20px 0;
  border-radius: 8px;
}

.single-post-item .post-content div.wp-block-image:last-child {
  display: inline-block;
  width: 100%;
}

.single-post-item .blog-post-tag .social-share {
  padding-bottom: 20px;
}

.single-post-item button.post-gallery-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: #ffffff;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
}

.single-post-item button.post-gallery-btn.prev-btn {
  left: 30px;
}

.single-post-item button.post-gallery-btn.next-btn {
  right: 30px;
}

.single-post-item button.post-gallery-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--dark);
  font-size: 17px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item button.post-gallery-btn:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: var(--dark);
}

.single-post-item button.post-gallery-btn:hover i {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item .post-audio iframe {
  width: 100%;
}

.single-post-item .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .post-meta {
    gap: 4px;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-item .post-meta {
    gap: 4px;
  }
}

.single-post-item .post-meta .post-type {
  background-color: var(--primary);
  border-radius: 4px;
  color: var(--dark);
}

.single-post-item .post-meta span {
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: var(--primary);
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .post-meta span {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-item .post-meta span {
    font-size: 14px;
    padding: 4px 12px;
  }
}

.single-post-item .post-meta span i {
  color: var(--dark);
  font-size: 15px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .single-post-item .post-meta span i {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-post-item .post-meta span i {
    font-size: 16px;
  }
}

.single-post-item .post-meta span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #575959;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.single-post-item .post-meta span a:hover {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.post-testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  background-color: #f8f8f1;
  padding: 32px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.post-testimonial .image {
  border-radius: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.post-testimonial .content-wrapper .testimonial-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post-testimonial .content-wrapper .testimonial-post-meta .meta-author {
  font-size: 16px;
  font-family: var(--font-ttl);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.post-testimonial .content-wrapper .testimonial-post-meta .social-share a {
  width: 24px;
  height: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  background-color: transparent;
}

.post-testimonial .content-wrapper .testimonial-post-meta .social-share a i {
  font-size: 10px;
  line-height: 10px;
}

.post-testimonial .content-wrapper .testimonial-post-meta .social-share a:hover {
  border-color: transparent;
  background-color: var(--primary);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-testimonial .content-wrapper {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-testimonial .content-wrapper {
    text-align: center;
  }
}

.author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  background-color: #f8f8f1;
  padding: 32px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .author-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .author-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.author-info .author-thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 142px;
  height: 142px;
  border-radius: 50px;
}

.author-info .author-thumb img {
  border-radius: 50%;
}

.author-info .author-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 140%;
}

.author-info .author-text .designation {
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
  line-height: 170%;
  font-family: var(--font-ttl);
  margin-top: 16px;
  margin-bottom: 0;
}

.author-info .author-text p {
  font-size: 16px;
  color: #575959;
  font-weight: 400;
  line-height: 170%;
}

.author-info .author-text .author-social-profiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: -18px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .author-info .author-text .author-social-profiles {
    margin-top: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .author-info .author-text .author-social-profiles {
    margin-top: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.author-info .author-text .author-social-profiles a {
  width: 24px;
  height: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.author-info .author-text .author-social-profiles a i {
  font-size: 10px;
  line-height: 10px;
}

.author-info .author-text .author-social-profiles a:hover {
  border-color: transparent;
  background-color: var(--primary);
}

.author-info .author-text .author-social-profiles a:hover i {
  color: var(--dark);
}

.author-info .author-post a {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-txt);
  color: var(--dark);
  border-bottom: 2px solid #ff6731;
  margin-top: 16px;
  display: inline-block;
}

.author-info .author-post a:hover {
  color: #ff6731;
}

.blog-details-border {
  margin-top: 40px;
  background: #fff;
  padding: 40px;
  padding-bottom: 22px;
  border-radius: 14px;
}

.bakix-navigation span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: #ff5b5b;
}

.bakix-navigation span a:hover {
  color: #fe4536;
}

.bakix-navigation h4 {
  font-size: 21px;
  margin: 0;
  text-transform: capitalize;
}

.bakix-navigation h4 a:hover {
  color: #fe4536;
}

.blog-post-nav {
  margin: 40px 0;
  background: #f8f8f1;
  padding: 24px;
  padding-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .blog-post-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    margin: 30px 0;
  }
}

@media (max-width: 767px) {
  .blog-post-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    margin: 30px 0;
  }
}

.blog-post-nav .divider {
  background-color: #dfe2e9;
  width: 1px;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .blog-post-nav .divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 767px) {
  .blog-post-nav .divider {
    width: 100%;
    height: 1px;
  }
}

.blog-post-nav .post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 50%;
}

@media (max-width: 374px) {
  .blog-post-nav .post-navigation {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .blog-post-nav .post-navigation {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-post-nav .post-navigation {
    width: 100%;
  }
}

.blog-post-nav .post-navigation:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.blog-post-nav .post-navigation:last-child .text {
  text-align: right;
}

@media (max-width: 374px) {
  .blog-post-nav .post-navigation:last-child .text {
    text-align: left;
  }
}

.blog-post-nav .post-navigation .post-img {
  width: 96px;
  height: 96px;
  position: relative;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 10px;
}

@media (max-width: 374px) {
  .blog-post-nav .post-navigation .post-img {
    width: 100% !important;
    height: 150px !important;
  }
}

.blog-post-nav .post-navigation .post-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
}

.blog-post-nav .post-navigation .text {
  width: 100%;
}

.blog-post-nav .post-navigation .text span {
  font-size: 14px;
  font-family: var(--font-txt);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  color: var(--dark);
}

.blog-post-nav .post-navigation .text h4 {
  font-size: 21px;
  margin: 0;
  line-height: 30px;
  text-transform: capitalize;
}

.blog-post-nav .post-navigation .text h4 a:hover {
  color: var(--dark);
  text-decoration: underline;
}

.wp-block-query-pagination,
.navigation.posts-navigation,
.comment-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers,
.navigation.posts-navigation .wp-block-query-pagination-numbers,
.comment-navigation .wp-block-query-pagination-numbers {
  width: inherit;
}

.wp-block-query-pagination .nav-links,
.navigation.posts-navigation .nav-links,
.comment-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .nav-next a,
.wp-block-query-pagination .nav-previous a,
.navigation.posts-navigation .wp-block-query-pagination-previous,
.navigation.posts-navigation .wp-block-query-pagination-next,
.navigation.posts-navigation .nav-next a,
.navigation.posts-navigation .nav-previous a,
.comment-navigation .wp-block-query-pagination-previous,
.comment-navigation .wp-block-query-pagination-next,
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark);
  background-color: #ffffff;
  border-radius: 6px;
  height: 53px;
  padding: 0 20px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 767px) {

  .wp-block-query-pagination .wp-block-query-pagination-previous,
  .wp-block-query-pagination .wp-block-query-pagination-next,
  .wp-block-query-pagination .nav-next a,
  .wp-block-query-pagination .nav-previous a,
  .navigation.posts-navigation .wp-block-query-pagination-previous,
  .navigation.posts-navigation .wp-block-query-pagination-next,
  .navigation.posts-navigation .nav-next a,
  .navigation.posts-navigation .nav-previous a,
  .comment-navigation .wp-block-query-pagination-previous,
  .comment-navigation .wp-block-query-pagination-next,
  .comment-navigation .nav-next a,
  .comment-navigation .nav-previous a {
    height: 40px;
  }
}

.wp-block-query-pagination .wp-block-query-pagination-previous:hover,
.wp-block-query-pagination .wp-block-query-pagination-next:hover,
.wp-block-query-pagination .nav-next a:hover,
.wp-block-query-pagination .nav-previous a:hover,
.navigation.posts-navigation .wp-block-query-pagination-previous:hover,
.navigation.posts-navigation .wp-block-query-pagination-next:hover,
.navigation.posts-navigation .nav-next a:hover,
.navigation.posts-navigation .nav-previous a:hover,
.comment-navigation .wp-block-query-pagination-previous:hover,
.comment-navigation .wp-block-query-pagination-next:hover,
.comment-navigation .nav-next a:hover,
.comment-navigation .nav-previous a:hover {
  background: var(--dark) !important;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.basic-pagination,
.page-links,
.wp-block-query-pagination-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.basic-pagination ul,
.page-links ul,
.wp-block-query-pagination-numbers ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.basic-pagination ul li,
.page-links ul li,
.wp-block-query-pagination-numbers ul li {
  padding-top: 0;
  padding-bottom: 0;
}

.basic-pagination ul .prev span,
.basic-pagination ul .next span,
.page-links ul .prev span,
.page-links ul .next span,
.wp-block-query-pagination-numbers ul .prev span,
.wp-block-query-pagination-numbers ul .next span {
  display: none;
}

.basic-pagination .post-page-numbers,
.page-links .post-page-numbers,
.wp-block-query-pagination-numbers .post-page-numbers {
  background-color: rgba(71, 112, 247, 0.1);
}

.basic-pagination .page-numbers,
.basic-pagination .post-page-numbers,
.page-links .page-numbers,
.page-links .post-page-numbers,
.wp-block-query-pagination-numbers .page-numbers,
.wp-block-query-pagination-numbers .post-page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark);
  background-color: #f8f8f1;
  border-radius: 4px;
  height: 53px;
  width: 53px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 16px;
  font-weight: 500;
}

.basic-pagination .page-numbers:hover,
.basic-pagination .post-page-numbers:hover,
.page-links .page-numbers:hover,
.page-links .post-page-numbers:hover,
.wp-block-query-pagination-numbers .page-numbers:hover,
.wp-block-query-pagination-numbers .post-page-numbers:hover {
  background: var(--dark) !important;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.basic-pagination .page-numbers.current,
.basic-pagination .post-page-numbers.current,
.page-links .page-numbers.current,
.page-links .post-page-numbers.current,
.wp-block-query-pagination-numbers .page-numbers.current,
.wp-block-query-pagination-numbers .post-page-numbers.current {
  background: var(--primary) !important;
  color: var(--dark);
  border-color: #ff6731;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.service-area.style-3 {
  background: #f8f8f1;
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-area.style-3 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-area.style-3 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.service-area.style-3 .sketch {
  position: absolute;
  right: 32px;
  bottom: 368px;
  background-position: center;
  background-repeat: no-repeat;
  width: 169px;
  height: 169px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media (max-width: 1199px) {
  .service-area.style-3 .sketch {
    display: none;
  }
}

.service-area.style-3 .shape-one {
  position: absolute;
  left: 33px;
  bottom: 609px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: Rotating-reverse 9s linear infinite;
  animation: Rotating-reverse 9s linear infinite;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@media (max-width: 1199px) {
  .service-area.style-3 .shape-one {
    display: none;
  }
}

.service-area.style-3 .shape-two {
  position: absolute;
  right: 55px;
  top: 201px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: Rotating-reverse 9s linear infinite;
  animation: Rotating-reverse 9s linear infinite;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

@media (max-width: 1199px) {
  .service-area.style-3 .shape-two {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .why-choose-us-area.style-3 .section-title .desc {
    padding-left: 90px;
  }
}

.why-choose-us-area.style-3 .image-card {
  gap: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-us-area.style-3 .image-card .content .title {
    font-size: 32px;
    line-height: 32px;
  }
}

.pricing-area.style-2 {
  background-color: #F8F8F1;
  padding-top: 104px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area.style-2 {
    padding-top: 67px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area.style-2 {
    padding-top: 90px;
    padding-bottom: 76px;
  }
}

.pricing-area.style-2 .price-card-wrapper .price-card {
  background-color: #FFFFFF;
}

.pricing-area.style-2 .price-card-wrapper.active .price-card {
  background-color: var(--primary);
}

.faq-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
  background-color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .faq-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.faq-area.style-2 .accordion-wrapper .accordion-list-item {
  background-color: #F8F8F1;
}

.pricing-card-wrapper {
  background: #eef5f8;
}

.why-choose-card-wrapper {
  padding-left: 110px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .why-choose-card-wrapper {
    padding-left: 0;
  }
}

.accordion-section {
  padding: 200px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .accordion-section {
    padding: 70px 0;
  }
}

.pricing-accordion-wrapper {
  padding-left: 120px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-accordion-wrapper {
    padding-left: 0;
    margin-top: 30px;
  }
}

.faq-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.faq-tab .faq-single-tab {
  border-radius: 6px;
  padding: 26px 35px;
  background: #eef5f8;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.faq-tab .faq-single-tab a h3 {
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: var(--dark);
}

.faq-tab .faq-single-tab:hover {
  background: #ff6731;
}

.faq-tab .faq-single-tab:hover a h3 {
  color: #ffffff;
}

.blog-main-wrapper {
  padding: 120px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-main-wrapper {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-main-wrapper {
    padding: 100px 0;
  }
}

.blog-load-btn {
  padding: 20px 35px;
  background: #ff6731;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  border-radius: 6px;
}

.blog-details-area {
  padding: 120px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-area {
    padding: 80px 0;
  }
}

.blog-details-area .related-post-area.style-1 {
  padding-top: 120px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-area .related-post-area.style-1 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-area .related-post-area.style-1 {
    padding-top: 100px;
  }
}

.blog-coment-title h2,
.blog-coment-title .wp-block-comments-title,
.wp-block-comments h2,
.wp-block-comments .wp-block-comments-title {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
}

/* Block Comment Start */
.wp-block-comments .wp-block-comment-template {
  padding-left: 0;
}

.wp-block-comments .wp-block-comment-template .wp-block-comment-reply-link {
  margin-top: 15px;
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns {
  padding: 50px;
  border: 1px solid #dfe2e9;
  border-radius: 8px;
  margin-bottom: 24px;
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-column:first-child {
  -ms-flex-preferred-size: 80px !important;
  flex-basis: 80px !important;
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-avatar {
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-avatar img {
  width: 100%;
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-comment-author-name a {
  font-size: 21px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--font-txt);
  color: var(--dark);
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-comment-edit-link a {
  color: var(--dark);
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-comment-date a,
.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-comment-edit-link a {
  color: #9ba8c3;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ttl);
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-comment-reply-link a {
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  border: 1px solid #ff6731;
  padding: 4px 26px;
  display: inline-block;
}

.wp-block-comments .wp-block-comment-template li .wp-block-columns .wp-block-comment-reply-link a:hover {
  background-color: #ff6731;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.latest-comments li .children .comments-box {
  margin-left: 50px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .latest-comments li .children .comments-box {
    margin-left: 0;
  }
}

.latest-comments li .children .children .comments-box {
  margin-left: 100px;
  border-top: 1px solid #d2d2d2;
}

.latest-comments li .comments-box {
  padding: 50px;
  border: 1px solid #dfe2e9;
  border-radius: 8px;
  margin-bottom: 24px;
}

.latest-comments li .comments-box .comments-avatar {
  float: left;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .latest-comments li .comments-box .comments-avatar {
    float: inherit;
    margin-bottom: 20px;
  }
}

.latest-comments li .comments-box .comments-avatar img {
  margin-right: 30px;
  width: 100px;
  border-radius: 50px;
}

.latest-comments li .comments-box .comments-text {
  overflow: hidden;
}

.latest-comments li .comments-box .comments-text p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #575959;
}

.latest-comments li .comments-box .comments-text .avatar-name {
  margin-bottom: 10px;
  position: relative;
}

.latest-comments li .comments-box .comments-text .avatar-name h5 {
  font-size: 21px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--font-txt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.latest-comments li .comments-box .comments-text .avatar-name span {
  color: var(--dark);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ttl);
}

.latest-comments li .comments-box .comments-text .comment-reply-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 4px 26px;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .latest-comments li .comments-box .comments-text .comment-reply-link {
    position: unset;
    margin-top: 10px;
  }
}

.latest-comments li .comments-box .comments-text .comment-reply-link:hover {
  background-color: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.post-comments .latest-comments>ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.comments-text>ul,
.comments-text>ol {
  margin-bottom: 20px;
}

ul.children {
  list-style: none;
}

/*Comment Input Filed*/
.post-comments-form.style-two {
  padding: 0;
  background: transparent;
}

.post-comments-title .sub-title {
  font-family: var(--font-ttl);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
  display: inline-block;
  width: 100%;
}

.post-comments-title h2 {
  font-size: 36px;
  line-height: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-comments-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.post-comments-title h2 small {
  font-size: 16px;
  font-family: var(--font-ttl);
  color: #ff6731;
}

.post-comments-title h2 small:hover {
  color: var(--primary);
}

.post-comments-title.style-two h5 {
  color: var(--dark);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.64px;
  margin-bottom: 48px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-comments-title.style-two h5 {
    margin-bottom: 28px;
  }
}

.post-comments-title .sub-title {
  color: var(--dark);
  display: inline-block;
  width: 100%;
  margin-top: 25px;
  background: var(--secondary);
  padding: 1rem;
}

.post-comments-title h5 {
  color: var(--dark);
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .post-comments-title h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.post-comments-form.bg-gray {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, var(--color1), var(--color2), var(--color3), var(--color4)) border-box;
  border-radius: 2rem;
  border: 7px solid transparent;
}
.post-comments-title h5 small {
  font-size: 16px;
  font-family: var(--font-ttl);
  color: var(--dark);
}

.comment-respond {
  position: relative;
}

.comment-respond .wpcf7-spinner {
  position: absolute;
  right: 0;
}

.comment-respond .theme-btn.style-four {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--dark);
  height: 64px;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.comment-respond .theme-btn.style-four:hover {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.comment-respond .contacts-email,
.comment-respond .contacts-name,
.comment-respond .single-input-field,
.comment-respond .contacts-message {
  margin-bottom: 20px;
}

.comment-respond .single-input-field .nice-select {
  color: var(--dark);
}

.comment-respond .single-input-field .nice-select:after {
  width: 10px;
  height: 10px;
}

.comment-respond label {
  display: block;
  font-family: "Inter";
  font-style: normal;
  font-size: 14px;
  line-height: 27px;
  color: var(--dark);
  margin-bottom: 8px;
}

.comment-respond .checkbox-field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 15px 0;
}

.comment-respond .checkbox-field-wrapper .single-checkbox-field {
  margin-bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ttl);
}

.comment-respond .checkbox-field-wrapper .single-checkbox-field .form-check-input {
  margin: 0 !important;
  width: 18px;
  height: 18px;
  padding: 0;
}

.comment-respond .comment-form-cookies-consent {
  display: none;
}

.comment-respond .comment-form .terms-condition-wrapper .terms-condition {
  height: 100%;
  width: auto;
  display: inline-block;
  margin-right: 8px;
}

.comment-respond input,
.comment-respond select {
  padding: 0 16px;
  height: 45px;
  width: 100%;
  color: var(--dark);
  border: 1px solid var(--bs-gray-600);
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  font-family: "Inter", sans-serif !important;
  border-radius: 8px !important;
}

.input-group {
  align-items: center;
  height: 55px;
  border: 1px solid var(--bs-gray-600);
  border-radius: 3px !important;
}

.input-group label {
  margin-bottom: 0;
  padding: 0 16px;
  color: #828282;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
}

.input-group input {
  display: flex;
  align-items: center;
  height: auto;
  border: 0 !important;
}

.comment-respond *::-webkit-input-placeholder {
  color: #828282;
  font-size: 14px
}

.comment-respond *:-ms-input-placeholder {
  color: #828282;
  font-size: 14px
}

.comment-respond *::-ms-input-placeholder {
  color: #828282;
  font-size: 14px
}

.comment-respond *::placeholder {
  color: #828282;
  font-size: 14px
}

.comment-respond textarea {
  resize: vertical;
  padding: 10px 16px;
  width: 100%;
  color: #828282;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  background-color: transparent;
  font-family: "Inter", sans-serif !important;
  height: 90px;
  border-radius: 8px !important;
}

.comment-respond textarea.style-two {
  color: var(--dark) !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .comment-respond textarea {
    height: 90px;
  }
}

.comment-respond p {
  margin: 0;
}

.comment-respond p a {
  color: var(--dark);
}

.comment-respond input:focus,
.comment-respond textarea:focus,
.comment-respond .form-select:focus,
.comment-respond .nice-select {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #828282;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #828282;
}

.comment-respond.style-two input {
  padding: 16px;
  height: auto;
  color: #828282;
  border: 1px solid #828282;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif !important;
  line-height: 150%;
}

.comment-respond.style-two ::-webkit-input-placeholder {
  color: #828282;
  opacity: 1;
  /* Firefox */
}

.comment-respond.style-two :-ms-input-placeholder {
  color: #828282;
  opacity: 1;
  /* Firefox */
}

.comment-respond.style-two ::-ms-input-placeholder {
  color: #828282;
  opacity: 1;
  /* Firefox */
}

.comment-respond.style-two ::placeholder {
  color: #828282;
  opacity: 1;
  /* Firefox */
}

.comment-respond.style-two :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #828282;
}

.comment-respond.style-two ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #828282;
}

.comment-respond.style-two textarea {
  border-color: #828282;
  color: #828282 !important;
}

.comment-respond.style-two .contacts-checkbox {
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 4px;
  margin-right: 8px;
}

.comment-respond.style-two .form-check-input:checked {
  background-color: var(--dark);
  border-color: var(--dark);
}

.comment-respond.style-two {
  background: transparent;
  padding: 0;
}

.comment-respond.style-two label {
  color: #020a27;
}

.comment-respond.style-two input[type="submit"] {
  display: inline-block;
  width: unset;
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 17px 24px;
  color: var(--dark);
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.comment-respond.style-two input[type="submit"]:hover {
  background-color: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.comment-respond.style-two .single-input-field {
  margin-bottom: 30px;
}

.comment-respond.style-two .single-input-field input,
.comment-respond.style-two .single-input-field select {
  background-color: transparent;
  border-color: #828282 !important;
  color: var(--dark) !important;
  height: 53px;
}

.comment-respond.style-two .single-input-field .nice-select {
  color: var(--dark);
}

.comment-respond.style-two .single-input-field textarea {
  border-color: #828282;
  height: 142px;
  margin-bottom: 40px;
}

.comment-respond.style-two .single-input-field *::-webkit-input-placeholder {
  color: #828282;
}

.comment-respond.style-two .single-input-field *:-ms-input-placeholder {
  color: #828282;
}

.comment-respond.style-two .single-input-field *::-ms-input-placeholder {
  color: #828282;
}

.comment-respond.style-two .single-input-field *::placeholder {
  color: #828282;
}

.comment-respond.style-two .checkbox-field-wrapper .single-checkbox-field .form-check-input {
  background-color: transparent;
  border-color: #828282;
}

.comment-respond.style-two input:focus,
.comment-respond.style-two textarea:focus,
.comment-respond.style-two .form-select:focus,
.comment-respond.style-two .nice-select {
  border-color: #828282;
}

#enq-form-wrapper form .responsive-form {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 20px;
}

#enq-form-wrapper form .responsive-form .form-item {
  flex: 1 1 315px;
}

form :is(input, textarea, select)+span {
  font-size: 12px;
  display: inherit;
  line-height: 20px !important;
}





.team-page {
  padding-top: 104px;
  padding-bottom: 68px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-page {
    padding-top: 67px;
    padding-bottom: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page {
    padding-top: 90px;
    padding-bottom: 48px;
  }
}

.team-member-card {
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
}

.team-member-card .image {
  background-color: #f8f8f1;
  background-position: center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-member-card .image img {
  width: 100%;
  height: 100%;
}

.team-member-card .image .image-content-wrapper {
  padding: 43px 0 44px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.content-wrap .user-info h5 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.content-wrap .user-info small {
  font-size: 12px;
  color: #757575;
}
.team-member-card .image .image-content-wrapper .user-info h4 {
  margin-bottom: 4px;
  color: #ffffff;
}

.team-member-card .image .image-content-wrapper .user-info h4 a:hover {
  color: var(--primary);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-member-card .image .image-content-wrapper .user-info h4 {
    font-size: 26px;
  }
}

.team-member-card .image .image-content-wrapper .user-info p {
  text-align: center;
  color: #ffffff;
}

.team-member-card .image .image-content-wrapper .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 27px;
  width: 100%;
}

.team-member-card .image .image-content-wrapper .social a {
  line-height: 18px;
}

.team-member-card .image .image-content-wrapper .social a i {
  color: #ffffff;
  font-size: 24px;
}

.team-member-card .content-wrapper {
  padding: 48px 10px 48px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-member-card .content-wrapper .user-info h4 {
  margin-bottom: 4px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-member-card .content-wrapper .user-info h4 {
    font-size: 26px;
  }
}

.team-member-card .content-wrapper .user-info p {
  text-align: center;
}

.team-member-card .content-wrapper .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 27px;
  width: 100%;
}

.team-member-card .content-wrapper .social a {
  line-height: 18px;
}

.team-member-card .content-wrapper .social a i {
  color: var(--dark);
  font-size: 24px;
}

.team-member-card .image-content-wrapper .social a i {
  z-index: 10;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-member-card .image-content-wrapper .social a i:hover {
  color: var(--primary);
}

.team-member-card:hover .image {
  opacity: .8;
}

.team-member-card:hover .content-wrapper {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.slick-track {
  margin-left: 0;
  margin-right: 0;
}

.team-member-card:hover .image-content-wrapper {
  background: rgba(3, 63, 71, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-member-card {
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-member-card {
    margin-bottom: 50px;
  }
}

.team-member-card.style-two .image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.tour-card .image, .visa-card .image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.team-member-card.style-two .content-wrapper {
  padding: 10px 0 0 0;
}
.team-info {
  border: 1px solid #d0d0d0;
  border-radius: 0 0 20px 20px;
  padding: 8px 11px;
}
.team-member-card.style-two .content-wrapper .user-info h4 {
  margin-bottom: 8px;
}
.visa-card h5  {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100px;
    background: linear-gradient(180deg,#0009,#0000);
    padding: 10px 5px 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,.5);
    border-radius: 10px 10px 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-member-card.style-two .content-wrapper .user-info h4 {
    font-size: 28px;
    line-height: 32px;
  }
}

.team-member-card.style-two .content-wrapper .user-info p {
  font-size: 16px;
  line-height: 31px;
}

.team-member-card.style-two .content-wrapper .social {
  display: none;
}

.team-member-card.style-two:hover .content-wrapper {
  background: none;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  top: 0;
}

.team-member-card.style-two:hover .content-wrapper .user-info h4 {
  color: var(--dark);
}

.team-member-card.style-two:hover .content-wrapper .user-info p {
  color: unset;
}

/* 4.Sidebar */
.sidebar {
  padding-left: 8px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .sidebar {
    padding-left: 0;
    padding-top: 40px;
    padding-bottom: 48px;
    margin-bottom: 0;
  }
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.page-sidebar {
  margin-bottom: 50px;
  padding-left: 18px;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.body-overlay:hover {
  cursor: pointer;
}

/* Widget */
.widget {
  background-color: #f8f8f1;
  padding: 40px 40px 33px 40px;
  border-radius: 4px;
  margin-bottom: 32px;
  /* Widget Title */
  /* Social Widget Block */
  /* Recent Comment List Block Widget & Latest Post Widget Block */
  /* Social Widget */
  /* Select Option  */
  /* Login Widget */
  /* Search Widget */
  /* Tagcloud Widget */
  /* Default Widget */
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .widget {
    padding: 30px 30px 24px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget {
    padding: 30px 30px 24px 30px;
  }
}

.widget ol,
.widget ul {
  margin-bottom: 0;
}

.widget.widget_search {
  padding: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget.widget_search {
    padding: 30px;
  }
}

.widget .wp-block-heading,
.widget .widget-title {
  display: block;
  font-family: var(--font-txt);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--dark);
  margin-bottom: 30px;
  position: relative;
  margin-top: -10px;
}

.widget .wp-block-heading:before,
.widget .widget-title:before {
  content: "\f0da";
  font-family: "Font Awesome 6 Pro";
  margin-right: 6px;
  color: #1eae98;
  display: none;
}

.widget .wp-block-social-links .wp-social-link {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.widget .wp-block-social-links .wp-social-link a {
  width: 44px;
  height: 44px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.widget .has-avatars.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
.widget .has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  font-weight: 500;
}

.widget .has-avatars.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author,
.widget .has-avatars.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-link,
.widget .has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author,
.widget .has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-link {
  font-weight: 500;
}

.widget .wp-block-latest-comments li.wp-block-latest-comments__comment,
.widget .wp-block-latest-posts li.wp-block-latest-comments__comment {
  margin-bottom: 8px;
}

.widget .wp-block-latest-comments li .wp-block-latest-comments__comment-meta,
.widget .wp-block-latest-comments li .wp-block-latest-posts__post-title,
.widget .wp-block-latest-posts li .wp-block-latest-comments__comment-meta,
.widget .wp-block-latest-posts li .wp-block-latest-posts__post-title {
  line-height: 28px;
  font-weight: 400;
}

.widget .wp-block-latest-comments li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date,
.widget .wp-block-latest-comments li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date,
.widget .wp-block-latest-posts li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date,
.widget .wp-block-latest-posts li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date {
  font-size: 14px !important;
  margin-bottom: 10px;
  position: relative;
}

.widget .wp-block-latest-comments li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date:before,
.widget .wp-block-latest-comments li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date:before,
.widget .wp-block-latest-posts li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date:before,
.widget .wp-block-latest-posts li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date:before {
  content: "\f274";
  font-family: "Font Awesome 6 Pro";
  padding-right: 8px;
}

.widget .wp-block-latest-comments li a,
.widget .wp-block-latest-posts li a {
  color: var(--dark);
}

.widget .wp-block-latest-comments li a.wp-block-latest-comments__comment-author,
.widget .wp-block-latest-comments li a.wp-block-latest-comments__comment-link,
.widget .wp-block-latest-posts li a.wp-block-latest-comments__comment-author,
.widget .wp-block-latest-posts li a.wp-block-latest-comments__comment-link {
  display: inline !important;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 400;
}

.widget .wp-block-latest-comments li a:hover,
.widget .wp-block-latest-posts li a:hover {
  color: var(--dark);
}

.widget .wp-block-latest-comments li .wp-block-latest-comments__comment-excerpt p,
.widget .wp-block-latest-posts li .wp-block-latest-comments__comment-excerpt p {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

.widget .social-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}

.widget .social-profile a {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border-radius: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .widget .social-profile a {
    width: 40px;
    height: 40px;
  }
}

.widget .social-profile a:hover {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: var(--primary);
}

.widget select {
  max-width: 100%;
  height: 50px;
  width: 100%;
  border: 1px solid #31373f;
  padding: 0 10px;
  border-radius: 5px;
  color: #575959;
  margin-bottom: 0;
}

.widget .has-login-form .login-username label,
.widget .has-login-form .login-password label {
  margin-bottom: 10px;
}

.widget .has-login-form .login-username input,
.widget .has-login-form .login-password input {
  max-width: 100%;
  height: 50px;
  width: 100%;
  border: 1px solid #dfe2e9;
  padding: 0 10px;
  border-radius: 5px;
  color: #575959;
}

.widget .has-login-form .login-remember input {
  border: 1px solid #dfe2e9;
}

.widget .has-login-form .login-remember label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.widget .has-login-form .login-submit {
  margin-bottom: 0;
}

.widget .has-login-form .login-submit input.button-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark);
  padding: 15.5px 32px;
  border: 1px solid var(--primary);
  text-align: center;
  border-radius: 4px;
  background: var(--primary);
  text-transform: capitalize;
  font-family: var(--font-ttl);
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.widget .search-form {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.widget .search-form button {
  width: 62px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.widget .wp-block-search__no-button.wp-block-search input {
  border-radius: 10px;
}

.widget .wp-block-search {
  margin-bottom: -2px;
}

.widget .wp-block-search,
.widget .search-form {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

.widget .wp-block-search .wp-block-search__inside-wrapper,
.widget .search-form .wp-block-search__inside-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .widget .wp-block-search .wp-block-search__inside-wrapper,
  .widget .search-form .wp-block-search__inside-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .widget .wp-block-search .wp-block-search__inside-wrapper button,
  .widget .search-form .wp-block-search__inside-wrapper button {
    padding: 8px 24px;
  }
}

.widget .wp-block-search label,
.widget .search-form label {
  font-size: 24px;
  display: block;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
  font-family: var(--font-txt);
}

.widget .wp-block-search input,
.widget .search-form input {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 0 25px;
  height: 60px;
  width: 100%;
  color: #575959;
  font-family: var(--font-ttl);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #575959;
  margin-right: 8px;
}

.widget .wp-block-search button,
.widget .search-form button {
  color: var(--dark);
  padding: 0 24px;
  position: relative;
  right: 0;
  background: var(--primary);
  top: 0;
  height: auto;
  border-radius: 4px;
  line-height: 30px;
  border-color: transparent;
}

.widget .widget_tag_cloud .wp-block-heading {
  margin-bottom: 30px;
}

.widget .tagcloud,
.widget .wp-block-tag-cloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget .tagcloud a,
.widget .wp-block-tag-cloud a {
  color: var(--dark);
  display: inline-block;
  font-size: 16px;
  line-height: 170%;
  padding: 8px 16px;
  border-radius: 8px;
  background: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.widget .tagcloud a:hover,
.widget .wp-block-tag-cloud a:hover {
  color: var(--dark);
  background: var(--primary);
  border-color: var(--primary);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.widget ul,
.widget ol {
  padding-left: 0;
  /* Tag Cloud Widget */
}

.widget ul li,
.widget ol li {
  display: block;
  border-bottom: 1px solid #e0e0e0;
  /* Recent Comment Widget */
}

.widget ul li:first-child,
.widget ol li:first-child {
  padding-top: 0;
  margin-top: -8px;
}

.widget ul li:last-child,
.widget ol li:last-child {
  margin-bottom: 0 !important;
  border-bottom: none;
  padding-bottom: 0;
}

.widget ul li.recentcomments .comment-author-link a:before,
.widget ol li.recentcomments .comment-author-link a:before {
  display: block;
}

.widget ul li.recentcomments a,
.widget ol li.recentcomments a {
  padding-left: 0;
  display: inline;
}

.widget ul li.recentcomments a:before,
.widget ol li.recentcomments a:before {
  display: none;
}

.widget ul li a,
.widget ol li a {
  color: var(--dark);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  /* RSS Widget */
}

.widget ul li a:hover,
.widget ol li a:hover {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.widget ul li a.rsswidget,
.widget ol li a.rsswidget {
  padding-left: 0;
  font-weight: 500;
  display: block;
}

.widget ul li a.rsswidget:before,
.widget ol li a.rsswidget:before {
  display: none;
}

.widget ul li ul,
.widget ol li ul {
  padding-left: 25px;
  padding-top: 10px;
}

.widget ul.wp-tag-cloud li,
.widget ol.wp-tag-cloud li {
  display: inline-block;
  padding: 0;
  border: 0;
}

.widget ul.wp-tag-cloud li a:before,
.widget ol.wp-tag-cloud li a:before {
  display: none;
}

.widget.widget_search .wp-block-search {
  overflow: visible;
  margin-top: -6px;
}

.widget.widget_categories ul li,
.widget.widget_archive ul li {
  text-align: right;
  display: inline-block;
  width: 100%;
}

.widget.widget_categories ul li.cat-item,
.widget.widget_archive ul li.cat-item {
  text-align: right;
  display: inline-block;
  width: 100%;
  color: var(--dark);
}

.widget.widget_categories ul li a,
.widget.widget_archive ul li a {
  float: left;
}

.widget.widget_categories ul li:last-child,
.widget.widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget.widget_categories .wp-block-archives,
.widget.widget_categories .wp-block-categories,
.widget.widget_archive .wp-block-archives,
.widget.widget_archive .wp-block-categories {
  margin-bottom: 0;
}

.widget.widget_social_profile {
  padding: 32px 24px;
}

.widget.widget_rss ul li,
.widget.widget_rss ol li {
  padding: 25px 0;
}

.widget.widget_rss ul li:last-child,
.widget.widget_rss ol li:last-child {
  padding-bottom: 0;
}

.widget.widget_rss ul li:first-child,
.widget.widget_rss ol li:first-child {
  padding-top: 0;
}

.widget.widget_recent_comments .wp-block-latest-comments li {
  padding: 25px 0;
}

.widget.widget_recent_comments .wp-block-latest-comments li:last-child {
  padding-bottom: 0;
}

.widget.widget_recent_comments .wp-block-latest-comments li:first-child {
  padding-top: 0;
}

.widget.widget_recent_entries .wp-block-latest-posts li {
  padding: 25px 0;
}

.widget.widget_recent_entries .wp-block-latest-posts li:last-child {
  padding-bottom: 0;
}

.widget.widget_recent_entries .wp-block-latest-posts li:first-child {
  padding-top: 0;
}

.widget.widget_text select {
  margin-bottom: 0;
}

.widget.widget_tag_cloud .tagcloud {
  margin-bottom: 0;
}

/* About Info Widget*/
.widget-about-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.widget-about-info .about-desc {
  text-align: left;
}

.widget-about-info .about-desc .about-title {
  font-size: 20px;
}

.widget-about-info .about-image {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-about-info .social-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid #dfe2e9;
  width: 100%;
  margin-top: 10px;
}

.widget-about-info .social-profile a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 44px;
  height: 44px;
  background-color: #f3f4f8;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.5s ease-out;
}

.widget-about-info .social-profile a:hover {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: var(--dark);
}

/* Latest Post Widget*/
.has-dates.has-author.wp-block-latest-posts .wp-block-latest-posts__post-title {
  display: inline-block;
  width: 100%;
  font-weight: 500;
}

.wp-block-latest-posts .wp-block-rss__item-title,
.wp-block-rss .wp-block-rss__item-title,
.widget_rss .wp-block-rss__item-title {
  display: inline-block;
  width: 100%;
  font-weight: 500;
}

.wp-block-latest-posts .wp-block-latest-posts__post-author,
.wp-block-latest-posts .wp-block-rss__item-publish-date,
.wp-block-rss .wp-block-latest-posts__post-author,
.wp-block-rss .wp-block-rss__item-publish-date,
.widget_rss .wp-block-latest-posts__post-author,
.widget_rss .wp-block-rss__item-publish-date {
  margin-right: 10px;
}

.wp-block-latest-posts .wp-block-latest-posts__post-author,
.wp-block-latest-posts .wp-block-latest-posts__post-date,
.wp-block-latest-posts .wp-block-rss__item-publish-date,
.wp-block-latest-posts .wp-block-rss__item-author,
.wp-block-latest-posts .rss-date,
.wp-block-rss .wp-block-latest-posts__post-author,
.wp-block-rss .wp-block-latest-posts__post-date,
.wp-block-rss .wp-block-rss__item-publish-date,
.wp-block-rss .wp-block-rss__item-author,
.wp-block-rss .rss-date,
.widget_rss .wp-block-latest-posts__post-author,
.widget_rss .wp-block-latest-posts__post-date,
.widget_rss .wp-block-rss__item-publish-date,
.widget_rss .wp-block-rss__item-author,
.widget_rss .rss-date {
  display: inline-block;
  font-size: 14px !important;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}

.wp-block-latest-posts .wp-block-latest-posts__post-date:before,
.wp-block-latest-posts .wp-block-rss__item-publish-date:before,
.wp-block-latest-posts .rss-date:before,
.wp-block-rss .wp-block-latest-posts__post-date:before,
.wp-block-rss .wp-block-rss__item-publish-date:before,
.wp-block-rss .rss-date:before,
.widget_rss .wp-block-latest-posts__post-date:before,
.widget_rss .wp-block-rss__item-publish-date:before,
.widget_rss .rss-date:before {
  content: "\f274";
  font-family: "Font Awesome 6 Pro";
  padding-right: 8px;
}

.wp-block-latest-posts .wp-block-latest-posts__post-author:before,
.wp-block-latest-posts .wp-block-rss__item-author:before,
.wp-block-rss .wp-block-latest-posts__post-author:before,
.wp-block-rss .wp-block-rss__item-author:before,
.widget_rss .wp-block-latest-posts__post-author:before,
.widget_rss .wp-block-rss__item-author:before {
  content: "\f007";
  font-family: "Font Awesome 6 Pro";
  padding-right: 8px;
}

.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-rss__item-excerpt,
.wp-block-latest-posts .rssSummary,
.wp-block-rss .wp-block-latest-posts__post-excerpt,
.wp-block-rss .wp-block-rss__item-excerpt,
.wp-block-rss .rssSummary,
.widget_rss .wp-block-latest-posts__post-excerpt,
.widget_rss .wp-block-rss__item-excerpt,
.widget_rss .rssSummary {
  margin-top: 10px;
  margin-bottom: 0;
}

.widget_latest_post ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.widget_latest_post ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget_latest_post ul li a {
  padding-left: 0;
}

.widget_latest_post ul li a:before {
  display: none;
}

.widget_latest_post ul li .latest-post-thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.widget_latest_post ul li .latest-post-thumb img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.widget_latest_post ul li .latest-post-thumb:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.widget_latest_post ul li .latest-post-desc .latest-post-type,
.widget_latest_post ul li .latest-post-desc .news-tag,
.widget_latest_post ul li .latest-post-desc .post-type a {
  padding: 4px 16px;
  font-size: 16px;
  font-family: var(--font-ttl);
  line-height: 170%;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  margin-bottom: 16px;
  display: inline-block;
}

.widget_latest_post ul li .latest-post-desc .latest-post-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: var(--font-txt);
  font-weight: 500;
  line-height: 140%;
}

.widget_latest_post ul li .latest-post-desc .latest-post-title a {
  color: var(--dark);
  font-size: 16px;
  font-family: var(--font-txt);
  font-weight: 500;
  line-height: 140%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.widget_latest_post ul li .latest-post-desc .latest-post-title a:hover {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.widget_latest_post ul li .latest-post-desc .latest-post-meta {
  font-size: 14px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--dark);
}

.widget-instagram-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.widget-instagram-feed .single-instagram-feed {
  border-radius: 5px;
  width: 72px;
  height: 72px;
  overflow: hidden;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.widget-instagram-feed .single-instagram-feed img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.widget_promotion {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  background-color: #020a27;
}

.widget_promotion .wp-block-heading {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 10px;
}

.widget_promotion .secondary-btn {
  display: inline-block;
  background: #ff6731;
  color: var(--dark);
  padding: 12px 104px;
  font-weight: 600;
  font-family: var(--font-ttl);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

.widget_promotion .secondary-btn i {
  color: #fff;
  font-size: 16px;
}

.widget_promotion .secondary-btn:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}

.widget_promotion p {
  color: rgba(255, 255, 255, 0.53);
  margin-bottom: 32px;
}

.mobile-menu-bar a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile-menu-bar a i {
  color: var(--dark);
  font-size: 22px;
}

.menu-sidebar-area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 465px;
  height: 100%;
  background-color: #ffffff;
  overflow-y: scroll;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
}

@media (max-width: 560px) {
  .menu-sidebar-area {
    width: 320px;
  }
}

.menu-sidebar-area .menu-sidebar-logo {
  display: inline-block;
  width: 180px;
}

.menu-sidebar-area .menu-sidebar-wrapper {
  position: relative;
  padding: 20px;
}

.menu-sidebar-area.active {
  right: 0;
}

.menu-sidebar-area .menu-sidebar-close {
  position: absolute;
  top: 30px;
  right: 25px;
}

.menu-sidebar-area .menu-sidebar-close .menu-sidebar-close-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  height: 40px;
  width: 40px;
  background-color: var(--dark);
  color: #ffffff;
  border-radius: 50%;
}

.menu-sidebar-area .menu-sidebar-close .menu-sidebar-close-btn:hover {
  background-color: var(--primary);
}

.menu-sidebar-area .menu-sidebar-close .menu-sidebar-close-btn:hover i {
  color: var(--dark);
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget {
  display: inline-block;
  margin-top: 20px;
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .menu-sidebar-title {
  margin-bottom: 5px;
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .header-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 24px;
  padding: 6px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .header-contact-info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ttl);
  width: 100%;
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .header-contact-info span.contact-info-item {
  gap: 0 10px !important;
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .header-contact-info span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ttl);
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .header-contact-info span a:hover {
  color: var(--dark);
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .social-profile a {
  color: var(--dark);
  font-size: 22px;
}

.menu-sidebar-area .menu-sidebar-content .menu-sidebar-single-widget .social-profile a:hover {
  color: var(--dark);
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.body-overlay:hover {
  cursor: pointer;
}

.mean-container .mean-nav {
  margin-top: 30px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul:first-child {
  display: block !important;
}

.package-detail {
  margin-bottom: 2rem;
}
.package-block {
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.package-block:nth-child(odd) {
  background: var(--bs-gray-100);
}
.sightseeing .row ~ .row {
  margin-top: 30px;
}
.readmore-collapse {
  margin-bottom: 20px;
}
.readmore {
  color: var(--primary);
  text-transform: uppercase;
  cursor: pointer;
}

.package-detail .dtl-bx {
  display: flex;
  padding: 10px;
  border-radius: 15px;
  background: var(--primary);
  gap: 15px;
  margin-bottom: 1.3rem;
  align-items: center;
  justify-content: flex-start;
}

.package-detail .dtl-bx .icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--primary);
}
.package-detail .dtl-bx .dtl h4, .package-detail .dtl-bx .dtl span {
  color: #fff;
}
.package-pricing {
  background: var(--bs-gray-100);
  border-radius: 20px;
  padding: 25px;
}
.package-pricing h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: .5rem;
}
.price-option {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.price-box {
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  font-size: 15px;
  width: 120px;
}
.price-box .date {
  text-align: center;
  background: linear-gradient(90deg, var(--color2) 0%, var(--color3) 100%);
  padding: 5px;
  color: #fff;
  font-weight: 800;
}
.price-box .dtl {
  border: 1px solid #ddd;
  padding: 5px;
  text-align: center;
  border-radius: 0 0 15px 15px;
}
.price-box .status {
  text-align: center;
  background: var(--color4);
  padding: 3px;
  color: #fff;
  font-size: 13px;
}
.price-box .dtl:has(~.status)  {
  border-radius: 0 ;
}
.price-box.sold :is(.date, .status)  {
  background: var(--bs-gray-500);
}

.price-box.sold .dtl h5, .price-box.sold .dtl  {
  color:var(--bs-gray-500);
}
.actual-price {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 2px 2px 5px #eee;
}
.actual-price .price {
  color: var(--primary);
  font-size: 26px;
  font-weight: 600;
}
.actual-price .price span {
  color: var(--text);
  font-size: 14px;
  font-weight: 300;
}

.about-us-area.style-1 {
  padding: 40px 0;
  position: relative;
}

@media (max-width: 767px) {
  .about-us-area.style-1 {
    padding-top: 30px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-area.style-1 {
    padding-top: 30px !important;
  }
}

.about-us-area.style-1 .scrolldown-btn-wrapper {
  position: absolute;
  top: -26px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100px;
  display: block;
}

@media (max-width: 991px) {
  .about-us-area.style-1 .scrolldown-btn-wrapper {
    display: none;
  }
}

.about-us-area.style-1 .scrolldown-btn-wrapper .scrolldown-btn {
  margin: 70px 72px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary);
  width: 90px;
  height: 90px;
  border-radius: 100px;
  position: relative;
}

.about-us-area.style-1 .scrolldown-btn-wrapper .scrolldown-btn i {
  color: var(--dark);
  font-size: 25px;
  position: absolute;
}

.about-us-area.style-1 .scrolldown-btn-wrapper .rounded-text {
  width: 80px;
  height: 80px;
  text-transform: uppercase;
  -webkit-transform: rotate(-103deg);
  transform: rotate(-103deg);
  color: #fff;
  font-weight: bold;
  font-family: var(--font-ttl);
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.about-us-area.style-1 .scrolldown-btn-wrapper .rotating {
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}

.about-us-area.style-1 .about-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .about-us-area.style-1 .about-info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.about-us-area.style-1 .about-info-wrapper .about-info-card-image,
.about-us-area.style-1 .about-info-wrapper .about-info-card {
  width: 50%;
}

@media (max-width: 991px) {

  .about-us-area.style-1 .about-info-wrapper .about-info-card-image,
  .about-us-area.style-1 .about-info-wrapper .about-info-card {
    width: 100%;
  }
}

.about-us-area.style-1 .about-info-wrapper .about-info-card {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .about-us-area.style-1 .about-info-wrapper .about-info-card {
    padding-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-us-area.style-1 .about-info-wrapper .about-info-card {
    padding-left: 30px;
    gap: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-us-area.style-1 .about-info-wrapper .about-info-card {
    padding-left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-us-area.style-1 .about-info-wrapper .about-info-card .about-counter-card {
    margin-top: 0;
  }
}

.about-us-area.style-1 .about-info-wrapper .about-info-card-image {
  padding-right: 24px;
}

@media (max-width: 991px) {
  .about-us-area.style-1 .about-info-wrapper .about-info-card-image {
    padding-right: 0;
  }
}

.about-us-area.style-1 .about-info-card-image {
  position: relative;
}

.about-us-area.style-1 .about-info-card-image .image-wrapper {
  overflow: hidden;
}

.about-us-area.style-1 .about-info-card-image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.about-us-area.style-1 .about-info-card-image:hover .image-wrapper img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.about-us-area.style-1 .about-info-card-image .sketch-one {
  width: 109px;
  height: 109px;
  position: absolute;
  top: -30px;
  left: -45px;
  z-index: 3;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media (max-width: 576px) {
  .about-us-area.style-1 .about-info-card-image .sketch-one {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-us-area.style-1 .sketch-two {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 65px;
    right: 160px;
    z-index: 3;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.why-choose-us-area.style-1 {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .why-choose-us-area.style-1 {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-us-area.style-1 {
    padding-bottom: 100px;
  }
}

.why-choose-us-area.style-1 .image-card {
  gap: 0;
}

.why-choose-us-area.style-1 .image-card .image {
  overflow: visible;
}

.why-choose-us-area.style-1 .image-card .content {
  padding-right: 110px;
}

@media (max-width: 991px) {
  .why-choose-us-area.style-1 .image-card .content {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-us-area.style-1 .image-card .content {
    padding-right: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .why-choose-us-area.style-1 .image-card .content {
    padding-right: 40px;
  }
}

.why-choose-us-area.style-1 .image-card .image-inner {
  padding-left: 24px;
}

@media (max-width: 991px) {
  .why-choose-us-area.style-1 .image-card .image-inner {
    padding-left: 0;
    margin-bottom: 40px;
  }
}

.service-slider-area.style-1 {
  padding: 40px 0;
  position: relative;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

@media (max-width: 767px) {
  .service-slider-area.style-1 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-slider-area.style-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.service-slider-area.style-1 .sketch {
  width: 79px;
  height: 91px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 64px;
  bottom: 128px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

.service-slider-area.style-1 .service-slider .slick-slide, .service-slider .slick-slide {
  margin: 0 12px;
}

.work-process-area.style-1 {
  padding: 104px 0 211px 0;
  background-color: #f8f8f1;
  position: relative;
}

@media (max-width: 767px) {
  .work-process-area.style-1 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-process-area.style-1 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .work-process-area.style-1 .sketch {
    width: 169px;
    height: 169px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 10;
    -webkit-animation: CustomMoveUpDown 2s linear infinite alternate;
    animation: CustomMoveUpDown 2s linear infinite alternate;
  }
}

@media (min-width: 1440px) {
  .work-process-area.style-1 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 270px;
    right: 55px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating 9s linear infinite;
    animation: Rotating 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1440px) {
  .work-process-area.style-1 .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 271px;
    left: 42px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating 5s linear infinite;
    animation: Rotating 5s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

.work-process-area.style-1 .image-wrapper {
  position: relative;
}

.work-process-area.style-1 .image-wrapper .image-inner {
  overflow: hidden;
}

.work-process-area.style-1 .image-wrapper:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.work-process-area.style-1 .image-wrapper img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-process-area.style-1 .image-wrapper img {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .work-process-area.style-1 .image-wrapper .sketch {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -20px;
    left: -43px;
    z-index: 3;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 991px) {
  .work-process-area.style-1 .mb-80 {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .work-process-area.style-1 .image-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .work-process-area.style-1 .image-wrapper .image-inner img {
    width: 100%;
  }
}

.about-us-image-gallery .image-wrapper img {
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.about-us-image-gallery .image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.image-wrapper {
  margin-bottom: 10px;
}

.about-us-image-gallery .image-wrapper::before {
  content: "";
  position: absolute;
  transform: scale(0);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: var(--bs-body-color);
  opacity: .6;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.about-us-image-gallery .image-wrapper a {
  position: relative;
}

.about-us-image-gallery .image-wrapper a::before {
  content: "\f002";
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  line-height: 0;
  font-size: .1rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.about-us-image-gallery .image-wrapper:hover::before {
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.about-us-image-gallery .image-wrapper:hover a::before {
  opacity: 1;
  visibility: visible;
  font-size: 1.3rem;
  transition: all .3s ease-in-out;
}

.video_box {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 20px;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.image-wrapper img {
  border-radius: 20px;
}

.cta-area.style-1 {
  padding-bottom: 120px;
  margin-top: -116px;
}

@media (max-width: 767px) {
  .cta-area.style-1 {
    padding: 80px 0;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area.style-1 {
    padding: 100px 0;
    margin-top: 0;
  }
}

.home-one-testimonial-area {
  padding: 145px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .home-one-testimonial-area {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-one-testimonial-area {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .home-one-testimonial-area {
    padding: 100px 0;
  }
}

.section-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 63, 71, 0.95)), to(rgba(3, 63, 71, 0.95)));
  background: linear-gradient(0deg, rgba(67, 66, 66, 0.95), rgba(0, 148, 65, 0.95));
  left: 0;
  top: 0;
}

.icon-card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .icon-card-wrapper {
    gap: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .icon-card-wrapper {
    gap: 0;
    margin-top: 0;
  }
}

.portfolio-slider-area.style-1 {
  background: var(--dark);
  padding: 104px 0 244px 0;
  position: relative;
}

@media (max-width: 767px) {
  .portfolio-slider-area.style-1 {
    padding: 67px 0 160px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-slider-area.style-1 {
    padding: 90px 0 175px 0;
  }
}

@media (min-width: 1440px) {
  .portfolio-slider-area.style-1 .sketch {
    width: 188px;
    height: 188px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 20px;
    right: 82px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 991px) {
  .portfolio-slider-area.style-1 .section-title.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-slider-wrapper {
    padding: 0 48px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-slider-wrapper {
    padding: 0 48px;
  }
}

.portfolio-slider-wrapper .portfolio-card {
  margin: 0 24px;
  width: 636px;
}

.portfolio-slider-wrapper button.case-arrow-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #ffffff;
  cursor: pointer;
  bottom: -124px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .portfolio-slider-wrapper button.case-arrow-btn {
    top: unset;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-slider-wrapper button.case-arrow-btn {
    bottom: -76px;
    width: 40px;
    height: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-slider-wrapper button.case-arrow-btn {
    bottom: -76px;
    width: 45px;
    height: 45px;
  }
}

.portfolio-slider-wrapper button.case-arrow-btn.prev-btn {
  right: 50%;
  margin-right: 8px;
}

.portfolio-slider-wrapper button.case-arrow-btn.next-btn {
  left: 50%;
  margin-left: 8px;
}

.portfolio-slider-wrapper button.case-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-slider-wrapper button.case-arrow-btn:hover {
  background: var(--primary);
  border-color: transparent;
}

.portfolio-slider-wrapper button.case-arrow-btn:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-area.style-1 {
  padding-top: 104px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .testimonial-slider-area.style-1 {
    padding: 67px 0 145px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-1 {
    padding: 90px 0 180px 0;
  }
}

@media (max-width: 991px) {
  .testimonial-slider-area.style-1 .section-title.style-three {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .testimonial-slider-area.style-1 .section-title.style-three .title {
    text-align: center !important;
  }
}

.testimonial-slider-area.style-1 .review-card {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 73px;
}

@media (max-width: 991px) {
  .testimonial-slider-area.style-1 .review-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-1 .review-card {
    gap: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-1 .review-card {
    gap: 32px;
  }
}

.testimonial-slider-area.style-1 .review-card .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-1 .review-card .image-wrapper {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.testimonial-slider-area.style-1 .review-card .image-wrapper .image {
  position: relative;
  border-radius: 200px;
  overflow: hidden;
  z-index: 10;
  background-color: #f8f8f1;
}

@media (max-width: 470px) {
  .testimonial-slider-area.style-1 .review-card .image-wrapper .image {
    width: 300px;
  }
}

.testimonial-slider-area.style-1 .review-card .review-content {
  width: 50%;
  width: 100%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-1 .review-card .review-content {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .testimonial-slider-area.style-1 .review-card .review-content .content-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.testimonial-slider-area.style-1 .review-card .review-content .testimonial-card {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #828282;
  cursor: pointer;
  top: -174px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn {
    top: unset;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn {
    width: 40px;
    height: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn {
    width: 50px;
    height: 50px;
  }
}

.testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn.prev-btn {
  right: 74px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn.prev-btn {
    bottom: -50px;
    right: 50%;
    margin-right: 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn.prev-btn {
    bottom: -64px;
    right: 50%;
    margin-right: 8px;
  }
}

.testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn.next-btn {
  right: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn.next-btn {
    bottom: -50px;
    left: 50%;
    margin-left: 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn.next-btn {
    bottom: -64px;
    left: 50%;
    margin-left: 8px;
  }
}

.testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--dark);
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn:hover {
  background: var(--primary);
  border-color: transparent;
}

.testimonial-slider-area.style-1 .testimonial-slider button.review-arrow-btn:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.latest-posts-area.style-1 {
  padding-top: 104px;
  padding-bottom: 120px;
  background-color: var(--dark);
  position: relative;
}

@media (max-width: 767px) {
  .latest-posts-area.style-1 {
    padding-top: 67px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-posts-area.style-1 {
    padding-top: 90px;
    padding-bottom: 76px;
  }
}

@media (min-width: 1440px) {
  .latest-posts-area.style-1 .sketch {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 72px;
    right: 176px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.team-slider-area.style-1 {
  padding-top: 104px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-slider-area.style-1 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-slider-area.style-1 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.team-slider-area.style-1 .sketch {
  width: 188px;
  height: 188px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 240px;
  right: 300px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media (max-width: 767px) {
  .team-slider-area.style-1 .sketch {
    display: none;
  }
}

.team-slider-area.style-1 .team-slider {
  position: relative;
}

.team-slider-area.style-1 .team-slider .slick-arrow {
  display: none !important;
}

.team-slider-area.style-1 .team-slider .slick-list {
  overflow: visible !important;
  margin: 0 -12px;
  padding: 0 100px;
}

@media (max-width: 1399px) {
  .team-slider-area.style-1 .team-slider .slick-list {
    padding: 0;
    overflow: hidden !important;
  }
}

.team-slider-area.style-1 .team-slider .slick-list .slick-slide {
  margin: 0 12px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-slider-area.style-1 .team-slider .slick-list .slick-slide.slick-active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-slider-area.style-1 .team-slider button.team-arrow-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #828282;
  cursor: pointer;
  top: -164px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .team-slider-area.style-1 .team-slider button.team-arrow-btn {
    top: unset;
    bottom: -80px;
  }
}

.team-slider-area.style-1 .team-slider button.team-arrow-btn.prev-btn {
  right: 72px;
}

@media (max-width: 767px) {
  .team-slider-area.style-1 .team-slider button.team-arrow-btn.prev-btn {
    right: unset;
    left: 30px;
  }
}

.team-slider-area.style-1 .team-slider button.team-arrow-btn.next-btn {
  right: 0;
}

@media (max-width: 767px) {
  .team-slider-area.style-1 .team-slider button.team-arrow-btn.next-btn {
    right: 30px;
    left: unset;
  }
}

.team-slider-area.style-1 .team-slider button.team-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--dark);
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-slider-area.style-1 .team-slider button.team-arrow-btn:hover {
  background: var(--primary);
}

.team-slider-area.style-1 .team-slider button.team-arrow-btn:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-slider-area.style-1 .team-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  list-style: none;
}

.team-slider-area.style-1 .team-slider .slick-dots li {
  line-height: 0;
}

.team-slider-area.style-1 .team-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
}

.team-slider-area.style-1 .team-slider .slick-dots li.slick-active button {
  background: var(--dark);
}

.brand-slider-area.style-1 {
  position: relative;
  padding: 0;
  background-color: var(--dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.brand-slider-area.style-1 .brand-slider {
  position: relative;
  z-index: 5;
}

.brand-slider-area.style-1 .brand-slider .slick-dots {
  display: none !important;
}

.about-us-area.style-2 {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

@media (max-width: 767px) {
  .about-us-area.style-2 {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-area.style-2 {
    padding: 100px 0;
  }
}

@media (min-width: 1440px) {
  .about-us-area.style-2 .sketch-one {
    width: 230px;
    height: 230px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 114px;
    right: 0;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (min-width: 991px) {
  .about-us-area.style-2 .about-us-image-gallery .about-image-three {
    margin-top: 70px;
  }
}

.about-us-area.style-2 .about-us-image-gallery .image-wrapper {
  overflow: hidden;
}

.about-us-area.style-2 .about-us-image-gallery .image-wrapper img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.about-us-area.style-2 .about-us-image-gallery .image-wrapper:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.service-area.style-1 {
  background: #f8f8f1;
  padding-top: 96px;
  padding-bottom: 120px;
  position: relative;
}

@media (max-width: 767px) {
  .service-area.style-1 {
    padding-top: 44px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-area.style-1 {
    padding-top: 76px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .service-area.style-1 .sketch-one {
    width: 140px;
    height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 65px;
    left: 44px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.service-area.style-1 .section-title {
  margin-top: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-area.style-1 .icon-card {
    padding: 30px 20px;
  }

  .service-area.style-1 .icon-card .content .title {
    font-size: 22px;
  }
}

.counter-up-area.style-1 {
  padding: 40px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 767px) {
  .counter-up-area.style-1 {
    padding: 20px 0 20px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-up-area.style-1 {
    padding: 20px 0 25px 0;
  }
}

.counter-up-area.style-1 .section-title .title .under-line img {
  right: 40px;
}

@media (min-width: 1440px) {
  .counter-up-area.style-1 .counter-sketch {
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 246px;
    right: 104px;
    z-index: 2;
  }
}

.counter-up-area.style-1 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary);
  background: linear-gradient(53deg, var(--color1) 0%, var(--color2) 33%, var(--color3) 66%, var(--color4) 100%);
}

.why-choose-us-area.style-2 {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .why-choose-us-area.style-2 {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-us-area.style-2 {
    padding: 100px 0;
  }
}

.brand-slider-area.style-2 {
  background: #f8f8f1;
  padding: 120px 0;
  position: relative;
}

@media (max-width: 767px) {
  .brand-slider-area.style-2 {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-slider-area.style-2 {
    padding: 100px 0;
  }
}

@media (min-width: 1440px) {
  .brand-slider-area.style-2 .sketch {
    position: absolute;
    width: 188px;
    height: 188px;
    bottom: 18px;
    right: 46px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.brand-slider-area.style-2 .brand-slider-wrapper {
  margin-top: 64px;
}

.brand-slider-area.style-2 .brand-slider-wrapper .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  margin-bottom: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .brand-slider-area.style-2 .brand-slider-wrapper .slick-dots {
    margin-top: 40px;
  }
}

.brand-slider-area.style-2 .brand-slider-wrapper .slick-dots li {
  line-height: 0;
}

.brand-slider-area.style-2 .brand-slider-wrapper .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
}

.brand-slider-area.style-2 .brand-slider-wrapper .slick-dots li.slick-active button {
  background: var(--dark);
}

.process-step-slider-area.style-1 {
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
}

@media (max-width: 767px) {
  .process-step-slider-area.style-1 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-step-slider-area.style-1 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.process-step-slider-area.style-1 .section-title {
  margin-bottom: 55px;
}

.process-step-slider-area.style-1 .icon-card .icon i {
  font-size: 48px;
}

.home-two-process-slider .slick-slide {
  margin: 24px 50px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .home-two-process-slider .slick-slide {
    margin: 10px 0px;
  }
}

.home-two-process-slider .process-arrow-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: #ffffff;
  border: 1px solid transparent;
  cursor: pointer;
  top: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.03);
}

.home-two-process-slider .process-arrow-btn.active {
  background: var(--primary);
  border-color: transparent;
}

.home-two-process-slider .process-arrow-btn.prev-btn {
  left: 20px;
}

@media (max-width: 767px) {
  .home-two-process-slider .process-arrow-btn.prev-btn {
    right: unset;
    left: 30px;
  }
}

.home-two-process-slider .process-arrow-btn.next-btn {
  right: 20px;
}

@media (max-width: 767px) {
  .home-two-process-slider .process-arrow-btn.next-btn {
    right: 30px;
    left: unset;
  }
}

.home-two-process-slider .process-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--dark);
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.home-two-process-slider .process-arrow-btn:hover {
  background: var(--primary);
}

.home-two-process-slider .process-arrow-btn:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.home-two-process-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  list-style: none;
}

.home-two-process-slider .slick-dots li {
  line-height: 0;
}

.home-two-process-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
  border: 1px solid #ffffff;
}

.home-two-process-slider .slick-dots li.slick-active button {
  background: var(--dark);
}

.portfolio-area.style-1 {
  padding-top: 104px;
  padding-bottom: 120px;
  background-color: var(--dark);
  position: relative;
}

@media (max-width: 767px) {
  .portfolio-area.style-1 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area.style-1 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.portfolio-area.style-1 .sketch {
  position: absolute;
  width: 188px;
  height: 188px;
  bottom: 192px;
  right: 68px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

.team-slider-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
}

@media (max-width: 767px) {
  .team-slider-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-slider-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .team-slider-area.style-2 .sketch {
    position: absolute;
    width: 188px;
    height: 188px;
    bottom: 192px;
    right: 68px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 767px) {
  .team-slider-area.style-2 .section-title .title {
    text-align: center !important;
  }
}

.testimonial-slider-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  background-color: var(--dark);
  position: relative;
}

@media (max-width: 767px) {
  .testimonial-slider-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .testimonial-slider-area.style-2 .sketch {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 138px;
    left: 254px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (min-width: 1440px) {
  .testimonial-slider-area.style-2 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 210px;
    left: 42px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating 5s linear infinite;
    animation: Rotating 5s linear infinite;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@media (min-width: 1440px) {
  .testimonial-slider-area.style-2 .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 266px;
    right: 55px;
    rotate: 90deg;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating 5s linear infinite;
    animation: Rotating 5s linear infinite;
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

.testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 64px 50px 0 50px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-slide {
    margin: 50px 60px 0 60px;
  }
}

.testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  list-style: none;
  margin-left: 36px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-dots {
    margin-left: 0;
    padding-left: 0;
  }
}

.testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-dots li {
  line-height: 0;
}

.testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: transparent;
  border: 1px solid #ffffff;
}

.testimonial-slider-area.style-2 .home-two-testimonial-card-slider .slick-dots li.slick-active button {
  background: var(--primary);
}

.testimonial-slider-area.style-2 .home-two-testimonial-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-area.style-2 .home-two-testimonial-container {
    max-width: calc(1320px + 100px);
    width: 100%;
  }
}

.latest-posts-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .latest-posts-area.style-2 {
    padding-top: 67px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-posts-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .latest-posts-area.style-2 .sketch {
    position: absolute;
    width: 188px;
    height: 188px;
    bottom: 40px;
    right: 102px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 1199px) {
  .latest-posts-area.style-2 .post-card-one.style-two {
    margin-bottom: 24px;
  }
}

.banner-area.style-1 {
  padding-top: 97px;
  position: relative;
}

.banner-area.style-1 .shape-one {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 49px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: Rotating-reverse 9s linear infinite;
  animation: Rotating-reverse 9s linear infinite;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@media (max-width: 991px) {
  .banner-area.style-1 .shape-one {
    display: none;
  }
}

.banner-area.style-1 .shape-two {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 220px;
  right: 70px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: Rotating-reverse 9s linear infinite;
  animation: Rotating-reverse 9s linear infinite;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

@media (max-width: 1199px) {
  .banner-area.style-1 .shape-two {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .banner-area.style-1 {
    padding-top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.style-1 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area.style-1 {
    padding-top: 148px;
  }
}

.banner-area.style-1 .banner-container {
  padding: 0 12px;
}

@media (min-width: 1200px) {
  .banner-area.style-1 .banner-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 90px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .banner-area.style-1 .banner-container .section-title .slider-title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.style-1 .banner-container .section-title .slider-title {
    font-size: 62px;
    line-height: 68px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area.style-1 .banner-container .section-title .slider-title {
    font-size: 62px;
    line-height: 68px;
  }
}

@media (max-width: 1399px) {
  .banner-area.style-1 .banner-container .section-title .desc br {
    display: none;
  }
}

.home-three-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.hero-image-wrapper {
  display: none;
}

@media (min-width: 1200px) {
  .hero-image-wrapper {
    height: 100%;
    position: relative;
    margin-top: 98px;
    display: block;
  }
}

.hero-image-wrapper .sketch {
  width: 88px;
  height: 88px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -30px;
  left: -40px;
  z-index: 10;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

.hero-image-wrapper .left-hero-image {
  position: absolute;
}

.hero-image-wrapper .left-hero-image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #BDBDBD;
  content: "";
  border-radius: 0 0 125px 125px;
  margin-top: 16px;
}

.hero-image-wrapper .left-hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 125px 125px;
  position: relative;
  z-index: 3;
  margin-left: 16px;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.hero-image-wrapper .left-hero-image:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.hero-image-wrapper .right-hero-image {
  position: absolute;
}

@media (max-width: 1199px) {
  .hero-image-wrapper .right-hero-image {
    display: none;
  }
}

.hero-image-wrapper .right-hero-image .sketch-bottom {
  width: 124px;
  height: 124px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -100px;
  right: -60px;
  z-index: 5;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

.hero-image-wrapper .right-hero-image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #BDBDBD;
  content: "";
  border-radius: 0 0 125px 125px;
  margin-left: 16px;
  left: 0;
}

.hero-image-wrapper .right-hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 125px 125px;
  position: relative;
  z-index: 3;
  margin-top: 16px;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.hero-image-wrapper .right-hero-image:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.home-three-hero-main-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-three-hero-main-img img {
  width: 100%;
  height: 100%;
}

.brand-slider-area.style-3 {
  background-color: var(--dark);
  position: relative;
  padding-top: 104px;
  padding-bottom: 120px;
}

@media (min-width: 1440px) {
  .brand-slider-area.style-3 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 165px;
    left: 49px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

.brand-slider-area.style-3 .brand-slider-three .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  margin-bottom: 0;
  list-style: none;
}

@media (max-width: 991px) {
  .brand-slider-area.style-3 .brand-slider-three .slick-dots {
    margin-top: 30px;
  }
}

.brand-slider-area.style-3 .brand-slider-three .slick-dots li {
  line-height: 0;
}

.brand-slider-area.style-3 .brand-slider-three .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: transparent;
  border: 1px solid #ffffff;
}

.brand-slider-area.style-3 .brand-slider-three .slick-dots li.slick-active button {
  background: var(--primary);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .brand-slider-area.style-3 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-slider-area.style-3 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.why-choose-us-area.style-3 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.why-choose-us-area.style-3 .home-three-about-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.why-choose-us-area.style-3 .home-three-about-image img {
  width: 100%;
}

@media (min-width: 1440px) {
  .why-choose-us-area.style-3 .home-three-about-image .sketch {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 3;
    -webkit-animation: CustomMoveUpDown 2s linear infinite alternate;
    animation: CustomMoveUpDown 2s linear infinite alternate;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .why-choose-us-area.style-3 .home-three-about-image {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-us-area.style-3 .home-three-about-image {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-us-area.style-3 .home-three-about-image {
    padding-right: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .why-choose-us-area.style-3 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-us-area.style-3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.why-choose-us-area.style-3 .section-title.style-two {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 550px) {
  .why-choose-us-area.style-3 .section-title.style-two .title {
    text-align: center;
  }
}

@media (max-width: 550px) {
  .why-choose-us-area.style-3 .section-title.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.why-choose-us-area.style-3 .section-title.style-two .btn-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.why-choose-us-area.style-3 .icon-card-wrapper {
  gap: 20px;
}

@media (max-width: 991px) {
  .why-choose-us-area.style-3 .icon-card-wrapper {
    gap: 20px;
  }
}

.why-choose-us-area.style-3 .icon-card-wrapper .icon-card.style-three {
  margin-top: 0;
}

.service-slider-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1440px) {
  .service-slider-area.style-2 .sketch {
    width: 169px;
    height: 169px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 70px;
    left: 60px;
    -webkit-animation: MoveLeftRight 2s linear infinite alternate;
    animation: MoveLeftRight 2s linear infinite alternate;
  }
}

.service-slider-area.style-2 .overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 63, 71, 0.8)), to(rgba(3, 63, 71, 0.8)));
  background: linear-gradient(0deg, rgba(3, 63, 71, 0.8), rgba(3, 63, 71, 0.8));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.service-slider-area.style-2 .slider-area-wrapper {
  margin-left: calc((100% - 1320px) / 2);
  padding-left: 26px;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-area.style-2 .slider-area-wrapper {
    margin-left: calc((100% - 1140px) / 2);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-slider-area.style-2 .slider-area-wrapper {
    margin-left: calc((100% - 960px) / 2);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-slider-area.style-2 .slider-area-wrapper {
    margin-left: calc((100% - 720px) / 2);
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-slider-area.style-2 .slider-area-wrapper {
    width: 100%;
    margin: 0 auto;
    padding-right: 26px;
  }
}

.service-slider-area.style-2 .service-slider-two .slick-list {
  margin: 0 -12px;
}

.service-slider-area.style-2 .service-slider-two .slick-slide {
  margin: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-slider-area.style-2 .service-slider-two .home-three-service-arrow-btn {
  display: none !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-slider-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-slider-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .service-slider-area.style-2 .btn-wrapper {
    text-align: center;
  }
}

.service-slider-area.style-2 .icon-card {
  width: 389px;
}

.work-process-area.style-2 {
  padding-top: 104px;
  padding-bottom: 402px;
  background-color: #f8f8f1;
  position: relative;
}

@media (min-width: 1440px) {
  .work-process-area.style-2 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 165px;
    left: 49px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1440px) {
  .work-process-area.style-2 .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 347px;
    right: 48px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1440px) {
  .work-process-area.style-2 .sketch {
    width: 109px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 88px;
    bottom: 276px;
    -webkit-animation: CustomMoveUpDown 2s linear infinite alternate;
    animation: CustomMoveUpDown 2s linear infinite alternate;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .work-process-area.style-2 {
    padding-top: 67px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-process-area.style-2 {
    padding-top: 90px;
    padding-bottom: 76px;
  }
}

.portfolio-slider-area.style-2 {
  background-color: var(--dark);
  padding-top: 104px;
  padding-bottom: 115px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .portfolio-slider-area.style-2 .section-title.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 1440px) {
  .portfolio-slider-area.style-2 .sketch {
    width: 169px;
    height: 169px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 75px;
    left: 42px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  border: 1px solid #ffffff;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
}

@media (max-width: 767px) {
  .portfolio-slider-area.style-2 button.portfolio-card-arrow-btn {
    width: 40px;
    height: 40px;
  }
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.prev-btn {
  display: none !important;
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.next-btn {
  left: -45px;
  background-color: var(--primary);
  border-color: transparent;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.next-btn {
    left: -20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.next-btn {
    left: -20px;
  }
}

@media (max-width: 767px) {
  .portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.next-btn {
    display: none !important;
  }
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.next-btn i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 21px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn:hover {
  background-color: var(--primary);
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn:hover i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.active {
  background-color: var(--primary);
  border-color: transparent;
}

.portfolio-slider-area.style-2 button.portfolio-card-arrow-btn.active i {
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.portfolio-slider-area.style-2 .portfolio-slider-area-wrapper {
  margin-left: calc((100% - 1370px) / 2);
  padding-left: 50px;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-slider-area.style-2 .portfolio-slider-area-wrapper {
    margin-left: calc((100% - 1280px) / 2);
    padding: 0 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-slider-area.style-2 .portfolio-slider-area-wrapper {
    margin-left: calc((100% - 1024px) / 2);
    padding: 0 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-slider-area.style-2 .portfolio-slider-area-wrapper {
    margin-left: calc((100% - 768px) / 2);
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-slider-area.style-2 .portfolio-slider-area-wrapper {
    width: 100%;
    margin: 0 auto;
    padding-left: 26px;
    padding-right: 26px;
  }
}

.portfolio-slider-area.style-2 .portfolio-slider-three {
  position: relative;
}

.portfolio-slider-area.style-2 .portfolio-slider-three .portfolio-card {
  width: 644px;
}

.portfolio-slider-area.style-2 .portfolio-slider-three .slick-list {
  margin: 0 -12px;
  position: relative;
}

.portfolio-slider-area.style-2 .portfolio-slider-three .slick-list .slick-slide {
  margin: 0 12px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-slider-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-slider-area.style-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pricing-area.style-1 {
  position: relative;
  padding-top: 104px;
  padding-bottom: 120px;
  background-color: #f8f8f1;
}

.pricing-area.style-1 .sketch {
  position: absolute;
  right: 93px;
  bottom: 93px;
  background-position: center;
  background-repeat: no-repeat;
  width: 169px;
  height: 169px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area.style-1 .sketch {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area.style-1 .sketch {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area.style-1 .sketch {
    display: none;
  }
}

.pricing-area.style-1 .shape-one {
  position: absolute;
  left: 42px;
  bottom: 507px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area.style-1 .shape-one {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area.style-1 .shape-one {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area.style-1 .shape-one {
    display: none;
  }
}

.pricing-area.style-1 .shape-two {
  position: absolute;
  right: 55px;
  top: 201px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area.style-1 .shape-two {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area.style-1 .shape-two {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area.style-1 .shape-two {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area.style-1 {
    padding-top: 67px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area.style-1 {
    padding-top: 90px;
    padding-bottom: 76px;
  }
}

.faq-area.style-1 {
  padding-bottom: 30px;
  position: relative;
}

.d-sticky {
  position: sticky !important;
  top: 100px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .faq-area.style-1 {
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-area.style-1 {
    padding-bottom: 30px;
  }
}

@media (min-width: 1440px) {
  .faq-area.style-1 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 49px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@media (min-width: 1440px) {
  .faq-area.style-1 .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 347px;
    right: 48px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1440px) {
  .faq-area.style-1 .sketch {
    position: absolute;
    left: 30px;
    bottom: 201px;
    background-position: center;
    background-repeat: no-repeat;
    width: 169px;
    height: 169px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.faq-area.style-1 .video-popup-card.style-three {
  margin-left: 160px;
}

@media (max-width: 1199px) {
  .faq-area.style-1 .video-popup-card.style-three {
    margin-left: 0;
    margin-top: 80px;
  }
}

.faq-area .theme-btn-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .faq-area .accordion-wrapper {
    margin-bottom: 16px;
  }
}

.faq-area .comment-respond {
  padding: 20px;
  border-radius: 20px;
  background: var(--bs-gray-100);
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .faq-area .comment-respond {
    padding: 25px 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-area .comment-respond {
    padding: 25px 30px;
  }
}

.faq-area .comment-respond .post-comments-title h5 {
  color: var(--dark);
}

.faq-area .comment-respond input,
.faq-area .comment-respond select {
  color: var(--dark);
  border: 1px solid var(--bs-gray-600);
  border-radius: 3px;
}

.faq-area .comment-respond *::-webkit-input-placeholder {
  color: var(--bs-gray-600);
}

.faq-area .comment-respond *:-ms-input-placeholder {
  color: var(--bs-gray-600);
}

.faq-area .comment-respond *::-ms-input-placeholder {
  color: var(--bs-gray-600);
}

.faq-area .comment-respond *::placeholder {
  color: var(--bs-gray-600);
}

.faq-area .comment-respond textarea {
  color: var(--dark);
  border: 1px solid var(--bs-gray-600);
  height: 110px;
  border-radius: 3px;
}

select:invalid {
  color: #828282;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-area .comment-respond textarea {
    height: 90px;
  }
}

.faq-area .comment-respond input:focus,
.faq-area .comment-respond textarea:focus,
.faq-area .comment-respond .form-select:focus,
.faq-area .comment-respond .nice-select {
  border-color: var(--dark);
  color: var(--dark);
}

.team-slider-area.style-2 {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  /* overflow: hidden; */
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-slider-area.style-2 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-slider-area.style-2 {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1440px) {
  .team-slider-area.style-2 .sketch {
    position: absolute;
    right: 32px;
    bottom: 79px;
    background-position: center;
    background-repeat: no-repeat;
    width: 220px;
    height: 220px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 767px) {
  .team-slider-area.style-2 .slick-dots {
    margin-top: 0;
  }
}

.testimonial-slider-area.style-3 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #e5fff0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1440px) {
  .testimonial-slider-area.style-3 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 232px;
    left: 42px;
    z-index: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1440px) {
  .testimonial-slider-area.style-3 .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 115px;
    right: 58px;
    z-index: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-list {
  overflow: visible;
  position: relative;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-list:before {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  content: "";
  background: #f8f8f1;
  z-index: 10;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-list .slick-slide {
  margin: 0 12px;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn {
  display: none !important;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  list-style: none;
  margin-bottom: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 .home-three-review-slider .slick-dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots li {
  line-height: 0;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots li.slick-active button {
  background: var(--dark);
}

a.insta-btn {
  text-align: center;
  background: radial-gradient(circle farthest-corner at 0% 150%, #ffe17d 0%, #ffcd69 12%, #fa9137 25%, #eb4141 41%, transparent 95%), linear-gradient(-15deg, #234bd7 -10%, #c33cbe 65%);
  display: inline-flex;
  padding: 15px 25px;
  border-radius: 7px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  transition: all .3s ease-in-out;
}

a.insta-btn i {
  font-size: 25px;
  padding-right: 10px;
}

a.insta-btn:hover {
  background: radial-gradient(circle farthest-corner at 0% 150%, #000 0%, #000 12%, #000 25%, #000 41%, transparent 95%), linear-gradient(-15deg, #000 -10%, #000 65%);
  transition: all .3s ease-in-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-area.style-3 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.cta-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  background-color: var(--dark);
  position: relative;
}

@media (min-width: 1440px) {
  .cta-area.style-2 .shape-one {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 323px;
    left: 49px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@media (min-width: 1440px) {
  .cta-area.style-2 .shape-two {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 347px;
    right: 48px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: Rotating-reverse 9s linear infinite;
    animation: Rotating-reverse 9s linear infinite;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1440px) {
  .cta-area.style-2 .sketch {
    position: absolute;
    right: 32px;
    bottom: 79px;
    background-position: center;
    background-repeat: no-repeat;
    width: 169px;
    height: 169px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

@media (max-width: 991px) {
  .cta-area.style-2 .contact-image-wrapper {
    margin-top: 24px;
  }
}

.cta-area.style-2 .contact-image-wrapper:last-child .contact-image img,
.cta-area.style-2 .contact-image-wrapper:first-child .contact-image img {
  padding-top: 40px;
}

@media (max-width: 991px) {

  .cta-area.style-2 .contact-image-wrapper:last-child .contact-image img,
  .cta-area.style-2 .contact-image-wrapper:first-child .contact-image img {
    padding-top: inherit;
  }
}

.cta-area.style-2 .contact-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cta-area.style-2 .contact-image img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  padding-top: 0;
  margin-top: -40px;
}

@media (max-width: 991px) {
  .cta-area.style-2 .contact-image img {
    padding-top: inherit;
    margin-top: inherit;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .cta-area.style-2 .contact-image img {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area.style-2 .contact-image img {
    padding-top: 0;
  }
}

.cta-area.style-2 .contact-image:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .cta-area.style-2 .section-title .title br {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .cta-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

.latest-posts-area.style-2 {
  position: relative;
  padding-top: 104px;
  padding-bottom: 120px;
  background: #ffffff;
}

@media (min-width: 1440px) {
  .latest-posts-area.style-2 .sketch {
    position: absolute;
    right: 32px;
    bottom: 79px;
    background-position: center;
    background-repeat: no-repeat;
    width: 169px;
    height: 169px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .latest-posts-area.style-2 {
    padding-top: 67px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-posts-area.style-2 {
    padding-top: 90px;
    padding-bottom: 76px;
  }
}

.latest-posts-area.style-2 .theme-btn-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-area.style-1 {
    padding: 0px 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-popup-area.style-1 {
    padding: 100px 0;
  }
}

.video-popup-area.style-1 .video-popup-card {
  border-radius: 2rem;
  overflow: hidden;
}

@media (max-width: 991px) {
  .video-popup-area.style-1 .video-popup-card {
    margin-top: 0;
  }
}

.project-filter-area.style-1 {
  padding-top: 120px;
  padding-bottom: 56px;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-filter-area.style-1 {
    padding-top: 80px;
    padding-bottom: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-filter-area.style-1 {
    padding-top: 100px;
    padding-bottom: 76px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-filter-area.style-1 {
    padding-bottom: 96px;
  }
}

.project-filter-area.style-1 .project-view-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 16px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-filter-area.style-1 .project-view-type {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-filter-area.style-1 .project-view-type {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.project-filter-area.style-1 .project-view-type button {
  padding: 16px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-txt);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: var(--dark);
  background-color: #ffffff;
}

.project-filter-area.style-1 .project-view-type button.active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

.project-filter-area.style-1 .project-view-type button:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-filter-area.style-1 .project-view-type button {
    padding: 12px 18px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-filter-area.style-1 .project-view-type button {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.project-filter-area.style-1 .sketch {
  position: absolute;
  left: 83px;
  top: 84px;
  background-position: center;
  background-repeat: no-repeat;
  width: 169px;
  height: 169px;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-filter-area.style-1 .sketch {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-filter-area.style-1 .sketch {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-filter-area.style-1 .sketch {
    display: none;
  }
}

.project-details-area {
  padding: 120px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-details-area {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-area {
    padding: 100px 0;
  }
}

.project-details-info {
  padding-top: 120px;
  padding-bottom: 100px;
  background: #f8f8f1;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-details-info {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-info {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.project-info-widget-wrapper {
  padding-right: 50px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-info-widget-wrapper {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-info-widget-wrapper {
    padding-right: 0;
  }
}

.project-info-widget-wrapper .project-info-widget {
  background: var(--primary);
  padding: 60px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-info-widget-wrapper .project-info-widget {
    padding: 40px 38px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-info-widget-wrapper .project-info-widget {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.project-info-widget-wrapper .project-info-widget .project-info-sketch {
  position: absolute;
  width: 109px;
  height: 109px;
  top: 0;
  left: 0;
  -webkit-transform: translate(-72%, -72%);
  transform: translate(-72%, -72%);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: CustomMoveUpDown2 2s linear infinite alternate;
  animation: CustomMoveUpDown2 2s linear infinite alternate;
}

@-webkit-keyframes CustomMoveUpDown2 {
  0% {
    -webkit-transform: translate(-72%, -72%);
    transform: translate(-72%, -72%);
  }

  100% {
    -webkit-transform: translate(-72%, -82%);
    transform: translate(-72%, -82%);
  }
}

@keyframes CustomMoveUpDown2 {
  0% {
    -webkit-transform: translate(-72%, -72%);
    transform: translate(-72%, -72%);
  }

  100% {
    -webkit-transform: translate(-72%, -82%);
    transform: translate(-72%, -82%);
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-info-widget-wrapper .project-info-widget .project-info-sketch {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-info-widget-wrapper .project-info-widget .project-info-sketch {
    display: none;
  }
}

.project-info-widget-wrapper .project-info-widget .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-info-widget-wrapper .project-info-widget .info-item h5 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-info-widget-wrapper .project-info-widget .info-item h5 {
    font-size: 20px;
  }
}

.project-info-widget-wrapper .project-info-widget .info-item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #575959;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-info-widget-wrapper .project-info-widget .info-item p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-info-widget-wrapper .project-info-widget .info-item p {
    font-size: 16px;
  }
}

.project-banner {
  padding: 29px;
  border-left: 5px solid var(--dark);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-banner {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-banner {
    padding: 20px;
  }
}

.project-banner p {
  font-family: var(--font-txt);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
}

.project-banner.style-two {
  padding-right: 30px;
}

.project-banner.style-two p {
  font-size: 24px;
  line-height: 34px;
}

.project-details-gallery {
  margin-top: 117px;
}

.color-card-section {
  margin-top: 24px;
}

.color-card-section .color-card-one,
.color-card-section .color-card-two,
.color-card-section .color-card-three,
.color-card-section .color-card-four {
  height: 250px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

  .color-card-section .color-card-one,
  .color-card-section .color-card-two,
  .color-card-section .color-card-three,
  .color-card-section .color-card-four {
    height: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .color-card-section .color-card-one,
  .color-card-section .color-card-two,
  .color-card-section .color-card-three,
  .color-card-section .color-card-four {
    height: 100px;
  }
}

.color-card-section .color-card-one {
  background-color: #000;
}

.color-card-section .color-card-two {
  background-color: var(--primary);
}

.color-card-section .color-card-three {
  background-color: var(--dark);
}

.color-card-section .color-card-four {
  background-color: #f8f8f1;
}

.project-text-banner {
  padding: 0 76px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-text-banner {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-text-banner {
    padding: 0;
  }
}

.project-text-banner p {
  font-family: var(--font-txt);
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  color: var(--dark);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-text-banner p {
    font-size: 20px;
    line-height: 34px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-text-banner p {
    font-size: 20px;
    line-height: 34px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-text-banner {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-text-banner {
    padding: 0 20px;
  }
}

.video-banner {
  margin-top: 120px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-banner {
    margin-top: 64px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-banner {
    margin-top: 64px;
  }
}

.project-details-about-us {
  padding-top: 120px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-details-about-us {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-about-us {
    padding-top: 100px;
  }
}

.number-card-wrapper .number-card {
  padding: 76px 0 77px 0;
  background-color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.number-card-wrapper .number-card h4 {
  color: #ffffff;
}

.number-card-wrapper .number-card p {
  font-size: 16px;
  line-height: 31px;
  color: #ffffff;
}

.project-image-gallery {
  margin-bottom: 50px;
}

.project-image-gallery .single-image {
  overflow: hidden;
}

@media (max-width: 991px) {
  .project-image-gallery .single-image {
    margin-bottom: 30px;
  }
}

.project-image-gallery .single-image:last-child {
  margin-bottom: 0;
}

.project-image-gallery img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.project-image-gallery img:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.related-case-studies-area .section-title.style-three .title {
  text-align: left;
}

.related-case-slider .slick-list {
  margin: 0 -12px;
}

.related-case-slider .slick-list .slick-slide {
  margin: 0 24px;
}

.related-case-slider .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 991px) {
  .related-case-slider .slick-dots {
    margin-top: 50px;
  }
}

.related-case-slider .slick-dots li {
  line-height: 0;
}

.related-case-slider .slick-dots li button {
  width: 14px;
  height: 14px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
}

.related-case-slider .slick-dots li.slick-active button {
  background-color: var(--dark);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-offer .title {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-offer .title {
    font-size: 28px;
  }
}

.service-details-offer .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: var(--dark);
  margin-top: 16px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-offer .desc {
    font-size: 16px;
  }
}

.service-details-area {
  padding-top: 104px;
}

.service-details-area .service-details-image {
  overflow: hidden;
}

.service-details-area .service-details-image img {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.service-details-area .service-details-image img:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-area {
    padding-top: 67px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-area {
    padding-top: 90px;
  }
}

.service-details-offer-area {
  padding-bottom: 115px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-offer-area {
    padding-bottom: 75px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-offer-area {
    padding-bottom: 95px;
  }
}

.why-choose-us-area.style-4 {
  padding: 120px 0;
  background-color: var(--dark);
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .why-choose-us-area.style-4 {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-us-area.style-4 {
    padding: 100px 0;
  }
}

.why-choose-us-area.style-4 .service-details-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.why-choose-us-area.style-4 .image-card .image {
  overflow: visible;
}

.why-choose-us-area.style-4 .certified {
  top: -76px;
  width: 155px;
  height: 155px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .why-choose-us-area.style-4 .certified {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-us-area.style-4 .certified {
    top: -48px;
    width: 100px;
    height: 100px;
  }
}

.contact-page-contact-info {
  padding: 40px 0 30px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-info-card-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info-card-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info-card-wrapper {
    gap: 24px;
    margin-left: 28px;
  }
}

.contact-info-card-wrapper .image-wrapper {
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info-card-wrapper .image-wrapper {
    width: 50%;
  }
}

.contact-info-card-wrapper .image-wrapper .project-info-sketch {
  position: absolute;
  width: 109px;
  height: 109px;
  top: -30px;
  left: -46px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-info-card-wrapper .image-wrapper .project-info-sketch {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info-card-wrapper .image-wrapper .project-info-sketch {
    display: none;
  }
}

.contact-info-card-wrapper .contact-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-info-card-wrapper .contact-list-wrapper {
    gap: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info-card-wrapper .contact-list-wrapper {
    gap: 0;
  }
}

.contact-form-area {
  padding-top: 104px;
  padding-bottom: 120px;
  background-color: #f8f8f1;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-form-area {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-area {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .contact-form-area .sketch {
    width: 169px;
    height: 169px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 19px;
    right: 78px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.contact-form-area .section-title {
  padding-right: 100px;
}

.contact-form-area .section-title .title .under-line img {
  right: unset;
  left: 0;
}

@media (max-width: 1399px) {
  .contact-form-area .section-title {
    padding-right: 0;
  }
}

.contact-form-area .section-title .mt-48 {
  margin-top: 16px;
}

.contackt-faq-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contackt-faq-btn-wrapper .contact-faq-btn {
  padding: 16px 24px;
  border-radius: 4px;
  border: 1px solid #575959;
}

.contackt-faq-btn-wrapper .contact-faq-btn span {
  font-family: var(--font-ttl);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--dark);
}

.about-us-area.style-3 {
  padding: 40px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-us-area.style-3 {
    padding: 25px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-area.style-3 {
    padding: 30px 0;
  }
}

.about-us-area.style-3 .image-card {
  gap: 144px;
}

.about-us-area.style-3 .image-card .content .title-wrapper .title .under-line img {
  width: 198px;
}

@media (max-width: 1399px) {
  .about-us-area.style-3 .image-card {
    gap: 40px;
  }
}

.about-us-area.style-3 .image-card .image {
  overflow: visible;
}

.about-us-area.style-3 .image-card-sketch.style-four {
  top: -25px;
  left: unset;
  right: -15px;
  z-index: 3;
}

.service-area.style-2 {
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-area.style-2 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-area.style-2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1400px) {
  .service-area.style-2 .sketch {
    position: absolute;
    left: 40px;
    bottom: 48px;
    background-position: center;
    background-repeat: no-repeat;
    width: 169px;
    height: 169px;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.service-area.style-2 .section-title {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .service-area.style-2 .section-title {
    gap: 24px;
  }
}

.service-area.style-2 .section-title .title .under-line img {
  right: 30px;
  width: 340px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-area.style-2 .section-title .title {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  .service-area.style-2 .section-title .title {
    text-align: center !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-area.style-2 .section-title .desc {
    padding-left: 90px;
  }
}

.location-slider-ara.style-1 {
  background-color: var(--dark);
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .location-slider-ara.style-1 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .location-slider-ara.style-1 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .location-slider-ara.style-1 .sketch {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 9px;
    left: 27px;
    z-index: 2;
    -webkit-animation: MoveUpDown 2s linear infinite alternate;
    animation: MoveUpDown 2s linear infinite alternate;
  }
}

.location-slider-ara.style-1 .section-title .title .under-line img {
  right: unset;
  left: 0;
}

.location-slider-ara.style-1 .portfolio-card-arrow-btn {
  display: none !important;
}

.location-slider-ara.style-1 .slider-area-wrapper {
  margin-left: calc((100% - 1320px) / 2);
  padding-left: 26px;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .location-slider-ara.style-1 .slider-area-wrapper {
    margin-left: calc((100% - 1140px) / 2);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .location-slider-ara.style-1 .slider-area-wrapper {
    margin-left: calc((100% - 960px) / 2);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .location-slider-ara.style-1 .slider-area-wrapper {
    margin-left: calc((100% - 720px) / 2);
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .location-slider-ara.style-1 .slider-area-wrapper {
    width: 100%;
    margin: 0 auto;
    padding-right: 26px;
  }
}

.team-slider {
  position: relative;
}

.team-slider .slick-list .slick-slide {
  margin: 0 12px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.team-slider .slick-list, .service-slider .slick-list {
  margin: 0 -12px;
}
.team-slider .slick-list .slick-slide.slick-active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-slider .slick-list .slick-slide, .tour-slider .slick-list .slick-slide {
    margin: 0 16px;
  }
}

.arrow-btn{
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  background-color: transparent;
  background: rgb(130 130 130 / 80%);
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .arrow-btn {
    bottom: 28px;
    top: unset;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .arrow-btn {
    top: unset;
    bottom: 28px;
  }
}

.arrow-btn.prev-btn{
  left: 10px;
}

@media (max-width: 991px) {
  .arrow-btn.prev-btn, .arrow-btn.prev-btn {
    display: none !important;
  }
}

.arrow-btn.next-btn {
  right: 10px;
}

@media (max-width: 991px) {
  .arrow-btn.next-btn {
    display: none !important;
  }
}

.arrow-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.arrow-btn:hover {
  background: var(--primary);
  border-color: transparent;
}

.arrow-btn:hover i {
  color: var(--light);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.team-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .team-slider .slick-dots {
    margin-top: 20px;
  }
}

.team-slider .slick-dots li {
  line-height: 0;
}

.team-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
}

.team-slider .slick-dots li.slick-active button {
  background: var(--dark);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-slider .slick-dots {
    margin-top: 40px;
  }
}

/* Footer */
.footer.style-1 .footer-sec {
  padding-top: 30px;
  padding-bottom: 25px;
  background:#131313;
}

@media (max-width: 991px) {
  .footer.style-1 .footer-sec {
    padding: 20px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .footer-bottom-menu {
    text-align: start;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-bottom-menu {
    text-align: start;
  }
}

.footer .footer-bottom-menu ul {
  margin-bottom: 0;
  padding-left: 0;
}

.footer .footer-bottom-menu ul li {
  display: inline-block;
  margin-top: 0;
}

.footer .footer-bottom-menu ul li:last-child a {
  margin-right: 0;
}

.footer .footer-bottom-menu ul li a {
  display: block;
  font-size: 14px;
  line-height: 25px;
  color: var(--secondary);
  margin-right: 15px;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .footer-bottom-menu ul li a {
    margin-right: 4px;
  }
}

.footer .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 25px;
}

.footer .copyright-text a {
  color: var(--dark);
}

.footer .copyright-text a:hover {
  text-decoration: underline;
}

.footer .footer-widget-title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: var(--bs-body-bg);
  margin-bottom: 24px;
}

.footer .footer-widget.widget_nav_menu {
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .footer .footer-widget.widget_nav_menu {
    padding-left: 0;
  }
}

.footer .footer-widget .widget-subscribe {
  background: var(--dark);
  padding: 24px;
  margin-top: -20px;
}

@media (max-width: 991px) {
  .footer .footer-widget .widget-subscribe {
    margin: 0;
  }
}

.footer .footer-widget .widget-subscribe h2.footer-widget-title {
  margin-bottom: 24px;
  color: #ffffff;
}

.footer .footer-widget .widget-subscribe p {
  margin-bottom: 16px;
  color: #ffffff;
}

.footer .footer-widget .widget-subscribe .subs form input {
  width: 100%;
  height: 56px;
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
  background: transparent;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .footer .footer-widget .widget-subscribe .subs form input {
    width: 100%;
  }
}

.footer .footer-widget .widget-subscribe .subs form input[type="submit"] {
  background-color: var(--primary);
  border-color: var(--primary);
  height: 64px;
  color: var(--dark);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer .footer-widget .widget-subscribe .subs form input[type="submit"]:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer .footer-widget ul {
  padding-left: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .footer-widget .footer-widget-info {
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-widget .footer-widget-info {
    margin-bottom: 25px;
  }
}

.footer .footer-widget .footer-widget-info .footer-logo {
  margin-bottom: 0;
  display: inline-block;
}

.footer .footer-widget .footer-widget-info .info-form-and-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

.footer .footer-widget .footer-widget-info .info-form-and-social-icon .subscribe-form-widget {
  border-radius: 6px;
}

.footer .footer-widget .footer-widget-info .info-form-and-social-icon .subscribe-form-widget .single-field input {
  height: 60px;
}

.footer .footer-widget .footer-widget-info .info-form-and-social-icon .social-profile {
  margin-top: 0;
}

.footer .social-profile {
  gap: 16px;
  margin-top: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .footer-widget .footer-widget-info .info-form-and-social-icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 30px;
  }
}

.footer .footer-widget.widget_nav_menu.two-menu,
.footer .footer-widget .footer-widget-menu.two-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .footer-widget.widget_nav_menu ul,
.footer .footer-widget .footer-widget-menu ul {
  margin-top: -5px;
  padding-left: 0;
}

.footer .footer-widget.widget_nav_menu li,
.footer .footer-widget .footer-widget-menu li {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 8px;
  line-height: 27px;
}

.footer .footer-widget.widget_nav_menu li:last-child,
.footer .footer-widget .footer-widget-menu li:last-child {
  padding-top: 0px;
}

.footer .footer-widget.widget_nav_menu li a, .footer .footer-widget .footer-widget-menu li a {
  color: #c4c4c4;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 27px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  font-weight: 100;
}

.footer .footer-widget.widget_nav_menu li a:hover,
.footer .footer-widget .footer-widget-menu li a:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin-left: 2px;
  color: var(--bs-white);
}

.footer .footer-widget.widget_nav_menu li a::before,
.footer .footer-widget .footer-widget-menu li a::before {
  content: "\f054";
  font-size: 12px;
  margin-right: 10px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
}

.footer .footer-widget .footer-widget-contact p {
  color: #909090;
  margin: 0 0 5px 0;
}

.footer .footer-widget .footer-widget-contact .footer-contact ul {
  list-style: none;
  margin-bottom: 0;
}

.footer .footer-widget .footer-widget-contact .footer-contact ul li {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.footer .footer-widget .footer-widget-contact .footer-contact ul li .contact-icon {
  border-radius: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--dark);
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 20px;
}

.footer .footer-widget .footer-widget-contact .footer-contact ul li .contact-text a,
.footer .footer-widget .footer-widget-contact .footer-contact ul li .contact-text span {
  color: var(--primary);
  font-weight: 400;
  font-size: 16px;
  word-break: break-word;
}
.footer .footer-widget-contact li.address a, .footer .footer-widget-contact .policies a {
  color: #c4c4c4!important;
}
.footer .footer-widget .footer-widget-contact .footer-contact ul li:hover .contact-icon {
  background-color: var(--primary);
  border-color: transparent;
}

.footer .footer-widget .footer-widget-contact .footer-contact ul li:hover .contact-icon i {
  color: var(--bs-white);
}

.footer .social-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer .social-profile a {
  color: var(--dark);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: #fff;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer .social-profile a:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--secondary);
  color: var(--bs-white);
}

.footer .footer-widget.widget_nav_menu ul {
  list-style: none;
}

.footer .footer-widget.widget_nav_menu ul li a {
  color: #575959;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 27px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
}

.footer .footer-widget.widget_nav_menu ul li a:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin-left: 2px;
  color: var(--dark);
}

.footer .footer-widget.widget_nav_menu ul li a::before {
  content: "\f054";
  font-size: 12px;
  margin-right: 10px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
}

.footer .subscribe-area {
  padding-bottom: 65px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #085a65;
  margin-bottom: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}

.footer .subscribe-area .subscribe-inner-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.footer .subscribe-area .subscribe-inner-area .content-wrapper {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

.footer .subscribe-area .subscribe-inner-area .content-wrapper .subscribe-title {
  color: #ffffff;
  margin-bottom: 16px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area .subscribe-inner-area .content-wrapper .subscribe-title {
    font-size: 46px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .subscribe-area .subscribe-inner-area .content-wrapper .subscribe-title {
    font-size: 48px;
  }
}

.footer .subscribe-area .subscribe-inner-area .content-wrapper .text {
  font-size: 20px;
  line-height: 34px;
  color: #ffffff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area .subscribe-inner-area .content-wrapper .text {
    font-size: 16px;
  }
}

.footer .subscribe-area .subscribe-inner-area .subscribe-form-wrapper {
  width: 100%;
}

.footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  overflow: hidden;
  gap: 16px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

@media (max-width: 450px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .mc4wp-form-fields {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .mc4wp-form-fields {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .mc4wp-form-fields {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .mc4wp-form-fields .submit-btn {
  padding: 12px 16px;
  font-size: 16px;
  font-family: Inter;
  line-height: 150%;
  background: var(--primary);
  border-radius: 4px;
}

@media (max-width: 450px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .mc4wp-form-fields .submit-btn {
    width: 100%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .single-field {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .single-field {
    width: 100%;
  }
}

.footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .single-field input {
  color: #778196;
  height: 48px;
  padding: 0 30px;
  font-size: 16px;
  width: 100%;
  border-radius: 4px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .single-field input {
    height: 56px;
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .subscribe-area .subscribe-inner-area .subscribe-form-widget .single-field input {
    height: 56px;
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer .subscribe-area .subscribe-inner-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .subscribe-area .subscribe-inner-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.footer .footer-bottom-area {
  padding: 12px 0;
  background: var(--primary);
}

.footer.style-two .footer-sec {
  padding-top: 80px;
}

.footer.style-two .footer-sec .footer-bottom-border {
  border-bottom: 1px solid #085a65;
  padding-bottom: 40px;
}

.footer.style-two .footer-bottom-area {
  padding: 28px 0;
}

.footer.style-two .subscribe-area .content-wrapper h3 {
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer.style-two .subscribe-form-wrapper {
    width: 100%;
  }
}

.footer.style-two .subscribe-form-wrapper .single-field p {
  color: #c7cdda;
  margin-bottom: 35px;
}

.footer.style-two .subscribe-form-wrapper .subscribe-form-widget {
  border-radius: 4px;
}

.footer.style-two .subscribe-form-wrapper .subscribe-form-widget input[type='email'] {
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 4px;
  height: 56px;
  width: 357px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer.style-two .subscribe-form-wrapper .subscribe-form-widget input[type='email'] {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer.style-two .subscribe-form-wrapper .subscribe-form-widget input[type='email'] {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer.style-two .subscribe-form-wrapper .subscribe-form-widget input[type='email'] {
    width: unset;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer.style-two .subscribe-form-wrapper .subscribe-form-widget input[type='email'] {
    width: unset;
  }
}

@media (max-width: 450px) {
  .footer.style-two .subscribe-form-wrapper .subscribe-form-widget input[type='email'] {
    width: 100%;
  }
}

.footer.style-two .subscribe-form-wrapper .subscribe-form-widget input.theme-btn {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding: 11px 20px;
  width: unset !important;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media (max-width: 450px) {
  .footer.style-two .subscribe-form-wrapper .subscribe-form-widget input.theme-btn {
    width: 100% !important;
  }
}

.footer.style-two .subscribe-form-wrapper .subscribe-form-widget input.theme-btn:hover {
  background-color: transparent;
  border-color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #f8f8f1;
}

.footer.style-two .footer-widget .footer-widget-menu li {
  line-height: 34px;
}

.footer.style-two .footer-widget .footer-widget-menu li a {
  color: #ffffff;
}

.footer.style-two .footer-widget .footer-widget-menu li a:hover {
  color: var(--primary) !important;
}

.footer.style-two .footer-widget .footer-widget-contact .footer-contact ul li .contact-text a {
  color: #ffffff;
}

.footer.style-two .footer-widget .footer-widget-contact .footer-contact ul li .contact-icon {
  border-color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget .footer-widget-contact .footer-contact ul li .contact-icon i {
  color: var(--primary);
}

.footer.style-two .footer-widget .footer-widget-contact .footer-contact ul li:hover .contact-icon {
  border-color: transparent;
}

.footer.style-two .footer-widget .footer-widget-contact .footer-contact ul li:hover .contact-icon i {
  color: var(--dark);
}

.footer.style-two .footer-widget.widget_boomdevs_about_info_widget .footer-widget-info p {
  color: #ffffff;
}

.footer.style-two .footer-widget.widget_nav_menu ul li a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget.widget_nav_menu ul li a:hover {
  color: var(--primary);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 10px;
  border: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li:hover .latest-post-thumb img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li:last-child {
  margin-bottom: 0;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li a {
  padding-left: 0;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li a:before {
  display: none;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li .latest-post-thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  width: 84px;
  height: 84px;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li .latest-post-thumb img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li .latest-post-desc .latest-post-title {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-family: var(--font-txt);
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li .latest-post-desc .latest-post-title a {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-family: var(--font-txt);
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li .latest-post-desc .latest-post-title a:hover {
  color: var(--primary);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer.style-two .footer-widget.widget_boomdevs-latest-posts-footer .widget_latest_post ul li .latest-post-desc .latest-post-meta {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  gap: 8px;
  color: #e7e7e7;
  margin-bottom: 10px;
}

.footer.style-two .copyright-text p {
  color: #ffffff;
  font-size: 14px;
}

.footer.style-two .copyright-text p a {
  color: var(--primary);
}

.footer.style-two .footer-bottom-menu ul li a {
  color: #ffffff;
  font-size: 14px;
}

.footer.style-two .footer-bottom-menu ul li a:hover {
  color: var(--primary);
  -webkit-text-decoration-color: var(--primary);
  text-decoration-color: var(--primary);
}

/*# sourceMappingURL=style.css.map */

.descBottomMargin {
  margin-bottom: 10px !important
}