/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
header.main-header.style-one .logo-box {
  padding: 0px 10px 0px 0px;
}
.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width:100%;
  z-index:0;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.anim-icon .icon {
  position: absolute;
  background-repeat: no-repeat;
}
/** header-lower **/

.header-lower {
    display: none;
}
.fixed-header .header-lower {
display: block;
}
.fixed-header .sticky-header .outer-box {
  margin: 0px 12px !important;
}
.main-header .outer-box{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.main-header .logo-box {
  position: relative;
  display: block;
  padding: 0px 106px 0px 0px;
  background-repeat: no-repeat;
}
.main-header .logo-box .logo {
  padding: 30px 96px 30px 70px;
  background-repeat: no-repeat;
}
.main-header .logo-box .logo img{
  width: 200px;

}
header.main-header.style-three .logo-box .logo img{
  width: 154px;
  height: 50px;
}
header.main-header.style-three .sticky-header .logo-box .logo img{
  width: 154px;
  height: 60px;
}
.main-header .menu-area {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-header.style-one .menu-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main-header.style-one .menu-right-content li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.main-header.style-one .menu-right-content li:last-child{
  margin-right: 0px;
}
.main-header.style-one .menu-right-content .user-btn a,
.main-header.style-one .menu-right-content .cart-btn a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  transition: all 500ms ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/* Icon Box */
.icon__box .icon__outer {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon__box .icon__hover__bg__two {
  width: 50px;
  position: absolute;
  height: 50px;
  opacity: 1;
  transition: all 500ms ease;
}
.icon__box .icon__hover__bg__one {
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: scale(0.0);
  transform-origin: center;
  transition: all 500ms ease;
  position: absolute;
}


/** main-menu **/

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  cursor: pointer;
  z-index:2;
  padding:45px 0px;
  margin: 0px 15px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  font-family: var(--primary-font);
  opacity:1;
  z-index:1;
  letter-spacing: 1px;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}
.main-menu .navigation > li.current > a:before, .main-menu .navigation > li:hover > a:before {
  transform: translateX(-50%) scale(1,1);
}
.main-menu .navigation > li.dropdown > a{
  margin-right: 19px;
}
.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  top:100%;
  width:250px;
  z-index:100;
  border-radius: 5px;
  padding: 15px 0px;
  -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
  -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
}


.main-menu .navigation > li > ul > li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+6) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+7) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+8) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.main-menu .navigation > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding:14px 0px;
  line-height:24px;
  font-weight:400;
  font-size:16px;
  text-transform:capitalize;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f107";
  position: absolute;
  right: -15px;
  top: 0px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:14px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:400;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  width:230px;
  z-index:100;
  display:none;
  border-radius: 5px;
  padding: 15px 0px;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
  box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}
.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}
.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}

.main-menu .navigation > li > ul > li:hover > ul > li{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:14px 0px;
  line-height:24px;
  font-weight:400;
  font-size:16px;
  text-transform:capitalize;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  top: 100%;
  webkit-transform: rotateX(0);
  transform: rotateX(0);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  filter: alpha(opacity=100);
  top: 0%;
  -webkit-transform: rotateX(0);
  transform: rotateX(0); 
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}


.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}

.main-header .sticky-header .logo-box .logo{
  padding: 10px 0px;
}
.main-header .sticky-header .main-menu .navigation > li{
  padding: 25px 0px !important;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
}

.mobile-menu{
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 500ms ease-in;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:40px 25px;
  text-align:left; 
  max-width: 200px; 
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
  transition: all 500ms ease-in-out;
}
.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  -webkit-transition:all 0.7s ease;
  -moz-transition:all 0.7s ease;
  -ms-transition:all 0.7s ease;
  -o-transition:all 0.7s ease;
  transition:all 0.7s ease;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition:all 0.7s ease;
  -moz-transition:all 0.7s ease;
  -ms-transition:all 0.7s ease;
  -o-transition:all 0.7s ease;
  transition:all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}
.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}


div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 50px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}


.header_top {
  position: relative;
  padding: 15px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header_top .header_top_left .top_left {
  display: flex;
  flex-wrap: wrap;
}
.header_top .header_top_left .top_left li {
  margin-right: 60px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}
.header_top .header_top_left .top_left li:last-child {
  margin-right: 0px;
}
.header_top .header_top_left .top_left li:after {
  top: -15px;
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 50px;
  right: -30px;
}
.header_top a span {
  font-size: 15px;
}
.header_top .header_top_left .top_left li:last-child:after {
  display: none;
}
.header_right_info .top_right {
  display: flex;
}
.header_right_info .top_smedia {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.header_right_info li {
  margin-right: 30px;
  font-weight: 600;
}
.header_right_info li:last-child {
  margin-right: 0px;
}
.header__right__button {
  display: flex;
  position: relative;
  align-items: center;
}
.header__right__button>div {
  margin-right: 30px;
}
.header__right__button>div:last-child {
  margin-right: 0px !important;
}
.header__right__button i {
  font-size: 18px;
}
.header__right {
  padding-right: 70px;
}
.header_right_info .top_right .login__border:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  display: inline-block;
  top: 0;
  right: 207px;
}


/** banner-section **/

.banner__left__content {
  background-repeat: no-repeat;
  background: repeat-y;
  z-index: 11;
  position: relative;
}
.banner-section{
  position: relative;
  overflow: hidden;
}
.banner-carousel{
  position: relative;
  overflow: hidden;
}
.banner-carousel .slide-item{
  position: relative;
}
.banner.style__one .slide-item:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  z-index: 1;
}
.banner-carousel .slide-item .image-layer{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}
.banner-carousel .content__box{
  position: relative;
  display: block;
  padding: 94px 46px 220px 0px;
  z-index:5;
}
.banner-carousel .sub__title h6{
  color: var(--white-color);
  padding-bottom: 10px;
}
.banner__top__text h1 {
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 200px;
  line-height: 200px;
  z-index: 999;
  letter-spacing: 0.05em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(201, 171, 129, 0.2);
  color: transparent;
  position: absolute;
  right: -158px;
  top: 89px;
  
}
.nav-style-one .owl-nav .owl-prev{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  line-height: 90px;
  color: #222;
  font-size: 16px;
  border-radius: 50%;
  background: var(--white-color);
  font-weight: 600;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  cursor: pointer;
  margin-bottom: 10px;
  overflow: hidden;
}

.nav-style-one .owl-nav .owl-next{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  line-height: 90px;
  color: #222;
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  background: var(--white-color);
  font-weight: 600;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  cursor: pointer;
  overflow: hidden;
}
.nav-style-one .owl-nav .owl-prev:hover:before, 
.nav-style-one .owl-nav .owl-next:hover:before{
  transform: scaleX(1.0);
}
.nav-style-one .owl-nav .owl-prev:before{
  transform-origin: left !important;
}
.nav-style-one .owl-nav .owl-prev:before, 
.nav-style-one .owl-nav .owl-next:before{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 50%;
  transform: scale(0.0);
  transform-origin: right;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background-color: var(--theme-color);
}
.nav-style-one .owl-nav .owl-prev:hover span,
.nav-style-one .owl-nav .owl-next:hover span{
  color: var(--white-color);
  position: relative;
}
.banner-carousel .slide-item .icons-1 {
  width: 475px;
  height: 550px;
  left: 0px;
  bottom: 0px;
}



/* About Section */
.overview_left__section .expericence {
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
}
.overview_left__section .expericence span {
  font-weight: 500;
  font-size: 19px;
  line-height: 0px;
  color: var(--primary-color);
}
.overview_left__section .expericence h2 {
  line-height: 24px;
  margin-bottom: 22px;
  text-align: center;
  color: var(--theme-color);
}
.overview_left__section .expericence__text{
  padding: 0px 42px;
  text-align: center;
}

.overview__right__section .engineer__content {
  display: flex;
}
.overview__right__section .normal__text {
  padding-bottom: 34px;
}
.overview__right__section .about__btn {
  padding-top: 30px;
  display: inline-block;
}
.parallax-scene-1 .icon.layer-bg {
  left: 140px !important;
  top: 150px !important;
  width: 180px;
  height: 180px;
}
.parallax-scene-2 .icon.layer-bg {
  left: 44% !important;
  top: 208px !important;
  width: 180px;
  height: 180px;
}
.overview__section .icon.icon-02 {
  width: 450px;
  height: 552px;
  right: 0px;
  top: 255px;
}
.overview__section .icon.icon-03 {
  width: 276px;
  height: 395px;
  left: 0px;
  top: 100px;
}


/* Hero Section*/
.hero__content {
  background: var(--primary-color);
  padding: 100px 0px 100px;
}
.hero__content .main__title h2 {
  color: var(--white-color);
}
.hero__tab__section ul.tab-btns {
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}
.hero__tab__section ul.tab-btns li {
  position: relative;
  padding: 17px 48px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
    text-align: center;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 26px;
  border-left: none;
  cursor: pointer;
  border-right: 0;
}
.hero__tab__section ul.tab-btns li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__tab__section ul.tab-btns li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__tab__section ul.tab-btns li span {
  color: var(--white-color);
  z-index: 1;
  position: relative;
}
.hero__tab__section ul.tab-btns li:before {
  content: "";
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  width: 1px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}
.hero__tab__section ul.tab-btns li:last-child:before {
  display: none;
}
.hero__tab__section ul.tab-btns li:hover .inner__tab:before, 
.hero__tab__section ul.tab-btns li.active-btn .inner__tab:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.hero__tab__section ul.tab-btns li .inner__tab:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  width: 30px;
  height: 10px;
  margin: 0 auto;
  border-top: 10px solid var(--theme-color);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.hero__tab__section ul.tab-btns li:hover .inner__tab:after, 
.hero__tab__section ul.tab-btns li.active-btn .inner__tab:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.hero__tab__section ul.tab-btns li .inner__tab:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: var(--theme-color);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.tab__right__content .tab__text p{
  padding: 30px 0px;
}
.tab__right__content .tab__list {
  padding-bottom: 35px;
}
.tab__right__content .tab__list li {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: var(--white-color);
  display: flex;
  align-items: center;
}
.tab__right__content .tab__list li span {
  margin-right: 10px;
}
.tab__btn {
  display: inline-block;
}
.tab__left__content img {
  width: 100%;
}
.hero__content .icon.icons-1 {
  width: 439px;
  height: 500px;
  left: -100px;
  bottom: 0;
}
.hero__content .icon.icons-2 {
  width: 505px;
  height: 353px;
  right: -100px;
  bottom: 0;
}
.hero__section{
  padding-bottom: 0px;
}

/* Advantages Section*/
.advantages__section {
  padding: 100px 0px 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.advantages__left .roofer__text {
  padding-bottom: 50px;
}
.advantages__right img {
  margin-top: -30px;
}
.one-advantage__body:hover .icon__hover__bg__one {
  opacity: 1;
  transform: scale(1.0);
}
.one-advantage__body:hover .icon__hover__bg__two {
  opacity: 0;
}
.one-advantage__body:hover .icon__outer i{
  color: var(--white-color);
}
.one-advantage__body .icon__bg i {
  position: relative;
    color: var(--theme-color);
  font-size: 25px;
}
.one-advantage__body .icon__bg {
    padding-top: 4px;
}
.advantages__section:before {
  position: absolute;
  content: '';
  background: rgb(242 242 242 / 98%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}
.one-advantage__content .one-advantage__body {
  display: flex;
  align-items: center;
  padding-bottom: 35px;
}
.one-advantage__content .one-advantage__body .icon__box {
  margin-right: 15px;
}
.one-advantage__content .one-advantage__body p {
  padding-top: 15px;
}
.one-advantage__right h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}


/* get_touch */
.get_touch_content {
  background: #f2f2f2;
}
.image_layer {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
}
.image_layer.shape_01 {
  width: 123px;
  left: 0px;
  height: 100%;
  bottom: 0;
  z-index: 1;
}
.get_touch_image img {
  position: relative;
  width: 100%;
}
.get_touch_content .get_touch_left {
  padding: 76px 0px 60px 70px;
}
.get_touch_left h3 {
  font-weight: 800;
  font-size: 35px;
  line-height: 45px;
  color: var(--white-color);
  padding-bottom: 29px;
}
.get_touch_left .form-group input {
  padding: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white-color);
}
.get_touch_left .form-group .btn-two {
  margin-left: 15px;
}
section.get_touch.two {
  margin-bottom: -130px;
}
section.get_touch {
  margin-bottom: -136px;
  z-index:1;
  position: relative;
}

/* news-letter end*/

/* footer one*/
footer .main__footer__top {
  background: #171619;
  padding: 170px 0px 10px;
}
.footer__top__content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
.footer__social__media li a {
  display: flex;
  position: relative;
  width: 44px;
  height: 44px;
  background: #333235;
  text-align: center;
  vertical-align: middle;
  margin-right: 10px;
  justify-content: center;
  align-items: center;
}
.footer__social__media ul {
  display: flex;
}
.footer__social__media li a span {
  color: var(--white-color);
  position: relative;
}
.footer__social__media li a:hover:before {
  width: 100%;
  height: 100%;
}
.footer__social__media li a:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  background: var(--theme-color);
  transition: all 500ms ease;
}
.footer_widget .instagram_list {
  display: flex;
  flex-wrap: wrap;
}
.footer_widget .instagram_list li {
  padding-bottom: 10px !important;
  padding-right: 10px;
}
.footer_widget .widget_title h4 {
  color: var(--white-color);
  padding-bottom: 26px;
}
.footer_bottom {
  background: #171619;
  padding: 20px 0px;
  text-align: center;
}

.footer_bottom p {
  color: var(--white-color);
}
.footer__middle .footer__middle__content {
  padding-top: 40px;
  overflow: hidden;
}

.footer__middle {
  overflow: hidden;
}
.footer_widget .widget_media ul {
  display: flex;
}
.footer_widget .widget_media ul li {
  margin-right: 30px;
}
.footer_widget .widget_media ul li:last-child {
  margin-right: 0px;
}
.footer_widget.left .widget_content li:first-child {
  padding-bottom: 15px;
}
.footer_widget .widget_content li {
  color: #D2D1D2;
  line-height: 30px;
  padding-bottom: 10px;
}
.footer_widget .widget_content li span {
  color: var(--white-color);
  margin-right: 8px;
}
.footer_widget .widget_content li a{
  color: #D2D1D2;
}
.footer_widget .widget_media ul li a span {
  color: var(--white-color);
  transition: all 500ms ease;
}
.footer_widget .widget_media ul li a:hover span {
  color: var(--theme-color);
}
.copyright p a{
  color: #D2D1D2;
}



/* header-tech */
.main-header.tech .outer-box {
  max-width: 1290px;
  margin: 0 auto;
}
.main-header.tech .header-right_buttom {
  padding: 20px 0px;
}
.main-header.tech .outer-box .logo-box {
  padding: 0px 53px 0px 0px;
}
.main-header.tech .sticky-header .outer-box .logo-box {
  padding: 10px 0px;
}
.main-header.tech .outer-box .logo {
  padding: 0px 0px 0px 30px;
}
.main-header.cloud.tech .outer-box .logo {
  padding: 20px 0px 0px 17px;
}
.main-header.tech .main-menu .navigation > li{
  padding: 0px 0px;
}
.main-header.tech .header__right {
  padding-right: 0px;
}
.main-header.tech .main-menu .navigation > li.dropdown > a {
  margin-right: 0px;
}
.header__top__content {
  background: var(--primary-color);
}
.main-header.tech .header_top {
  max-width: 1290px;
  margin: 0 auto;
  background: transparent;
  padding: 15px 0px;
}
.main-header.tech .header_top .login__border:after{
  right: 145px;
}

.main-header.tech .outer-box .logo-box .image__bg {
  position: absolute;
  width: 238px;
  height: 124px;
  z-index: -1;
  top: -25px;
  left: 0;
  filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.15));
}

/* header-tech */

/** banner-section **/
.banner.style__two .content__box {
  padding: 180px 0px 245px 0px;
}
.banner.style__two .sub__title h6 {
  padding-bottom: 10px;
}
.banner.style__two .content__box h1 span {
  color: transparent;
}
.banner.style__two .slide-item:before {
  position: absolute;
  content: '';
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  z-index: 1;
}

.banner.style__two .slide__item__content{
  background-size: cover;
}
.banner.style__two .banner-carousel .content__box .btn-box{
  display: inline-block;
}
.banner.style__two .banner-carousel .owl-nav {
  width: 100%;
}
.banner.style__two .banner-carousel .content__box h1{
  margin-bottom: 10px ;
}
.banner.style__two .banner-carousel .owl-nav .owl-prev{
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translate(0%, -50%);
}
.banner.style__two .banner-carousel .owl-nav .owl-next{
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(100px, -50%);
}
/** banner-section end**/

/** service__from **/
.service__from.two {
  margin-top: -74px;
}
/** service__from end**/

/** about-two**/
.overview__section.two .expericence {
  left: 39%;
  bottom: 141px;
  filter: drop-shadow(0px 30px 100px rgba(0, 0, 0, 0.1));
}
.about__img__one {
  position: absolute;
  bottom: 0;
}
.about__img__two {
  position: absolute;
  left: 205px;
  filter: drop-shadow(0px 30px 100px rgba(0, 0, 0, 0.1));
}
.overview__section.two .icon.icons-1 {
  width: 815px;
  height: 276px;
  top: -135px;
  left: -100px;
}
.overview__section.two .icon.icons-2 {
  width: 230px;
  height: 421px;
  right: 0;
  bottom: 0;
}
.overview__section.two .icon.icons-3 {
  width: 563px;
  height: 117px;
  bottom: 0;
  right: 182px;
}
.overview__section.two .icon.icons-4 {
  width: 364px;
  height: 238px;
  bottom: -60px;
  right: 25px;
}
.overview__section.two .parallax-scene-1 .icon.layer-bg {
  left: 429px !important;
  top: 61px !important;
}
.overview__section.two .parallax-scene-4 .icon.layer-bg {
  left: 555px !important;
  width: 165px;
  height: 165px;
}
.overview__section.two .parallax-scene.parallax-scene-4 {
  top: 62% !important;
}

.hero__content__two .lower__content {
  background: var(--white-color);
  box-shadow: 0px 30px 100px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 0px;
  position: relative;
  margin-bottom: 30px;
}
.hero__content__two .service__icon {
  position: absolute;
  display: flex;
  align-items: center;
  width: 90px;
  height: 90px;
  justify-content: center;
  right: 30px;
  top: -43px;
}
.hero__content__two .service__icon .image_layer_one {
  width: 90px;
  height: 90px;
}
.hero__content__two .service__icon .icon {
  position: absolute;
}
.hero__content__two .service__icon .icon span {
  font-size: 50px;
}
.hero__content__two .lower__content .service__text {
  padding: 17px 0px 22px;
  position: relative;
}
.hero__content__two .lower__content .image_layer.shape-06 {
  width: 100%;
  height: 55px;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: -25px;
}

.hero__tab__section ul.three.tab-btns li .inner__tab:before{
  display: none;
}
.hero__tab__section ul.three.tab-btns li:hover .inner__tab:after, 
.hero__tab__section ul.three.tab-btns li.active-btn .inner__tab:after{
  display: none;
}
.hero__tab__section ul.three.tab-btns li {
    transform: rotate(-45deg);
  text-align: center;
  font-size: 18px;
  width: 180px;
  height: 180px;
  position: relative;
  margin: 25px;
  padding: 0;
}
.hero__tab__section ul.three.tab-btns li:last-child {
  margin-right: 0;
}
.hero__tab__section ul.three.tab-btns li:before{
  display: none;
}
.hero__tab__section ul.three .icon__hover__one {
  width: 180px;
  height: 180px;
  position: absolute;
  background-repeat: no-repeat;
  opacity: 1;
  transition: all 500ms ease;
}
.tab__content__three {
  position: relative;
  padding: 50px 10px;
    transform: rotate(45deg);
}
.tab__content__three .tab__content__text span {
  color: var(--primary-color) !important;
  transition: all 500ms ease;
}
.tab__content__three .tab__content__icon {
  font-size: 50px;
  padding-bottom: 10px;
  color: var(--theme-color);
  transition: all 500ms ease;
}
.hero__tab__section ul.three.tab-btns li.active-btn .icon__hover__two{
  opacity: 1;
}
.hero__tab__section ul.three.tab-btns li.active-btn .icon__hover__one,
.hero__section.three li:hover .icon__hover__one {
  opacity: 0;
}
.hero__section.three li:hover .icon__hover__two {
  opacity: 1;
  transform: rotateY(180deg);
}
.hero__section.three li .icon__hover__two {
  width: 180px;
  height: 180px;
  opacity: 0;
  transform: rotateY(0deg);
  transform-origin: center;
  transition: all 700ms ease;
  position: absolute;
}
.hero__tab__section ul.three.tab-btns li.active-btn span,
.hero__tab__section ul.three.tab-btns li:hover span{
  color: var(--white-color) !important;
}
.hero__tab__section ul.three.tab-btns li.active-btn .tab__content__icon, 
.hero__tab__section ul.three.tab-btns li:hover .tab__content__icon{
  color: var(--white-color);
}

.advantages__section.three {
  margin-top: 0px;
  padding: 150px 0px 0px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.advantages__section.three:before {
  background: var(--primary-color);
  opacity: 0.9;
}
.advantages__section.three h2,
.advantages__section.three h4,
.advantages__section.three p{
  color: var(--white-color);
}

.lower_content__two {
  background: var(--white-color);
  box-shadow: 0px 30px 100px rgba(0, 0, 0, 0.1);
  padding: 25px 0px 35px;
  text-align: center;
}

.lower_content__two h4 {
  padding-bottom: 15px;
}
/* service-three  */
.hero__section.three{ 
    position: relative;
}
.hero__section.three .hero__content{
    background-image: url(/assets/images/hero-bg-main.jpg);
  padding: 40px 0px 40px;

}
.hero__section.three p{
  color: var(--base-color);
}
.hero__section.three .tab__right__content .tab__list li{
  color: var(--primary-color);
}
.hero__section.three .tab__right__content h4{
  color: var(--primary-color);
}
.hero__section.three .hero__content .main__title h2 {
  color: var(--primary-color);
}



/* about-section-four */
.overview__section.four .about__two__expericence {
  left: inherit;
  right: -80px;
  bottom: -48px;
  z-index: 1;
}
.overview__section.four .about__three__left {
  padding: 0px 0px;
}


.overview__section.four .icon.layer-bg {
  top: 44px !important;
  left: 37% !important;
}
.overview__section.four .icon.icons-1 {
  width: 374px;
  height: 338px;
  top: 0;
  left: -100px;
}
.overview__section.four .icon.icons-2 {
  width: 398px;
  height: 550px;
  right: 0;
  bottom: 0;
}
/* about-section-four end */






/* page__title */

.page__title {
  overflow: hidden;
  padding: 130px 0px 100px;
}
.page__title h1.title {
  font-size: 50px;
  color: var(--primary-color);
}
.page__title .bread-crumb {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.page__title .bread-crumb li {
  display: flex;
  align-items: center;
  font-weight: 700;
  padding-top: 5px;
  color: var(--primary-color);
}
.page__title .bread-crumb li a span {
  margin-right: 10px;
  font-size: 14px;
  color: var(--secondary-color);
  transition: all 500ms ease;
}
.page__title .bread-crumb li a{
  color: var(--primary-color);
}
.page__title .bread-crumb li:last-child span {
  margin: 0px 5px 0px 5px;
  color: var(--primary-color);
}
.page__title .anim-icon .icon.layer-bg {
  width: 478px;
  height: 409px;
  top: 0px;
  right: 0px;
}
.bg-layer.parallax-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}



/*Contact-Page-Css*/


.contact__left .main__title h2 {
  font-size: 40px;
  padding: 10px 0px 20px;
}
.contact__left .normal__text p {
  padding-bottom: 30px;
}
.contact__left .contact__info__block {
  position: relative;
  padding-bottom: 25px;
  padding-left: 100px;
}
.contact__left .contact__info__block .left__site__info {
  width: 70px;
  height: 70px;
  background: var(--theme-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
.contact__left .contact__info__block .left__site__info span {
  position: relative;
  color: var(--white-color);
  font-size: 34px;
}
.contact__left .contact__info__block .right__site__info a {
  padding: 5px 0px;
  display: inline-block;
  color: var(--base-color);
}
.right__site__info.one h4 {
  padding-bottom: 10px;
}
.contact__section .contact__right {
  background: #F2F2F2;
  padding: 0px 70px 40px;
}
.contact__section .contact__right .contact___title span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 30px;
}
.contact__section .contact__right .contact___title h3 {
  padding: 20px 0px 30px;
}
.contact__section .contact__right input {
  width: 100%;
  background: var(--white-color);
  color: var(--base-color);
  padding: 15px 20px;
}
.contact__section .contact__right .form-group {
  margin-bottom: 30px;
}
.contact__section .contact__right textarea {
  width: 100%;
  background: var(--white-color);
  color: var(--base-color);
  height: 150px;
  padding: 15px 20px;
}




/*TEXT-PAGE*/
#text-page ul {
    margin: 20px 0px;
}
#text-page p {
    margin-bottom: 10px;
}
#text-page li {
    padding: 5px 0px;
}
#text-page li:before {
  content: "\f00c"; /* FontAwesome Unicode */
   font-family: 'Font Awesome 5 Pro';
    color: var(--theme-color);
    margin-right: 10px;
}

#text-page h3 {
    margin: 35px 0px 15px;
}
#text-page .back-home {
    text-align: center;
    margin-top: 40px;
}
#text-page .back-home .btn-tech {
    display: inline-block;
}
/*CUSTOM*/
.main-header.tech.cloud {
position: absolute;
}
.hero__section.three .plant-1 {
    position: absolute; bottom: 0;left: 0; width: 500px; z-index: 1;
}
.hero__section.three .plant-2 {
   position: absolute; bottom: 0;right: 0; width: 300px; z-index: 1;
}
.slogan {
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}
/*UTILITES*/
cite {
    color:var(--theme-color);
    font-style: normal;
    }
.items-center {
    display: flex; align-items: center
}
.z-2 {
    z-index: 2;
}
/*custom container*/
.custom-container {
  max-width:1000px;
  margin:0 auto;
  padding: 0px 12px;

}
/*Clouds Menu*/
.clouds-menu {
    z-index: 2;
}
.clouds-menu .double {
    justify-content: flex-end;
}
.clouds-menu .double .description {
width: 600px !important;    
}
.clouds-menu .double .description .tab__content__three {
    padding: 30px 10px;
}
.clouds-menu .double .description .tab__content__three p {
    font-size: 18px; 
    font-weight: 600;    
    text-align: right;    
    color: #18322e;
}
/*ABOUT*/
.overview__section {
    padding: 100px 0px;
}
/*FOOTER*/
.border-top-custom {
    border-top: 1px solid rgb(255 255 255 / 10%);   
}

/*LANG GUSTOM*/
.lang .hero__tab__section .clouds-menu ul.tab-btns li span {
 font-size: 14px;
}
.lang .hero__tab__section ul.tab-btns li span {
    color: var(--white-color);
    z-index: 1;
    font-size: 17px;
}

.lang .slogan h2 {
   font-size: 35px;
}