@font-face {
    font-family: SuisseIntl-Bold;
    src: url('../fonts/SuisseIntl-Bold.otf');
  }

  @font-face {
    font-family: SuisseIntl-Regular;
    src: url('../fonts/SuisseIntl-Regular.otf');
    font-weight: 400;
  }

  @font-face {
    font-family: SuisseIntl-RegularItalic;
    src: url('../fonts/SuisseIntl-RegularItalic.otf');
    font-weight: 450;
    font-style: italic;
  }
a:hover{
	text-decoration:none !important;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: SuisseIntl-Regular;
}
:root {
  --primary-color:rgba(15, 12, 173, 1);
  --primary-text: rgba(13, 13, 13, 1);
}
#smooth-content {
  will-change: transform;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}
html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
    
}
body{
  counter-reset: section;
}
.card{
    border: none;
    border-radius: 0;
    background: none;
}

.text-neongreen{
  color: var(--neongreen);
}

.italic-text{
  font-style: italic;
}
.text-blue{
  color: var(--primary-color) !important;
}
.fw-400{
  font-weight: 400 !important;
}
.family-bold{
    font-family: SuisseIntl-Bold;
}
.reg-text{
  font-family: SuisseIntl-Regular;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.2px;
    font-weight: 400;
}
.bg-blue{
  background: var(--primary-color) !important;
}
.sm-text{
   font-size: 30px !important;
  line-height: 40px !important;
   color: #fff  !important;
       letter-spacing: 1.9px !important;
 }

.cd-words-wrapper{
  overflow: visible !important;
  width: auto !important;

}
.para{
	font-size:19px;
	line-height:25px;
}

.para-gap p{
	margin-bottom:15px;
}







/* ~~~~~~~~~~~~~~~~~~~~~~~~~~ Header ~~~~~~~~~~~~~~~~~~~~~~~~~~ */

header{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9999;
}

.uppernav{
  padding: 13px 0;
  border-bottom: 1px solid rgba(91, 91, 91, 1);
}
.uppernav .list{
  display: flex;
  align-items: center;
}
.uppernav .list p{
  margin: 0;
}
.uppernav .list p a{
  color: white;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
}
/* Navbar */
header .navbar{
    position: relative;

}



header .navbar-nav li a{
  color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.75px;
    letter-spacing: 0.5px;
  
}
header .navbar-nav li a.active,header .navbar-nav li a.current-menu-item, header .navbar-nav li a:hover{
  font-family: SuisseIntl-RegularItalic;
  font-style: italic;
    color: #fff !important;
}
@media screen and (min-width:991px){
    header .navbar-nav li{
        padding: 10px;
    }
}




header .navbar-collapse .btn {
    width: 180px;
    height: 50px;
    background: #ff5421;
    color: #fff;
    border-radius: 14px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 5px;
}
@media screen and (max-width:991px){
    header .navbar-collapse{
        background: #000;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 100%;
        padding: 27px 0;
        z-index: 9999;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}




header .navbar-collapse .btn span {
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
    font-weight: 600;
    text-transform: uppercase;
}

header .navbar-collapse .btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header .navbar-collapse .btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header .navbar-collapse .btn:hover .btn-text-one {
    top: -100%;
}

header .navbar-collapse .btn:hover .btn-text-two {
    top: 50%;
}
@media only screen and (max-width: 767px) {
  .brand-logo{
    width: 50%;
  }
}

/* hamburger */
.nav-icon {
    width: 40px;
    height: 25px;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff!important;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 8px;
}

.nav-icon span:nth-child(4) {
    top: 16px;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

header .navbar button {
    outline: none;
    box-shadow: none !important;
}

header .navbar .navbar-toggler {
    border: none !important;
}
/* end of hamburger */




.menu-item-has-children .sub-menu{
    display:none;
}

.menu-item-has-children:hover > .sub-menu{
    display: block;
}
 .menu-item-has-children .sub-menu li{
        padding:10px 30px;
    }
    .menu-item-has-children .sub-menu li a:hover{
        color:#000;
    }

@media screen and (min-width: 769px) {
    .menu-item-has-children .sub-menu{
      position: absolute;
    background: #da9103;
    z-index: 99999;
    margin-top: 10px;
    padding: 0;
    }
}

@media screen and (min-width:991px){
    .navbar-collapse{
        justify-content: flex-end;
    }
  }

@media screen and (max-width:767px){
.navbar .container{
  padding: 0 0%;
}
}


.mega-menu-link{
		transition:all 0.5s ease;
}

.mega-sub-menu .mega-menu-link,.mega-menu-item:hover .mega-menu-link{
	font-style:italic;
	transition:all 0.5s ease;
}
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
    transform: scale(1) !important;
}
/*---------------banner--------------------*/

  .banner-content{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
     right: 0;
    margin: 0 auto;
    z-index: 999;
    width: 100%;
  }
  
 .home-title span, .baffle {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 54px;
  text-transform: uppercase;
 }
  .baffle {
    margin: 0;
    font-style: italic;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .banner-image{
    height: 500px;
  }
  .banner-image img{
	width:100%;
    height: 100%;
    object-fit: cover;

    animation: zoomInStay 4s ease-in-out forwards;
  }

  @keyframes zoomInStay {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}
  @media screen and (min-width:991px){
    .home-title span, .baffle {
      font-size: 70px;
      line-height: 104px;
    }
    .banner-image{
      height: auto;
    }
    .main-btn{
      width: 100%;
    }
  }
 
  
  /* title styles */
  .home-title{
    margin: 0;
  }
  .home-title span {
    position: relative;
    overflow: hidden;
    display: block;
    line-height: 1.2;
  }
  
  .home-title span::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: a-ltr-after 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    transform: translateX(-101%);
  }
  
  .home-title span::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    animation: a-ltr-before 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    transform: translateX(0);
  }
  
  .home-title span:nth-of-type(1)::before,
  .home-title span:nth-of-type(1)::after {
    animation-delay: 1s;
  }
  
  .home-title span:nth-of-type(2)::before,
  .home-title span:nth-of-type(2)::after {
    animation-delay: 1.5s;
  }
  
  @keyframes a-ltr-after {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(101%);
    }
  }
  
  @keyframes a-ltr-before {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(200%);
    }
  }
  
  .hidden {
    visibility: hidden;
  }
  
  .visible {
    visibility: visible;
    opacity: 1;
  }
  
.banner-subtext{
text-transform: uppercase;
font-family: SuisseIntl-Regular;
font-size: 20px;
font-weight: 400;
line-height: 33.72px;
text-align: left;
color: rgba(191, 191, 191, 1);
}
.banner-subtext label{
  font-family: SuisseIntl-RegularItalic;
  font-size: 20px;
  font-style: italic;
  font-weight: 450;
  line-height: 33.72px;
color: #fff !important;
}
/**/
.main-btn{
  font-family: SuisseIntl-Bold;
  font-size: 15px;
  line-height: 34.35px;
  position: relative;
  width: 210px;
  padding: 12px 31px 9px 20px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width:991px){
  .main-btn{
    font-size: 18px;
  }
}
.main-btn svg {
  position: absolute;
  right: 8px;
  top:27%;
  width: 24px;
  fill: #000;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.main-btn:hover {
  background-color:#fff;
  transform: scale(1.05);
  color: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.main-btn:active {
  transform: scale(0.9);
}

.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), #00bfff);
  transition: all 0.85s ease-in-out;
  z-index: -1;
  border-radius: 50px;
}

.main-btn:hover::before {
  right: 100%;
}


/*---------------banner--------------------*/

.title{
  font-family: SuisseIntl-Bold;
  font-size: 28px;
  font-weight: 700;
  line-height: 41.5px;
  letter-spacing: -0.01em;
  text-align: left;
  z-index:999;
  position:relative;
}

.italic-text{
  font-family: SuisseIntl-RegularItalic;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  line-height: 45px;
  position: relative;
  display: inline-block;
}


@media only screen and (min-width: 991px) {
  
 .title,.italic-text{
  font-size: 38px;
  line-height: 53px;
  }
}

/*-------------client section--------------*/
.client-section{
  background: rgba(13, 13, 13, 1);
  border-top: 1px solid #343434;
}
.client-section .title{
  font-family: SuisseIntl-Bold;
  font-size: 22px;
  font-weight: 700;
  line-height: 41.5px;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

@media only screen and (min-width: 991px) {
  .client-section .title{
    font-size: 32px;

  }
}


.services-ticker-block {
  position: relative;
  display:flex; 
  align-items:center;
  overflow-x: hidden;
}

.stb_line_single {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;
}
.stb-item {
  padding: 0;
  display: inline-block;
  margin-right: 10rem;

}


.stb-item .box img{
    filter: grayscale(100%);
  height: 50px;
  object-fit: contain; 
}

.stb-item:hover .box img{
     filter: grayscale(0);
}











/*-------------client section--------------*/

/*--------------about-----------------*/

.about-section .title,.contact-form .title,.single-team .title{
  font-family: SuisseIntl-Regular;
  font-size: 30px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 0;
  color: rgba(12, 12, 12, 1);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.about-section .italic-text,.contact-form .italic-text{
  font-family: SuisseIntl-RegularItalic;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  line-height: 45px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  transition: width .25s ease-out;
}

.about-section .italic-text:hover::after{
  width: 100%;
  transition: width .25s ease-out;
}
@media only screen and (min-width: 991px) {
  .about-section .title,.contact-form .title,.about-section .italic-text,.contact-form .italic-text,.single-team .title{
    font-size: 42px;
    line-height: 64px;
  }
}
.about-section .italic-text::after,.contact-form .italic-text::after{
  content: '';
  position: absolute;
  width: 40px;
  height: 6px;
  background: var(--neongreen);
  bottom: -4px;
  left: -8px;
  transform-origin: left;
  transition: width 0.3s ease;
}
.about-para{
  font-family: SuisseIntl-Regular;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: rgba(77, 77, 77, 1);
  
}

.btn {
  width: 180px;
  height: 50px;
  /* background: linear-gradient(to top, #00154c, #12376e, #23487f); */
  background: var(--neongreen);
  color: #000;
  border-radius: 50px;
  border: 2px solid var(--neongreen);
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 15px 30px rgb(0 0 0 / 19%);
  overflow: hidden;
}
.btn:hover{
  background: rgba(51, 51, 51, 1);
  color: var(--neongreen);
}
.btn span {
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: top 0.5s;
}

.btn-text-one {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.btn-text-two {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  transform: translateY(-50%);
}

.btn:hover .btn-text-one {
  top: -100%;
}

.btn:hover .btn-text-two {
  top: 50%;
}


.img-reveal-col{
 
  position: relative;
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}
/*--------------about-----------------*/

/*services*/
.services-section .para{
  font-family: SuisseIntl-Regular;
font-size: 18px;
font-weight: 400;
line-height: 30px;
letter-spacing: -0.01em;
text-align: center;
color: rgba(51, 51, 51, 1);
}

.image {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 20;
  box-shadow: 10px 10px 53px 0px rgba(0, 0, 0, 0.49);
}

.card-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 10px 10px 53px 0px rgba(0, 0, 0, 0.49);
}
.services-row .card:hover .image {
  filter: blur(1.4px);
  transform: scale(1.5);
  overflow: hidden;
  transition: all 0.3s linear;
  box-shadow: inset -6px -1px 32px 0px rgba(0, 0, 0, 0.75);
}
.services-row .card:hover .card-bottom {
  height: 100%;
  transform: translate(0%, -50%);
  transition: all 0.8s ease;
    top: 50%;
  background-color: #0f0cadc7;
}

.card-top {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-bottom {
  width: 100%;
  position: absolute;
  z-index: 20;
  display: nonee;
  top: 50%;
  background-color: var(--primary-color);
  padding: 30px 20px;
  color: #ffffff;
  transform: translate(100%, -50%);
}

.top-text {
  font-family: SuisseIntl-RegularItalic;
  font-size:14px;
  font-style: italic;
  font-weight: 450;
  line-height: 25px;
  text-align: left;
  /*text-transform: uppercase;*/
  
}
.service-name{
  font-family: SuisseIntl-Regular;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: rgba(15, 12, 173, 1);
  text-transform: uppercase;
  margin: 0;
}
.service-meta {
  border-bottom: 1px solid rgba(191, 191, 191, 1);
  padding: 10px 0;
}

.target-icon{
  display: flex;
      justify-content: center;
      align-items: center;
  background: rgba(15, 12, 173, 1);
  width:48px;
  height: 48px;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.5s ease;
}
.services-row .card:hover .target-icon{
  transform: rotate(-45deg);
  background: #000;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 991px) {
  .top-text {
    font-size: 22px;
    line-height:35px;
  }
}
/*services*/

/*----about info----*/

.about-info{
background: url(../../images/about-us.webp) no-repeat center/cover;
}
.about-info .intro-para p{
  font-family: SuisseIntl-Regular;
font-size: 18px;
font-weight: 400;
line-height: 30px;
letter-spacing: -0.01em;
color: Black;
}


.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {

  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: var(--primary-color);
  background-image: none;
  color: #fff;
  cursor: pointer;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-23:disabled {
  cursor: default;
}

.btn-23:-moz-focusring {
  outline: auto;
}

.btn-23 svg {
  display: block;
  vertical-align: middle;
  margin-top: -4px;
}

.btn-23 [hidden] {
  display: none;
}

.btn-23 {
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-23 span {
  font-family: SuisseIntl-Bold;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.35px;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-23 .marquee {
  --spacing: 8em;
  --start: 0em;
  --end: 8em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}

.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-23:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}


 .intro-grid-section{
    background: linear-gradient(180deg, transparent 40%, #0f0cad 40%);
  }
  .info-grids .title{
    font-family: SuisseIntl-Bold;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
text-align: left;
color: #fff;
margin: 10px 0;
text-transform: uppercase;
  }

  .info-grids p{
    color: #fff;
  }
.info-grids .img-div{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 500px;
  vertical-align: top;
  overflow: hidden;
}
.info-grids .img-div:after{
  content: '';
  position: absolute;
  background: #04032c75;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.info-grids .img-div img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .35s ease-out;
}

.info-grids .content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 50;
}
.info-grids .content .inner{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 70px 70px 35px 55px;
}
.info-btn{
    display: flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      border: 1px solid #fff;
      border-radius: 50%;
      margin-top: 20px;
          transition: all 500ms ease;
}
.info-grids .items:hover .img-div:after{
  background:#04032ce3;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.info-grids .items:hover .info-btn svg{
  transform: rotate(45deg);
    transition: all 500ms ease;
}
  .msg-infogrid .title{
     font-size: 35px;
     line-height: 40px;
        -webkit-text-stroke: 1px #fff;
        color: transparent;
        text-align: center;
  }
@media only screen and (min-width: 991px) {
  .info-grids .title{
    font-size: 25px;
    line-height: 40px;
  }
  .msg-infogrid .title{
     font-size: 50px;
    line-height: 55px;
    text-align:left;
  }
}
/*----about info----*/

/*------------features----------------*/
.features{
  background: var(--primary-text);
}
.features .item-title{
  font-family: SuisseIntl-Regular;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
}
.features .item-desc{
  font-family: SuisseIntl-Regular;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: rgba(191, 191, 191, 1);
  
}
.icon-col{
  margin-bottom: 7%;
}


/*----about info----*/

/*------------features----------------*/
.features{
  background: var(--primary-text);
}
.features .item-title{
  font-family: SuisseIntl-Regular;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
}
.features .item-desc{
  font-family: SuisseIntl-Regular;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: rgba(191, 191, 191, 1);
  
}
.icon-col{
  margin-bottom: 7%;
}
.benefit-section  .icon-col img{
  width: 80px;
  height: 80px;
}
/* .icon-col img{
      transform: scale(1.5);
}*/
/*------------features----------------*/


/*--------treatments-----------*/
.treatments-section{
  background: url('../../images/latitude-bg.webp') no-repeat left/cover;
}
.treatments-section .para{
  font-size: 18px;
  z-index: 1;
  position: relative;
}
.treatments-section .icon-col{
  height: 45px;
  width: 45px;
  position: relative;
  margin: 0 auto;

}
.treatments-section .icon-col:before{
  content: '';
  display: block;
  height: 50px;
  width: 50px;
  background: #dbdbeb;
  position: absolute;
  left: 46%;
  top: -28%;
  z-index: -1;
  border-radius: 50%;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  
}
.treatments-section .icon-col img{
  width: 100%;
  height: 100%;
}
/* From Uiverse.io by SouravBandyopadhyay */ 
.treatments-section .card-title {
  font-family: SuisseIntl-Bold;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}




.go-corner {
  display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 3em;
      height: 3em;
      overflow: hidden;
      top: 0;
      right: 0;
      background: var(--primary-color);
      border-radius: 0 0px 0 30px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  transform: rotate(-45deg);
  font-size: 20px;
  transition: all 0.5s ease;
}

.treatments-section .card {
  display: block;
  position: relative;
  max-width: 100%;
  /* max-height: 320px; */
  background-color: #fff;
  border-radius: 10px;
  padding: 2em 1.2em;
  /* margin: 12px; */
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  /* background: linear-gradient(to bottom, #c3e6ec, #a7d1d9); */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.treatments-section .card:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: var(--primary-color);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.treatments-section .card:hover:before {
  transform: scale(28);
}

.treatments-section .card:hover .small-desc {
  transition: all 0.5s ease-out;
  color: #ffffffcc;
}

.treatments-section .card:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}
.treatments-section .card:hover .go-arrow {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.treatments-section .card:hover .icon-col:before{
  left: 0;
  top: 0;
  background: #fff;
  transform: scale(1.5);
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;

}
.treatments-section .sticky-line {
  position: absolute;
  top:0;
}
.treatments-section .sticky-line .word{
  -webkit-text-stroke: 2px #dbdbeb;
  z-index: -1;
  position: relative;
}




/*--------treatments-----------*/.swiper-containter {
}
.swiper-container,
.swiper-wrapper {
  padding-bottom: 2%;
  /* height: 100vh; */
  background: none;
  display: flex;
  align-items: flex-end;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  /* display: flex; */
  align-items: flex-end;
  width: auto;
  /* margin-right: 25px; */


}
.swiper-progress-bar {
  position: absolute;
  bottom: 0px; 
      left: 50%;
    transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background-color:#c1c1c1; 
}

.swiper-progress-bar-fill {
  height: 100%;
  width: 0;
  background-color:var(--primary-color);
  transition: width 0.3s;
}

.projectInfo {
  position: absolute;
  /* margin: 14px 0 13px 0; */
  top: 40%;
  left: 5%;
  right: 5%;
 
  .category,
  .medium {
    text-transform: none;
    opacity: 0.4;
  }
  .medium {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 100px;
    font-style: italic;
    padding: 0px 7px 1px 7px;
  }
}


.thumbContainer {

  position: relative;
  opacity: 1;
  /* transform: translateY(60%); */
 height: 430px;
}
@media only screen and (min-width: 991px) {
  .features .title,.features .italic-text,.text-gray{
    font-size: 42px;
    line-height: 64px;
   
  }
  .swiper-progress-bar {
    bottom: 10px;
  }
  .projectInfo {
    top: 70%;
  }
}
@media only screen and (max-width: 960px) {
  .thumbContainer img{
    height: 400px;
    object-fit: cover;
  }
}
.img-container:after{
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  display:inline-block;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, #000000 100%);
}


.fadeInSlide {
  animation-name: fadeInSlide;
  animation-duration: 5s;
  animation-timing-function: cubic-bezier(1, 0.055, 0.32, 1);
  animation-fill-mode: forwards;
}

@keyframes fadeInSlide {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
.featured-section .featured-title{
  font-family: SuisseIntl-Bold;
font-size: 20px;
font-weight: 700;
line-height: 26px;
text-align: left;
color: rgba(255, 255, 255, 1);
position: relative;
display: inline-block;
}

.featured-section .featured-title:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 15px;
  height: 4px;
  background: var(--neongreen);
  transition: width .35s ease-out;
}
.featured-para p{
  font-family: SuisseIntl-Regular;
font-size: 16px;
font-weight: 400;
line-height: 26px;
text-align: left;
color: rgba(191, 191, 191, 1);

}

.swiper-slide:hover .featured-title:after{
  width: 100%;
  transition: width .35s ease-out;
}


.animated-text1 {
  position: relative;
  /* font-size: 2rem; */
  opacity: 1;
  transform-origin: 50%;
  /* width: 0; */
  transform: translateX(0%)  rotate(0deg) scale(1);
}

.featured-section .method-counts{
  font-size: 75px;
  line-height: 80px;
  font-family: SuisseIntl-Bold;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
  margin-bottom: 25px;
  transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
}
.featured-section .card{
border: 1px solid #cbcbcb;
display: flex;
justify-content: center;
background:#dddddd;
transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
}
.featured-section .card:hover .method-counts{
  -webkit-text-stroke: 1px #fff;
  transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
}
.swiper-container {
  overflow: visible;
}
.swiper-button-prev,.swiper-button-next{
  top: -8%;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;

}

@media screen and (max-width: 769px) {
  .swiper-button-prev,.swiper-button-next{
    display:none;
  }
}

@media only screen and (min-width: 991px) {
      .swiper-button-prev{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='rgba(15, 12, 173, 1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14M5 12l6 6m-6-6l6-6'/%3E%3C/svg%3E");
  opacity: 1;
}
.swiper-button-next{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='rgba(15, 12, 173, 1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14m-6 6l6-6m-6-6l6 6'/%3E%3C/svg%3E");
  opacity: 1;
}
  
  .swiper-button-prev{
    left: 90%;
  }
  .swiper-button-next{
  right: 2%;
}
}

/*-------------method------------*/

.method-section .title{
  font-family: SuisseIntl-Regular;
font-size: 30px;
font-weight: 400;
line-height: 45px;
color: #000;
text-align: center;
}
.method-section .sub-title{
  font-family: SuisseIntl-Regular;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-align: center;
}

.method-section  .text-highlight,.method-section .card-title{
  font-family: SuisseIntl-Bold;
font-size:25px;
font-weight: 700;
line-height: 30px;
color: var(--primary-color);

}


.methods-container .card{
  background: #bfbfbf;
  border: 1px solid rgba(217, 217, 217, 1);
  position: relative;
  z-index: 9999;
  cursor: pointer;

}


  
.featured-section .card-title{
  font-family: SuisseIntl-Bold;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: uppercase;
  color: var(--primary-color);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.count-1:hover{
  background: url('../../images/Appointment-Scheduling.webp')#0f0cad no-repeat center/cover;
  background-blend-mode: overlay;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  }
  .count-2:hover{
    background: url('../../images/chiro3.webp')#0f0cad no-repeat center/cover;
    background-blend-mode: overlay;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    }
    .count-3:hover{
      background: url('../../images/one-to-one.webp')#0f0cad no-repeat center/cover;
      background-blend-mode: overlay;
      transition: all 0.5s ease;
      -webkit-transition: all 0.5s ease;
      }
      .count-4:hover{
        background: url('../../images/Diagnosis-and-Education.webp')#0f0cad no-repeat center/cover;
        background-blend-mode: overlay;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        }
        .count-5:hover{
          background: url('../../images/Treatment-Plan-Customization.webp')#0f0cad no-repeat center/cover;
          background-blend-mode: overlay;
          transition: all 0.5s ease;
          -webkit-transition: all 0.5s ease;
          }
.count-6:hover{
  background: url('../../images/chiro1.webp')#0f0cad no-repeat center/cover;
  background-blend-mode: overlay;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  }

  .count-7:hover{
    background: url('../../images/progress.webp')#0f0cad no-repeat center/cover;
    background-blend-mode: overlay;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    }

    .count-8:hover{
      background: url('../../images/feel-difference.webp')#0f0cad no-repeat center/cover;
      background-blend-mode: overlay;
      transition: all 0.5s ease;
      -webkit-transition: all 0.5s ease;
      }
  .featured-section .card:hover .card-title,  .featured-section .card:hover p{
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
  }


.method-count{
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  font-family: SuisseIntl-RegularItalic;
font-size: 28px;
font-style: italic;
font-weight: 450;
line-height: 24px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: -6%;
left: 0;
}


.methods-container .card p{
  font-family: SuisseIntl-Regular;
  font-size: 19px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.01em;
  text-align: left;
  color: rgb(0 0 0);
}







@media only screen and (min-width: 991px) {
  .method-section .sub-title{
    font-size: 36px;
  }
  .method-section  .text-highlight{
    font-size: 30px;
    line-height: 35px;
  }
  /* .mr-card{
    margin-right: -25%;
    margin-left: 25%;
  }
  .ml-card{
    margin-left: -25%;
    margin-right: 25%;
  } */
  .method-count.right{
    top: 20%;
    right: -7%;
    left: unset;
  }
  .method-count.left{
    top: 20%;
   left: -7%;

  }
}





/*-------------method------------*/
/*highlight-cta*/
.highlight-cta .sub-caption{
  font-family: SuisseIntl-Regular;
  font-weight: 400;
  letter-spacing: 1px;
  color: #cccccf;
  text-transform: uppercase;
  font-size: 18px;

}
.highlight-cta .caption{
  font-family: SuisseIntl-Bold;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  position: relative;
  transition: all 0.5s ease; 
}

.highlight-cta p{
  font-size: 21px;
  line-height: 33px;
  color: #9a9ea1;
  margin: 0;
}
.sticky-arrow{
  position: absolute;
  top: 5%;
  right: 5%;
  opacity: 0.4;
}
@media only screen and (min-width: 991px) {
  .highlight-cta .caption{
    font-size: 50px;
  }
  .highlight-cta .caption::before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2.5em' height='2.5em' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 2v28M2 16h28'/%3E%3C/svg%3E");
    position: absolute;
      left: -6%;
      top: -7%;
  }
}
/*highlight-cta*/

/*--testimonial section--*/

.testimonial-section{
  background: rgba(13, 13, 13, 1);
}

/*--testimonial section--*/


/*contact*/
.contact-info .italic-text{
font-family: SuisseIntl-RegularItalic;
font-size: 30px;
font-style: italic;
font-weight: 600;
line-height: 45px;
text-align: center;
position: relative;
display: inline-block;
}

.contact-info .italic-text::after{
  content: '';
  position: absolute;
  width: 22px;
  height: 6px;
  background: var(--neongreen);
  bottom: -4px;
  left: 45%;
  transition: width .25s ease-out;
}

/*contact*/






/*---------faq section----------*/
.faq-section{
  background: #000000;
}




.faq-section .accordion {
  width: 100%;
 
}
.faq-section .accordion-item{
  background: none;
}

.faq-section .accordion-button:not(.collapsed) {

  background-color: transparent;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:before {
  content: "";
  position: absolute;
     right: 0.75rem; 
  right: 0.75rem;
  top: 1.25rem;
  height: 2px;
  width: 1rem;
  background-color: #fff;
}
.faq-section .accordion-button.collapsed:after {
  content: "";
  position: absolute;
  right: 1.1875rem;
  top: 0.8125rem;
  height: 1.0625rem;
  width: 0.125rem;
  border-style: none;
  background-color: #fff;
}

.faq-section .accordion-button h5 {
 
  color: #fff;
  margin-right: 13px;
  font-family: SuisseIntl-Regular;
font-style:italic;
font-size: 18px;
line-height: 26px;
}
.faq-section .accordion-body {

  color: #b3b3b3;
  font-family: SuisseIntl-Regular;
font-size: 18px;
line-height: 32px;

}
.faq-section .accordion-button,.accordion-header{
	padding:2%  !important;
background: transparent;
}

.faq-section .accordion .accordion-body ul{
  margin-top: 20px;
}
.faq-section .accordion .accordion-body ul li{
  position: relative;
  display: flex;
  gap: 15px;
}
.faq-section .accordion .accordion-body ul li::before{
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 20 20'%3E%3Cg fill='%23fff' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cg opacity='0.2'%3E%3Cpath d='M8.856 6.357A1.5 1.5 0 0 1 10.486 5l5.185.472a1.5 1.5 0 0 1-.271 2.987l-5.186-.471a1.5 1.5 0 0 1-1.358-1.63'/%3E%3Cpath d='M16.143 13.644a1.5 1.5 0 0 1-1.63-1.358L14.042 7.1a1.5 1.5 0 0 1 2.987-.271l.472 5.185a1.5 1.5 0 0 1-1.358 1.63'/%3E%3Cpath d='M15.182 7.318a1.5 1.5 0 0 1 0 2.121l-5.657 5.657a1.5 1.5 0 1 1-2.121-2.121l5.657-5.657a1.5 1.5 0 0 1 2.12 0'/%3E%3C/g%3E%3Cpath d='M7.852 5.952a.5.5 0 0 1 .543-.453l5.186.472a.5.5 0 0 1-.09.996l-5.186-.472a.5.5 0 0 1-.453-.543'/%3E%3Cpath d='M14.052 12.152a.5.5 0 0 1-.543-.453l-.472-5.185a.5.5 0 0 1 .996-.09l.472 5.185a.5.5 0 0 1-.453.543'/%3E%3Cpath d='M13.354 6.65a.5.5 0 0 1 0 .708l-6.536 6.535a.5.5 0 0 1-.707-.707l6.535-6.536a.5.5 0 0 1 .707 0'/%3E%3C/g%3E%3C/svg%3E");

}
@media screen and (min-width: 768px) {
	.faq-section .accordion-button,.accordion-header{
		padding:1% 0 !important;
	}

  .faq-section .accordion-button:before {
    right: 0.75rem;
  }

  .faq-section .accordion-button.collapsed:after {
    right: 1.1875rem;
  }

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
	
}

/*---------faq section----------*/

/*---article---*/



.blog-img{
  width: 100%;
  height: 300px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
.blog-img::after{
  content: '';
  position: absolute;
  background:#00000085;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.blog-img img{
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.blog-row .items{
  position: relative;
}
.blog-row .content{
  position: absolute;
  bottom: 15%;
  left: 10%;
  right: 10%;
}
.blog-row .blog-title{
  font-family: SuisseIntl-Bold;
  font-weight: 700;
  color: #fff;
}

.blog-cat{
  color: #c7c7f3;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.blog-row .items:hover img{
  transform:scale(1.1);  transition: all 0.5s ease;
}

.blog-btns{
  width: 50px;
  height: 50px;
  background: #02025b;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 10%;
  right: 10%;
  opacity: 0;
  transition: all 0.5s ease;
}
.blog-row .items:hover .blog-btns{
  opacity: 1;
  transition: all 0.5s ease;
}


.readmore-button {
  text-transform: uppercase;
  line-height: 1;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  border: 2px solid #fff;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.readmore-button:hover {
  background-color: #000;
}

.readmore-button:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.readmore-button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.readmore-button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@media only screen and (min-width: 991px) {
  .blog-img{

    height: 400px;
  }
}
/*---article---*/

/*---------------animated text--------------------*/





.word-lines {
  overflow-x: auto;
  white-space: nowrap;
  display: block;
}

.word-lines > * {
  display: inline-block;
}

.word{
  display: inline-block;
  font-family: SuisseIntl-Bold;
  -webkit-text-stroke: 2px #202020;
  text-transform: uppercase;
  font-size: 60px;
  text-align: left;
  color: transparent;

}

@media only screen and (min-width: 991px) {
  .word,.mark-sign {
    font-size: 180px;
    letter-spacing: 1px;
  }
}
/*---------------animated text--------------------*/

/*--------contact-section-----------*/

.map-row{
  background: rgba(242, 242, 242, 1);
  margin-bottom: -15%;
  z-index: 9999;
  position: relative;
}
.map-section iframe{
  border:0;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  border: 2px solid rgba(217, 217, 217, 1);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

form .form-control{
  background: none;
  border: none;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  border-radius: 0;
  color: rgb(56, 66, 6);
font-size: 15px;
line-height: 28px;
text-align: left;
padding: .375rem 0rem;
}
.form-control::placeholder{
font-family: SuisseIntl-Regular;
font-size: 18px;
font-weight: 400;
line-height: 28px;
color:rgba(77, 77, 77, 1);
opacity: 1;
}
.form-control:focus {
  background-color:transparent;
  color: rgba(82, 101, 1, 1);
  border-color: #000000;
  box-shadow: none;
}

/*submit btn hover*/
input[ type="submit"]{
  background: none;
  border: none;
  color: #fff;
  font-size: 13px;
  text-align: left;
  letter-spacing: 0.8px;
  font-family: SuisseIntl-Bold;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.35px;
}


/* From Uiverse.io by abrahamcalsin */ 
.submit-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--primary-color);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-radius: 500px;



}

.submit-btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background:#000;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.submit-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.submit-btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 13px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.submit-btn :hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}


/*--------contact-section-----------*/

/*footer*/
footer{
    background: rgba(13, 13, 13, 1);
    
    
}

.footer-title{
    font-family: SuisseIntl-Bold;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.contact-details a{
  font-family: SuisseIntl-Regular;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}


footer .social-list ul,.social-belt ul{
    display: flex;
    padding-left: 0;
    gap: 8px;
}

.quick-list li{
    margin-bottom: 10px;
}
.text-time{
  width: 125px;
}
.quick-list ul li a,.quick-list ul li{
  font-family: SuisseIntl-Regular;
font-size: 14px;
font-weight: 400;
line-height: 26px;
text-align: left;
color: rgba(255, 255, 255, 1);

}
.quick-list.working-hours{
	line-height: 35px;
    color: #fff;
}
.quick-list li:hover a,.contact-details .list:hover a{
  color:rgba(255, 255, 255, 1);
  transition: all 0.5s ease;
}

.social-list ul li img{
  transition: all 0.5s ease;
}
.social-list ul li:hover img{
margin-top: -5px;
transition: all 0.5s ease;
cursor: pointer;
}

.copyright{
    border-top: 1px solid rgba(77, 77, 77, 1);
}
.copyright p{
  font-family: SuisseIntl-Regular;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(77, 77, 77, 1);
}



/*footer*/


/*innerpages*/
  .inner-banner{

    height:55vh;
  }
    .inner-banner .sticky-arrow{
       transform: scale(0.5);
    }
 .entry-title:before{
     content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3.5em' height='3.5em' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 2v28M2 16h28'/%3E%3C/svg%3E");
    position: absolute;
    left: -6%;
    top: -82%;
    opacity: 0.5;
    }
@media screen and (min-width:960px){
  .inner-banner{
    height: 100vh;

  }
  .inner-banner .sticky-arrow{
        transform: scale(1.5);
        top: 23%;
    right: 33%;
    opacity:0.3;
  }
  .entry-title{
    font-size:6vw !important;
    line-height: 85px;
  }
   
}
.title-banner-content{
	width:100%;
    position: absolute;
  top: 60%;
  transform: translateY(-60%);
}
.entry-title{

  font-size:7vw;
  font-family: SuisseIntl-Bold;
  font-weight: 700;
  text-transform: uppercase;

}
.breadcrumb-wrapper-inner svg{
  background:  var(--primary-color);
  padding: 5px;
  height: 30px;
  width: 30px;
}
.current-item{
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  padding: 7px 10px 5px;
  text-transform: uppercase;
  font-size: 12px;
}

/*contact*/
.contact-col{
  background: #333;
}
.map-banner{
  background: var(--primary-color);
}
.contact-col .img-div{
  display: flex;
  align-items: center;
}
.info-title{
  text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
  /* font-weight: 700; */
  /* font-family: SuisseIntl-Bold; */
  color: #bbbbbb;
}
.info-anchor,.info-anchor a{
  font-family: SuisseIntl-Bold;
  font-size: 23px;
  text-align: start;
  color: #ffffff;
}
.map-col{
  background: rgba(242, 242, 242, 1);
}

.contact-form .form-control {
  width: 100%;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-radius: 0;
  border-color: #6d6d6d;
  background-color: transparent;
  color: #fff;
  padding: 10px 18px;
}
.mb-30 {
  margin-bottom: 30px;
}
/*contact*/

/*blog*/







.cat-item{
  position: relative;
margin-bottom: 13px;
padding-bottom: 13px;
border-bottom: 1px solid #E7E9EE;
padding-top: 0;
}
.cat-item a{
  color: #57586b;
  font-size: 16px;
      display: flex;
align-items: center;
justify-content: space-between;
font-weight: 500;
}
.searchform{
position:relative;
}
.searchform input[type="text"],.searchform label{
  margin-bottom: 0;
width: 100%;
background: #F3F4F5;
height: 60px;
border: 0;
color: #000;
padding:0 0 0 20px;
}
.searchform span{
position:absolute;
}
.searchform span:after{

  color: #fff;
font-family: FontAwesome;
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' d='m10 10l3.5 3.5m-2-7a5 5 0 1 1-10 0a5 5 0 0 1 10 0Z' stroke-width='1'/%3E%3C/svg%3E");
font-size: 23px;
position: absolute;
right: 19px;
top: 17px;
pointer-events: none;

}
#searchsubmit{
position: absolute;
top: 7px;
font-size: 18px;
color: #fff;
height: 46px;
width: 46px;
right: 8px;
background: transparent;
margin-top: 0;
background-color:#0f0cad;
border-radius: 3px;
border:none;
}


@media only screen and (min-width: 991px){
.events-slider .event-title a{
  font-size: 21px;
}
}
@media only screen and (max-width: 768px){
.events-slider .card {
filter: none !important;
border: 1px solid rgb(224, 224, 224);

}
}

@media only screen and (min-width: 768px) and (max-width: 990px){
.blog-row .slick-prev{
  left: 38%;
}
.blog-row .slick-next{
  right: 38%;
}
}
.tag-list{
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
align-items: center;
margin: -10px;
}
.blog-content-meta{
background:#0f0cad;
}
.blog-content{
color: #a9a9a9;
}
.blog-content .sqs-html-content h3,.blog-content  h3 strong{
     font-family: SuisseIntl-Bold;
    color: #000;
    font-size: 19px;
    line-height: 27px;
    font-weight: 700;
    text-transform: uppercase;
}
.tag-list a,.blog-content-meta .tags a{
  line-height: 1.54em;
  letter-spacing: .2em;
  text-transform: uppercase;

  background-color: #f6f6f6;
  color: #000;
  margin: 0 8px 11px 0;
  padding: 12px 23px;
  font-size: 11px !important;
  display: inline-block;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;

}

.blog-content-meta .list ul{
display:flex;
}
.tag-list a:hover,.blog-content-meta .tags a:hover{
background:var(--neongreen);


}
.service-quick li:hover a{
color:#ff712b;
}
.service-quick li:last-child{
border-bottom:none;
}
.blog-meta ul{
display:flex;
padding:0;
gap:25px;
}
.blog-meta ul li{
  color: #fff;
  font-size: 11px;
  line-height: 1.54em;
  display: inline-block;
  font-weight: 100;
  
  letter-spacing: .2em;
  text-transform: uppercase;
}

.comment input[type="submit"]{
font-size: 16px;
font-weight: 600;
text-transform: None;
color: #fff;
border-style: none;
padding: 21px 50px 23px;
align-self: center;
position: relative;
display: inline-block;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
line-height: 1.1;
letter-spacing: -.3px;
transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75);
background-color: #0f0cad;
}
.comment input[type="text"],.comment input[type="email"],.comment input[type="url"]{

}
.comment input[type="text"],.comment input[type="email"],.comment input[type="url"],.comment textarea{
width:100%;
background: #F3F4F5;
color: #000;
border: 0;
height: 60px;
margin-bottom: 20px;
border: 2px solid transparent;
padding: 20px;
}
.comments-area{
border-top:1px solid #d5d3d3;
padding-top:5%;
}


.blog-title,.blog-title a{
  font-family: SuisseIntl-Bold;
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;;
  position: relative;
}
.blog-content p{
  font-family: SuisseIntl-Regular;
  font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .3px;
    color: #7b7b7b;
}
@media screen and (min-width:991px){
  .blog-title.blog-title a{
    font-size: 30px;
    line-height: 35px;
  }
}
.service-img{
  height: 450px;
}
.service-img img{
  object-fit: cover;
}
.single-blog .entry-title {
	    font-size: 5vw;
}
.single-blog 
 .highlight-title{
  font-family: SuisseIntl-Bold;
  color: #fff;
  line-height: 1.2em;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
 }
 .list-anchor ul li{
  margin: 0 0 10px;
 }
 .list-anchor ul li a,.quick-meta {
  font-size: 12px;
  letter-spacing: .2em;
  color: #c9c7c7;
  position: relative;
  text-transform: uppercase;
  transition: color .2s ease-out;
 }
 .quick-meta {
  width: 100px;
 }
 .list-anchor ul li a:after{
 content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: currentColor;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
 }
 .list-anchor ul li:hover a:after{
  width: 100%;
 }

 .related-post h6{
  font-family: SuisseIntl-Bold;
  font-size: 15px;
    line-height: 1.2em;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 800;
    /* margin: 25px 0; */
    color: #000;
 }
 .related-post .date{
  font-family: SuisseIntl-Regular;
  font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .5px;
    color: #7b7b7b;

 }
/*blog*/

/*physiotherapy*/

.what-to-expect{
  background: #0d0d0d;
}
.sec-title{
  font-family: SuisseIntl-Bold;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  letter-spacing: -0.01em;
}
.intro-section,.bg-gray{
  background: rgb(165 165 165 / 58%);
}
.intro-section .sec-title{
  font-size: 35px;
  line-height: 45px;
  z-index: 999;
  position: relative;

}

@media screen and (min-width:991px){
  .sec-title{
    font-size: 40px;
    line-height: 52px;
    z-index: 999;
        position: relative;
  }
  .intro-section .sec-title{
    font-size: 70px;
    line-height: 90px;
  }
}
.about-section .intro-text-border .word{
  font-size: 100px;
  position: absolute;
  transform: rotate(-90deg);
  left: -11%;
  top: 40%;
  opacity: 0.1;

}

.intro-section .intro-text-border .word{
  font-size: 138px;
  line-height: 76px;
  position: absolute;
  top: 21%;
  /* opacity: 0.1; */
  right: 5%;
  -webkit-text-stroke: 2px #2020200f;
}


.about-section p{
  font-family: SuisseIntl-Regular;
  font-weight: 400;
  letter-spacing: 0.24px;
  color: #000;
}
.what-to-expect .para p,.intro-section p{
  font-family: SuisseIntl-Regular;
  font-weight: 400;
  letter-spacing: 0.34px;
  color: #fff;
  z-index: 1;
  position: relative;
}
.what-to-expect .para p,.intro-section p,.about-section p{
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width:991px){
  .about-section p{
    font-size: 19px;
    line-height: 30px;
  }
  .what-to-expect .para p,.intro-section p{
    font-size: 19px;
    line-height: 30px;
  }

}
.hr-line{
  height: 8px;
  width: 70px;
  background: var(--primary-color);
  -webkit-transform: skewX(150deg);
  z-index: 999;
  position: relative;
}
.what-to-expect .marquee-bottom{
     z-index: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.what-to-expect .item .title,.treatment-method  .italic-text {
  font-family: SuisseIntl-Bold;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width:991px){
  .what-to-expect .item .title{
    font-size:25px;
    line-height: 35px;
  }
}
.what-to-expect .item p{
  font-size: 16px;
  font-weight: 400;
  color: #8b8b8b;
  letter-spacing: 0.34px;
}
.what-to-expect .item img{
  width: 50px;
  height: 50px;
}
.obj-cover{
  object-fit: cover;
}
.col-title{
  color: #cbcbcb;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.treatment-method{
  background: url(../../images/latitude.webp) #ffffffeb no-repeat center / cover;
  background-blend-mode: overlay;
}


@media screen and (min-width:991px){
	
.treatment-method .reveal img{
	height:450px;
	object-fit:cover;
}
  .treatment-method  .italic-text {
  font-size: 40px;
  line-height: 52px;
  }
}
#myTab{
  gap: 15px;
}
#myTab .nav-link{
  width: 100%;
  border-radius: 0;
  border: 0;
  background: #d8dde1;
  font-size: 20px;
  font-weight: 500;
  font-family: SuisseIntl-Regular;
  position: relative;
  padding: 27px 20px;
  color: #000;
  text-align: center;
  letter-spacing: 0.1px;
}
#myTab .nav-link.active,#myTab .nav-link:hover{
  background: var(--primary-color);
  color: #fff;
}
.tab-pane .img-col{
  position: relative;
}
    
.tab-list .tab-content{
background: #2f3336;
}
.tab-list .tab-content .item span{
color: #fff;
font-family: SuisseIntl-Bold;
font-size:20px;
font-weight: 700;
}
.tab-list .tab-content p{
  font-family: SuisseIntl-Regular;
  color: #8b8b8b;
  font-size: 18px;
  font-weight: 400;
}
.tab-list .tab-content .item{
  position: relative;
  color: #8b8b8b;
  font-size: 18px;
  font-weight:400;
  font-family: SuisseIntl-Regular;
  margin: 10px 0;
}
.item{
display: flex;
}
.item svg{
  transform: rotate(-45deg);
}
.item-list{
  margin-left: 10px;
}
.box-icon{
  width: 77px;
  height: 77px;
  line-height: 77px;
  text-align: center;
  margin: 10px 0 40px 10px;
  position: absolute;
  z-index: 1;
  right: 9%;

  
}
.box-icon:before,.box-icon:after {
  content: "";
  position: absolute;
  background: #0f0cad;
  inset: 0;
  z-index: -1;
}
.box-icon:after {
  z-index: -2;
  inset: -10px 10px 10px -10px;
  background: #80848b;
}

.text-highlight{
  font-family: SuisseIntl-RegularItalic;
  font-weight: 450;
  font-style: italic;
  font-size: 16px;
}
@media screen and (min-width:991px){
  .text-highlight{
    font-size: 25px;
  }
}
.why-choose-us{
  background: url(../../images/granular-bg.webp)  no-repeat center/cover;
  background-attachment: fixed;

}

.font-italic{
  font-style: italic;
}

.row-item{
  border-top: 1px solid #373737;
  border-bottom: 1px solid #373737;
  cursor: pointer;
}
.row-item .img-div{
  display: table-cell;
  vertical-align: middle;
  min-width: 255px;
}
.row-item .img-div img{
  width: 100%;
  object-fit: cover;
  max-height: 100px;
/*border-radius: 46px;*/
object-position: center;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
transform-origin: center left;

}
.row-item  .item-title{
  margin-top: 20px;
  font-family: SuisseIntl-Bold;
  font-size: 22px;
  color: #fff;
  transition: all 0.5s ease;
}

.row-item  .item-para,.row-item   ul li{
  color: #fff;
  opacity: 0.7;
  font-size: 18px;
  font-weight:400;
  font-family: SuisseIntl-Regular;
}
.row-item   ul li{
  margin: 5px 0;

 list-style-type: square;
 color: #fff;
}
@media screen and (min-width:991px){
  .row-item  .item-title{
    font-size: 35px;
    margin-top: unset;
  }
  .row-item  .item-title{
    font-size: 28px;
  }
}
.row-item svg{
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}

.row-item:hover svg{
  transform: rotate(0deg);

  transition: all 0.5s ease;
}
.row-item:hover svg path{
  fill: #0f0cad;
}
.row-item:hover img{
  transform: scale(1.2);
  transition: all 0.5s ease;
}
.row-item:hover .item-title{
transform: translateX(20px);
transition: all 0.5s ease;
}

.row-item:last-child{
  border-bottom: none;
}

.benefit-section{

  background: #161616;
  position: relative;
}


.benefit-section .item-title{
  font-family: SuisseIntl-Regular;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
.div-item{
  width: 100%;
  border-right: 1px solid #ffffff11;
  position: relative;
    /* box-shadow: #b4b4b466 0px 7px 29px 0px; */

}

.div-item svg,.div-items svg {
  transform: rotate(-45deg);
  position: absolute;
  bottom: 5%;
  left: 5%;
}
.divider-box {
  height: 90px;
  background: #161616;
  clip-path: polygon(100% -1px, 0 -1px, 0 101%);
}

.condition-list .para{
  font-family: SuisseIntl-Regular;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}
.condition-list ul li{
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.condition-list ul li::before{
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 256 256'%3E%3Cpath fill='%230f0cad' d='m218.83 130.83l-72 72a4 4 0 0 1-5.66-5.66L206.34 132H40a4 4 0 0 1 0-8h166.34l-65.17-65.17a4 4 0 0 1 5.66-5.66l72 72a4 4 0 0 1 0 5.66'/%3E%3C/svg%3E");
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}
.condition-list ul li a{

  margin-left: 10px;
  color: #606060;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.34px;
}
.condition-list .sticky-line{
  position: absolute;
  top: 0;
  left: 15%;
}
.condition-list .sticky-line .word{

  -webkit-text-stroke: 1px #8b8b8b3d;
}






.overlap-section{
  background: #0e0c6e;
}
.overlap-section .para p{
  color: #fff;
  font-family: SuisseIntl-Regular;
  font-size: 15px;
  line-height: 24px;
}
.cta-block{
    background: url(../../images/latitude-inner1.webp) #161616e0 no-repeat center/cover; 
 background-blend-mode: overlay;
  background-attachment: fixed;
}
.cta-dark{
  background: url(../../images/latitude-inner1.webp) #02025b no-repeat center/cover; 
  background-blend-mode: overlay;
  background-attachment: fixed;
}
.condition-list li{
  z-index: 9999;
  position: relative;
  transition: all 0.5s ease;
}
.condition-list li:hover{
  transform: translateX(20px);
  transition: all 0.5s ease;
}
.condition-list ul li a{
  position: relative;
}
.condition-list ul li a:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.5s ease;
}
.condition-list ul li:hover::before {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.condition-list ul li:hover a::after {
  width: 100%;
  transition: all 0.5s ease;
}
.condition-list ul{
  columns: 2;
  padding: 0;
  }
@media screen and (min-width:991px){
  .div-item{
    width: 20%;
  }
  .condition-list ul{
    padding-left: 2rem;
  columns: 3;
  }
/*   .overlap-section .sec-title {
    margin-right: 10%;
    margin-left: -20%;
    position: relative;
    z-index: 9999;
  } */

  .title-right-overlap{
    margin-left: 10% !important;
    margin-right: -20% !important;
   
  }
  .overlap-section .para p{
    font-size: 18px;
  }
  .condition-list .para{
    font-size: 20px;
    line-height: 32px;
  }

  .overlap-section .text-border-1 .word{
    position: absolute;
top: 0;
right: 0;
-webkit-text-stroke: 2px #b9b8d93d;
font-size: 125px;
  }

  .overlap-section .text-border-2 .word{
    position: absolute;
bottom:-10%;
left: 5%;
-webkit-text-stroke: 2px #b9b8d93d;
font-size: 125px;
  }
}
/*physiotherapy*/
  .msg-therapy img{
    height: 300px;
    object-fit: cover;
  }
.msg-therapy .top-text {
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
}
.msg-therapy .top-text strong{
  font-family: SuisseIntl-Bold;
  text-decoration: underline;
}

.msg-infogrid .paras{
    font-size: 22px;
    font-weight: 400;
}
.msg-infogrid .inner{
  background: #000;
  cursor: pointer;
}
.msg-infogrid .info-grids .img-div:after {
background: #000;
}


.msg-infogrid .icon-img{
      width: 200px;
    height:200px;
    position: relative;
}
.msg-infogrid .icon-img svg{
      transform: scale(0.5);
    position: absolute;
    right: -31%;
    top: -30%;
    opacity: 1;
}
.msg-infogrid .icon-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.border-col{
  border-left: 1px solid #5b5bc1;
  border-right: 1px solid #5b5bc1;
}

.cta-dark .sec-title{
  font-family: SuisseIntl-Regular !important;
}



.call-info svg{
  background: var(--primary-color);
  padding: 10px;
}
.cols-1{
  columns: 1 !important;
}
.intro-section ul{
  padding: 0;
}
.intro-section ul li{
  position: relative;
  display: flex
;
  align-items: center;
  gap: 10px;

}

.intro-section ul li::before {
  content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 18l2.5-2.5M18 6H9m9 0v9m0-9l-6.5 6.5'/%3E%3C/svg%3E");

}
.product-container .bg-gray{
	    background: gray !important;
}
.product-content svg{
  transform: scale(1);
}

.product-title{
   font-family: SuisseIntl-Bold;
   font-size: 28px;
   font-weight: 700;
   line-height: 45px;
   text-transform: uppercase;
}
.product_list .col-12:nth-child(2){
	background:var(--primary-color) !important;
	color:#fff !important;
}
 @media only screen and (min-width: 991px) {
  .msg-therapy .top-text {
    font-size: 17px;
    line-height: 30px;
  
  }
  .msg-infogrid .paras{
    font-size: 25px;
  
}
  .msg-therapy .service-name{
    font-size: 18px;
  }
  
.abso-stepcard{

  left: 59%;
  transform: translateX(50%);


}
.abso-stepcard .method-count{
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
}

.odd .card{
  background: #c3c3c3;

}
.cols-md-2{
  columns: 2 !important;
}
.product-content svg{
  transform: scale(1.1);
}

.product-title{
     font-size: 35px;
}

}

.insurance-box .img-div{
display: flex;
justify-content: center;
align-items: center;
height: 150px;
}







/*-------------method------------*/

.faq-section:nth-child(even){
  background: #212529 !important;
}
/*innerpages*/

/*others*/
#mc_embed_signup{
	width:100% !important;
	background:rgba(242, 242, 242, 1) !important;
}
#mc_embed_signup input[type="text"],#mc_embed_signup input[type="email"],#mc_embed_signup select{
	border: none !important;
    border-bottom: 2px solid #000 !important;
    border-radius: 0 !important;
    background: transparent !important;
}
#mc_embed_signup input:focus{
	border:none !important;
	 border-bottom: 2px solid #000 !important;
	outline:none !important;
}
#mc_embed_signup ul li label{
	    margin-left: 10px;
}
@media (min-width: 768px) {
	.col-md-6 {
		width: 50% !important;
	}
