

/**/
body {
    font-size: 13.6px;
    font-family: var(--bs-font-inter-regular);}

/* aos */
html, body {
    overflow-x: hidden !important}


/* number without arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;}
input[type=number] {
    -moz-appearance:textfield;}



/* placeholder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #a9a8a8 !important;}
::-moz-placeholder { /* Firefox 19+ */
  color: #a9a8a8 !important;}
:-ms-input-placeholder { /* IE 10+ */
  color: #a9a8a8 !important;}
:-moz-placeholder { /* Firefox 18- */
  color: #a9a8a8 !important;} 






/* preloader */ 
.preloader-active {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
}
.preloader-active .preloader-area-wrap {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999999;
}
.preloader-active .preloader-area-wrap .spinner div {
  background-color: #086AD8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
          animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.preloader-active .preloader-area-wrap .spinner div.bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.preloader-active .preloader-area-wrap .spinner div.bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.preloader-area-wrap {
  display: none;
}
.open_tm_preloader {
  position: fixed;
  background-color: transparent;
  z-index: 9999;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.open_tm_preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.open_tm_preloader.loaded:before, .open_tm_preloader.loaded:after {
  width: 0%;
}
.open_tm_preloader:before, .open_tm_preloader:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.open_tm_preloader:before {
  top: 0;
  left: 0;
}
.open_tm_preloader:after {
  bottom: 0;
  right: 0;
}






/* btn */
.btn {
    font-size: 13.3px;}
.btn:focus {
    box-shadow: none;
    outline: none;}

/* btn-group */
.btn-group img {
    height: 12px;}

/* close-btn */	
.close-btn {
    position: absolute;
    width: 22px;
    height: 22px;
    cursor: pointer;}
.close-btn:before, 
.close-btn:after {
    position: absolute;
    left: 12px;
    top: 5px;
    content: ' ';
    height: 100%;
    width: 2px;
    background-color: #fff;}
.close-btn:before {
    transform: rotate(45deg);}
.close-btn:after {
    transform: rotate(-45deg);}


/* expander-btn */
.expander-btn {
    cursor: pointer;
    text-decoration: none;
    color: #086AD8;
    font-size: 13px;}

/* btn-group-blue */
.btn-group-blue {
    margin-top: 18px;
    padding: 5px 0;
    font-size: 15px;
    color: #3586e1;}
.btn-group-blue .fa {
    padding-left: 5px;}
.btn-group-blue:hover {
    color: #d2a98e;}



/* btn-hover-line */
.btn-hover-line {
    position: relative;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);}
.btn-hover-line:after {
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #d2a98e;}
.btn-hover-line:hover {
    color: #d2a98e;}
.btn-hover-line:hover:after {
    left: 0;
    width: 100%;
    right: auto;}





/* close--btn */
.close--btn {
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
}
.close--btn:before {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #fff;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.close--btn:after {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #fff;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.close--btn:hover {
 color:#3586e1;
}
.close--btn:hover:before, .close--btn:hover:after {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}






/* fixed-fa-icon */
.fixed-fa-icon {
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: #ffffff7a;
    color: #fff;
    font-size: 22px;
    padding: 1px 18px;}




/* rounded-btn */	
.rounded-btn {
    border-radius: 25px;
    padding: 8px 25px;}


/* lg-btn */	
.lg-btn {
    font-size: 15px;
    padding: 10px 55px;}
@media (max-width: 991px) {
.lg-btn {
    font-size: 14px;
    padding: 8px 50px;}
}




/* load-more__btn-wrap */
.load-more-btn-wrap-ps-40 .load-more__btn-wrap {
    padding-left: 40px;}


/* load-more-btn-font-group */
.load-more-btn-font-group .load-more__btn-wrap .load-more__btn {
    padding-right: 45px;}
.load-more-btn-font-group .load-more__btn-wrap .load-more__btn::after {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 25px;
    display: block;}


/* load-more-btn-img-group */
.load-more-btn-img-group .load-more__btn-wrap .load-more__btn {
    padding: 9px 60px 9px 30px;}
.load-more-btn-img-group .load-more__btn-wrap .load-more__btn::after {
    content: '';
    background-image: url(../images/icons/three-arrows.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 23px;
    width: 20px;
    height: 20px;
    display: block;}



/* url-primary */
.url-primary {
    position: absolute;
    cursor: pointer;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;}

/* active */
a.active {
    cursor: default;}


/* scale-hover */
.scale-hover {
  /*overflow: hidden;*/
  transition: transform .6s;}
.scale-hover:hover {
  -ms-transform: scale(1.08); 
  -webkit-transform: scale(1.08);
  transform: scale(1.08);}


/* scale-up-hover */
.scale-up-hover {
  /*overflow: hidden;*/
  transition: transform .6s;}
.scale-up-hover:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);}


/* truncate */
.truncate-1,
.truncate-2,
.truncate-3,
.truncate-4,
.truncate-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical}
.truncate-1 {
    -webkit-line-clamp: 1;}
.truncate-2 {
    -webkit-line-clamp: 2;}
.truncate-3 {
    -webkit-line-clamp: 3;}
.truncate-4 {
    -webkit-line-clamp: 4;}
.truncate-5 {
    -webkit-line-clamp: 5;}






/* text */
.text-blue {
    color: #3586e1 !important;
}
.text-gray-1 {
    color: #696969 !important;}

/* bg */
.bg-l-white {
    background-color: #f2f6f9 !important;}
.bg-gray-4 {
    background-color: #f2f2f2 !important;}
.bg-blue-1 {
    background-color: #217add !important;}



/* header */
.header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);}
.header.is-sticky {
    position: fixed;
    -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
    animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color:#111;}




/* a-logo */
.header .a-logo {
    display: inline-block;}
.header .a-logo img {
    max-width: 100%;
    max-height: 40px;}

/* desktop-nav */
.header .desktop-nav {
    position: absolute;
    z-index: 10;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    padding-right: 35px;}
.header .desktop-nav ul {
    padding-left: 0;
    margin-bottom: 0;}
.header .desktop-nav ul li {
    margin-right: 35px;
    display: inline-block;}
.header .desktop-nav ul li a {
    text-decoration: none;
    position: relative;
    font-size: 15px;
    color: #c8c8c8;
    padding: 28px 5px;
 	-webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;}
.header .desktop-nav ul li a:hover,
.header .desktop-nav ul li a.active {
    color: #fff;}
.header .desktop-nav ul li a:before {
    content: "";
    width: 0;
    height: 3px;
    bottom: -3px;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;}
.header .desktop-nav ul li a:hover::before,
.header .desktop-nav ul li a.active::before {
    width: 100%;
    background-color: #fff;}
@media (max-width: 991px) {
.header .desktop-nav {
    display: none;}
}
  
/* menu-bar */
.header .menu-bar {   
    position: fixed;
    z-index: 101;
    top: 0;
    background-color: #202023;
    width: 450px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    /**/
    right: -450px;
	-webkit-transition: right 0.4s ease-in-out;
    -moz-transition: right 0.4s ease-in-out;
    -ms-transition: right 0.4s ease-in-out;
    -o-transition: right 0.4s ease-in-out;
    transition: right 0.4s ease-in-out;}
.header .menu-bar .menu {
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 40px;
    margin-right: 40px;
    list-style: none;}
.header .menu-bar .menu .link-item {
    display: block;}
.header .menu-bar .menu .link-item:not(:last-of-type) {
    border-bottom: 1px solid #3a3a3a;}
.header .menu-bar .menu .link-item .link {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    padding: 18px 0;
    color: #c7c3c3b8;
    font-size: 16px;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);}
.header .menu-bar .menu .link-item .link:hover,
.header .menu-bar .menu .link-item .link.active {
    font-size: 30px;
    color: #fff;}
@media (max-width: 991px) {
.header .menu-bar {   
    width: 300px;
    right: -300px;}
}
/* open-menu */
.open-menu .header .menu-bar {
    right: 0;}
.open-menu .header .menu-bar .menu {
    padding-top: 60px;}

/* close--btn */
.header .menu-bar .close--btn {
    position: absolute;
    right: 10px;
    top: 10px;}




/* menu-outside */
body:not(.open-menu) .header .menu-outside {
    display: none;}
.open-menu .header .menu-outside {
    background: #00000096;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;}


/* dropdown */
/* dropdown-toggle */
.header .menu-bar .menu .dropdown-toggle {
    margin-top: -4px;}
.header .menu-bar .menu .dropdown-toggle::after {
    border: 0;
    font-family: FontAwesome;
    content: '\f107';
    position: relative;
    left: 5px;
    top: 3px;}
/* dropdown-menu */
.header .menu-bar .menu .dropdown-menu {
    border: none;
    min-width: 230px;
    border-radius: 0;
    padding: 0;
    box-shadow: 3px 2px 12px #0000002e;}
.header .menu-bar .menu .dropdown-menu .dropdown-item {
    background-color: transparent;
    position: relative;
    font-size: 12px;
    padding: 13px 25px;
    color: #727272;}
.header .menu-bar .menu .dropdown-menu li:not(:last-of-type) .dropdown-item {
    border-bottom: 1px solid #efefef;}
.header .menu-bar .menu .dropdown-menu .dropdown-item:hover {
    color: #000 !important;
    background-color: #dbdbdb;}
/**/
.header .menu-bar .menu .dropdown-menu .dropdown-item::after {
    font-family: FontAwesome;
    content: '\f105';
    font-size: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;}


/* menu-toggle */
.header .menu-toggle {
    position: absolute;
    z-index: 10;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background-color: transparent;
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;}
.header .menu-toggle span {
    background-color: #fff;
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    border-radius: 25px;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;}
.header .menu-toggle span:nth-of-type(1) {
    top: -9px;}
.header .menu-toggle span:nth-of-type(2) {
    top: -2px;}
.header .menu-toggle span:nth-of-type(3) {
    top: 5px;}
/**/
.header .menu-toggle:hover span:nth-of-type(1) {
    width: 80%;}
.header .menu-toggle:hover span:nth-of-type(3) {
    width: 55%;}



/* close-btn */
.header .menu-bar .close-btn {
    top: 10px;
    right: 15px}






/* scroll-top */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: #086AD8;
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scroll-top .arrow-top {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.scroll-top .arrow-bottom {
  -webkit-transform: translate(-50%, 80px);
      -ms-transform: translate(-50%, 80px);
          transform: translate(-50%, 80px);
}
.scroll-top:hover {
  background-position: right center;
}
.scroll-top:hover .arrow-top {
  -webkit-transform: translate(-50%, -80px);
      -ms-transform: translate(-50%, -80px);
          transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}





/* accordion-blue */
.accordion-blue .accordion-item {
    margin-top: 20px;
    border: 0;
    box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);}
.accordion-blue .accordion-item .accordion-button {
    font-size: 15px;
    padding-left: 25px;
    padding-right: 50px;}  
.accordion-blue .accordion-item .accordion-button:not(.collapsed) {
    background-color: #3586e1;
    border-radius: 5px 5px 0 0;
    color: #fff;}
.accordion-blue .accordion-item .accordion-button:focus {
    border-color: #3586e1;
    box-shadow: none;}
.accordion-blue .accordion-item .accordion-button:not(.collapsed)::after {
    color: #fff;}
.accordion-blue .accordion-item .accordion-collapse .accordion-body {
    padding: 25px;}
.accordion-blue .accordion-item .accordion-collapse .accordion-body p {
    margin-bottom: 0;}






/* container-fluid */
/* container-fluid-lg */
.container-fluid.container-fluid-lg {
    padding-left: 60px;
    padding-right: 60px;}
@media (max-width: 991px) {
.container-fluid.container-fluid-lg {
    padding-left: 35px;
    padding-right: 35px;}
}





/* section */
section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;}

/* section-sub */
.section-sub {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;}

    






/* slick-equal-height */
.slick-equal-height .slick-track {
    display: flex;}
.slick-equal-height .slick-slide {
    display: flex;
    height: auto;}
.slick-equal-height .slick-item {
    height: 100%;
    width: 100%;}


/* slick-overflow-initial */
.slick-overflow-initial .slick-list {
    overflow: initial;}


/* slick-disabled */
button.slick-disabled {
    cursor: default !important;}


/* slick-grid */
.slick-grid {
    margin-left: -10px;
    margin-right: -10px;}
.slick-grid .slick-slide {
    padding-left: 10px;
    padding-right: 10px;}
/**/
.slick-grid-15 {
    margin-left: -15px;
    margin-right: -15px;}
.slick-grid-15 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;}
/**/
.slick-grid-20 {
    margin-left: -20px;
    margin-right: -20px;}
.slick-grid-20 .slick-slide {
    padding-left: 20px;
    padding-right: 20px;}
@media (max-width: 991px) {
.slick-grid-20 {
    margin-left: -15px;
    margin-right: -15px;}
.slick-grid-20 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;}
}
/**/
.slick-grid-25 {
    margin-left: -25px;
    margin-right: -25px;}
.slick-grid-25 .slick-slide {
    padding-left: 25px;
    padding-right: 25px;}


/* slick-item */
.slick-item {
    width: 100%;}
    

/* slick-arrows */
.slick-arrows .slick-next, 
.slick-arrows .slick-prev {
    z-index: 5;
    font-size: 22px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    height: 40px;
    top: initial;
    bottom: 0;
    transform: translate(-50%, 0);
    border-radius: 50%;
    background-color: #ddd;}
.slick-arrows .slick-next:hover:before, 
.slick-arrows .slick-prev:hover:before {
    color: #000;}
.slick-arrows .slick-next {
    left: 52%;} 
.slick-arrows .slick-prev {
    left: 48%;}
.slick-arrows .slick-next:before, 
.slick-arrows .slick-prev:before {
    font-family: FontAwesome;
    color: #000;
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);}
.slick-arrows .slick-next:before {
    content: '\f105';}
.slick-arrows .slick-prev:before {
    content: '\f104';}



/* slick-dot-blue */
.slick-dot-blue .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;}
.slick-dot-blue .slick-dots li button:before {
    font-size: 25px;
    color: #d8d8d8;
    opacity: initial;
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;}
.slick-dot-blue .slick-dots li.slick-active button:before {
    font-size: 40px;
    color: #086AD8;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease;}


/* slick-dot-hide */
.slick-dot-hide .slick-dots {
    display: none;}

/* slick-dots-hide */
.slick-dots-hide .slick-dots li button:before {
    display: none;}

/* slick-dots--75 */
.slick-dots--75 .slick-dots {
    bottom: -75px;}


/* slick-single */
.slick-single .slick-list {
    padding-right: 22% !important;
    padding-left: 22% !important;}
@media (max-width: 991px) {
.slick-single .slick-list {
    padding-right: 50px !important;
    padding-left: 50px !important;}
}





/* contact-table */
.contact-table td {
  vertical-align: top;
  padding-top: 20px;
  color: #8b8c8d;}
.contact-table td img {
  height: 24px;
  padding-right: 15px;}
.contact-table td img.mail {
  height: 18px;}
.contact-table td a {
  color: #212529;
  display: block;
  font-size: 15px;
  text-decoration: none;}






/* tooltip-blue */
[class*=tooltip-]:before, 
[class*=tooltip-]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
     transition-delay: 0ms;
}
[class*=tooltip-]:hover:before, [class*=tooltip-]:hover:after {
  visibility: visible;
  opacity: 1;
}
[class*=tooltip-]:hover:before, [class*=tooltip-]:hover:after {
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
     transition-delay: 100ms;
}
[class*=tooltip-]:before {
  content: "";
  position: absolute;
  background: transparent;
  border: 7px solid transparent;
  z-index: 1000001;
}
[class*=tooltip-]:after {
  background: #086AD8;
  color: white;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  border-radius: 5px;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
[class*=tooltip-][aria-label]:after {
  content: attr(aria-label);
}
[class*=tooltip-][data-hint]:after {
  content: attr(data-hint);
}
[aria-label=""]:before, [aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}
.tooltip-blue:before {
  border-top-color: #086AD8;
}
.tooltip-blue:before {
  margin-bottom: -13px;
}
.tooltip-blue:before, .tooltip-blue:after {
  bottom: 100%;
  left: 50%;
}
.tooltip-blue:before {
  left: calc(50% - 7px);
}
.tooltip-blue:after {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.tooltip-blue:hover:before {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
      transform: translateY(-8px);
}
.tooltip-blue:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -ms-transform: translateX(-50%) translateY(-8px);
      transform: translateX(-50%) translateY(-8px);
}





/* accordion */
.accordion .accordion-item .accordion-button {
  position: relative;}
.accordion .accordion-item .accordion-button::after {
  font-family: FontAwesome;
  content: '\f107';
  background-image: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  right: 20px;
  display: block;
  margin-top: -8px;}
.accordion .accordion-item .accordion-button:not(.collapsed):after {
  content: '\f106';}





/* form-default */
.form-default .form-body .form-control:invalid, 
.form-default .form-body .form-select:invalid {
    background-color: #f2f2f2;}




/* banner-cover */
.banner-cover {
  position: relative;
  overflow: hidden;}
.banner-cover::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #000000a6, #000000a6)}
.banner-cover.cover-bg-initial::before {
  content: initial}
.banner-cover .img-primary {
  height: 380px;
  width: 100%;
  object-fit: cover;}
.banner-cover .caption {
  color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);}
.banner-cover .caption h3 {
    font-size: 60px;}
.banner-cover .caption hr {
    opacity: initial;
    margin-top: 0;
    max-width: 250px;
    height: 6px;}
.banner-cover .caption h4 {
    font-size: 28px;
    margin-top: 35px;}
.banner-cover .caption .btn {
    padding: 10px 37px;
    border-radius: 0;
    font-size: 15px;}
.banner-cover .caption p {
    margin-bottom: 0;
    line-height: 28px;}
@media (max-width: 991px) {
.banner-cover .caption h3 {
    font-size: 48px;}
.banner-cover .caption h4 {
    font-size: 22px;
    margin-top: 30px;}
.banner-cover .caption .btn {
    padding: 8px 30px;
    font-size: 14px;}
}
@media (max-width: 767px) {
.banner-cover .caption h3 {
    font-size: 38px;}
.banner-cover .caption hr {
    height: 4px;}
.banner-cover .caption h4 {
    font-size: 18px;
    margin-top: 25px;}
}
    
/* cover-transparent */
.cover-transparent.banner-cover::before {
    content: initial;}





/* play-pulse */
.play-pulse {
    position: relative;
    height: 200px;
    width: 200px;
    cursor: pointer;
    margin-left: -61px;
}
.play-pulse .pulse-body, 
.play-pulse .pulse-body::after {
    animation: 1.05s ease-out 1s normal none infinite running play-pulse;
    border: 1px solid #ffffffa8;
    border-radius: 50%;
    display: inline-block;
    padding: 0.5rem;
    transform: scale3d(0.7, 0.7, 0);
    transition: opacity 0.75s ease 0s;
}
.play-pulse .pulse-body {
    position: absolute;
    height: 200px;
    width: 200px;
    opacity: 1; 
    display: block;
}
.play-pulse .pulse-body::after {
    content: "";
    display: block;
    height: 160px;
    width: 160px;
    position: absolute;
    top: 19px;
    left: 19px;
}

@keyframes play-pulse {
50% {
    border-color: #706868a8;
}
100% {
    border-color: transparent;
    transform: none;
}
}
@media (max-width: 767px) {
.play-pulse {
    zoom: 80%;
    }
}

/* play-icon */
.play-pulse .play-icon {
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);
    width: 80px;
    height: 80px;
    background-color: #ccccccf7;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;}
.play-pulse .play-div {
    transform: scale(0.9);
    transition: transform 0.4s ease;
    position: relative;
    top: 99px;}
.play-pulse:hover .play-div {
    transform: scale(1);}
.play-pulse .play-icon .fa {
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);
    font-size: 45px;
    color: #086AD8;}
/* text-label */
.play-pulse .text-label {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -80px;
    font-size: 17px;}



/* mouse-scroll */
.mouse-scroll {
	display: block;
	margin: 0 auto;
	width: 24px;
	height: 100px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);    
    bottom: -82px;
	cursor: pointer;}
.mouse-scroll .mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    transform: none;
    border: 2px solid white;
}
.mouse-scroll .mouse .wheel {
   height: 5px;
   width: 2px;
   display: block;
   margin: 5px auto;
   background: white;
   position: relative;
   height: 4px;
   width: 4px;
   border: 2px solid #fff;
   border-radius: 8px;
	animation: mouse-wheel 0.6s linear infinite;
}
@keyframes mouse-wheel{
   0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}
@keyframes mouse-scroll {
  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}

/**/
.mouse-scroll .scroll-arrows {
  display: block;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);  
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;
  width: 16px;
  height: 16px;
  animation: mouse-scroll 1s infinite;}
.mouse-scroll .scroll-arrows:nth-of-type(1) {
    margin-top: 1px;
	animation-delay: .1s;
	animation-direction: alternate;}
.mouse-scroll .scroll-arrows:nth-of-type(2){
	animation-delay: .2s;
	animation-direction: alternate;
    margin-top: -6px;
}
.mouse-scroll .scroll-arrows:nth-of-type(2){
	animation-delay: .3s;
    animation-direction: alternate;
    margin-top: -6px;}







/* discover-tabs */
.discover-tabs .nav-tabs {
    border-bottom: 0;
    margin-top: 40px;}
.discover-tabs .nav-tabs .nav-item {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;}
.discover-tabs .nav-tabs .nav-item .nav-link {
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    border: 1px solid #ededed;
    background: #fff;
    color: #696969;
    padding: 20px;
    margin-bottom: 10px;
    min-width: 200px;
    border-radius: 15px;}
.discover-tabs .nav-tabs .nav-item .nav-link.active {
    color: #3586e1;
    border-color: #086AD8;}
.discover-tabs .nav-tabs .nav-item .nav-link:hover {
    background: #086ad8;
    color: #fff;}
@media (max-width: 767px) {
.discover-tabs .nav-tabs {
    overflow-y: hidden;
    flex-wrap: nowrap;}
.discover-tabs .nav-tabs .nav-item {
    margin-left: 10px;
    margin-right: 10px;}
.discover-tabs .nav-tabs .nav-item .nav-link {
    font-size: 14px;
    padding: 15px;
    min-width: 200px;}
}
/* tab-content */
.discover-tabs .tab-content .col-logo {
    margin-top: 80px;}
.discover-tabs .tab-content .content .text-l {
    margin-top: 30px;
    margin-bottom: 20px;}
.discover-tabs .tab-content .content .text-m {
    color: #696969;}







/* services-row */
.services-row .card-item {
    padding: 42px 15px 40px;
    border-radius: 5px;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);}
.services-row .card-item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);}
.services-row .card-item .col-icon {
    max-width: 130px;}
.services-row .card-item .col-content .text-l {
    margin-bottom: 10px;
    font-size: 14px;}
.services-row .card-item .col-content .text-m {
    color: #696969;
    line-height: 22px;
    font-size: 13px;}
@media (max-width: 991px) {
.services-row .card-item .col-icon {
    max-width: 80px;}
.services-row .card-item .col-icon img {
    height: 40px;}
.services-row .card-item .col-content .text-l {
    font-size: 16px;}
}





/* steps */
.steps {
    display: inline-block;
    position: relative;
    z-index: 3;}
.steps .step {
    font-size: 160px;
    line-height: 0.8;
    color: #ededed;}
.steps:hover .step {
    color: #3586e1;}
.steps .step-label {
    position: absolute;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);}
.steps .step-label .span {
    position: relative;
    font-size: 15px;
    line-height: 2em;
    letter-spacing: 2px;}
.steps .step-label .span::before {
    content: '';
    width: 35px;
    height: 1px;
    position: absolute;
    right: 70px;
    top: 5px;
    background-color: #086ad8;}
@media (max-width: 767px) {
.steps {
    margin-top: 30px;}
}




/* section-head */
.section-head {
    color: #333333;}
.section-head h6 {
    letter-spacing: 3px;
    color: #ababab;
    font-size: 14px;}
.section-head h3 {
    font-size: 32px;
    line-height: 40px;}
.section-head p {
    line-height: 25px;
    color: #696969;}
@media (max-width: 991px) {
.section-head h3 {
    font-size: 26px;
    line-height: 32px;}
}







/* case-study-1 */
.case-study-1 {
  color: #3C3C3C;}

/* load-more__btn */
.case-study-1 .load-more__btn {
  color: #1A80FF;
  text-decoration: underline;}
/* section */
.case-study-1 section {
  padding-top: 50px;
  padding-bottom: 50px;}
/* section-head */
.case-study-1 .section-head {
  color: #120F0F;
}
.case-study-1 .section-head .text-m {
  font-weight: 400;
  font-size: 17px;}
.case-study-1 .section-head .text-l {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}
.case-study-1 .section-head .text-s {
  color: #4E535C;
  font-size: 15px;
  line-height: 25px;
}
@media (max-width: 991px) {
.case-study-1 .section-head .text-m {
  font-size: 14px;}
.case-study-1 .section-head .text-l {
  font-size: 30px;
  line-height: 40px;
}
}

/* indro */
.case-study-1 .indro {
  background-image: url('../images/case-study-1/indro/bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
  padding-top: 230px;
  padding-bottom: 50px;}
.case-study-1 .indro .content .case-study {
  margin-bottom: 20px;}
.case-study-1 .indro .content h5 {
  font-size: 14px;
  color: #fff;
  font-weight: normal;}
.case-study-1 .indro .content .btn-back {
  background-color: transparent;
  padding: 0 20px 0 0;
  margin-top: -5px;}
.case-study-1 .indro .content .btn-back img {
  height: 15px;
}
.case-study-1 .indro .content h2 {
  font-size: 45px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 15px;}
.case-study-1 .indro .content h4 {
  font-size: 23px;
  color: #fff;
  font-weight: normal;}
@media (max-width: 991px) {
.case-study-1 .indro {
  padding-top: 180px;
  padding-bottom: 100px;}
.case-study-1 .indro .content {
  padding-top: 50px;}
.case-study-1 .indro .content h5 {
  font-size: 12px;}
.case-study-1 .indro .content h2 {
  font-size: 35px;
  margin-bottom: 15px;}
.case-study-1 .indro .content h4 {
  font-size: 18px;}
}
/* img-right */
.case-study-1 .indro .img-right {
  max-height: 300px;
}




/* project-overview */
.case-study-1 .project-overview {
  padding-top: 40px;
  padding-bottom: 40px;
}
.case-study-1 .project-overview h3 {
  font-size: 27px;
  margin-bottom: 25px;
}
.case-study-1 .project-overview p {
  color: #353535;
  line-height: 22px;
  font-size: 14px;
}
@media (max-width: 991px) {
.case-study-1 .project-overview h3 {
  font-size: 24px;
}
.case-study-1 .project-overview p {
  font-size: 13px;
}
}
/**/
.case-study-1 .project-overview .list-type-1 .item {
  margin-bottom: 35px;
}
.case-study-1 .project-overview .list-type-1 .item .icon-col {
  max-width: 40px;
}
.case-study-1 .project-overview .list-type-1 .item h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #353535;
}
@media (max-width: 991px) {
.case-study-1 .project-overview .list-type-1 .item h5 {
  font-size: 16px;
}
}
/**/
.case-study-1 .project-overview .list-type-2 .item {
  margin-bottom: 20px;
}
.case-study-1 .project-overview .list-type-2 .item .icon-col {
  max-width: 20px;
  padding-right: 0;
}
.case-study-1 .project-overview .list-type-2 .item h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #353535;
}
@media (max-width: 991px) {
.case-study-1 .project-overview .list-type-2 .item h5 {
  font-size: 16px;
}
}




/* testimonial */
.case-study-1 .testimonial .img-left {
  border-radius: 10px;
}
@media (min-width: 992px) {
.case-study-1 .testimonial .img-left {
  min-height: 500px;
  object-fit: cover;
}
}
/* quote */
.case-study-1 .testimonial .quote {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  border: 0.95px solid #EDEDED;
  box-shadow: 0px 7.71px 6.17px 0px #3131310A;
  margin: 45px 3px 3px 3px;
}
.case-study-1 .testimonial .quote .content {
  padding: 30px 30px 18px 30px;
}
.case-study-1 .testimonial .quote .img-quote {
  position: absolute;
  top: -25px;
}
.case-study-1 .testimonial .quote .rating {
  margin-top: 35px;
  margin-bottom: 10px;
}
.case-study-1 .testimonial .quote .rating .fas {
  font-size: 12px;
}
.case-study-1 .testimonial .quote p {
  color: #797979;
  font-size: 14px;
  margin-bottom: 0;
}

/**/
.case-study-1 .testimonial .quote .avatar-info {
  border-top: 1px solid #EAEFF3;
  padding: 15px 30px 20px;
}
.case-study-1 .testimonial .quote .avatar-info .col-avatar {
  max-width: 50px;
}
.case-study-1 .testimonial .quote .avatar-info .img-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.case-study-1 .testimonial .quote .avatar-info .text-m {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
}
.case-study-1 .testimonial .quote .avatar-info .text-s {
  font-size: 12px;
  color: #797979;
}





/* answers */
.case-study-1 .answers {
  padding-bottom: 100px;
}
/* accordion */
.case-study-1 .answers .accordion {
  margin-top: 30px;
}
.case-study-1 .answers .accordion-item {
  border-bottom: 1px solid #A7A7A7;}
.case-study-1 .answers .accordion-item .accordion-button {
  background-color: transparent;
  color: #4E535C;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
  font-size: 17px;}
.case-study-1 .answers .accordion-item .accordion-button:focus {
  box-shadow: none;
  border: 0;}
.case-study-1 .answers .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url('../images/case-study-1/answers/arrow-up.webp')}
.case-study-1 .answers .accordion-item .accordion-button::after {
  background-image: url('../images/case-study-1/answers/arrow-up.webp')}
.case-study-1 .answers .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;}
@media (min-width: 992px) {
.case-study-1 .answers .accordion-item {
  padding-top: 5px;
  padding-bottom: 5px;}
}
@media (max-width: 991px) {
.case-study-1 .answers .accordion-item .accordion-button {
  font-size: 15px;}
}

/* img-right */
.case-study-1 .answers .img-right {
  border-radius: 8px;
  margin-top: 150px;
}
@media (max-width: 991px) {
.case-study-1 .answers .img-right {
  margin-top: 20px;
}
}








/* succeed-steps */
@media (max-width: 991px) {
.succeed-steps .step-item {
    position: relative;
    padding-bottom: 25px;}
.succeed-steps [class^="col-"]:not(:last-of-type) .step-item::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 25px;
    width: 1px;
    height: 100%;
    background-color: #ddd;}
}

/* count-div */
.succeed-steps .step-item .count-div {
    position: relative;}
@media (min-width: 992px) {
.succeed-steps [class^="col-"]:not(:last-of-type) .step-item .count-div::after {
    content: "";
    position: absolute;  
    background-color: #ddd;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 1px;}
}
/* steps-pulse */
.succeed-steps .step-item .steps-pulse {
    position: relative;
    height: 90px;
    width: 90px;
    cursor: pointer;
    margin-left: -20px;
}
.succeed-steps .step-item:hover .steps-pulse {
    background-color: #fff;
    z-index: 2;}
.succeed-steps .step-item .steps-pulse .pulse-body, 
.succeed-steps .step-item .steps-pulse .pulse-body::after {
    border: 1px solid #ffffffa8;
    border-radius: 50%;
    display: inline-block;
    padding: 0.5rem;
    transform: scale3d(0.7, 0.7, 0);
    transition: opacity 0.75s ease 0s;
}
.succeed-steps .step-item:hover .steps-pulse .pulse-body, 
.succeed-steps .step-item:hover .steps-pulse .pulse-body::after {
    animation: 1.05s ease-out .1s normal none infinite running steps-pulse;
}
.succeed-steps .step-item .steps-pulse .pulse-body {
    position: absolute;
    height: 90px;
    width: 90px;
    opacity: 1; 
    display: block;
}
.succeed-steps .step-item .steps-pulse .pulse-body::after {
    content: "";
    display: block;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 9px;
    left: 9px;}

@keyframes steps-pulse {
50% {
    border-color: #ccc;
}
100% {
    border-color: transparent;
    transform: none;
}
}


/* step-count */
.succeed-steps .step-item .steps-pulse .step-count {
    position: absolute;
    z-index: 1;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333333;}
.succeed-steps .step-item .steps-pulse .step-count::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;}
.succeed-steps .step-item:hover .steps-pulse .step-count {
    color: #fff;}
.succeed-steps .step-item:hover .steps-pulse .step-count::after {
    background-color: #086AD8;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease;}
.succeed-steps .step-item .steps-pulse .step-div {
    position: relative;
    top: 45px;}
.succeed-steps .step-item .steps-pulse .step-count .text {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);
    font-size: 18px;}
/* content */
.succeed-steps .step-item .content {
    margin-top: 30px;}
.succeed-steps .step-item .content .text-l {
    font-size: 14px;
    color: #333333;}
.succeed-steps .step-item .content .text-m {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
    color: #696969;}
@media (max-width: 991px) {
.succeed-steps .step-item .content {
    margin-top: -55px;
    margin-left: 80px;}
}




/* card-years-experience */
.card-years-experience {
    display: flex;
    align-items: end;}
.card-years-experience .years {
    font-size: 235px;
    line-height: 0.8;
    color: #3586e1;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 5px #058df3;}
.card-years-experience:hover .years {
    -webkit-text-fill-color: #058df3 !important;}
.card-years-experience .text-label {
    white-space: pre-line;
    padding-left: 5px;
    margin-top: -5px;
    font-size: 15px;
    line-height: 1.6em;
    letter-spacing: 3px;
    color: #ababab;}
@media (min-width: 992px) {
.card-years-experience {
    margin-top: 80px;}
}
@media (max-width: 991px) {
.card-years-experience .years {
    font-size: 170px;}
.card-years-experience .text-label {
    margin-top: -3px;
    font-size: 13px;}
}


/* made-xl */
.made-xl {
    max-width: 420px;
    margin-top: 25px;
    font-size: 34px;
    line-height: 42px;}
@media (max-width: 991px) {
.made-xl {
    font-size: 24px;
    line-height: 32px;}
}

/* made-m */
.made-m {
    max-width: 520px;
    margin-top: 20px;
    font-size: 26px;
    line-height: 38px;}
@media (max-width: 991px) {
.made-m {
    font-size: 22px;
    line-height: 30px;}
}



/* get-in-touch-card */
.get-in-touch-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 40px 40px 45px;}


/* get-in-touch-head */
.get-in-touch-head .text-l {
    font-size: 24px;}
.get-in-touch-head .text-m {
    font-size: 14px;
    margin-bottom: 40px;}



/* get-in-touch-form */
.get-in-touch-form .col-item {
    margin-bottom: 20px;}
.get-in-touch-form .col-item .form-control {
    border-color: #f4f4f4;
    background-color: #f4f4f4;
    font-size: 13.5px;
    height: 45px;
    border: 1px solid #f4f4f4;
    border-radius: 5px;
    padding: 8px 20px;}
/**/
.get-in-touch-form .btn-submit {
    font-size: 15px;
    margin-top: 10px;
    padding: 10px 50px;
    color: #ffffff;
    background: #058df3;}
/**/
.get-in-touch-form .text-alert {
    margin-top: 10px;}
.get-in-touch-form .text-alert:empty {
    display: none;}



/* our-works */
.our-works .item {
    position: relative;
    height: 100%;
    border-radius: 20px;
    box-shadow: 5px 10px 23px #eaeaea;
    padding-bottom: 55px;
    transition: transform .6s;}
.our-works .item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);}
.our-works .item .img-primary {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;}
/**/
.our-works .item .content {
    padding: 25px 15px;}
.our-works .item .content .text-l {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 2px;
    color: #333;}
.our-works .item .content .text-m {
    font-size: 14px;
    color: #3586e1;
    margin-bottom: 2px;}
.our-works .item .content .text-s {
    font-size: 14px;
    color: #696969;
    margin-top: 13px;}
/**/
.our-works .item .foot {
    border-top: 1px solid #eee;
    border-radius: 0 0 20px 20px;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55px;}
.our-works .item .foot::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #086AD8;
    transition: height 0.4s ease-in-out;
    z-index: 0;}
.our-works .item:hover .foot::before {
    height: 100%;}
.our-works .item .foot .btn {
    color: #3586e1;
    position: relative;
    z-index: 1;}
.our-works .item:hover .foot .btn {
    color: #fff;}
.our-works .item .foot .btn .fa {
    margin-left: 5px;}











/* indro */
/* banner-cover */
#indro .banner-cover .img-primary {
    height: 112vh;}
#indro .banner-cover::before {
    background: #0000006e;}
@media (min-width: 992px) {
#indro .banner-cover .caption h3 {
    white-space: pre-line;}
}

/* indro-bottom */
#indro .indro-bottom {
    bottom: -1px;
}
#indro .indro-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    line-height: 0;
}
#indro .indro-bottom svg {
    height: 100px;
    width: 100%;
    fill: white;
}






/* our_company */
#our_company {
    padding-top: 150px;}
@media (min-width: 992px) {
#our_company {
    padding-bottom: 150px;}
}
/**/
#our_company .col-img-right img {
    max-height: 550px;}
@media (min-width: 992px) {
#our_company .col-img-right {
   text-align: right;}
}
@media (max-width: 991px) {
#our_company .col-img-right {
   margin-top: 50px;}
}





/* success_stories */
@media (min-width: 992px) {
#success_stories {
    background: linear-gradient(99deg, #f8f9fa 48%, #333333 0%);
    padding-top: 100px;
    padding-bottom: 100px;}
}

/* item-row */
@media (max-width: 991px) {
#success_stories .item-row {
    margin-top: 40px;}
}
/* item */
#success_stories .item {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;}
#success_stories .item .text-l {
    font-size: 50px;
    color: #fff;}
#success_stories .item .text-m {
    font-size: 14px;
    margin-top: 10px;
    text-transform: uppercase;}
@media (min-width: 992px) {
#success_stories .item .text-m {
    color: #71c7f7;}
}
@media (max-width: 991px) {
#success_stories .item .text-l {
    color: #058df3;
    font-size: 40px;}
#success_stories .item .text-m {
    font-size: 13px;}
}





/* discover */
@media (min-width: 992px) {
#discover {
    padding-top: 120px;
    padding-bottom: 120px;}
}









/* worldwide */
#worldwide {
    background-color: #202124;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/worldwide/bg.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    padding-top: 140px;
    padding-bottom: 200px;}
#worldwide .worldwide-head {
    color: #fff;}
#worldwide .worldwide-head h3 {
    position: relative;
    line-height: 35px;
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 35px;}
#worldwide .worldwide-head h3::before {
    position: absolute;
    content: '';
    left: 0;
    background-color: #3586e1;
    width: 4px;
    height: 100%;}
#worldwide .worldwide-head p {
    padding-left: 35px;
    line-height: 24px;
    font-size: 14px;}
@media (max-width: 991px) {
#worldwide {
    padding-top: 100px;
    padding-bottom: 140px;}
#worldwide .worldwide-head h3 {
    position: relative;
    line-height: 35px;
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 35px;}
}





/* testimonials */
#testimonials .slick-slide:not(.slick-active) {
    opacity: 0.5;}
#testimonials .item {
    min-height: 350px;
    background-color: #ffffff;
    color: #696969;
    font-size: 14px;
    line-height: 26px;
    box-shadow: 5px 10px 23px #eaeaea;
    padding: 50px 30px 40px;
    border-radius: 15px;}
#testimonials .item .name {
    margin-top: 18px;
    color: #333333;}







/* team */
/* slick */
#team .slick-arrows .slick-next,
#team .slick-arrows .slick-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border: 1px solid #000;}
#team .slick-arrows .slick-next.slick-disabled,
#team .slick-arrows .slick-prev.slick-disabled {
    opacity: .4;}
#team .slick-arrows .slick-next.slick-disabled:before,
#team .slick-arrows .slick-prev.slick-disabled:before {
    opacity: initial;}
#team .slick-arrows .slick-prev {
    left: 0;
    right: initial;}
#team .slick-arrows .slick-next {
    right: 0;
    left: initial;}
@media (max-width: 575px) {
#team .slick-arrows .slick-prev {
    left: 5px;}
#team .slick-arrows .slick-next {
    right: 5px;}
}

/* item-xl */
#team .item-xl {
    position: relative;
    overflow: hidden;
    max-width: 380px;}
#team .item-xl::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    transition: .5s;
    background: linear-gradient(359.05deg, #000000a6 -12.26%, transparent);}
/**/
#team .item-xl .content {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 30px;
    transition: all 1s;
    transform: translateY(40px);}
#team .item-xl:hover .content {
    transform: translateY(0);}
#team .item-xl .content .name {
    font-size: 30px;}
#team .item-xl .content .designation {
    margin-top: 5px;
    font-size: 13px;}
@media (max-width: 991px) {
#team .item-xl .content .name {
    font-size: 24px;}
#team .item-xl .content .designation {
    font-size: 12px;}
}
/**/
#team .item-xl .content .social-media {
    margin-top: 25px;
    opacity: 0;
    transition: 1.5s;
    will-change: transform;}
#team .item-xl:hover .content .social-media {
    opacity: 1;
    transform: translate3d(0,0,0);}
#team .item-xl .content .social-media .a {
    display: inline-block;
    font-size: 18px;
    padding-right: 20px;
    text-decoration: none;
    color: #fff;
    position: relative;} 
#team .item-xl .content .social-media .a img {
    height: 16px;} 
/**/
#team .item-xl .img-primary {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    object-fit: cover;}

/* item-m */
#team .item-m {
    position: relative;
    overflow: hidden;}
#team .item-m::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(359.05deg, #000000a6 -12.26%, transparent);}
/**/
#team .item-m .content {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 30px;}
#team .item-m .content .name {
    font-size: 22px;}
#team .item-m .content .designation {
    margin-top: 5px;
    font-size: 13px;}
/**/
#team .item-m .img-primary {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;}









/* contact */
#contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/contact/bg.webp');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;}
@media (max-width: 991px) {
#contact {
    padding-top: 100px;
    padding-bottom: 100px;}
}

/* contact-info */
#contact .contact-info .a {
    text-decoration: none;
    color: #fff;
    display: block;}
#contact .contact-info .a:last-of-type {
    margin-top: 90px;}
#contact .contact-info .a .col-icon {
    max-width: 80px;}
#contact .contact-info .a .col-icon img {
    width: 50px;
    height: 45px}
#contact .contact-info .a .text-l {
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 20px;}
#contact .contact-info .a .text-xl {
    font-size: 28px;}
@media (min-width: 1200px) {
#contact .contact-info .a {
    margin-left: 80px;}
}
@media (max-width: 991px) {
#contact .contact-info {
    margin-top: 50px;}
#contact .contact-info .a:last-of-type {
    margin-top: 50px;}
#contact .contact-info .a .col-icon {
    max-width: 70px;}
#contact .contact-info .a .col-icon img {
    width: 40px;
    height: 35px}
#contact .contact-info .a .text-l {
    font-size: 16px;}
#contact .contact-info .a .text-xl {
    font-size: 22px;}
}







/* about_indro */
#about_indro .banner-cover .img-primary {
    height: 100vh;}
#about_indro .banner-cover .caption h3 {
    font-size: 42px;
    margin-bottom: 25px;}






/* blue_count */
#blue_count {
    padding-top: 60px;
    padding-bottom: 60px;}
/* item */
#blue_count .item {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;}
#blue_count .item .text-l {
    line-height: 50px;
    font-size: 58px;
    color: #fff;}
#blue_count .item .text-m {
    font-size: 15px;
    margin-top: 20px;
    letter-spacing: 2px;
    color: #c1d8f6;
    text-transform: uppercase;}
@media (max-width: 991px) {
#blue_count .item .text-l {
    line-height: 30px;
    font-size: 40px;}
#blue_count .item .text-m {
    font-size: 13px;}
}






/* requests */
/* section-head */
#requests .section-head h3 {
    border-left: 4px solid #058df3;
    padding-left: 30px;}
#requests .section-head p {
    padding-left: 34px;
    color: #696969;}
/* get-in-touch-form */
#requests .get-in-touch-form .col-item .message-control {
    height: 190px;}
/* contact-info */
#requests .contact-info {
    padding-top: 40px;}
#requests .contact-info .item {
    padding-top: 40px;}
#requests .contact-info .item .icon {
   height: 55px;
   margin-bottom: 20px;}
#requests .contact-info .item .a {
   display: inline-block;
   text-decoration: none;
   margin-bottom: 5px;
   font-size: 20px;
   color: #000;}
@media (max-width: 991px) {
#requests .contact-info .item .icon {
   height: 40px;}
#requests .contact-info .item .a {
   font-size: 17px;}
}





/* experts */
#experts .item {
    padding: 55px 55px 0 55px;}
#experts .item:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 35px;}
#experts .item .text-m {
    margin-bottom: 10px;
    font-size: 18px;}
#experts .item p,
#experts .item li {
    line-height: 26px;
    font-size: 15px;}
@media (max-width: 991px) {
#experts .item {
    padding: 30px 30px 0 30px;}
#experts .item p,
#experts .item li {
    line-height: 22px;
    font-size: 13px;}
}




/* gallery_list */
/* warp */
#gallery_list .gallery-warp {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;}
#gallery_list .gallery-warp .item {
    overflow: hidden;
    display: block;
    border-radius: 5px;
    width: 100%;
    height: 100%;}
@media (min-width: 992px) {
#gallery_list .gallery-warp .item:nth-child(4n+1) {
    -ms-grid-column: span 8;
    grid-column: span 8;}
#gallery_list .gallery-warp .item:nth-child(4n+2) {
    -ms-grid-column: span 4;
    grid-column: span 4;
}
#gallery_list .gallery-warp .item:nth-child(4n+3) {
    -ms-grid-column: span 6;
    grid-column: span 6;
}
#gallery_list .gallery-warp .item:nth-child(4n+4) {
    -ms-grid-column: span 6;
    grid-column: span 6;
}
}
@media (max-width: 991px) {
#gallery_list .gallery-warp .item {
    -ms-grid-column: span 6;
    grid-column: span 6;
}
}
@media (max-width: 767px) {
#gallery_list .gallery-warp .item {
    -ms-grid-column: span 12;
    grid-column: span 12;
}
}

/* item */
#gallery_list .gallery-warp .item {
    position: relative;}
#gallery_list .gallery-warp .item::after {
    content: '';
    position: absolute;
    inset: 0;
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;}
#gallery_list .gallery-warp .item:hover::after {
    background-color: #0000006e;
    -webkit-transition: 0.8s all ease;
    -o-transition: 0.8s all ease;
    transition: 0.8s all ease;}
/* url-primary */
#gallery_list .gallery-warp .item .url-primary::before {
    font-family: FontAwesome;
    content: '\f002';
    position: absolute;
    z-index: 1;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%);
    font-size: 42px;
    color: #fff;
    opacity: 0;
    -webkit-transition: .6s all ease;
    -o-transition: .6s all ease;
    transition: .6s all ease;}
#gallery_list .gallery-warp .item:hover .url-primary::before {
    opacity: 1;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease;}
/* img-primary */
#gallery_list .gallery-warp .item .img-primary {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 420px;}








/* blogs_list */
#blogs_list .item .card-img {
    position: relative;
    border-radius: 15px;
    transition: transform .6s;}
#blogs_list .item:hover .card-img {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);}
#blogs_list .item .card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(360.05deg, #000000a6 -19.26%, transparent);}
#blogs_list .item .card-img .img-primary {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 200px;}
#blogs_list .item .card-img .head {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;}
#blogs_list .item .card-img .head .img-icon {
    height: 32px;
    width: 32px;}
#blogs_list .item .card-img .head .name {
    font-size: 15px;
    color: #fff;}
#blogs_list .item .content {
    padding-top: 25px;}
#blogs_list .item .content .date {
    color: #696969;
    font-size: 14px;}
#blogs_list .item .content .date .fa {
    margin-right: 5px;}
#blogs_list .item .content .title {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 18px;}
#blogs_list .item .content .title a {
    display: inline-block;
    text-decoration: none;
    color: #333333;}
#blogs_list .item .content .title a:hover {
    color: #3586e1;}
#blogs_list .item .content .dec {
    margin-top: 15px;
    color: #696969;}
#blogs_list .item .content .btn-group-blue {
    font-size: 14px;}







/* blogs_view */
#blogs_view .img-primary {
    max-height: 400px;}
#blogs_view .text-l {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;}
#blogs_view .text-m {
    font-size: 16px;
    color: #696969;}
#blogs_view .text-m .fa {
    padding-left: 10px;
    padding-right: 5px;
    margin-bottom: 30px;}
#blogs_view p {
    font-size: 14px;
    color: #696969;
    white-space: pre-line;}
#blogs_view .tag {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #696969;}
#blogs_view .tag .fa {
    margin-right: 10px;}
@media (max-width: 991px) {
#blogs_view .text-l {
    font-size: 22px;}
}

/* share-post */
#blogs_view .share-post .text-label {
    color: #696969;
    position: absolute;
    right: 65px;
    top: 12px;}
/**/
#blogs_view .share-post .dropdown-menu {
    margin-bottom: 10px !important;
    min-width: auto;
    padding: 15px;
    border: 0;
    box-shadow: 3px 11px 26px #8b888852;
    display: initial;
    right: 0;
    -webkit-transform: translate(0%, -1px);
    -ms-transform: translate(0%, -1px);
    transform: translate(0%, -1px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);}
#blogs_view .share-post .dropdown-menu.show {
    -webkit-transform: translate(0%, -12px);
    -ms-transform: translate(0%, -12px);
    transform: translate(0%, -12px);
    visibility: visible;
    opacity: 1;}
#blogs_view .share-post .dropdown-menu::before {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    content: "";
    border-top: 8px solid #fff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;}
#blogs_view .share-post .dropdown-menu a {
    padding-left: 8px;
    padding-right: 8px;
    position: relative;
    text-decoration: none;
    color: #000;}
#blogs_view .share-post .dropdown-menu a img {
    height: 13px;}
/**/
#blogs_view .share-post .dropdown-toggle {
    color: #fff;
    background: #086AD8;
    height: 48px;
    width: 48px;
    line-height: 35px;
    padding-left: 15px;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;}
#blogs_view .share-post .dropdown-toggle::after {
    border: 0;}

/* hr */
#blogs_view hr {
    background-color: #5a5a5a;}







/* footer */
footer {
    background-color: #000;
    color: #fff;
    padding-top: 70px;
    padding-bottom: 30px;}


/* a-logo */
footer .a-logo {
    display: inline-block;
    margin-bottom: 30px;}
footer .a-logo img {
    max-width: 100%;
    max-height: 45px;}

/* dec */
footer .dec {
    color: #828682;
    font-size: 13.3px;
    line-height: 22px;
    max-width: 350px;}

/* h5 */
footer .h5 {
    font-size: 18px;
    margin-bottom: 30px;}
@media (max-width: 991px) {
footer .h5 {
    margin-top: 60px;}
}

/* social-media */
footer .social-media {
    margin-top: 55px;}
footer .social-media a {
    display: inline-block;
    font-size: 20px;
    margin-right: 15px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: #fff;
    position: relative;} 
@media (max-width: 767px) {
footer .social-media a {
    font-size: 18px;}
}

/* links */
footer .links .link {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 18px;
    transition: color 0.5s ease;
    color: #828682;}
footer .links .link:hover {
    color: #d2a98e;}


/* contact-table */
footer .contact-table tr td {
    padding-top: 0;
    padding-bottom: 25px;}
footer .contact-table tr td .a {
    display: inline-block;
    line-height: 25px;
    color: #828682;}
footer .contact-table tr td .a:hover {
    color: #d2a98e;}
footer .contact-table tr:first-of-type td .a {
    position: relative;
    bottom: 5px;}




/* copy-right-text */
footer .copy-right-text {
    margin-top: 30px;
    color: #696969;}
footer .copy-right-text a {
    text-decoration: none;
    color: #696969;}