@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --prim-clr: #f65353;
  --sec-clr: #253974;
  --white-clr: #fff;
  --black-clr: #162127;
  --black-bg: #162127;
  --prim-bg: #f65353;
  --sec-bg: #253974;
  --grey-clr: #B2B2B2;
  --grey-clr-2: #E8E8E8;
  --grey-clr-3: #FAFBFD;
  --grey-clr-4: #888888;
  --grey-clr-5: #707070;
  --grey-clr-6: #515151;
  --grey-clr-7: #787878;
  --grey-clr-8: #D8D8D8;
  --grey-bg-1: #F3F3F3;
  --grey-bg-2: #F1F1F1;
  --grey-bg-3: #F2F1ED;
  --grey-bg-4: #FBFBFB;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

textarea:focus,
input:focus {
  outline: none !important;
  box-shadow: none !important;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

section {
  overflow: hidden;
  position: relative;
}

/* Bounce To Right */
.hvr-bounce-to-right {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 10px;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: var(--prim-clr) !important;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--black-bg);
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}


/************************************* header *************************************/
.navbar-toggler {
  background-color: var(--prim-clr);
  color: var(--white-clr);
  border: none;
}

/* header-btm */

header .header-btm .navbar>.container {
  align-items: center;
}

header .header-btm .navbar {
  padding: 0;
  transition: all 0.3s ease-in-out;
  background: var(--grey-bg-3);
  z-index: 1000;
  box-shadow: 0 0 0px 0px rgb(0 0 0 / 16%);
}

header.sticky .header-btm .navbar {
  background: var(--grey-bg-3);
  box-shadow: 0 0 11px -2px rgb(0 0 0 / 16%);
}


header .header-btm .navbar .navbar-nav {
  align-items: center;
  margin: 0 auto;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
  color: var(--black-clr);
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0;
  margin-right: 8px;
  margin-left: 8px;
  transition: all 0.5s ease-in-out;
  border: none;
  background-color: transparent;
  line-height: 80px;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--prim-clr);
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.anim-active {}

/* header.sticky .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: #a0a0a0;
  } */

/* header.sticky .header-btm .navbar .navbar-nav .nav-item .nav-link.hvr-underline-from-left::before {
    background: #ff7f00;
  } */

/* header.sticky .header-btm .navbar .navbar-nav .nav-item .nav-link.hvr-underline-from-left:hover {
    color: #fff !important;
  }
  
  header.sticky .header-btm .navbar .navbar-nav .nav-item .nav-link.hvr-underline-from-left:active {
    color: #fff !important;
  }
  
  header.sticky .header-btm .navbar .navbar-nav .nav-item .nav-link.hvr-underline-from-left:focus {
    color: #fff !important;
  } */

header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
  margin-left: 0;
}

header .header-btm .navbar .navbar-brand {
  margin: 0;
  padding: 0;
}

header .header-btm .navbar .navbar-brand .logo {
  width: auto;
  height: clamp(12px, 1.1vw, 20px);
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease-in-out;
  margin: 0;
}

header .header-btm .side-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

header .header-btm .side-ul .sd-li {
  margin: 0 30px 0 0;
}

header .header-btm .side-ul .sd-li:last-child {
  margin: 0;
}

header .header-btm .side-ul .sd-li .login {
  color: #fff;
  height: 50px;
  min-width: 150px;

  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  margin: 0;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-clr);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}

/************************************* sm menu start *************************************/
header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm {
  position: relative;
}

/* header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul:hover> :not(:hover) {
  opacity: 0.5;
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul .sub-menu-sm .sub-sm-ul:hover> :not(:hover) {
  opacity: 0.5;
} */

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-toggle-arrow::after {
  border: none;
  content: "\f078";
  display: inline-flex;
  font-family: "Font Awesome 6 Pro";
  
  font-size: 9px;
  color: var(--sec-clr);
  margin: 0 0 0 10px;
  padding: 0;
  transition: all 0.2s ease-in-out;
}


header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm {
  border: none;
    box-shadow: 0px 13px 30px 10px rgb(0 0 0 / 10%);
  will-change: opacity;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
  padding: 15px;
  top: calc(100% + 0px);
  min-width: 280px;
  /* width: clamp(16vw, 5vw, 30vw); */
  left: clamp(0vw, 5vw, 0vw);
  transform: translateX(0);
  position: absolute;
  z-index: 10;
  background: #fff;
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li {
  transition: all 0.2s ease-in-out;
  position: relative;
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--black-clr);
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a:hover {
  color: var(--prim-clr);
}
header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li.sub-dropdown:hover a.main-option {
  color: var(--prim-clr);
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a.sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 20px;
  width: 20px;
  color: var(--white-clr);
  background: var(--black-bg);
  border-radius: 5px;
  font-size: 10px;
  pointer-events: none;
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li.sub-dropdown:hover a.sub-toggle {
  background: var(--prim-bg);
  color: var(--white-clr);
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li:not(:last-child) {
  margin: 0 0 10px 0;
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul .sub-dropdown .option-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/****************************************** sm menu close ******************************************/

/******************************* sub-dropdown start *******************************/
header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .sm-menu-ul {
  position: relative;
}

header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .sm-menu-ul .sub-dropdown .sub-menu-sm {
  border: none;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
      box-shadow: 0px 13px 30px 10px rgb(0 0 0 / 10%);
  overflow: hidden;
  padding: 15px;
  min-width: 280px;
  /* width: clamp(16vw, 5vw, 30vw); */
  left: calc(100% + 15px);
  top: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(0);
  position: absolute;
  z-index: 10;
  background: #fff;
}

/****************************** sub-dropdown close ******************************/

/***************************** header close *****************************/


/***************************** footer start *****************************/
footer {
  position: relative;
  padding: 0;
  background-color: var(--black-bg);
}

footer .footer-main {
  padding: 45px 0 40px 0;
}

footer .footer-main .footer-about {}

footer .footer-main .footer-about .thumb {
  height: 20px;
  display: block;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(1348%) hue-rotate(211deg) brightness(114%) contrast(82%);
}

footer .footer-main .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
  gap: 10px;
}

footer .footer-main .social-icons ul li {}

footer .footer-main .social-icons ul li a {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--prim-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-clr);
  transition: all 0.3s ease-in-out;
}

footer .footer-main .social-icons ul li a:hover {
  background: var(--prim-bg);
}

footer .footer-main .social-icons ul li a i {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

footer .footer-main .categ-main h6 {

  color: var(--grey-clr-2);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  margin-bottom: clamp(14px, 1.5vw, 26px);
}

footer .footer-main .categ-main ul {
  padding: 0;
  margin: 0;
}

footer .footer-main .categ-main ul li {
  padding: 5px 0;
}

footer .footer-main .categ-main ul li:first-child {
  padding: 0px 0 5px 0;
}

footer .footer-main .categ-main ul li a {

  color: var(--grey-clr-2);
  font-size: 14px;
font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  padding: 0;
}

footer .footer-main .categ-main ul li a:hover {
  color: var(--prim-clr);
}

footer .footer-btm {
  padding: 15px 0 15px 0;
  position: relative;
}

footer .footer-btm::before {
  content: "";
  background: #F0F7F7;
  height: 1px;
  max-width: 1320px;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

footer .left-area p {}

footer .left-area p,
footer .left-area p a {

  color: var(--grey-clr-2);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  padding: 0;
}

footer .left-area p a:hover {
  color: #FF0000;
}

footer .footer-btm .other-links ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

footer .footer-btm .other-links ul li {}

footer .footer-btm .other-links ul li a {

  color: var(--grey-clr-3);
  font-size: 14px;
  font-weight: 300;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  padding: 0;
}

footer .footer-btm .other-links ul li:not(:last-child) a {
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
}

footer .footer-btm .other-links ul li:not(:last-child) a::after {
  content: '';
  background: var(--grey-clr-3);
  height: 18px;
  width: 1px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 3px;
}

/***************************** footer close *****************************/


/***************************** sec-home-banner start *****************************/
.sec-home-banner {
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 100%), url(../images/home-banner.jpeg) center/cover no-repeat; */
  margin-top: 50px;
  padding-top: clamp(100px, 10vw, 190px);
  padding-bottom: clamp(40px, 5vw, 90px);
}

@media (min-width: 1200px) {
[data-bg] {
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.sec-home-banner {
  margin-top: 83px;
}
}

[data-bg] {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

/* @media only screen and (min-width: 300px) and (max-width: 575px) {

} */

.sec-home-banner .desc {
  text-align: center;
}

.sec-home-banner .desc h1 {

  font-size: clamp(22px, 5vw, 50px);
  
  text-transform: capitalize;
  line-height: clamp(30px, 5vw, 55px);
  color: var(--white-clr);
  margin: 0 0 20px 0;
}

.sec-home-banner .desc h6 {

  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-clr);
  margin: 0 0 20px 0;
}

.sec-home-banner .desc p {
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: clamp(25px, 2vw, 30px);
  margin: 0 0 7px 0;
  color: var(--white-clr);
}

.sec-home-banner .desc .consult-btn {
  color: #fff;
  height: 50px;
  min-width: 150px;
  max-width: 100%;

  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  margin: 15px 0 0 0;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-clr);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}

/***************************** sec-home-banner close *****************************/

/***************************** sec-services start *****************************/
/* .sec-services {
  padding-top: clamp(30px,5vw,80px);
  padding-bottom: clamp(30px,5vw,80px);
}
.sec-services .head {
  text-align: center;
  margin-bottom: clamp(30px,4vw,60px);
}
.sec-services .head h3 {
  
  font-size: clamp(22px,3vw,50px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px,4vw,60px);
  color: var(--sec-clr);
  margin-bottom: clamp(10px,2vw,20px);
}
.sec-services .head p {
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(21px,2vw,25px);
  margin: 0 0 7px 0;
  color: var(--sec-clr);
}
.sec-services .service-box {
  overflow: hidden;
  border-radius: 10px;
  border:none;
  transition: all 0.3s ease-in-out;
  margin: 0 0 25px 0;
}
.sec-services .service-box .img-main {
  position: relative;
}
.sec-services .service-box .img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 0.6);
  transition: all 0.3s ease-in-out;
  mix-blend-mode: multiply;
}
.sec-services .service-box:hover .img-main::before {
  background: var(--prim-bg);
}
.sec-services .service-box .img-main .thumb {
  border-radius: 10px;
  height: clamp(200px,25vw,345px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.sec-services .service-box .desc {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
.sec-services .service-box .desc .icon-thumb {
  height: clamp(40px,5vw,60px);
  display: block;
  margin: 0 auto 20px auto;
  object-fit: contain;
  object-position: center;
}
.sec-services .service-box .desc .link {
  color: var(--white-clr);
  
  font-size: clamp(16px,1.5vw,22px);
  font-weight: 400;
  text-transform: capitalize;
} */
/***************************** sec-services close *****************************/

/***************************** sec-cta-1 start *****************************/
/* .sec-cta-1 {
  padding: 20px 0;
}
.sec-cta-1 .desc {
  margin: 0 0 15px 0;
  position: relative;
}
.sec-cta-1 .desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/cta-arrow.png) center/contain no-repeat;
  height: clamp(30px,3vw,52px);
  width: clamp(80px,20vw,300px);
}
.sec-cta-1 .desc h4 {
  color: var(--sec-clr-2);
  
  font-size: clamp(18px,1.5vw,26px);
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.sec-cta-1 .desc p {
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(21px,2vw,25px);
  margin: 0 0 7px 0;
  color: var(--sec-clr);
}
.sec-cta-1 .desc .talk-btn {
  color: #fff;
  height: clamp(45px,5vw,70px);
  width: clamp(265px,35vw,387px);
  
  font-weight: 400;
  font-size: clamp(16px,2vw,20px);
  text-transform: capitalize;
  margin: 0;
  margin-top: clamp(15px,3vw,30px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-bg);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.sec-cta-1 .img-main .thumb {
  margin: 0 auto;
  display: block;
} */

/***************************** sec-cta-1 close *****************************/

/***************************** sec-about start *****************************/
.sec-about {
  padding-top: clamp(30px,5vw,100px);
  padding-bottom: clamp(30px,5vw,100px);
}

.sec-about[data-theme="dark"] {
  background: var(--black-bg);
    margin: 0 20px 0 20px;
    border-radius: 18px;
}
.sec-about[data-theme="dark"] .desc h4 ,.sec-about[data-theme="dark"] .desc p, .sec-about[data-theme="dark"] .desc ul li{
  color: var(--white-clr);
}

.sec-about .desc {
  margin: 0 0 15px 0;
}

.sec-about .desc h4 {
  
  font-size: clamp(22px,2.5vw,38px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px,4vw,50px);
  color: var(--sec-clr);
    margin-bottom: clamp(10px,2vw,10px);
} 
.sec-about .desc p {
  font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin: 15px 0;
    color: var(--grey-clr-7);
}

.sec-about .desc ul {
  padding: 0;
}

.sec-about .desc ul li {
  position: relative;
  padding-left: 25px;
  color: var(--grey-clr-7);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.sec-about .desc ul li:not(:last-child) {
  margin: 0 0 8px 0;
}

.sec-about .desc ul li::before {
  
  font-size: inherit;
  position: absolute;
  top: 5px;
  left: 0;
  background: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sec-about .desc ul li[data-text='true']::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: #08CB00;
  font-weight: 700;
  font-size: 20px;
}
.sec-about .desc .chat-btn {
  color: #fff;
  height: 50px;
  width: 200px;
  max-width: 100%;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0;
  margin-top: clamp(15px,3vw,30px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-bg);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
} 
.sec-about .img-main .front-img .abt-thumb1 {

}
.sec-about .img-main .back-img .abt-thumb2 {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/***************************** sec-about close *****************************/

/***************************** sec-who start *****************************/
.sec-who {
  background: var(--grey-bg-4);
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
}

.sec-who .head {
  text-align: center;
  margin-bottom: clamp(15px, 3vw, 50px);
}

.sec-who .head h3 {

  font-size: clamp(22px, 3vw, 50px);
  text-transform: capitalize;
  line-height: clamp(30px, 4vw, 60px);
  color: var(--sec-clr);
  margin-bottom: clamp(10px, 2vw, 10px);
}

.sec-who .head p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 7px 0;
  color: var(--grey-clr-7);
}

.sec-who .who-box {
  background: var(--grey-bg-4);
  border-radius: 0;
  border: none;
}

.sec-who .who-box .img-main {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
}

.sec-who .who-box .img-main .thumb {
  height: 50px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  display: block;
  filter: brightness(0) saturate(100%) invert(44%) sepia(89%) saturate(4309%) hue-rotate(338deg) brightness(114%) contrast(107%);
}

.sec-who .who-box .desc h6 {
  text-transform: capitalize;
  color: var(--black-clr);

  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sec-who .who-box .desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 7px 0;
  color: var(--grey-clr-7);
}

/***************************** sec-who close *****************************/

/***************************** sec-myth start *****************************/
.sec-myth {
  margin: 0 20px 0 20px;
  border-radius: 18px;
  background: var(--black-bg);
  padding-top: clamp(30px, 5vw, 80px);
  padding-bottom: clamp(30px, 5vw, 80px);
}

.sec-myth .myth-box {
  border-radius: 0;
  border: none;
  padding: 5px;
  margin: 0 0 25px 0;
  background: transparent;
}

.sec-myth .myth-box h6 {
  text-transform: capitalize;
  color: var(--white-clr);

  font-size: clamp(18px, 2vw, 26px);
  
  text-align: center;
  margin-bottom: 20px;
}

.sec-myth .myth-box ul {
  padding: 0;
}

.sec-myth .myth-box ul li {
  position: relative;
  padding-left: 25px;

  color: var(--white-clr);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.sec-myth .myth-box ul li:not(:last-child) {
  margin: 0 0 8px 0;
}

.sec-myth .myth-box ul li::before {
  
  font-size: inherit;
  position: absolute;
  top: 5px;
  left: 0;
  background: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sec-myth .myth-box ul li[data-text='true']::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: #08CB00;
  font-weight: 700;
  font-size: 20px;
}

.sec-myth .myth-box ul li[data-text='false']::before {
  content: '\f057';
  font-family: 'Font Awesome 6 Pro';
  color: #FF4646;
  font-weight: 700;
  font-size: 20px;
}

/***************************** sec-myth close *****************************/

/***************************** sec-contact-info start *****************************/
.sec-contact-info {
  margin: 20px 20px 0 20px;
  border-radius: 18px;
  background: var(--black-bg);
  padding-top: clamp(30px, 5vw, 80px);
  padding-bottom: clamp(30px, 5vw, 80px);
}

.sec-contact-info .info-box {
  border-radius: 0;
  border: none;
  padding: 5px;
  margin: 0 0 25px 0;
  background: transparent;
}

.sec-contact-info .info-box h6 {
  text-transform: capitalize;
  color: var(--white-clr);

  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 10px;
}

.sec-contact-info .info-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 10px 0;
  color: var(--white-clr);
}

.sec-contact-info .info-box ul {
  padding: 0;
}

.sec-contact-info .info-box ul li {
  position: relative;
  padding-left: 25px;

  color: var(--white-clr);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.sec-contact-info .info-box ul li:not(:last-child) {
  margin: 0 0 10px 0;
}

.sec-contact-info .info-box ul li::before {
  font-size: inherit;
  position: absolute;
  top: 5px;
  left: 0;
  background: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sec-contact-info .info-box ul li[data-text='true']::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: #08CB00;
  font-weight: 700;
  font-size: 20px;
}

.sec-contact-info .info-box ul li[data-text='false']::before {
  content: '\f057';
  font-family: 'Font Awesome 6 Pro';
  color: #FF4646;
  font-weight: 700;
  font-size: 20px;
}

/***************************** sec-contact-info close *****************************/

/***************************** sec-wrote start *****************************/
.sec-wrote {
  padding-top: clamp(20px, 2.5vw, 50px);
  padding-bottom: clamp(20px, 2.5vw, 50px);
}

.sec-wrote .wrote-box {
  border-radius: 0;
  border: none;
  padding: 12px 20px;
  margin: 0 0 25px 0;
}

.sec-wrote .wrote-box h4 {
  text-transform: capitalize;
  color: var(--sec-clr);
  line-height: clamp(30px, 4vw, 60px);
  font-size: clamp(22px, 3vw, 50px);
  margin-bottom: 30px;
}

.sec-wrote .wrote-box h6 {
    text-transform: capitalize;
    color: var(--sec-clr);
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    line-height: 31px;
}

.sec-wrote .wrote-box ul {
  padding: 0;
}

.sec-wrote .wrote-box ul li {
  position: relative;
  padding-left: 25px;

  color: var(--grey-clr-7);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.sec-wrote .wrote-box ul li:not(:last-child) {
  margin: 0 0 8px 0;
}

.sec-wrote .wrote-box ul li::before {
  
  font-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-wrote .wrote-box ul li[data-text='true']::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: var(--prim-clr);
}

.sec-wrote {
      padding: 80px 0;
      background-color: var(--grey-bg-1);
    }

    .sec-wrote .section-title {
      font-size: 42px;
      
      color: var(--sec-clr);
      margin-bottom: 40px;
    }

    .sec-wrote .contact-form .input-area {
      padding: 0 0 20px 0;
    }
    .sec-wrote .contact-form .input-area .iti--allow-dropdown {
      width: 100%;
    }

    .sec-wrote .contact-form .input-area label.error {
      color: red;
      font-size: 12px;
      margin-top: 5px;
      display: block;
    }

    .sec-wrote .contact-form .form-control {
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding: 14px 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      color: var(--black-clr);
      background-color: var(--white-clr);
    }

    .sec-wrote .contact-form .form-control:focus {
      border-color: var(--prim-clr);
      box-shadow: 0 0 0 3px rgba(246, 83, 83, 0.15);
    }

    .sec-wrote .contact-form .form-control::placeholder {
      color: var(--grey-clr-7);
    }

    .sec-wrote .contact-form .btn-submit {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--prim-clr);
      color: var(--white-clr);
      padding: 5px;
      height: 45px;
      width: 200px;
      max-width: 100%;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      align-content: center;
    }

    .sec-wrote .contact-form .btn-submit:hover {
      background-color: var(--sec-clr);
    }

/***************************** sec-wrote close *****************************/


/***************************** sec-cta-2 start *****************************/
/* .sec-cta-2 {
  padding-top: clamp(20px,2.5vw,40px);
  padding-bottom: clamp(20px,2.5vw,40px);
  background: var(--sec-bg);
}
.sec-cta-2 .desc h4 {
  
  font-size: clamp(22px,2.5vw,38px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px,4vw,50px);
  color: var(--prim-clr);
  margin-bottom: clamp(10px,2vw,10px);
}
.sec-cta-2 .desc p {
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(21px,2vw,25px);
  margin-bottom: clamp(10px,2vw,18px);
  color: var(--white-clr);
}
.sec-cta-2 .desc .chat-btn {
  color: #fff;
  height: clamp(45px,5vw,70px);
  width: clamp(180px,14vw,265px);
  
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  text-transform: capitalize;
  margin: 0;
  margin-top: clamp(15px,3vw,30px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-bg);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.sec-cta-2 .img-main .thumb {
  width: 100%;
  height: 325px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
} */
/***************************** sec-cta-2 close *****************************/

/***************************** sec-reviews start *****************************/
.sec-reviews {
  padding-top: clamp(30px, 5vw, 50px);
  padding-bottom: clamp(30px, 5vw, 80px);
}

.sec-reviews .head {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.sec-reviews .head ul {
    padding: 0;
}

.sec-reviews .head ul li {
  position: relative;
  padding-left: 25px;

    color: var(--grey-clr-7);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.sec-reviews .head ul li:not(:last-child) {
  margin: 0 0 8px 0;
}

.sec-reviews .head ul li::before {
  
  font-size: inherit;
  position: absolute;
  top: 5px;
  left: 0;
  background: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sec-reviews .head ul li[data-text='true']::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: #08CB00;
  font-weight: 700;
  font-size: 20px;
}

.sec-reviews .head h3 {

font-size: clamp(22px, 3vw, 40px);
  text-transform: capitalize;
  line-height: clamp(30px, 4vw, 60px);
  color: var(--sec-clr);
  margin-bottom: clamp(10px, 2vw, 20px);
}

.sec-reviews .review-card {
  border-radius: 0;
  border: none;
  padding: 12px 20px;
  background: var(--grey-bg-1);
  margin: 0 0 25px 0;
}

.sec-reviews .review-card .top-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: clamp(20px, 5vw, 40px);
}

.sec-reviews .review-card .top-area .img-main {}

.sec-reviews .review-card .top-area .img-main .thumb {
  max-width: 53px;
  min-width: 53px;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
  overflow: hidden;
}

.sec-reviews .review-card .top-area .author {
  padding: 0 0 0 13px;
  margin: 0 0 13px 0;
  max-width: 300px;
}

.sec-reviews .review-card .top-area .author h5 {

  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: var(--black-clr);
  margin: 0 0 7px 0;
  text-transform: capitalize;
}

.sec-reviews .review-card .top-area .author h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #3DB6B1;
  text-transform: capitalize;
  gap: 5px;
  display: inline-flex;
  align-items: center;
}

.sec-reviews .review-card .top-area .author h6::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: inherit;
  
}
.sec-reviews .review-card .desc {
  height: 150px;
  overflow-y: auto;
  margin: 0 0 10px 0;
  padding-right: 5px;
}
/* width */
.sec-reviews .review-card .desc::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.sec-reviews .review-card .desc::-webkit-scrollbar-track {
  background: var(--grey-clr);
  border-radius: 50px;
}

/* Handle */
.sec-reviews .review-card .desc::-webkit-scrollbar-thumb {
  background: var(--black-bg);
    border-radius: 50px;
}

/* Handle on hover */
.sec-reviews .review-card .desc::-webkit-scrollbar-thumb:hover {
  background: var(--sec-bg);
}
.sec-reviews .review-card .desc p {
  font-size: 16px;
  line-height: 26px;
  color: var(--grey-clr-7);
  margin: 0 0 5px 0;
}

.sec-reviews .review-card .bottom-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--grey-clr-5);
  padding-top: 10px;
  margin-top: 5px;
}

.sec-reviews .review-card .bottom-area .ratings {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sec-reviews .review-card .bottom-area .ratings li {}

.sec-reviews .review-card .bottom-area .ratings li a {
  display: inline-flex;
}

.sec-reviews .review-card .bottom-area .ratings li a i {
  font-size: 20px;
  background: linear-gradient(90deg, rgba(255, 194, 0, 1) 0%, rgba(255, 194, 0, 1) 30%, rgba(255, 188, 6, 1) 50%, rgba(255, 174, 25, 1) 75%, rgba(255, 149, 58, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 8px 0 0;
}

.sec-reviews .review-card .bottom-area span {
  font-size: 16px;
  color: var(--grey-clr-5);
}

/***************************** sec-reviews close *****************************/

/***************************** sec-reviews close *****************************/

section.sec-portfolio {
  padding: 50px 50px;
  margin: 0 20px 0 20px;
  border-radius: 18px;
  background: var(--black-bg);
}

.sec-portfolio .portfolio-head {
  margin: 0 0 50px;
  text-align: center;
}

.portfolio-head .heading-two {
  margin: 0 0 20px;
  color: var(--white-clr);
  text-align: center;
  

  font-size: clamp(22px, 3vw, 50px);
}

.portfolio-head p {
  color: #111111;
}

.portfolio-inner .portfolio-buttons {
  margin: 0 0 30px;
}

.portfolio-buttons .nav-pills {
    justify-content: center;
    margin-bottom: 30px;
    gap: 30px;
}

.portfolio-buttons .nav-pills .nav-link.active {
  background: #FF4500;
  color: white;
}

.portfolio-tabitem .tab-pane {
  transition: all 0.3s ease;
}

.portfolio-buttons ul.nav-pills li.nav-item {
  margin: 0;
}


.portfolio-buttons ul.nav-pills li.nav-item button.nav-link {
  color: var(--white-clr);
  border: 2px solid var(--white-clr);
  font-size: 20px;
  border-radius: 8px;
  padding: 8px 7px;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  position: relative;
  background: var(--black-bg);

  font-weight: 400;
  font-size: 14px;
  min-width: 120px;
}


.portfolio-buttons ul.nav-pills li.nav-item button.nav-link.active {
  color: var(--white-clr);
  background: var(--prim-bg);
  border-color: var(--prim-clr);
}

/* .portfolio-buttons ul.nav-pills li.nav-item button.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    background: var(--white-clr);
    width: 100%;
    height: 2px;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.portfolio-buttons ul.nav-pills li.nav-item button.nav-link.active::after,
.portfolio-buttons ul.nav-pills li.nav-item button.nav-link:hover::after,
.portfolio-buttons ul.nav-pills li.nav-item button.nav-link:hover::before {
    opacity: 1;
} */


.portfolio-tabitem-books .portfolio-books-box {
  text-align: center;
  margin: 0 0px 20px;
}

.portfolio-books-box a {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all .3s ease-in-out;
  border-radius: 10px;
}

.portfolio-books-box a img {
  object-position: top center;
  transition: all .7s ease;
  width: 230px;
  height: 292px;
  object-fit: cover;
}

.portfolio-books-box a:hover img {
  object-position: bottom center;
}

.portfolio-books-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0c0c0c9e;
  width: 100%;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100px);
  transition: all .3s ease-in-out;
}

.portfolio-books-box a:hover::before {
  width: 100%;
  height: 100%;
  transform: translateY(0px);
}

.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-prev,
.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-next {
  position: absolute;
  top: 40%;
  left: -40px;
  transition: all 0.3s ease-in-out;
}

.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-next {
  left: auto;
  right: -40px;
}

.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-prev i,
.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-next i {
  font-size: 30px;
  color: var(--white-clr) !important;
  transition: all 0.3s ease-in-out;
}

.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-prev:hover,
.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-next:hover {
  background: none !important;
  box-shadow: none;
  color: var(--prim-clr);
}

.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-prev:hover i,
.portfolio-inner .portfolio-carousel-slider .owl-nav .owl-next:hover i {
  color: var(--prim-clr);
}

/***************************** sec-reviews close *****************************/

/***************************** sec-authors start *****************************/
/* .sec-authors {
  padding-top: clamp(30px,2.5vw,50px);
  padding-bottom: clamp(30px,2.5vw,50px);
  background: var(--grey-bg-2);
}
.sec-authors .head {
  text-align: center;
}
.sec-authors .head h3 {
  
  font-size: clamp(22px,3vw,48px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px,4vw,60px);
  color: var(--sec-clr);
  margin-bottom: clamp(10px,2vw,20px);
}
.sec-authors .head p {
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(21px,2vw,25px);
  margin: 0 0 7px 0;
  color: var(--sec-clr);
}
.sec-authors .author-slider .owl-stage {
  padding: 50px 0;
}
.sec-authors .author-card {
  border: none;
  border-radius: 0;
  background: transparent;
  z-index: 1;
}
.sec-authors .author-card .auth-img {
  position: relative;
}
.sec-authors .author-card .auth-img .thumb {
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  max-height: 281px;
  max-width: 281px;
  margin: 0 auto;
  display: block;
  box-shadow: 13px -3px 0px var(--prim-bg);
}
.sec-authors .author-card .book-img {
  position: absolute;
  top: 0;
  left: -5px;
}
.sec-authors .author-card .book-img .thumb {

} */
/***************************** sec-authors close *****************************/

/***************************** sec-choose start *****************************/
/* .sec-choose {
  padding-top: clamp(30px,5vw,100px);
  padding-bottom: clamp(30px,5vw,75px);
}

.sec-choose .desc {
  margin: 0 0 15px 0;
}

.sec-choose .desc h4 {
  
  font-size: clamp(22px,2.5vw,35px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px,4vw,50px);
  color: var(--sec-clr);
    margin-bottom: clamp(10px,2vw,10px);
} 
.sec-choose .desc p {
  font-weight: 400;
    font-size: clamp(16px,1.5vw,20px);
    line-height: clamp(21px,2vw,25px);
    margin-bottom: clamp(10px,2vw,18px);
    color: var(--sec-clr);
}
.sec-choose .desc .chat-btn {
  color: #fff;
  height: clamp(45px,5vw,70px);
  width: clamp(180px,14vw,265px);
  
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  text-transform: capitalize;
  margin: 0;
  margin-top: clamp(15px,3vw,30px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-bg);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
} 
.sec-choose .img-main .back-img2 .choose-thumb2 {
  width: 100%;
  margin: 0 0 0 auto;
  display: block;
}
.sec-choose .img-main .front-img {

}
.sec-choose .img-main .front-img .choose-thumb1 {
  margin: 0 auto;
  display: block;
} */

/***************************** sec-choose close *****************************/

/***************************** sec-cta-3 start *****************************/
/* .sec-cta-3 {
  padding-top: clamp(20px,2.5vw,40px);
  padding-bottom: clamp(20px,2.5vw,40px);
  background: var(--prim-bg);
}
.sec-cta-3 .desc h4 {
  
  font-size: clamp(22px,2.5vw,30px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px,4vw,40px);
  color: var(--white-clr);
  margin-bottom: clamp(10px,2vw,10px);
}
.sec-cta-3 .desc p {
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(21px,2vw,25px);
  margin-bottom: clamp(10px,2vw,18px);
  color: var(--white-clr);
}
.sec-cta-3 .desc .chat-btn {
  color: #fff;
  height: clamp(45px,5vw,70px);
  width: clamp(265px,35vw,294px);
  
  font-weight: 400;
  font-size: clamp(16px,2vw,20px);
  text-transform: capitalize;
  margin: 0;
  margin-top: clamp(15px,3vw,30px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-clr);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.sec-cta-3 .img-main .thumb {
  width: 100%;
  height: 325px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
} */
/***************************** sec-cta-3 close *****************************/

/***************************** sec-other-services start *****************************/
.sec-other-services {
  padding-top: clamp(30px, 5vw, 100px);
  padding-bottom: clamp(30px, 5vw, 75px);
}

.sec-other-services .head {
  text-align: center;
}

.sec-other-services .head h3 {

  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: clamp(30px, 4vw, 50px);
  color: var(--sec-clr);
  margin-bottom: clamp(10px, 2vw, 30px);
}

.sec-other-services .other-card {
  background: var(--grey-bg-3);
  border-radius: 10px;
  border: none;
  padding: 22px;
  padding-top: clamp(20px, 3vw, 50px);
  justify-content: center;
}

.sec-other-services .other-card .img-main .thumb {
  height: 60px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
}

.sec-other-services .other-card .desc {
  text-align: center;
}

.sec-other-services .other-card .desc h6 {
  font-family: "NoirPro-Medium", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: clamp(22px, 2vw, 28px);
  margin-top: clamp(20px, 2vw, 50px);
  margin-bottom: clamp(20px, 2vw, 50px);
  color: var(--sec-clr);
  text-transform: capitalize;
}

.sec-other-services .other-card .desc .link {
  color: var(--sec-clr);

  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
  text-decoration: underline;
}

.sec-other-services .other-card .desc .link:hover {
  color: var(--prim-clr);
}

/***************************** sec-other-services close *****************************/
/* .sec-faq {
  background: var(--grey-bg-4);
  padding-top: clamp(30px,5vw,100px);
  padding-bottom: clamp(30px,5vw,100px);
}
.sec-faq .head {
  text-align: center;
}
.sec-faq .head h3 {
  
    font-size: clamp(22px,3vw,40px);
    font-weight: 400;
    text-transform: capitalize;
    line-height: clamp(30px,4vw,50px);
    color: var(--sec-clr);
    margin-bottom: clamp(10px,2vw,30px);
}
.sec-faq .accordion-main {
}
.sec-faq .accordion-main .head h6 {
  
  font-size: 40px;
  font-weight: 600;
  text-transform: capitalize;
  color: #000;
  margin: 0 0 56px 0;
  padding: 0;
  text-align: center;
}

.sec-faq .accordion-main .accordion {}

.sec-faq .accordion-main .accordion .accordion-item {
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}

.sec-faq .accordion-main .accordion .accordion-item:has(> .accordion-collapse.show) {
  border: 1px solid var(--black-clr);
  transition: all 0.5s ease-in-out;
  background: var(--grey-bg-1);
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header {}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button {
  font-family: "NoirPro-Medium",sans-serif;
  font-weight: 500;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(22px,2vw,28px);
  color: var(--sec-clr);
  text-transform: capitalize;
  text-align: center;
  color: var(--grey-clr-6);
  padding: 20px 30px;
  background: var(--grey-bg-4);
  position: relative;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid var(--grey-clr-5);
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: none;
  content: '\e59e';
  font-family: 'Font Awesome 6 Pro';
  transform: rotate(0deg);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--sec-clr);
  background: var(--grey-bg-1);
  border-bottom: 1px solid var(--grey-bg-1);
  padding: 20px 30px 0 30px;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: '\f068';
  font-family: 'Font Awesome 6 Pro';
  transform: rotate(180deg);
  color: #000;
}

.sec-faq .accordion-main .accordion .accordion-item .accordion-collapse {
  background: var(--grey-bg-1);
  box-shadow: none;
  border-radius: 0;
  margin: 0;
}
.sec-faq .accordion-main .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 30px 30px 30px;
}
.sec-faq .accordion-main .accordion .accordion-item .accordion-collapse .accordion-body p {
  font-weight: 400;
  font-size: clamp(16px,1.5vw,20px);
  line-height: clamp(21px,2vw,25px);
  margin-bottom: clamp(10px,2vw,18px);
  color: var(--sec-clr);
  margin: 0;
  padding: 0;
} */

/* cta modal */
.ctaModal .modal-dialog .modal-content .modal-body .btn-close {
  background: var(--prim-bg);
  color: var(--white-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  position: absolute;
  top: -10px;
  right: -10px;
}

.ctaModal .modal-dialog .modal-content .modal-body h4 {
  text-align: center;
  font-size: clamp(22px, 2.5vw, 38px);
  color: var(--black-clr);
  text-transform: capitalize;
  margin: 0 0 15px 0;
}

.ctaModal .modal-dialog .modal-content .modal-body p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--grey-clr-7);
  text-transform: capitalize;
}
.ctaModal .modal-dialog .modal-content .modal-body .newsletter {
  margin: 20px 0 0 0;
}
.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main {
  position: relative;
  margin: 20px 0;
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main label.error {
  color: red;
  font-size: 12px;
  font-weight: 500;
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .iti--allow-dropdown {
  width: 100%;
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .ct-control {
  box-shadow: 1px 1px 25px 10px rgb(0 0 0 / 0.07);
  border-radius: 10px;
  height: 45px;
  width: 100%;
  color: var(--black-clr);
  padding: 12px 15px;
  border: none;
  font-weight: 400;
  font-size: 16px;

}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .ct-control:focus {
  outline: none !important;
  box-shadow: 1px 1px 25px 10px rgb(0 0 0 / 0.07) !important;
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .ct-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--grey-clr);
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .ct-control::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--grey-clr);
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .ct-control:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--grey-clr);
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .input-main .ct-control:-moz-placeholder {
  /* Firefox 18- */
  color: var(--grey-clr);
}

.ctaModal .modal-dialog .modal-content .modal-body .newsletter .submit-btn {
  color: #fff;
  height: 50px;
  width: 100%;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--prim-bg);
  background: var(--prim-bg);
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}

.contact-section {
      padding: 80px 0;
      background-color: var(--grey-bg-1);
    }

    .contact-section .section-title {
      font-size: 42px;
      
      color: var(--sec-clr);
      margin-bottom: 40px;
    }

    .contact-form .input-area {
      padding: 0 0 20px 0;
    }
    .contact-form .input-area .iti--allow-dropdown {
      width: 100%;
    }

    .contact-form .input-area label.error {
      color: red;
      font-size: 12px;
      margin-top: 5px;
      display: block;
    }

    .contact-form .form-control {
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding: 14px 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      color: var(--black-clr);
      background-color: var(--white-clr);
    }

    .contact-form .form-control:focus {
      border-color: var(--prim-clr);
      box-shadow: 0 0 0 3px rgba(246, 83, 83, 0.15);
    }

    .contact-form .form-control::placeholder {
      color: var(--grey-clr-7);
    }

    .contact-form .btn-submit {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--prim-clr);
      color: var(--white-clr);
      padding: 5px;
      height: 45px;
      width: 200px;
      max-width: 100%;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      align-content: center;
    }

    .contact-form .btn-submit:hover {
      background-color: var(--sec-clr);
    }

    .contact-details {
      padding-left: 40px;
    }

    .contact-details .details-title {
      font-size: 32px;
      font-weight: 600;
      color: var(--sec-clr);
      margin-bottom: 30px;
    }

    .contact-details .detail-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 25px;
    }

    .contact-details .detail-item .icon {
      width: 50px;
      height: 50px;
      background-color: var(--prim-clr);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-details .detail-item .icon svg {
      width: 22px;
      height: 22px;
      fill: var(--white-clr);
    }

    .contact-details .detail-item .info h5 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--grey-clr-7);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .contact-details .detail-item .info p {
      font-size: 18px;
      font-weight: 500;
      color: var(--black-clr);
      margin: 0;
    }

    .contact-details .detail-item .info a {
      font-size: 18px;
      font-weight: 500;
      color: var(--black-clr);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-details .detail-item .info a:hover {
      color: var(--prim-clr);
    }

    @media (max-width: 991px) {
      .contact-details {
        padding-left: 0;
        margin-top: 50px;
      }
    }

/* sec packages start */
    .full-width-bg .head-main {
    font-size: clamp(22px, 5vw, 50px);
    font-weight: 400;
    text-transform: capitalize;
    line-height: clamp(30px, 4vw, 60px);
    color: var(--sec-clr);
    margin-bottom: clamp(10px, 2vw, 20px);
    }
     .full-width-bg .para {
      font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 7px 0;
    color: var(--grey-clr-7);
     }

         .full-width-bg .head-sub {
    text-transform: capitalize;
    color: var(--sec-clr);
    font-size: clamp(18px, 2vw, 20px);
    text-align: center;
    margin-top: 20px;
    }

   .full-width-bg .bg-grey {
      background-color: var(--grey-bg-1);
    }

    .full-width-bg .bg-grey .inner-head {
    font-size: clamp(22px, 5vw, 35px);
    font-weight: 400;
    text-transform: capitalize;
    line-height: clamp(30px, 4vw, 40px);
    color: var(--sec-clr);
    margin-bottom: clamp(10px, 2vw, 20px);
    text-align: center;
    }

    .full-width-bg .font-secondary {
          font-size: clamp(22px, 5vw, 30px);
    font-weight: 400;
    text-transform: capitalize;
    line-height: clamp(30px, 4vw, 35px);
    color: var(--prim-clr);
    margin-bottom: clamp(10px, 2vw, 20px);
    text-align: center;
    }
    .full-width-bg h3.text-darkblue {
      font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--black-clr);
    margin-bottom: clamp(10px, 2vw, 20px);
    text-align: center;
    }

    .full-width-bg .build-point {
    overflow-y: auto;
    height: 300px;
    margin-bottom: 30px;
}
.pt-3.package--description> strong {
  color: var(--sec-clr);
  font-weight: 700;
}
.full-width-bg .build-point > p > a {
  display: inline-flex;
  gap: 5px;
  align-items: first baseline;
}
.full-width-bg .build-point > p > a em.text-teal--dark4,.full-width-bg .build-point > p > a em.text-peach, .full-width-bg .build-point > p > a em.text-gray, .full-width-bg .build-point > p > a em.text-teal--dark4,.full-width-bg .build-point > p > em.text-teal--dark4, .full-width-bg .build-point > p > em.text-teal--dark4 {
    color: #18a880;
}
.full-width-bg .build-point > p {
  font-weight: 600;
  color: var(--grey-clr-6);
  margin: 10px 0;
}

/* width */
.full-width-bg .build-point::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.full-width-bg .build-point::-webkit-scrollbar-track {
  background: var(--grey-clr);
  border-radius: 50px;
}

/* Handle */
.full-width-bg .build-point::-webkit-scrollbar-thumb {
  background: var(--black-bg);
    border-radius: 50px;
}

/* Handle on hover */
.full-width-bg .build-point::-webkit-scrollbar-thumb:hover {
  background: var(--sec-bg);
}

.full-width-bg a.btn--1 {
color: #fff;
    height: 50px;
    min-width: 150px;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    margin: 15px 0 0 0;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--prim-clr);
    background: var(--prim-bg);
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.full-width-bg .ct-table .table>:not(caption)>*>* {
  background-color: var(--grey-bg-1);
}
.full-width-bg .ct-table table thead tr td.c-table__col-head {
  text-align: center;
}

.full-width-bg .ct-table table thead tr td>div.c-table__type {
  color: var(--sec-clr);
  font-weight: 700;
  text-align: center;
}
.full-width-bg .ct-table table thead tr td>div.c-table__price {
  color: var(--prim-clr);
  font-weight: 700;
  text-align: center;
}

.full-width-bg .ct-table table tbody tr td.bg-gray--dark4 {
  background-color: var(--black-bg);
  text-align: center;
}
.full-width-bg .ct-table table tbody tr th a {
  color: var(--black-clr);
}

.full-width-bg .ct-table table tbody tr:not(:first-child) td {
  text-align: center;
}

.full-width-bg .ct-table table tbody tr td>.fa-circle-check {
      color: #18a880;
}

.full-width-bg .ct-table table tbody tr td>.fa-circle-xmark {
      color: var(--prim-clr);
}


/*******start inner page banner ********/
.inner-banner {
    background: var(--black-bg);
    padding: 100px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.inner-banner .inner-banner-top-content p {
    font-weight: 500;
}

.inner-banner .inner-banner-top-content .price-block {
    margin: 15px 0;
}

.inner-banner .inner-banner-top-content .price-old {
    text-decoration: line-through;
    font-size: 18px;
}

.inner-banner .inner-banner-top-content .price-new {
    font-size: 28px;
    font-weight: bold;
    color: var(--prim-clr);
}

.inner-banner .inner-banner-top-content .price-off {
    font-size: 15px;
}

/******* end inner page banner ********/
/******* end detail-description ********/
section.detail-description h2 {
    color: var(--sec-clr);
    font-size: 40px;
    margin: 10px 0;
}

section.detail-description h3 {
    color: var(--sec-clr);
    margin: 10px 0;
}

section.detail-description {
    padding: 50px 0 50px 0;
}
.detail-description ul {
  margin: 10px 0;
}

.detail-description li {
    list-style: disc;
    color: var(--black-clr);
    margin: 5px 0;
}

section.detail-description h3 {
    font-size: 30px;
}

.detail-description li::marker {
    color: var(--prim-clr);
}

/***************************** sec-privacy start *****************************/
.sec-privacy {
  padding-top: clamp(30px,5vw,100px);
  padding-bottom: clamp(30px,5vw,100px);
}

.sec-privacy .desc {
  margin: 0 0 15px 0;
}

.sec-privacy .desc h4 {
  font-size: 34px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: normal;
  color: var(--sec-clr);
    margin-bottom: 10px;
} 

.sec-privacy .desc h6 {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  color: var(--sec-clr);
    margin: 10px;
} 
.sec-privacy .desc p {
  font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin: 15px 0;
    color: var(--grey-clr-7);
}
.sec-privacy .desc p a {
  color: var(--prim-clr);
  text-decoration: none;
}

.sec-privacy .desc ul {
  padding: 0;
}

.sec-privacy .desc ul li {
  position: relative;
  padding-left: 25px;
  color: var(--grey-clr-7);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.sec-privacy .desc ul li:not(:last-child) {
  margin: 0 0 8px 0;
}

.sec-privacy .desc ul li::before {
  
  font-size: inherit;
  position: absolute;
  top: 5px;
  left: 0;
  background: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sec-privacy .desc ul li[data-text='true']::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Pro';
  color: #08CB00;
  font-weight: 700;
  font-size: 20px;
}

/***************************** sec-privacy close *****************************/

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1400px) and (max-width: 1444px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-btm .navbar {
    padding: 10px 0;
  }
  header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    line-height: normal;
  }
  header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 10px;
  }
    header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 10px;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm {
    width: 100%;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a.sub-toggle {
    pointer-events: all;
  }

  header .header-btm .navbar .navbar-nav {
    margin: 10px auto;
    align-items: flex-start;
    gap: 10px;
  }

  header .header-btm .side-ul {
    justify-content: flex-start;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .sm-menu-ul .sub-dropdown .sub-menu-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li {
    text-align: left;
  }

  footer .footer-main .social-icons ul {
    margin: 15px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .header-btm .navbar {
    padding: 10px 0;
  }
  header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    line-height: normal;
  }
  header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 10px;
  }
    header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 10px;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm {
    width: 100%;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a.sub-toggle {
    pointer-events: all;
  }

  header .header-btm .navbar .navbar-nav {
    margin: 10px auto;
    align-items: flex-start;
    gap: 10px;
  }

  header .header-btm .side-ul {
    justify-content: flex-start;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .sm-menu-ul .sub-dropdown .sub-menu-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li {
    text-align: left;
  }

  header .header-btm .side-ul {
    justify-content: flex-start;
  }

  header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 10px;
  }

  header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 10px;
  }

  footer .left-area p,
  footer .left-area p a {
    text-align: center;
  }

  footer .footer-btm .other-links ul {
    justify-content: center;
  }

  footer .footer-btm .payments ul {
    margin: 5px 0;
  }

  footer .footer-main .social-icons ul {
    margin: 15px 0;
  }

  .ctaModal .newsletter .input-main {
    margin: 20px 0 15px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  header .header-btm .navbar {
    padding: 10px 0;
  }
  header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    line-height: normal;
  }
  header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 10px;
  }
    header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 10px;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm {
    width: 100%;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a.sub-toggle {
    pointer-events: all;
  }

  header .header-btm .navbar .navbar-nav {
    margin: 10px auto;
    align-items: flex-start;
    gap: 10px;
  }

  header .header-btm .side-ul {
    justify-content: flex-start;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .sm-menu-ul .sub-dropdown .sub-menu-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li {
    text-align: left;
  }

  header .header-btm .side-ul {
    justify-content: flex-start;
  }

  header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 10px;
  }

  header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 10px;
  }

  footer .left-area p,
  footer .left-area p a {
    text-align: center;
  }

  footer .footer-btm .other-links ul {
    justify-content: center;
  }

  footer .footer-btm .payments ul {
    margin: 5px 0;
  }

  footer .footer-main .social-icons ul {
    margin: 15px 0;
  }

  .ctaModal .newsletter .input-main {
    margin: 20px 0 15px 0;
  }
}

@media only screen and (min-width: 300px) and (max-width: 575px) {
  header .header-btm .navbar {
    padding: 10px 0;
  }
  header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    line-height: normal;
  }
  header .header-btm .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 10px;
  }
    header .header-btm .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 10px;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm {
    width: 100%;
  }
  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li a.sub-toggle {
    pointer-events: all;
  }

  header .header-btm .navbar .navbar-nav {
    margin: 10px auto;
    align-items: flex-start;
    gap: 10px;
  }

  header .header-btm .side-ul {
    justify-content: flex-start;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .sm-menu-ul .sub-dropdown .sub-menu-sm {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  header .header-btm .navbar .navbar-nav .nav-item.dropdown-sm .dropdown-menu-ct-sm .sm-menu-ul li {
    text-align: left;
  }

  footer .left-area p,
  footer .left-area p a {
    text-align: center;
  }

  footer .footer-btm .other-links ul {
    justify-content: center;
  }

  footer .footer-btm .payments ul {
    margin: 5px 0;
  }

  footer .footer-main .social-icons ul {
    margin: 15px 0;
  }

  .ctaModal .newsletter .input-main {
    margin: 20px 0 15px 0;
  }
}