body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    color: #797F7D;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}



img{
    max-width: 100%;
    height: auto;
}

ul{
    margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6{
    color: #1F2230;
}

h3{
    font-size: 48px;
    font-weight: 600;
}

button .btn{
    box-shadow: none;
}

.common-btn{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 35px;
    padding: 15px 45px;
    border: 2px solid #FF9F0D;
    background: #FF9F0D;
    text-align: center;
    transition: 0.3s;
}

.btn-1, .btn-3{
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    padding: 15px 42px;
    background: #FF9F0D;
    border: 2px solid #FF9F0D;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-2{
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #090d25;
    padding: 15px 48px;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-1:hover{
    background: transparent;
    border: 2px solid  #FF9F0D;
    color: #ffffff;
}

.btn-2:hover{
    background: transparent;
    border: 2px solid #ffffff;
    color: #FFFFFF;
}

.btn-3:hover{
    background: transparent;
    border: 2px solid  #FF9F0D;
    color: #090d25;
}

.white-btn{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #080C24;
    border-radius: 5px;
    padding: 15px 30px;
    border: 2px solid #ffffff;
    background: #ffffff;
    text-align: center;
    transition: 0.3s;
}

.white-btn:hover{
    background: #FF9F0D;
    border: 2px solid #FF9F0D;
    color: #ffffff;
}

.common-btn:hover{
    background-color: transparent;
    border: 2px solid #FF9F0D;
    color: #080C24;
}

.common-btn-2{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 35px;
    padding: 15px 30px;
    border: 2px solid #FF9F0D;
    background: #FF9F0D;
    text-align: center;
    transition: 0.3s;
}

.common-btn-3{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 5px;
    padding: 15px 30px;
    border: 2px solid #FF9F0D;
    background: #FF9F0D;
    text-align: center;
    transition: 0.3s;
}

.common-btn-2:hover{
    background-color: transparent;
    border: 2px solid #FF9F0D;
    color: #ffffff;
}

.common-btn-3:hover{
    background-color: transparent;
    border: 2px solid #FF9F0D;
    color: #ffffff;
}

a:focus,
button:focus,
.btn:focus,
select:focus,
input:focus,
textarea:focus{
    box-shadow: none;
    outline: none;
}

a,
a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
}

textarea {
    height: 120px;
    width: 100%;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =================
   predoler starts
===================*/
.handle-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: #FF9F0D;
  }
  
  .preloader-close{
    position: fixed;
    z-index: 99999999;
    font-size: 26px;
    background: #fff;
    color: #FF9F0D;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
  }
  
  .handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
  }
  
  .handle-preloader .animation-preloader .spinner{
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    height: 150px;
    margin: 0 auto 45px auto;
    width: 150px;
  }
  
  .handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:before{
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top:0;
    position: absolute;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading{
    font-family: 'League Spartan', sans-serif;
    font-weight: 500;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
  .handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
  }
  
  .preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading{
    color: #ffffff;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:before{
    color: #ffffff;
  }
  
  .handle-preloader .animation-preloader .spinner{
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.5); 
  }
  
  /* Animation del preloader */
  @keyframes spinner {
    to {
      transform: rotateZ(360deg);
    }
  }
  @keyframes letters-loading {
    0%,
    75%,
    100% {
      opacity: 0;
      transform: rotateY(-90deg);
    }
  
    25%,
    50% {
      opacity: 1;
      transform: rotateY(0deg);
    }
  }
  
  @media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
      height: 8em;
      width: 8em;
    }
  }
  @media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
      height: 7em;
      width: 7em;
    }
    .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
  }
/* =================
    predoler ends
==================== */


/* ========================
   scroll to top starts
=========================== */
.scroll-to-top{
	position: fixed;
	right: 0px;
	bottom: 100px;
	transform: rotate(90deg);
	z-index: 99;
  }
  
  .scroll-to-top .visible {
	visibility: visible!important;
	opacity: 1!important;
  }
  
  .scroll-to-top .scroll-top-inner {
	opacity: 0;
	visibility: hidden;
  }
  
  .scroll-to-top .scroll-top-inner{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
	-o-transition: all cubic-bezier(.4,0,.2,1) .4s;
	transition: all cubic-bezier(.4,0,.2,1) .4s;
  }
  
  .scroll-to-top .scroll-bar {
	width: 50px;
	height: 2px;
	margin-right: 10px;
	position: relative;
  }
  
  .scroll-to-top .scroll-bar:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #ddd;
  }
  
  .scroll-to-top .scroll-bar .bar-inner {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-color: #FF9F0D;
  }
  
  .scroll-to-top .scroll-bar-text{
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 500ms ease;
	color: #FF9F0D;
  }
  
  .scroll-to-top .scroll-bar-text:hover{
	transform: scale(1.1);
  }
/* ======================
   scroll to top end
========================= */



/* ==================
    HEADER STARTS
=================== */
/* HEADER TOP STARTS */
header{
    width: 100%;
}

.auto-container{
    width: 100%;
    max-width: 1425px;
    margin: 0 auto;
}

.header-top {
    position: relative;
    height: 76px;
    z-index: 10;
    background: #080C24;
}

.header-top-content-wrapper{
    height: 76px;
}

.header-top-content span{
    color: #fff;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top-content-wrapper ul{
  width: 100%;
  height: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}

.header-top-content-wrapper ul li a{
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
}

.header-top-content-wrapper ul li a i{
    margin-right: 10px;
}

.header-top-content-wrapper ul li i{
    margin-right: 10px;
}

.header-top-content-wrapper ul li a:hover{
    color: #FF9F0D;
}

.header-top-content-wrapper ul li{
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}






.hrader-top-info{
    height: 76px;
}

.hrader-top-info ul{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.home-three-hrader-top-info ul{
    margin-left: 50px;
}

.hrader-top-info ul li{
    margin: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
}

.hrader-top-info ul li:first-child{
    margin-right: 0;
}

.hrader-top-info ul li a{
   color: #ffffff; 
   font-size: 16px;
   transition: 0.3s;
}

.hrader-top-info ul li a:hover{
    color: #FF9F0D;
}
/* HEADER TOP ENDS */

/* main menu area starts */
/*MOBILE MENU STARTS*/
.mobile-menu-trigger {
    cursor: pointer;
    margin-left: 30px;
    display: none;
}

.mobile-menu-trigger span {
    height: 2px;
    display: block;
    width: 35px;
    margin-bottom: 9px;
    background-color: #000;
}

.mobile-menu-trigger span:last-child {
    margin-bottom: 0;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #080C24;
    background-size: cover;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: .4s;
    transition: .4s;
}

#mobile-menu-wrap {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 120px 0px 50px 0px;
}

#mobile-menu-wrap div {
    background-color: transparent;

}

.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.slicknav_nav, .slicknav_nav.slicknav_hidden {
    display: block !important;
    text-align: left;
    margin-top: 25px;
}

.slicknav_btn {
    display: none !important;
}

.slicknav_menu {
    padding-left: 0;
}

.slicknav_nav li a {
    display: block;
    border-bottom: 1px solid #ffffff14;
    font-weight: 400;
    padding-left: 30px;
}

.slicknav_item.slicknav_row a {
    border-bottom: 0;
}

.slicknav_nav .slicknav_row, .slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}

.slicknav_nav .slicknav_arrow {
    font-size: 15px;
}

.slicknav_nav ul {
    margin: 0 0 0 25px;
}

.slicknav_nav .menu-item-has-children ul {
    margin-bottom: 20px;
}

.slicknav_item.slicknav_row {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-left: 30px;
}

.slicknav_arrow {
    -webkit-transition: .3s;
    transition: .3s;
    right: 0;
    top: 17px;
    position: absolute;
}

.slicknav_nav a, .slicknav_row a {
    color: #ffffff;
    font-size: 20px;
    display: inline-block;
}

.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
}

.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}

.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu-close::before, .mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #ffffff;
    content: '';
    top: 0;
}
/* MOBILE MENU ENDS*/

/* HEADER STARS */
.header-menu-bar{
    position: relative;
    z-index: 10;
}

.logo{
    height: 120px;
    display: flex;
    align-items: center;
}

.menu-bar{
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.main-navigation ul li {
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.main-navigation ul li a {
    padding: 31px 26px;
    display: inline-block;
    
    color: #1F2230;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.main-navigation ul li a:hover{
    color: #FF9F0D;
}


.main-navigation ul li a i{
    transition: 0.3s;
	margin-left: 6px;
}

.main-navigation ul li:hover i{
    transform: rotate(180deg);
}

.main-navigation ul li .active{
    color: #FF9F0D;
}

/* Submenu / Dropdown Menu CSS */
.main-navigation ul li ul {
    position: absolute;
    width: 250px;
    left: 0;
    top: 100%;
    z-index: 2;
    transition: .3s ease-in;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-navigation ul li ul li {
    display: block;
    text-align: left;
    border-bottom: 1px solid #e1e4f9;
    background-color: #fff;
    /* box-shadow: 0px 4px 8px 5px rgba(0,0,0,0.3) inset; */
    width: 90%;
    margin-left: 13px;
}

.sub-menu li a{
    padding: 20px 20px !important;
    width: 100%;
    transition: 0.3s;
}

.sub-menu li a:hover{
    padding-left: 30px !important;
}

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

.main-navigation ul li ul ul {
    left: 250px;
    top: 0;
}
/* Submenu / Dropdown Menu CSS End */

/* menu right */
.menu-right-info{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/*  */
.primary {
    color: #FF9F0D;
    background-color: transparent;
    border-color: transparent;
    transition: 0.3s;
}

.primary i{
    font-size: 18px;
}

.btn {
    line-height: 0;
}

.primary:hover {
    opacity: 0.5;
}

.btn-close{
    position: absolute;
    top: 35px;
    right: 35px;
    opacity: 1;
}

.btn-close i{
    font-size: 32px;
    color: #ffffff;
}

.primary:active:focus{
    box-shadow: none;
}

div#offcanvasTop {
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    z-index: 9999;
}

.offcanvas-body{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.offcanvas-body form{
    width: 100%;
}

.offcanvas-body form input[type="search"] {
    background: transparent;
    border-bottom: 3px solid #fff;
    width: 50%;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 30px;
    color: #fff;
}

.offcanvas-body form i{
    color: #fff;
    font-size: 30px;
    margin-left: -40px;
}

.offcanvas-body form input::placeholder{
    color: #fff;
}
/*  */

.home-two-header-buttons-area .common-btn:hover{
    color: #ffffff;
}

.menu-cell-number ul li{
    color: #858FB2;
    font-size: 13px;
}

.menu-cell-number ul li a{
    display: inline-block;
    font-weight: 600;
    font-size: 22px;
    color: #121F45;
    transition: 0.3s;
}

.menu-cell-number ul li a:hover{
    color: #0537CB;
}
/*menu right*/
/* ================
    HEADER ENDS
 ================ */

 /* ================
   BANNER STARTS
================= */
.banner-section{
    position: relative;
    overflow: hidden;
  }
    
  .banner-carousel .slide-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 803px;
  }
    
  .banner-carousel .slide-item:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90.17deg, #080C24 1.49%, rgba(0, 0, 0, 0) 38.15%);
    top: 0px;
    right: 0px;
    z-index: 1;
  }

/* Mobilní verze – bez gradientu v banneru */
@media (max-width: 767px) {
    .banner-carousel .slide-item:before {
       background: rgba(8, 12, 36, 0.55) !important;
    }
}



    
  .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;
    transform:scale(1);
    transition: all 8000ms linear;
  }
    
  .banner-carousel .active .slide-item .image-layer{
    transform:scale(1.15);
  }

  .banner-carousel .content-box{
    position: relative;
    z-index: 5;
    max-width: 820px;
    width: 100%;
  }
    
  .banner-carousel .content-box h3{
    font-size: 24px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 26px;
    opacity: 0;
    padding-left: 10px;
    transform: translateY(-50px);
    transition: all 1000ms ease;
  }
  
  .banner-carousel .content-box h3::before{
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    left: 0px;
    top: -2px;
  }
    
  .banner-carousel .active .content-box h3{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1000ms;
  }
    
  .banner-carousel .content-box h2{
    text-transform: capitalize;
    font-size: 68px;
    line-height: 100px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
  }
    
  .banner-carousel .active .content-box h2{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1000ms;
  }
    
  .banner-carousel .content-box p{
   
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
  }
    
  .banner-carousel .active .content-box p{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1200ms;
  }
    
  .banner-carousel .content-box .btn-box{
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
  }
    
  .banner-carousel .active .content-box .btn-box{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1400ms;
  }
    
  .banner-section .banner-carousel .owl-nav{
    display: none;
  }

  .banner-carousel .owl-dots {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    display: inline-grid;
 }

 .banner-carousel .owl-dots .owl-dot{
    margin: 15px 0;
 }

 .banner-carousel .owl-dots .owl-dot span {
    background: #ffffff;
    border: 1.5px solid transparent;
    margin: 6px 5px 0px 6px;
}

.banner-carousel .owl-dots .owl-dot.active{
    margin: 10px 0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border: 1.5px solid #FF9F0D;
    background: transparent;
}

.banner-carousel .owl-dots .owl-dot.active span {
    background: 0 0 #FF9F0D;
}

.common-whait-btn{
    background: #ffffff;
    color: #080C24;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    border-radius: 35px;
    transition: 0.3s;
}

.common-whait-btn:hover{
    color: #ffffff;
    background: #FF9F0D;
    border: 2px solid #FF9F0D;
}

.banner-section .common-whait-btn{
    margin-left: 20px;
}

.banner-section .common-btn:hover{
    background: #ffffff;
    border: 2px solid #ffffff;
} 
/* ====================
    BANNER AREA ENDS
 ====================== */

/* ====================
    OUR MISSION STARTS
 ====================== */
.mission{
    padding: 125px 0;
}

.mission-left-content{
    position: relative;
    left: 30px;
}

.mission3 .mission-right-content{
    margin-left: 40px;
}

.mission3 .mission-right-content span{
   text-transform: capitalize;
   font-size: 18px;
   font-weight: 500;
   letter-spacing: 1px;
}

.mission3 .mission-right-content h6{
    font-size: 16px;
    line-height: 29px;
    text-transform: capitalize;
    color: #888888;
 }

 .mission3 .common-btn {
   padding: 15px 52px;
   font-size: 18px;
}

.mission-image-one img{
    width: 477.35px;
    height: 598.82px;
    border-radius: 20px;
}

.mission-image-two{
    max-width: 273.06px;
    height: 279.96px;
    border-radius: 20px;
    position: absolute;
    top: 50px;
    right: 100px;
}

.home-two-mission-img{
    transform: rotateX('45deg');
}

.home-two-mossion .common-btn{
    border-radius: 5px;
}

.mission-shape-one {
    position: absolute;
    left: 10px;
    bottom: -30px;
    z-index: -1;
    animation: mission 2s linear infinite alternate;
}

.mission-shape-two {
    position: absolute;
    top: 28px;
    right: 70px;
    z-index: -1;
}

@keyframes mission{
    0%{
        bottom: -30px;
    }

    100%{
        bottom: -40px;
    }
}

.common-title span{
    display: inline-block;
    color: #FF9F0D;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.common-title p{
    line-height: 29px;
   
}

.align-title{
    text-align: center;
}

.mission-right-content h6{
    line-height: 28px;
    margin: 25px 0;
}

.mission-right-content ul li{
    display: flex;
}

.mission-right-content ul li i{
    display: inline-block;
    max-width: 26px;
    width: 100%;
    height: 26px;
    line-height: 26px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    background: #FF9F0D;
    margin-right: 15px;
}

.mission-right-wrapper{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.mission-btn .btn-3{
    padding: 15px 52px;
}

.mission-exp{
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.mission-exp span{
    font-size: 18px;
    font-weight: 600;
    color: #FF9F0D;
    margin-left: 10px;
}
 /* ====================
    OUR MISSION ENDS
 ====================== */

 /* ====================
    VIDEO SECTION STARTS
 ====================== */
.video{
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
.video__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.video__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video__bg::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: #071a32;
    opacity: 0.8;
}




.vedio-shape{
    position: absolute;
    top: 0;
    left: 0;
}

.vedio-title h3{
    color: #ffffff;
}

.vedio-title p{
    color: #ffffff;
    margin: 30px 0;
    letter-spacing: 1px;
}

.cta-vedio-button a {
    position: relative;
    background-color: #FF9F0D !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-vedio-button a i.fas.fa-play {
    color: #ffffff !important;
    font-size: 28px;
}

.cta-vedio-button a::before {
    position: absolute;
    content: '';
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed #FF9F0D;
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid #FF9F0D !important;
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 1.5s linear infinite;
    opacity: 0;
}

@keyframes cta-anim{
    0%{transform: scale(.5);}
    50%{opacity: 1;}
    100%{transform: scale(.7) !important;}

}

.video-right-content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-vedio-button{
    display: flex;
    justify-content: center;
}

.video-right-content span{
    display: inline-block;
    font-family: 'Passions Conflict';
    font-size: 48px;
    color: #FF9F0D;
    margin-top: 30px;
}
 /* ====================
    VIDEO SECTION ENDS
 ====================== */

 /* ========================
    COUNTER SECTION STARTS
 =========================== */
.counter-contrnt{
    background-color: #ffffff;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 50px 0;
    position: relative;
    top: -100px;
    z-index: 1;
}

.counter-content {
    width: 100%;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.counter-border{
    border-right: none;
}

.counter-content i{
    display: inline-block;
    color: #FF9F0D;
    font-size: 52px;
    margin-bottom: 15px;
}

.counter-content span{
    color: #FF9F0D;
    font-size: 16px;
    font-weight: 600;
}
 /* ========================
    COUNTER SECTION ENDS
 ========================== */

 /* ========================
    SERVICE AREA STARTS
 ========================== */
.banner + .service{
    padding-top: 20px;
    padding-bottom: 200px;
}
.service{
    padding-top: 60px;
    padding-bottom: 60px;
}
.service__inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-container{
    height: max-content;
    overflow: hidden;
    margin-top: 10px;
    padding: 15px;
    background: #FFFFFF;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    transition: 0.8s;
    display: flex;
    flex-direction: column;
}

.service-container:hover .service-image img{
    transform: scale(1.2);

}

.service-container:hover .service-image i{
    bottom:72%;
}

.service-image{
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 270px;
    transition: 0.3s;
}

.service-image img{
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background-size: cover;
	  object-fit: cover;     
    object-position: center; 
    display: block;
}

.service-content-wrapper{
    position: relative;
  }

.service-content-wrapper-overlay{
    position: absolute;
    top: 0;
    width: 0%;
    height: 100%;
    left: 0;
    background: #ffffff;
    z-index: 10;
   
  }

@keyframes panel{
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.service-image i{
    display: inline-block;
    width: 90px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 42px;
    background: #FF9F0D;
    color: #ffffff;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: 0.8s;
}

.service-info{
    padding: 20px 20px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-container h5{
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.home-three-service .service-container a{
    display: inline-block;
    color: #1F2230;
    font-weight: 600;
    font-size: 24px;
    margin-top: 20px;
}

.service-container p{

    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.service-container a{
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #1F2230;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 10px;
    margin-top: 10px;
  
}

.service-container a i{
    margin-left: 10px;
    font-size: 34px;
    transition: 0.3s;
}

.service-container a:hover{
    color: #FF9F0D;
}

.service-container a:hover i{
    padding-left: 10px;
}

@media (max-width: 991px) {
    .service__inner{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .service__inner{
        grid-template-columns: 1fr;
    }
}
 /* ========================
    SERVICE AREA ENDS
 ========================== */

 /* ========================
    WHY CHOOSE US STARTS
 ========================== */
.choose{
    position: relative;
    padding: 120px 0;
    background: #090D25;
}

.choose::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/choose-shape.png') no-repeat;
}

.choose-left-content .common-title h3{
    color: #ffffff;
    margin-bottom: 0;
}

.choose-left-content .common-title p{
    color: #ffffff;
    margin: 40px 0;
}

.choose-content-wrapper{
    display: flex;
    margin-top: 30px;
}

.choose-wrapper{
    position: relative;
    padding: 10px;
    overflow: hidden;
    width: 266px;
    height: 148px;
    background: #0A0F2E;
    text-align: center;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 1;
}

.choose-wrapper-inner{
    position: relative;
    z-index: 1;
}

.choose-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF9F0D;
    transition: 0.3s;
}

.choose-wrapper:hover::before{
    left: 0;
}

.choose-wrapper:hover i{
    color: #ffffff;
}

.choose-wrapper i{
    display: inline-block;
    color: #FF9F0D;
    font-size: 38px;
    margin-bottom: 15px;
}

.choose-wrapper span{
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.choose-right-content {
    display: flex;
    justify-content: center;
    position: relative;
}

.choose-image{
    position: relative;
    z-index: 2;
}

.choose-border {
    position: absolute;
    top: -25px;
    right: 10px;
    z-index: 1;
    animation: chooseBorder 2s linear infinite alternate;
}

@keyframes chooseBorder{
    0%{
        top: -25px;
        right: 10px;
    }

    100%{
        top: 0px;
        right: 30px;
    }
}
 /* ========================
    WHY CHOOSE US ENDS
 ========================== */

 /* ====================
    FAQ AREA STARTS
 ====================== */
.faq{
    padding-top: 55px;
}

.home-three-faq{
    padding-bottom: 125px;
}

.faq-right-content {
    margin-top: 100px;
}

.faq-accordion{
    margin-top: 10px;
}

.accordion-item {
    box-shadow: none;
    border: none;
    border-bottom:  1px solid rgba(0, 0, 0, 0.05);
}

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

.home-three-faq .accordion-item{
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.home-three-faq .accordion-button {
    padding: 30px 53px 30px 30px;
}

.home-three-faq .accordion-button:not(.collapsed) {
    padding: 30px 53px 30px 30px;
}

.home-three-faq .accordion-body {
    padding: 1rem 1.25rem 1rem 1.25rem;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solil transparent !important;
}

.accordion-button{
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 30px 53px 30px 0px;
    color: #161616;
    font-weight: 600;
    font-size: 20px;
}

.accordion-button:focus {
    border-color: transpare;
    box-shadow: none;
    border: none;
}

.accordion-body {
    background-color: transparent;
    border: transparent;
    line-height: 29px;
    
}

.accordion-button:not(.collapsed) {
    position: relative;
    background-color: #ffffff;
    box-shadow: none;
    padding: 30px 53px 30px 0px;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #1F2230;
}

.accordion-body {
    padding: 1rem 1.25rem 1rem 0;
}

.accordion-button::after{
    background-image: none;
    content: '\0208A';
    font-size: 54px;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    right: 20px;
}

.accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\0208B';
    font-size: 54px;
    width: auto;
    height: auto;
    position: absolute;
    top: 40px;
    right: 20px;
}
 /* ====================
    FAQ AREA ENDS
 ====================== */

/* ====================
    TEAM AREA STARTS
====================== */
.team{
    position: relative;
    padding: 60px 0;
    background: #090D25;
}

.team-shape-1{
    position: absolute;
    top: 0;
    left: 0;
}

.team-shape-2{
    position: absolute;
    bottom: 0;
    left: 0;
}

.team-title h3{
    color: #ffffff;
}

.team-image {
    position: relative;
    width: 100%;
    border-radius: 5px;
    margin-top: 50px;
  }
  
.team-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: rgba(10, 15, 46, 0.95);
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  
  .team-image:hover .team-image-overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .team-info{
    width: 100%;
    height: 100%;
    position: relative;
  }

  .team-info-top h4{
    color: #ffffff;
    font-weight: 500;
    font-size: 24px;
  }

  .team-info-top span{
    color: #ffffff;
  }

  .team-info-media ul{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 0px;
    border-radius: 35px;
    background: #ffffff;
  }

  .team-info-media ul li{
    text-align: center;
    width: 35%;
    border-right: 1px solid rgba(255, 159, 13, 0.3);
  }

  .team-info-media ul li:last-child{
    border-right: transparent;
  }

  .team-info-media ul li a{
    font-size: 24px;
    color: #FF9F0D;
    transition: 0.3s;
  }

  .team-info-media ul li a:hover{
    color: #0CB88E;
  }
/* ====================
    TEAM AREA ENDS
====================== */

/* ====================
    TESTIMONIAL STARTS
====================== */
.testimonial{
    padding: 125px 0 200px;
}

.testimonial-content{
    position: relative;
    padding: 40px 25px;
    background: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin: 0 10px;
}

.testimonial-icon{
    position: absolute;
    top: -35px;
    left: 35px;
}

.testimonial-icon i {
    display: inline-block;
    width: 65px;
    height: 65px;
    line-height: 75px;
    text-align: center;
    font-size: 32px;
    color: #FF9F0D;
    background: #FFFFFF;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-info{
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-image img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-info ul{
    margin-left: 10px;
}

.testimonial-info ul li h6{
    font-weight: 600;
    font-size: 18px;
}

.testimonial-slider .owl-nav {
    display: none;
}

.testimonial-slider{
    margin-top: 30px;
}

.testimonial .owl-carousel .owl-stage-outer {
    padding: 50px 0;
}

.testimonial-slider .owl-dots{
    position: relative;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.testimonial .owl-theme .owl-dots .owl-dot span{
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 500ms ease;
    border: 1px solid transparent;
}

.testimonial .owl-theme .owl-dots .owl-dot.active span {
    background: #FF9F0D;
    width: 30px;
    border-radius: 10px;
}

.testimonial .owl-theme .owl-dots .owl-dot span:hover,
.testimonial .owl-theme .owl-dots .owl-dot.active:hover span{
    width: 30px;
    border-radius: 10px;
}
/* ====================
    TESTIMONIAL ENDS
====================== */

/* ====================
    PHOTO GALLERY STARTS
====================== */
.gellary{
    padding-bottom: 125px;
    overflow-x: hidden;
}

.gallery-slide-wrapper{
    margin: 0 -128px;
}

.gallery-slide {
    display: flex;
    margin-top: 50px;
}

.gallery-content{
    margin: 0 10px;
}

.gallery-content .footer-gallery-item {
    position: relative;
    max-width: 416px;
    width: 100%;
    height: 470px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-content .footer-gallery-overlay{
    height: 85%;
    width: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.gallery-content .footer-gallery-overlay-plus{
    width: 58px;
    height: 58px;
    line-height: 17px;
    text-align: center;
    border-radius: 50%;
    border: 3px solid #ffffff;
}

.gallery-content .footer-gallery-overlay-plus span{
    display: inline-block;
    font-size: 94px;
    font-weight: 700;
}
/* ====================
   PHOTO GALLERY ENDS
====================== */

/* ====================
   BLOG AREA STARTS
====================== */
.blog{
    padding-bottom: 260px;
}

.blog-container{
    padding: 0;
}

.blog-container .service-info {
    padding: 22px 30px 33px 30px;
}

.blog-container .service-info a {
    margin-top: 15px;
}

.blog3-link{
    color: #FF9F0D !important;
}

.blog-container:hover .blog-image img{
    transform: scale(1.2);
}

.blog-image{
    height: 320px;
    overflow: hidden;
}
/* ====================
   BLOG AREA ENDS
====================== */

/* ====================
    FOOTER AREA STARTS
====================== */
/* footer top */
.footer-top {
    padding: 57px 60px;
    height: 230px;
    background: #FF9F0D;
    border-radius: 5px;
    margin-top: -240px;
    margin-bottom: 80px;
    position: relative;
}

.drop-one{
    position: absolute;
    top: 20px;
    left: 20px;
}

.drop-two{
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.drop-three{
    position: absolute;
    left: 45%;
    bottom: 50px;
}

.footer-top-content{
    display: flex;
    align-items: center;
}

.footer-top-content h3{
    color: #ffffff;
    font-size: 40px;
    line-height: 60px;
}

.footer-form{
    position: relative;
    height: 116px;
    display: flex;
    align-items: center;
}

.footer-form input[type="email"] {
    width: 100%;
    padding: 22px 25px;
    border-radius: 5px;
    border: none;
}

button.footer-form-icon {
    border: none;
}

.footer-form-icon{
    position: absolute;
    right: 10px;
    padding: 0;
}

.footer-form-icon i {
    display: inline-block;
    padding: 12px 20px 4px 20px;
    background: #FF9F0D;
    border-radius: 5px;
    color: #ffffff;
    font-size: 24px;
}
/* footer top */

.footer-container{
    background: #080C24;
    padding-top: 80px;
    position: relative;
}

.footer-middle{
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #282828;
}

.drop-shape-one {
    position: absolute;
    bottom: -50px;
    right: -120px;
}

.drop-shape-two {
    position: absolute;
    bottom: 48px;
    right: -20px;
}

.footer-content-inner p{
    color: #ffffff;
    margin: 20px 0;
}

.address{
    display: flex;
    color: #ffffff;
    margin: 20px 0;
}

.address-icon{
    margin-right: 10px;
}

.address-icon i{
    font-size: 24px;
    margin-top: 5px;
}

.address-icon i.fa-solid.fa-phone {
    padding: 15px;
    background: #FF9F0D;
    border-radius: 50%;
}

.address-info a{
    display: block;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    transition: 0.3s;
}

.address-info a:hover{
    color: #FF9F0D;
}

.footer-content h5 {
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
}

.footer-content ul {
    margin-top: 20px;
}

.footer-content ul li {
    margin-bottom: 20px;
}

.footer-content ul li a {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.footer-content-date{
    font-size: 18px !important;
    font-weight: 700;
}

.footer-content-date::before{
    display: none;
}

.footer-content-date:hover{
    border-bottom: 1px solid transparent !important;
}

.footer-content ul li a:hover {
    color: #FF9F0D;
    border-bottom: 1px solid #FF9F0D;
}

.footer-content ul li p{
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.footer-content-inner-last-child ul{
    margin-bottom: 40px;
}

.footer-last-content{
    width: 100%;
    margin-left: 44px;
}

.footer-gallery{
    margin-top: 20px;
}

.footer-gallery a {
    height: 80px;
    width: 78px;
    margin-right: 10px;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-gallery-item{
    position: relative;
    width: 78px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

.footer-gallery-item img {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transform: scale(1.1);
}

.footer-gallery-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background: rgba(255, 159, 13, 0.9);
    border-radius: 5px;
}

.footer-gallery-item:hover .footer-gallery-overlay{
    opacity: .8;
}

.footer-gallery-overlay-plus{
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: 0.5s;
}

/* footer bottom */
.footer-bottom-wrapper{
    background-color: #080C24;
    padding: 30px 0;
    text-align: center;
}

.footer-copyright p{
    color: #ffffff;
    margin-bottom: 40px;
}

.footer-media ul{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer-media ul li a{
    display: inline-block;
    margin: 0 14px;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-media ul li a:hover{
    color: #FF9F0D;
}
 /* ====================
    FOOOTER AREA ENDS
 ====================== */

 /* ========================
    HOME TWO HEADER STARTS
 ========================== */
.home-two-header{
    position: absolute;
}

.home-two-menu-bar{
    height: 120px;
    margin-right: -50px;
}

.home-tow-logo{
    height: 120px;
}

.home-two-header-buttons-area{
    height: 120px;
}

.home-two-header-buttons-area .menu-right-info {
    height: 100%;
}

.home-two-header-menu-bar .auto-container{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-two-header-menu-bar .main-navigation ul li a{
    color: #ffffff;
    padding: 47px 26px;
}

.home-two-header-menu-bar .main-navigation ul li a:hover{
    color: #FF9F0D;
}

.home-two-header-menu-bar .main-navigation ul li .active{
    color: #FF9F0D;
}

.home-two-header-menu-bar .sub-menu li a{
    color: #080C24 !important;
    padding: 25px 15px !important;
}

.home-two-header-menu-bar .sub-menu li a:hover{
    color: #FF9F0D !important;
}

.home-two-primary:hover{
    color: #ffffff;
}
 /* ========================
    HOME TWO HEADER STARTS
 ========================== */

/* ========================
    HOME TWO BANNER STARTS
 ========================== */
.home-two-banner-image{
    height: 1095px;
    position: relative;
}

.home-two-banner-left-content {
    height: 1095px;
    display: flex;
    align-items: center;
    margin-left: 0;
}

.home-two-banner .banner-carousel .slide-item::after {
    display: none;
}

.home-two-banner-line{
    position: absolute;
    bottom: 25px;
    right: 0;
 }

 .home-two-circle-large {
    position: absolute;
    bottom: 50px;
    right: 120px;
}

.home-two-circle-small {
    position: absolute;
    bottom: 185px;
    right: 340px;
}

.home-two-overlay{
    background: rgba(9, 13, 37, 0.9);
    background-size: cover;
    height: 100%;
}

.home-two-banner-left-content{
    margin: 0 -40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}

.banner-two-left-wrapper-inner{
    text-align: center;
    border: 2px solid #FF9F0D;
    padding: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 30px;
} 

.home-two-banner-info span{
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 29px;
    color: #FFFFFF;
}

.home-two-banner-info a{
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    color: #FF9F0D;
}

.banner-two-inset h5{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.home-two-banner-content-wrapper{
    height: 1095px;
    margin-left: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-two-menu-phone-icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #ffffff !important;
    color: #FF9F0D;
    font-size: 22px;
    margin-right: 10px;
    margin-left: 20px;
}

/*  */
.home-two-banner .banner-carousel .slide-item:before{
    background: none;
}

.home-two-banner .banner-carousel .slide-item{
    height: 100%;
}

.banner-two-left-image {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.home-two-banner .banner-carousel .active .home-two-banner-left-content{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

.banner-two-left-wrapper{
    position: absolute;
    bottom: 300px;
    right: 0px;
    padding: 5px;
    width: 169px;
    height: 193px;
    background: #FFFFFF;
    border-radius: 30px;
    transform: rotate(-14.92deg);
}

.home-two-banner .banner-carousel .banner-content-wrapper h2 {
    font-size: 66px;
    line-height: 90px;
    color: #fff;
    margin-bottom: 17px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}

.home-two-banner .banner-carousel .active .banner-content-wrapper h2  {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1000ms;
}

.home-two-banner .banner-carousel .banner-content-wrapper p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 36px;
    text-transform: capitalize;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}

.home-two-banner .banner-carousel .active .banner-content-wrapper p{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

.home-two-btn-group{
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}

.home-two-banner .banner-carousel .active .home-two-btn-group{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2000ms;
}

.home-two-menu-phone-icon {
    display: flex;
}

.home-two-banner .owl-nav{
    display: none;
}

.home-two-banner .owl-dots{
    display: none;
}

.home-two-banner .banner-carousel .slide-item:before{
    z-index: 0;
}
/* ====================
HOME TWO BANNER ENDS
====================== */

/* ========================
HOME TWO MISSION STARTS
============================ */
.home-two-mission{
    padding-top: 0;
    margin-top: -75px;
}
.home-two-mission-contrainer{
    margin-top: 0;
    border-radius: 5px;
    padding: 0;
    transition: 0.3s;
}
.home-two-mission-image{
    border: none;
}

.home-two-mission-image img{
    width: 100%;
    border-radius: 0;
}

.home-two-mission-contrainer:hover{
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.home-two-mission-contrainer:hover .home-two-mission-image img{
    transform: scale(1.1);
}

.home-two-mission-info{
    display: flex;
    align-items: center;
    padding: 0;
}

.home-two-mission-info i {
    font-size: 38px;
    padding: 24px 30px;
    color: #ffffff;
    background: #FF9F0D;
}

.home-two-mission-info h5{
    margin-left: 30px;
}
/* ====================
HOME TWO MISSION ENDS
====================== */

/* ====================
HOME TWO ABOUT STARTS
====================== */
.home-two-about{
    padding-top: 0;
}

.home-two-about .mission-left-content {
    left: 0;
}

.home-two-about-image-one img{
    border-radius: 100px;
}

.home-two-about-image-two{
    top: 58%;
    right: 10px;
}

.home-two-about-image-two img{
    border-radius: 40px; 
}

.home-two-about-right-content h3{
    margin-bottom: 50px;
}

.home-two-about-right-wrapper{
    max-width: 135px;
    width: 100%;
    height: 161px;
    text-align: center;
    background: #FF9F0D;
    color: #ffffff;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 35px 15px;
    border-radius: 50px;
}

.home-two-about-right-wrapper h5{
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
}

.home-two-about-right-content ul li{
    display: flex;
    align-items: center;
}

.home-two-about-shape {
    position: absolute;
    bottom: -35px;
    left: 0;
    z-index: -1;
}

.home-two-about .btn-1:hover{
    color: #FF9F0D;
}
/* ====================
HOME TWO ABOUT ENDS
====================== */

/* ====================
HOW IT WORK STARTS
====================== */
.how-it-work{
    padding: 125px 0;
    background: rgba(242, 240, 236, 0.5);
    position: relative;
}

.how-it-work-right{
    position: absolute;
    top: 0;
    right: 0;
}

.how-it-work-left{
    position: absolute;
    bottom: -31px;
    left: 0;
}

.how-it-work-line{
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.how-it-work-content{
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.how-it-number{
    position: absolute;
    top: 0;
    left: 15px;
}

.how-it-number span{
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    background: #FF9F0D;
    color: #ffffff;
}

.how-it-work-image{
    position: relative;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.how-it-work-image img{
    height: 160px;
    width: 160px;
    border-radius: 50%;
}

.how-it-work-content h5{
    font-size: 24px;
    font-weight: 600;
}
/* ====================
HOW IT WORK ENDS
====================== */

/* ====================
TRASTED AREA STARTS
====================== */
.trusted{
    position: relative;
    padding-bottom: 100px;
}

.trusted-left-image{
    max-width: 1226px;
    height: auto;
}

.trusted-right-contant{
    max-width: 580px;
    height: 530px;
    padding: 40px;
    background: #FF9F0D;
    border-radius: 5px;
    position: absolute;
    top: 12%;
    right: 15%;
}

.trusted-right-contant h4{
    font-weight: 600;
    font-size: 48px;
    color: #ffffff;
    line-height: 60px;
}

.trusted-right-contant p{
    color: #ffffff;
    line-height: 30px;
    padding: 30px 0;
}

.trusted-right-contant .btn-2 {
    margin-left: 0;
    color: #FF9F0D;
}

.trusted-right-contant .btn-2:hover{
    color: #ffffff;
}
/* ====================
TRASTED AREA ENDS
====================== */

/* ====================
HOME TWO SERVICE STARTS
====================== */
.home-two-service{
    position: relative;
}

.home-two-service-shape{
    position: absolute;
    top: 40%;
    left: 15px;
}
/* ====================
HOME TWO CHOOSE STARTS
====================== */
.home-two-choose{
    background: rgba(242, 240, 236, 0.5);
    position: relative;
}

.home-two-choose-right-content.wow.fadeInUp {
    position: absolute;
    top: -86px;
}

.home-two-choose-right-content-image{
    position: absolute;
    top: -86px;
}

.home-two-choose-left-content{
    height: 740px;
    display: flex;
    align-items: center;
}

.home-two-choose-left-content ul{
    margin-top: 30px;
}

.home-two-choose-left-content ul li{
    display: flex;
    margin: 20px 0;
}

.home-two-choose-left-content ul li i{
    border-radius: 50%;
    background: #FF9F0D;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    text-align: center;
    margin-right: 15px;
}

.home-two-choose-left-content-info h6{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.home-two-choose-right-content{
    margin-left: 50px;
}
/* ====================
HOME TWO CHOOSE ENDS
====================== */

/* ====================
HOME TWO PRICING PLAN
====================== */
.pricing-plan{
    padding: 125px 0;
}

.pricing-table{
    margin-top: 50px;
    padding: 40px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.pricing-table h5{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.pricing-table h3{
    margin-top: 25px;
}

.pricing-table ul{
    margin-top: 30px;
}

.pricing-table ul li{
    margin: 15px 0;
    display: flex;
}

.pricing-table ul li i {
    width: 15px;
    height: 15px;
    line-height: 13px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #FF9F0D;
    font-size: 9px;
    color: #FF9F0D;
    margin-right: 10px;
}

.pricing-btn{
    display: inline-block;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
}
/* ====================
HOME TWO PRICING PLAN
====================== */

/* ====================
HOME TWO TESTIMONIAL
====================== */
.home-two-testimonial{
    background: rgba(242, 240, 236, 0.5);
}

.home-two-testimonial .common-title{
    margin-bottom: 50px;
}

.home-two-testimonial-slider{
    margin-top: 0;
}

.home-two-testimonial-info-inner h6{
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.home-two-testimonial-info{
    margin-top: 0;
    align-items: flex-start;
    justify-content: space-between;
}

.home-two-testimonial-info .testimonial-image{
    margin-right: 10px;
}

.home-two-testimonial-info .testimonial-image img{
    max-width: 150px;
}

.home-two-testimonial .testimonial-content {
    padding: 40px 20px;
}

.testimonial-info-deg{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.home-two-testimonial-info-inner span{
    display: inline-block;
    color: #FF9F0D;
    margin-right: 10px;
}

/* owl */
.home-two-testimonial .owl-dots{
    position: relative;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.home-two-testimonial .owl-theme .owl-dots .owl-dot span{
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 500ms ease;
    border: 1px solid transparent;
}

.home-two-testimonial .owl-theme .owl-dots .owl-dot.active span {
    background: #FF9F0D;
    width: 30px;
    border-radius: 10px;
}

.home-two-testimonial .owl-theme .owl-dots .owl-dot span:hover,
.home-two-testimonial .owl-theme .owl-dots .owl-dot.active:hover span{
    width: 30px;
    border-radius: 10px;
}

.home-two-testimonial-slider .owl-nav {
    display: block;
}

.home-two-testimonial-slider .owl-nav .owl-prev{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 159, 13, 0.1);
    color: #FF9F0D;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -65px;
}

.home-two-testimonial-slider .owl-nav .owl-next{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 159, 13, 0.1);
    color: #FF9F0D;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -65px;
}
/* owl */
/* ====================
HOME TWO TESTIMONIAL
====================== */

/* ====================
HOME TWO BLOG
====================== */
.home-two-blog{
    padding: 125px 0;
}
/* ====================
HOME TWO BLOG
====================== */

/* ====================
HOME TWO CONTACT
====================== */
.home-two-contact{
    background: url('../images/home-two-contact-bg.jpg') no-repeat;
    background-size: cover;
    padding-top: 125px;
    width: 100%;
    height: 679px;
    position: relative;
    overflow: hidden;
}

.home-two-contact{
    position: relative;
}

.home-two-contact-line{
    position: absolute;
    top: -20px;
    left: 0;
}

.home-two-contact::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(9, 13, 37, 0.9);
}

.home-two-contact-title{
    text-align: center;
    position: relative;
    z-index: 111;
}

.home-two-contact-title h6{
    font-size: 15px;
    color: #ffffff;
}

.home-two-contact-title h3{
    font-weight: 600;
    font-size: 48px;
    color: #ffffff;
    margin-top: 25px;
}

.home-two-contact-title a{
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
}

.home-two-contact-title a:hover{
    color: #FF9F0D;
}
/* ====================
HOME TWO CONTACT
====================== */

/* ========================
    HOMR THREE HEADER 
===========================*/
.home-three-header-top{
    background: #ffffff;
    height: 120px;
}

.home-three-logo{
    height: 120px;
}

.home-three-header-top-content-wrapper{
    height: 120px;
    display: flex;
    align-items: center;
}

.home-three-header-top-content-wrapper ul{
    justify-content: end;
    gap: 26px;
}

.home-three-header-top-content-wrapper ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
}

.home-three-header-top-content-wrapper ul li:first-child{
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 20px;
    margin-right: 5px;
}

.home-three-header-top-content-wrapper ul li:nth-child(2){
    margin-right: 25px;
}

.home-three-header-top-content-wrapper ul li i {
    color: #FF9F0D;
    font-size: 35px;
    width: 60px;
    height: 60px;
    line-height: 73px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 159, 13, 0.1);
}

.home-three-header-top-content-wrapper ul li .icon-envelop{
    line-height: 56px;
}

.home-three-header-top-content-wrapper-info span{
    display: block;
    color: #888888;
    font-weight: 400;
}

.home-three-header-top-content-wrapper-info a:hover{
    display: inline-block;
    color: #FF9F0D !important;
}

.header-top-btn{
    border-radius: 10px;
    color: #ffffff !important;
}

.header-top-btn:hover{
    color: #080C24 !important;
}

.home-three-header-top .header-top-content-wrapper ul li a{
    color: #080C24;
    font-weight: 600;
}

.home-three-header-top .header-top-content-wrapper ul li .header-top-btn{
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    padding: 15px 32px;
}

.header-three-menu-area {
    background: #080C24;
}

.home-three-menu-bar{
    justify-content: flex-start;
    height: 90px;
}

.home-three-menu-bar .main-navigation ul li{
    margin-right: 35px;
}

.home-three-menu-bar .main-navigation ul li a{
    color: #ffffff;
    padding: 17px 20px 17px 0;
}

.home-three-menu-bar .main-navigation ul li .active{
    color: #FF9F0D;
}

.home-three-menu-bar .main-navigation ul li a:hover{
    color: #FF9F0D;
}

.home-three-menu-bar .main-navigation ul li ul li a{
    color: #080C24;
}

.header-three-menu-area .menu-right-info{
    justify-content: end;
}

.header-three-menu-area  button.btn.primary {
    margin: 0 20px;
    color: #ffffff;
}
.home-three-hrader-top-info ul li {
    margin: 0;
}
.home-three-hrader-top-info ul{
    margin-left: 0;
    gap: 35px;
}
.home-three-menu-phone-icon{
    display: flex;
    align-items: center;
    max-width: 235px;
    width: 100%;
}
.home3-menu-icon {
    display: inline-block;
    max-width: 60px;
    min-width: 60px;
    width: 100%;
    height: 60px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: #1F2230;
    color: #FF9F0D;
    font-size: 28px;
    margin-right: 15px;
}

.home3-menu-icon:hover{
    color: #ffffff;
}

.home-three-header-top-content-wrapper-info a{
    display: inline-block;
    color: #ffffff;
    letter-spacing: 1px;
}


.main-navigation #main-menu > .menu-item.menu-item-has-children > a{
    display: flex;
    align-items: center;
    gap: 15px;
}
.main-navigation #main-menu > .menu-item.menu-item-has-children > a::after {
    content: "\f107";
    display: inline-block;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    transition: all .2s ease;
}
.main-navigation #main-menu > .menu-item.menu-item-has-children > a:hover::after{
    color: #FF9F0D;
}


/* =======================
    HOMR THREE HEADER 
==========================*/

/* =======================
    HOMR THREE BANNER 
==========================*/
.home-three-banner{
    position: relative;
}

.home-three-banner-image{
    position: relative;
}

.home-three-banner-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 12, 36, 0.9);
}

.home-three-banner .banner-content-wrapper-inner{
    text-align: center;
    position: relative;
}

/* text animation */
#flip {
    height:120px;
    overflow:hidden;
  }
  
  #flip > div > div {
    color:#fff;
    padding:4px 12px;
    height:100px;
    display:inline-block;
  }
  
  #flip div:first-child {
    animation: show 5s linear infinite;
  }
  
 
  
  @keyframes show {
    0% {margin-top:-270px;}
    5% {margin-top:-180px;}
    33% {margin-top:-180px;}
    38% {margin-top:-90px;}
    66% {margin-top:-90px;}
    71% {margin-top:0px;}
    99.99% {margin-top:0px;}
    100% {margin-top:-270px;}
  }
/* text animation */

.home-three-banner .banner-content-wrapper .banner-title{
    color: #ffffff;
    font-weight: 700;
    font-size: 68px;
}

.home-three-banner .banner-content-wrapper p{
    width: auto;
    margin: 30px 0;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.home-three-banner .banner-content-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 779px;
}

.home-three-banner .common-btn-3{
    padding: 15px 45px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms
}

.home-three-banner .banner-carousel .active .common-btn-3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

.home-three-banner .white-btn{
    margin-left: 10px;
    padding: 15px 45px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms
}

.home-three-banner .banner-carousel .active .white-btn{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2000ms;
}

.home-three-banner .banner-carousel .owl-dots {
    display: none;
}

.home-three-banner .banner-carousel .owl-nav {
    display: block;
}

.home-three-banner .owl-prev, .home-three-banner .owl-next{
    font-size: 28px;
    color: #ffffff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.home-three-banner .owl-prev:hover, .home-three-banner .owl-next:hover{
    color: #FF9F0D;
    border: 1px solid #FF9F0D;
}

.home-three-banner .owl-prev:hover{
    text-align: left;
}

.home-three-banner .owl-next:hover{
    text-align: right;
}

.home-three-banner .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -270px;
    text-align: right;
}

.home-three-banner .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -270px;
}

.bubbleContainer{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bubble{
    height: 1px;
    width: 1px;
    position: absolute;
    background: url('../images/buble.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.bubble-1{
    bottom: 0;
    left: 60%;
    animation: bubble-movement 10s infinite ease-in -5.7s;
}
.bubble-2{
    bottom: 0;
    left: 90%;
    animation: bubble-movement 10s infinite ease-in -4.94s;
}
.bubble-3{
    bottom: 0;
    left: 20%;
    animation: bubble-movement 4s infinite ease-in -1.2s;
}
.bubble-4{
    bottom: 0;
    left:40%;
    animation: bubble-movement 10s infinite ease-in -1.58s;
}
.bubble-5{
    bottom: 0;
    left: 75%;
    animation: bubble-movement 7s infinite ease-in -6.31s;
}
.bubble-6{
    bottom: 0;
    left: 45%;
    animation: bubble-movement 10s infinite ease-in -0.51s;
}
.bubble-7{
    bottom: 0;
    left: 10%;
    animation: bubble-movement 15s infinite ease-in -3.37s;
}
.bubble-8{
    bottom: 0;
    left: 65%;
    animation: bubble-movement 10s infinite ease-in -0.66s;
}
.bubble-9{
    bottom: 0;
    left: 30%;
    animation: bubble-movement 4s infinite ease-in -5.81s;
}
.bubble-10{
    bottom: 0;
    left: 95%;
    animation: bubble-movement 10s infinite ease-in -3.98s;
}
.bubble-11{
    bottom: 0;
    left: 41%;
    animation: bubble-movement 15s infinite ease-in -3.98s;
}
.bubble-12{
    bottom: 0;
    left: 46%;
    animation: bubble-movement 10s infinite ease-in -3.98s;
}
.bubble-13{
    bottom: 0;
    left: 50%;
    animation: bubble-movement 4s infinite ease-in -3.98s;
}
.bubble-14{
    bottom: 0;
    left: 70%;
    animation: bubble-movement 4s infinite ease-in -3.98s;
}
.bubble-15{
    bottom: 0;
    left: 58%;
    animation: bubble-movement 4s infinite ease-in -3.98s;
}

@keyframes bubble-movement{
    0%{
        transform: translate3d(-50%, 0, 0);
        height: 1px;
        width: 1px;
    }

    100%{
        transform: translate3d(-50%, -700px, 0);
        height: 75px;
        width: 75px;
    }
}
/* =======================
    HOMR THREE BANNER 
==========================*/

/* =======================
    HOME THREE CHOOSE 
==========================*/
.home-three-choose .commom-title h3{
    margin: 20px 0;
}

.home-three-choose .choose-left-content{
    position: relative;
    z-index: 1;
}

.home-three-choose .choose-left-content span{
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #FF9F0D;
}

.home-three-choose .choose-left-content h3{
    font-weight: 600;
    font-size: 48px;
    line-height: 68px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.home-three-choose .choose-left-content p{
    color: #ffffff;
}

.choose-content-list-wrapper{
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.choose-content-list ul li{
    margin: 15px 0;
}

.choose-content-list ul li a{
    display: inline-block;
    color: #ffffff;
}

.choose-content-list ul li a::before{
    content: '\2192';
    color: #FF9F0D;
    margin-right: 10px;
}

.home-three-common-btn{
    border-radius: 5px;
}

.home-three-choose .common-btn:hover{
    color: #ffffff;
}

.home-three-choose .choose-right-content {
    justify-content: end;
}
/* =======================
    HOME THREE CHOOSE
==========================*/

/* =======================
    HOME THREE  SERVICE
==========================*/
.home-three-service{
    padding-top: 125px;
    padding-bottom: 200px;
}

.thrs-icon{
    color: #FF9F0D;
    font-size: 48px;
    padding: 35px 0px 0 30px;
    position: relative;
}

.thrs-icon::before{
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 51px;
    height: 45px;
    background: rgba(255, 159, 13, 0.1);
    border-radius: 5px;
}

.home-three-service .service-info{
    padding: 0 20px 20px 20px;
}

.home-three-service p{
    line-height: 29px;
    text-transform: capitalize;
    margin-top: 15px;
    border-bottom: 0;
}
/* =======================
    HOME THREE SERVICE
==========================*/

/* =======================
    HOME THREE TESTIMONIAL
==========================*/
.home-three-testimonial{
    padding-bottom: 80px;
}

.home-three-testimonial .common-title h3{
    margin-bottom: 50px;
}

.testimonial-content p{
    line-height: 32px;
}

.home-three-testimonial .testimonial-wrapper.slick-slide{
    padding-top: 0;
}

.home-three-testimonial .testimonial-info{
    margin-top: 0;
    margin-bottom: 30px;
}
/* =======================
    HOME THREE TESTIMONIAL
==========================*/


/* =======================
    ABOUT US BANNER
==========================*/
.about-us-banner{
    position: relative;
    overflow: hidden;
}

.about-us-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 3, 13, 0.9);
}

.about-us-banner-content{
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    min-height: 230px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us-banner-content h2{
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-us-banner-wrapper{
    display: flex;
    justify-content: space-between;
    width: 170px;
    margin: 0 auto;
}

.servicr-single-banner-wrapper{
    width: 235px;
}

.service-banner-wrapper{
    width: 200px;
}

.team-single-banner-wrapper{
    width: 215px;
}

.about-us-banner-wrapper a{
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.about-us-banner-wrapper a:hover{
    color: #FF9F0D;
}

.about-us-banner-wrapper span{
    display: inline-block;
    font-size: 22px;
}

.about-us-banner-wrapper span {
    display: inline-block;
    font-size: 44px;
    color: #ffffff;
    line-height: 0;
}

.about-us-banner-wrapper h5{
    color: #ffffff;
    font-size: 18px;
}

.banner__image{
    display: flex;
    align-items: center;
    position: absolute;
    inset: 0;
    z-index: -1;
}
.banner__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =======================
    ABOUT US BANNER
==========================*/

/* =======================
    ABOUT US FEATURES & VIDEO
==========================*/
.about-us-features{
    padding-top: 120px;
}

.about-video .common-btn{
    border-radius: 5px !important;
}
.about-video .video-right-content-wrapper {
    display: flex;
    gap: 30px;
}
.about-video .video-right-content span {
    color: #ffffff;
}
.about-video .cta-vedio-button a::before {
    border: 1px dashed #ffffff;
}
/* =======================
    ABOUT US FEATURES & VIDEO
==========================*/

/* =======================
    ABOUT US Testimonial
==========================*/
.about-us-testimonial{
    padding-top: 0;
}

.about-us-testimonial .testimonial-slider{
    margin-top: 0;
}
/* =======================
    ABOUT US TESTIMONIAL
==========================*/

/* =======================
    BRAND
==========================*/
.brand{
    padding-top: 125px;
    padding-bottom: 250px;
}
.about-brand .brand-title {
    text-align: center;
}
/* =======================
    BRAND
==========================*/

/* =======================
    GALLERY
==========================*/
.main-gallery{
    padding-top: 125px;
    padding-bottom: 105px;
}

.main-gallery-item{
    width: 100%;
    height: 470px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.main-gallery-overlay{
    height: 100%;
    border-radius: 5px;
}

.main-gallery-overlay-plus{
    font-size: 65px;
}
/* =======================
    GALLERY
==========================*/

/* =======================
    service-page
==========================*/
.service-page{
    padding: 45px 0 200px;
}

.service-single-left-container{
    margin-right: 20px;
}
.service-single-image{
    overflow: hidden;
    display: flex;
    align-items: center;
}
.service-single-image img{
    border-radius: 5px;
    width: 100%;
}

.service-single-form input[type="remail"]{
    background: rgba(255, 159, 13, 0.1);
    width: 100%;
}

.service-single-form {
    position: relative;
}

.service-single-form input[type="search"] {
    width: 100%;
    padding: 17px;
    border: 1px solid transparent;
    background: rgba(255, 159, 13, 0.1);
    border-radius: 5px;
}

.service-single-form .footer-form-icon {
    position: absolute;
    right: 10px;
    padding: 0;
    top: 10px;
}

.service-single-form .footer-form-icon i {
    display: inline-block;
    padding: 8px 16px 2px 16px;
    background: #FF9F0D;
    border-radius: 5px;
    color: #ffffff;
    font-size: 22px;
}

.service-single-left-content{
    margin-top: 30px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 30px 30px 10px;
}

.service-single-left-content h5{
    font-weight: 600;
    font-size: 24px;
    color: #1F2230;
    margin-bottom: 30px;
}

.sevice-single-left-image{
    position: relative;
    border-radius: 5px;
    margin-top: 50px;
    width: 100%;
}

.sevice-single-left-image img{
    width: 100%;
}

.sevice-single-left-image::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(9, 13, 37, 0.9);
    border-radius: 5px;
}

.service-single-img-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 40px;
}

.service-single-img-inner i{
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #ffffff;
    font-size: 35px;
    background: #FF9F0D;
    border-radius: 5px;
}

.service-single-img-inner h5{
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    margin: 30px 0;
}

.service-single-img-inner a{
    display: inline-block;
    color: #FF9F0D;
    font-weight: 600;
    font-size: 24px;
    transition: 0.3s;
}

.service-single-img-inner a:hover{
    color: #f7f7f9;
}

.service-single-left-content ul li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) ;
}

.service-single-left-content ul li:last-child{
    border-bottom: none;
}

.service-single-left-content ul li a{
    display: inline-block;
    padding: 20px 0;
    color: #080C24;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.service-single-left-content ul li a:hover{
    color: #FF9F0D;
}

.service-page .service-image{
    height: 284px;
    border-radius: 5px;
}

.single-service-right-content h4{
    margin: 30px 0;
    font-weight: 500;
    font-size: 40px;
}

.single-service-right-content p{
    line-height: 30px;
}

.single-service-container-inner .service-image{
    height: 300px;
    margin-bottom: 20px;
}

.single-service-right-content ul li{
    margin: 10px 0;
}

.single-service-right-content ul li::before{
    content: '\2714';
    font-weight: 700;
    color: #FF9F0D;
    margin-right: 15px;
}

.service-page .service-container a i {
    font-size: 16px;
    color: #888888;
}
/* =======================
    service-page
==========================*/

/* =======================
    team-page
==========================*/
.team-page .main-gallery-item{
    height: 380px;
}
/* =======================
    team-page
==========================*/

/* =======================
    single team
==========================*/
.single-team{
    padding: 125px 0;
}

.single-team-image{
    width: 100%;
    height: 542px;
    padding: 20px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}

.single-team-image img{
    width: 100%;
}

.team-single-content{
    width: 100%;
    height: 542px;
    padding: 40px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}

.team-single-content h5{
    font-weight: 600;
    font-size: 24px;
}

.team-single-content h6{
    font-weight: 500;
    font-size: 18px;
}

.team-single-content p{
    margin-bottom: 20px;
}

.team-single-content span{
    display: inline-block;
    font-size: 16px;
    color:  #1F2230;
    margin-bottom: 30px;
}

.team-single-media ul{
    display: flex;
}

.team-single-media ul li{
    margin-right: 20px;
}

.team-single-media ul li a{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #888888;
    color: #1F2230;
    transition: 0.3s;
    background: transparent;
}

.team-single-media ul li a:hover{
    color: #ffffff;
    background: #FF9F0D;
    border: 1px solid #FF9F0D;
}
/* =======================
    single team
==========================*/

/* =======================
    pricing page
==========================*/
.pricing-table-banner{
    width: 160px;
}
/* =======================
    pricing-page
==========================*/

/* =======================
    appointment
==========================*/
.appointment{
    padding-top: 120px;
    padding-bottom: 282px;
}

.appointment-container{
    padding: 70px 60px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.appoint-form label{
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    text-transform: capitalize;
    color: #1F2230;
}

.appoint-input{
    width: 100%;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.appointment-container textarea{
    height: 200px;
}

/* select option */
.select-menu{
    width: 100%;
}
.select-btn{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    color: #939191;
    font-size: 16px;
    cursor: pointer;
}
.select-arrow{
    font-size: 16px;
    transition: 0.5s;
}
.select-btn.active .select-arrow{
    transform: rotate(180deg);
}
.select-list{
    position: absolute;
    max-width: 575px;
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
}
.select-option{
    display: flex;
    align-items: center;
    width: 100%;
    background: #ddd;
    border-bottom: 1px dashed #a8a8a8;
    padding: 16px;
    cursor: pointer;
    transition: 0.3s;
    transform-origin: top;
    transform: scale(0) translateY(-65px);
    margin-bottom: -55px;
}
.select-btn.active~.select-list .select-option{
    transform: scale(1) translateY(0);
    margin-bottom: 0;
    transition-delay: calc(.1s * var(--i));
}
.select-option:hover{
    background: #f1f1f1;
}
.option-text{
    font-size: 16px;
}
/* select option */

.appointment .common-btn{
    border-radius: 5px;
}
/* =======================
    appointment
==========================*/

/* =======================
    blog
==========================*/
.blog-page{
    padding-top: 70px;
    padding-bottom: 282px;
}

.blog-page .service-container a {
    color: #FF9F0D;
}

.blog-single{
    padding-top: 120px;
    padding-bottom: 282px;
}

.blog-single-image{
    width: 100%;
    height: 485px;
}
.blog-single-image img{
    width: 100%;
    height: 100%;
}
.blog-single-image-info{
    padding: 31px 0;
    border-bottom:  1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 31px;
}
.blog-single-image-info ul{
    display: flex;
    gap: 35px;
}

.blog-single-image-info ul li i{
    color: #FF9F0D;
}
.blog-single-wrapper p{
    margin-bottom: 30px;
}

.blog-single-cite{
    padding: 30px 45px;
    background: #E8F5E9;
    border-radius: 5px;
    border-left: 5px solid #FF9F0D;
    margin-bottom: 30px;
}
.blog-single-cite h6{
    font-size: 16px;
    line-height: 29px;
    color: #1F2230;
}
.blog-single-cite span{
    font-weight: 600;
    font-size: 16px;
    line-height: 29px;
    color: #FF9F0D;
}
.blog-single-tag{
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-single-tag h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 29px;
    color: #1F2230;
}
.tags ul{
    display: flex;
    gap: 10px;
}
.tags ul li a{
    display: inline-block;
    color: #080C24;
}
.tags ul li a:hover{
    color: #FF9F0D;
}
.share ul{
    display: flex;
    gap: 30px;
}
.share ul li a{
    display: inline-block;
    color: #888888;
    transition: 0.3s;
}
.share ul li a:hover{
    color: #FF9F0D;
}
.blog-single-form{
    margin-top: 50px;
}
.contact-btn{
    border-radius: 5px;
}

.blog-member-info{
    padding: 60px 30px;
    background: rgba(255, 159, 13, 0.1);
    margin-bottom: 30px;
    text-align: center;
}
.blog-member-info img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.blog-member-info h6{
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin-top: 30px;
}
.blog-member-info ul{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.blog-member-info ul li a{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1F2230;
}
.recent-post{
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}
.recent-image{
    max-width: 60px;
    width: 100%;
    height: 70px;
}
.recent-info a{
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #1F2230;
    transition: 0.3s;
}
.recent-info a:hover{
    color: #FF9F0D;
}
.recent-info span{
    display: block;
    font-size: 14px;
    line-height: 21px;
    color: #888888;
}
.blog-single-right-tags a{
    display: inline-block;
    padding: 14px 21px;
    background: rgba(217, 217, 217, 0.32);
    border-radius: 50px;
    margin-bottom: 15px;
    color: #888888;
    transition: 0.3s;
}
.blog-single-right-tags a:hover{
    color: #ffffff;
    background: #FF9F0D;
}
.blog-single-left-container{
    margin-right: 0;
    margin-left: 20px;
}
.blog-page .service-container a i {
    display: inline-block;
    font-size: 18px;
}
/* =======================
    blog
==========================*/

/* =======================
    contact
========================= */
.contact-banner {
    background: url('../images/contact-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 450px;
    position: relative;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 3, 13, 0.8);
}

.contact-info{
    padding: 120px 0;
}
.contact-info__inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.contact-info-content{
    padding: 50px 75px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
}
.contact-info-content a,
.contact-info-content p{
    color: #797F7D;
    transition: all .1s ease;
    font-size: 16px;
}
.contact-info-content a:hover{
    color: #FF9F0D;
}

.contact-info-icon {
    width: 100px;
    height: 100px;
    line-height: 115px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 159, 13, 0.1);
    color: #FF9F0D;
    font-size: 45px;
    margin: 0 auto;
    transition: 0.3s;
}

.contact-info-content h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-top: 30px;
}

.contact-info-content:hover .contact-info-icon{
    background: #FF9F0D;
    color: #ffffff;
}

.contact-form{
    padding-bottom: 200px;
    position: relative;
}

.contact-map iframe{
    max-width: 1049px;
    width: 100%;
    height: 781px;
}

.map-shape {
    position: relative;
    right: 0;
    top: 50%;
    z-index: -1;
}

.pattern-layer {
    position: absolute;
    right: 0px;
    bottom: 50%;
    transform: translateY(-14%);
    width: 50%;
    height: 608px;
    background-repeat: repeat-x;
    animation: slide 60s linear infinite;
    -webkit-animation: slide 60s linear infinite;
    z-index: -1;
}

@keyframes slide{
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 1920px 0;
    }
}

.contact-form-wrapper{
    max-width: 630px;
    background: #FFFFFF;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    position: absolute;
    top: 10%;
    left: 50%;
}
.contact-form-wrapper .wpcf7-form{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-form-wrapper .wpcf7-form > p{
    margin: 0;
    position: relative;
}
.wpcf7-form-control-wrap{
    position: initial !important;
}

.contact-input{
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    border: none;
    padding: 14px 20px;
}
.contact-input + .contact-input{
    margin-top: 30px;
}
.wpcf7-response-output{
    margin: 0 !important;
}
.wpcf7-not-valid-tip{
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
}

.common-input{
    width: 100%;
}

.address-input{
    width: 100%;
}

.contact-form-wrapper textarea{
    width: 100%;
    height: 145px;
    max-height: 240px;
    min-height: 80px;
}
/* =========================
    contact
===========================*/

/* =======================
    NEW STYLES

==========================*/

.google-reviews-widget {
    margin-top: 50px;
    background: #fff;
    border: 0px solid #e5e5e5;
    padding: 20px;
    border-radius: 1px;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.google-reviews-widget h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.review-item {
  margin-bottom: 20px;
  max-width: 310px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.review-header img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.stars {
  color: #fbc02d;
  font-size: 16px;
}

.review-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

.review-footer {
  margin-top: 10px;
  text-align: right;
}

.review-footer a {
  font-size: 13px;
  text-decoration: none;
  color: #25707f;
  font-weight: bold;
}
.roof-benefits-grid{
    padding: 30px 0 50px;
}
.roof-benefits-grid ul{
  display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 30px;
  background-color: rgba(255, 159, 13, 0.1);
  border-radius: 10px;
  color:#121F45
}
@media (max-width: 1399px) {
    .roof-benefits-grid ul{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 1199px) {
    .roof-benefits-grid ul{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 991px) {
    .roof-benefits-grid ul{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .roof-benefits-grid ul{
        grid-template-columns: 1fr;
    }
}

.roof-benefits-grid li {
  list-style: none;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.roof-benefits-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #f90;
  font-weight: bold;
  font-size: 1.2em;
}


    .image-hover-wrapper {
    position: relative;
    overflow: hidden;
}

.hover-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #080C24; /* сине-бирюзовая плашка */
    color: #FF9F0D; /* ярко-оранжевый текст */
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    transition: opacity 0.3s ease;
    padding: 6px 14px;
    border-radius: 30px;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.image-hover-wrapper:hover .hover-label {
    opacity: 0;
}

  .subscribe-form {
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
}

.subscribe-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.subscribe-box input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  flex: 1 1 120px;
  min-width: 100px;
}

.subscribe-btn {
  background-color: #fd9c0f;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background-color: #e68900;
}

.subscribe-btn i {
  font-size: 18px;
}


.barfiller {
  width: 100%;
  height: 12px;
  background: #fcfcfc;
  border: 1px solid #ccc;
  position: relative;
  margin-bottom: 20px;
  box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,.5);
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,.5);
}

.barfiller .fill {
  display: block;
  position: relative;
  width: 0px;
  height: 100%;
  background: #333;
  z-index: 1;
}

.barfiller .tipWrap { display: none; }

.barfiller .tip {
  margin-top: -30px;
  padding: 2px 4px;
  font-size: 11px;
  color: #fff;
  left: 0px;
  position: absolute;
  z-index: 2;
  background: #333;
}

.barfiller .tip:after {
  border: solid;
  border-color: rgba(0,0,0,.8) transparent;
  border-width: 6px 6px 0 6px;
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 100%;
  z-index: 9
}


		

/* ===========================
   CONTACT MODAL – FULL STYLES
   =========================== */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 32px 0;               /* отступ сверху/снизу → не липнет к краям */
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-modal.is-open .contact-modal__overlay {
    opacity: 1;
}

.contact-modal__dialog {
    position: relative;
    max-width: 900px;
    width: 92%;
    background: #090d25;
    border-radius: 26px;
    padding: 32px 32px 26px;
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    transform: scale(0.96);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin: 2% auto 2%;
    height: max-content;
    -webkit-overflow-scrolling: touch;
}

.contact-modal.is-open .contact-modal__dialog {
    transform: scale(1);
    opacity: 1;
}

.contact-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-modal__close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.contact-modal__header h3 {
    font-size: 26px;               /* крупнее заголовок */
    margin: 0 0 6px;
    color: #ff9f0d;                 /* оранжевая надпись "Nezávazná poptávka" */
}

.contact-modal__header p {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-modal__form {
    margin-top: 6px;
}

.contact-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-modal__field {
    margin-bottom: 16px;
}

.contact-modal__field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9);
}
.contact-modal__field label span{
    color: #ff4d4d;
}

.contact-modal__field input,
.contact-modal__field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 9, 32, 0.9);
    color: #ffffff;
    padding: 11px 13px;            /* выше и шире поля */
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-modal__field input::placeholder,
.contact-modal__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-modal__field input:focus,
.contact-modal__field textarea:focus {
    border-color: #ff9f0d;
    box-shadow: 0 0 0 1px rgba(255, 159, 13, 0.6);
    background: rgba(5, 9, 32, 0.96);
}

/* SERVICES PILLS */

.cm-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cm-services__item {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 13, 37, 0.95);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.cm-services__item:hover {
    border-color: #ff9f0d;
    transform: translateY(-1px);
}

.cm-services__item.active {
    background: #ff9f0d;
    border-color: #ff9f0d;
    color: #090d25;
}

/* FILE DROP AREA */

.cm-file-drop {
    position: relative;
    border-radius: 20px;
    background: #ff9f0d;
    padding: 2px;
    cursor: pointer;
    overflow: hidden;
}

.cm-file-drop input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.cm-file-drop__inner {
    border-radius: 18px;
    border: 2px dashed rgba(9, 13, 37, 0.33);
    background: rgba(9, 13, 37, 0.96);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.cm-file-drop__icon {
    font-size: 20px;
}

.cm-file-drop__text {
    font-size: 13px;
    color: #ffffff;
}

.cm-file-drop__text strong {
    font-weight: 600;
}

.cm-file-drop.is-dragover .cm-file-drop__inner {
    border-color: #ff9f0d;
    background: #0d1434;
    transform: translateY(-1px);
}

/* FILE LIST + GREEN CHECK */

.cm-file-drop__list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.cm-file-drop__list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}

.cm-file-drop__check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2ecc71;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* FOOTER */

.contact-modal__footer {
    margin-top: 12px;
}

.contact-modal__submit {
    display: inline-block;
    border: none;
    border-radius: 999px;
    background: #ff9f0d;
    color: #090d25;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 30px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-modal__submit:disabled{
    pointer-events: none;
    cursor: default;
    opacity: 0.8;
}

.contact-modal__submit:hover {
    background: #ffad2c;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.contact-modal__note {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

/* ===========================
   RESPONSIVE / MOBILE TUNING
   =========================== */

@media (max-width: 767.98px) {
    .contact-modal {
        padding: 20px 0;                  /* чуть меньше отступ, но всё равно не липнет */
    }

    .contact-modal__dialog {
        max-width: 100%;
        width: 94%;
        padding: 20px 16px 18px;
        border-radius: 20px;
    }

    .contact-modal__header h3 {
        font-size: 20px;
    }

    .contact-modal__header p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .contact-modal__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-modal__field {
        margin-bottom: 12px;
    }

    .contact-modal__field label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .contact-modal__field input,
    .contact-modal__field textarea {
        font-size: 13px;
        padding: 9px 11px;
    }

    .cm-services__item {
        font-size: 11px;
        padding: 6px 12px;
    }

    .cm-file-drop__inner {
        padding: 14px 12px;
        gap: 10px;
    }

    .cm-file-drop__text {
        font-size: 11px;
    }

    .cm-file-drop__list {
        font-size: 11px;
    }

    .contact-modal__submit {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
    }
}




/* ===========================
   CTA BANNER – CALL TO ACTION
   =========================== */

.cta-banner {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #ff9f0d 0%, #ffb733 100%);
    padding: 36px 0 40px;
    color: #ffffff;
    overflow: hidden;
}

/* декоративные “пузырьки” */
.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 255, 255, 0) 60%);
    opacity: 0.18;
    pointer-events: none;
}

.cta-banner::before {
    top: -40px;
    left: -20px;
}

.cta-banner::after {
    bottom: -50px;
    right: -10px;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-banner__text h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
}

.cta-banner__text p {
    margin: 0;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.5;
}

.cta-banner__action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ====== АНИМИРОВАННАЯ КНОПКА ====== */

.cta-banner__btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    /* УВЕЛИЧЕННЫЙ РАЗМЕР */
    padding: 26px 56px;
    font-size: 24px;
    font-weight: 700;

    border-radius: 999px;
    border: none;
    cursor: pointer;

    background: #090d25;
    color: #ffffff;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

    /* ОБЩАЯ АНИМАЦИЯ (shine + shake) */
    animation: cta-shine 5s linear infinite, cta-shake 3s ease-in-out infinite;
}

/* =====================================
   АНИМАЦИЯ ПЕРЕЛИВА (shine / glossy swipe)
   ===================================== */

.cta-banner__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shine-move 2.6s infinite;
    pointer-events: none;
}

@keyframes shine-move {
    0% {
        left: -160%;
    }
    60% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

/* =====================================
   ПОТРЯХИВАНИЕ КАЖДЫЕ 3 СЕКУНДЫ
   ===================================== */

@keyframes cta-shake {
    0%, 90% {
        transform: translateY(0) scale(1);
    }
    93% {
        transform: translateY(-2px) rotate(-1deg) scale(1.04);
    }
    96% {
        transform: translateY(2px) rotate(1deg) scale(1.04);
    }
    99% {
        transform: translateY(-1px) rotate(-1deg) scale(1.03);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* =====================================
   НЕБОЛЬШОЕ ГЛАДКОЕ ПУЛЬСИРОВАНИЕ (опционально)
   ===================================== */

@keyframes cta-shine {
    0%   { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45); }
    50%  { box-shadow: 0 22px 48px rgba(0, 0, 0, 0.52); }
    100% { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45); }
}

/* пульсирующее свечение */
.cta-banner__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
    opacity: 0.0;
    pointer-events: none;
    animation: cta-pulse 2.4s infinite;
}

@keyframes cta-pulse {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
    }
    70% {
        opacity: 0;
        box-shadow: 0 0 0 22px rgba(255, 255, 255, 0);
    }
    100% {
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* лёгкий глянец сверху */
.cta-banner__btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.33),
        rgba(255, 255, 255, 0)
    );
    opacity: 0.28;
    pointer-events: none;
}

.cta-banner__btn-main {
    position: relative;
    z-index: 1;
}

.cta-banner__btn-sub {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    opacity: 0.8;
}

.cta-banner__btn-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ff9f0d;
    color: #090d25;
    font-size: 20px;
}

/* hover/active эффекты */
.cta-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    background: #0d1230;
}

.cta-banner__btn:hover .cta-banner__btn-sub {
    opacity: 1;
}

/* лёгкий сдвиг иконки вправо при hover */
.cta-banner__btn:hover .cta-banner__btn-icon {
    transform: translateX(2px);
    transition: transform 0.18s ease;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 991.98px) {
    .cta-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 190px;
    }

    .cta-banner__action {
        justify-content: flex-start;
    }

    .cta-banner__text h2 {
        font-size: 24px;
    }
}
@media (max-width: 740px) {
    .cta-banner__inner{
        margin-top: 0;
    }
}
@media (max-width: 575.98px) {
    .cta-banner {
        padding: 28px 0 32px;
    }

    .cta-banner__text h2 {
        font-size: 22px;
    }

    .cta-banner__text p {
        font-size: 14px;
    }

    .cta-banner__btn {
        width: 100%;
        padding: 12px 20px;
    }
}
/* ===============================
   CTA FOOTER TEXT — RESPONSIVE
   =============================== */

.ctafoot {
    color: white;
    font-size: 35px;
}

.pfoot {
    color: black;
    font-size: 18px;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 767.98px) {
    .ctafoot {
        font-size: 28px;     /* было 35 */
    }
    .pfoot {
        font-size: 14px;     /* было 18 */
    }
}


/* ================================
   SVJ CTA STRIP – FULL WIDTH
   ================================ */

.svj-cta-strip {
    width: 100%;
    background: #090d25;
    padding: 0;
    margin: 40px 0 50px;
}

.svj-cta-strip__inner {
    width: 100%;
    border: none;
    outline: none;
    background: linear-gradient(90deg, #ff9f0d 0%, #ffb53b 50%, #ff9f0d 100%);
    color: #090d25;
    cursor: pointer;
    display: block;
    padding: 16px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* лёгкая анимация кнопки при жизни */
.svj-cta-strip__inner:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 45px rgba(0,0,0,0.45);
}

/* легкий «пульс» каждые несколько секунд */
@keyframes svjCtaPulse {
    0%, 92%, 100% { transform: scale(1); }
    94% { transform: scale(1.02); }
    96% { transform: scale(0.99); }
    98% { transform: scale(1.01); }
}

.svj-cta-strip__inner {
    animation: svjCtaPulse 6s infinite;
}

/* Бегущая строка */
.svj-cta-strip__marquee {
    white-space: nowrap;
    display: inline-flex;
    gap: 80px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    align-items: center;
    padding-left: 100%;
    animation: svjCtaMarquee 18s linear infinite;
}

.svj-cta-strip__marquee span {
    display: inline-block;
}

/* keyframes для движения текста */
@keyframes svjCtaMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Адаптив – на мобилках чуть меньше текст и паддинги */
@media (max-width: 767.98px) {
    .svj-cta-strip {
        margin: 30px 0 40px;
    }

    .svj-cta-strip__inner {
        padding: 12px 0;
    }

    .svj-cta-strip__marquee {
        font-size: 14px;
        gap: 40px;
        animation-duration: 22s;
    }
}

/* 1. Исправление пустого места сбоку (Обрезаем вылезающие края) */
.banner-carousel .slide-item {
    overflow: hidden; 
    position: relative;
    /* Фикс для Safari/iOS, чтобы не моргало */
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

/* 2. Принудительное ускорение для слоя с картинкой (чтобы не влияло на логотип и куки) */
.banner-carousel .slide-item .image-layer {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* 3. ОТКЛЮЧЕНИЕ анимации увеличения (Scale) только на мобильных */
@media (max-width: 991px) {
    /* Отключаем увеличение при смене слайда */
    .banner-carousel .active .slide-item .image-layer {
        transform: scale(1) !important; /* Оставляем размер 100% */
        transition: none !important;    /* Убираем плавность, чтобы не грузить процессор */
    }
    
    /* Убедимся, что картинка заполняет блок */
    .banner-carousel .slide-item .image-layer {
        transform: scale(1) !important;
        width: 100%;
        height: 100%;
    }
}





/* .services{
    padding: 45px 0 200px;
}
.services__block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.services__item{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}
.services__item-image{
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 280px;
}
.services__item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s ease;
}
.services__item-image:hover img{
    transform: scale(1.1);
}
.services__item-title h3{
    font-size: 28px;
    display: flex;
    transition: all .1s ease;
}
.services__item-content{
    margin-top: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.services__item-title:hover h3{
    color: #FF9F0D;
}
.services__item-descr{
    margin-top: 10px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 100%;
}
.services__item-btn{
    margin-top: 20px;
}
.services__item-btn{
    margin-top: auto;
    color: #FF9F0D !important;
    max-width: max-content;
    transition: all .1s ease;
}
.services__item-btn:not(:hover){
    text-decoration: underline;
} */





/* =========================================
   404 – Stránka nenalezena
========================================= */

.error-page-wrapper {
    background-color: #050922;
    color: #ffffff;
    padding-top: 140px;
    padding-bottom: 200px;
}

.error-hero-section {
    position: relative;
    padding-bottom: 80px;
}
.error-hero-inner{
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}
.error-hero-content{
    width: 100%;
    max-width: 800px;
}
.error-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #ffffff;
}

@media (min-width: 992px) {
    .error-hero-content h1 {
        font-size: 52px;
    }
}
@media (max-width: 991px) {
    .error-hero-inner{
        flex-direction: column;
    }
    .error-hero-content{
        max-width: 100%;
    }
    .error-page-wrapper{
        padding-top: 50px;
    }
}

.error-hero-content p {
    max-width: 620px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.error-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffb100;
    margin-bottom: 16px;
}

.error-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.error-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.error-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb100;
}

/* tlačítka */

.error-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.error-btn-group .btn-main,
.error-btn-group .btn-outline-main {
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
}

.error-btn-group .btn-main {
    background-color: #ffb100;
    color: #111322;
    border: none;
}

.error-btn-group .btn-main:hover {
    background-color: #ffc64c;
    color: #111322;
}

.error-btn-group .btn-outline-main {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.error-btn-group .btn-outline-main:hover {
    border-color: #ffb100;
    color: #ffb100;
}

/* pravý blok s číslem 404 */

.error-hero-visual {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 40px 30px;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(255, 177, 0, 0.16), transparent 55%),
                linear-gradient(145deg, #050922, #111632);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.error-number {
    font-size: 96px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    color: #ffb100;
}

.error-visual-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* sekce s rychlými odkazy */

.error-services-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.error-services-inner {
    text-align: center;
}

.error-services-inner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2230;
}

.error-services-inner p {
    margin-bottom: 30px;
    color: #555b6b;
}
.error-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 768px) {
    .error-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.error-service-card {
    display: block;
    padding: 22px 20px;
    border-radius: 20px;
    background: #f5f7fb;
    text-align: left;
    text-decoration: none;
    transition: all 0.25s ease;
    height: 100%;
}
.error-service-card:hover {
    background: #ffb100;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}
.error-service-card:hover h3,
.error-service-card:hover p {
    color: #111322;
}
.error-service-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    margin-bottom: 10px;
    display: inline-block;
}
.error-service-icon img{
    width: 100%;
    height: auto;
}
.error-service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2230;
}
.error-service-card p {
    font-size: 14px;
    margin: 0;
    color: #61677b;
}







.breadcrumbs a {color: white;}
.breadcrumbs a:hover{
    text-decoration: underline;
}




.lumber-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lumber-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f7f5;
    padding: 4px 25px;
    border-radius: 8px;
    border-left: 6px solid #1b4d3e;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.lumber-item:hover {
    background-color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(27, 77, 62, 0.15);
    border-left-color: #8d6e63;
}
.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    padding-right: 20px;
}
.service-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1b4d3e;
    white-space: nowrap;
    background: #e8f5e9;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #c8e6c9;
}
@media (max-width: 600px) {
    .lumber-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .service-name {
        margin-bottom: 10px;
        padding-right: 0;
        font-size: 1rem;
    }
    .service-price {
        align-self: flex-end;
        font-size: 1.1rem;
    }
    
    .lumber-header h2 {
        font-size: 1.8rem;
    }
}

.reference-feed {
	width: 100%;
}
.reference-item {
	background: #fff;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	border: 1px solid #eee;
}
.reference-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	background: #f9f9f9;
	border-bottom: 1px solid #eee;
}
.reference-header h3,
.reference-header h3 a{
	margin-bottom: 0;
	color: #1a2a4f;
	font-size: 22px;
    transition: all .1s ease;
}
.reference-header h3 a:hover{
    color: #e68900;
}
.reference-header .author {
	font-size: 14px;
	color: #777;
	display: block;
	margin-top: 5px;
}
.reference-header .stars {
	font-size: 20px;
	color: #fd9c0f;
	min-width: 110px;
	text-align: right;
}
.before-after-gallery {
	padding: 30px 30px 15px 30px;
}
.before-after-gallery .image-wrapper {
	position: relative;
    width: 100%;
    height: 400px;
}
.before-after-gallery .image-wrapper img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.reference-shorts-container{
    width: 100%;
    height: 400px !important;
    padding-bottom: 0 !important;
    max-width: 100% !important;
}
.hover-label {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: rgba(26, 42, 79, 0.9);
	/* Темно-синий */
	color: white;
	padding: 6px 12px;
	border-radius: 5px;
	font-weight: bold;
	z-index: 10;
	font-size: 14px;
	letter-spacing: 0.5px;
}
.reference-content {
	padding: 15px 30px 0 30px;
}
.reference-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 0;
}



.reference-video{
    padding: 0 30px;
}
.reference-footer-cta{
    padding: 30px;
}
.reference-btn{
    color: #000 !important;
}
.reference-btn:not(:hover){
    text-decoration: underline;
}


.custom-pagination ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.custom-pagination ul.page-numbers li *{
    display: flex;
    color: #000;
    align-items: center;
    transition: all .1s ease;
}
.custom-pagination ul.page-numbers li .page-numbers.current,
.custom-pagination ul.page-numbers li a:hover{
    color: #FF9F0D;
}
.zn-shareIcons{
    display: flex;
    align-items: center;
    gap: 10px;
}
.zn-shareIcons a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio__inner{
    display: flex;
    align-items: start;
    gap: 40px;
    justify-content: space-between;
}
.portfolio__content {
    width: 100%;
    max-width: 607px;
}
.service__info {
    width: 100%;
    max-width: 840px;
}
.service__info .before-after-gallery{
    padding: 0;
    display: flex;
    align-items: start;
    gap: 10px;
}
.service__content{
    padding-top: 20px;
    border-top: 1px solid hsla(232, 74%, 8%, 0.4);
    margin-top: 20px;
}
.service__content a:hover{
    color: #e68900 !important;
}
.service__info .reference-video{
    padding: 0;
}

.video {
    position: relative;
    padding: 80px 0;
}

.video-right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    max-width: 270px;
}

.video-card {
    position: relative;
    max-width: 320px;
    width: 100%;
    margin-left: auto;
}

/* Žlutý “stín” pod videem */
.video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: #f8a92a;
    transform: translate(16px, 18px);
    opacity: 0.95;
    z-index: 1;
}

/* Rámeček videa */
.video-card__frame {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 3 / 4;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Video uvnitř */
.video-card__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* RATING BLOCK – hvězdičky + text */
.video-rating {
    margin-top: 24px;
}

.video-rating__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(7, 26, 50, 0.9); 
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.video-rating__stars {
    display: flex;
    gap: 4px;
    font-size: 26px;
    color: #f8a92a;
}

.video-rating__text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.3;
    color: #ffffff;
}

.video-rating__text span {
    opacity: 0.85;
}

.video-rating__text strong {
    font-weight: 600;
}

.video-rating__link:hover {
    background: #485d77e6;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
	
}

/* Tablet – menší video karta */
@media (max-width: 1199.98px) {
    .video-card {
        max-width: 280px;
    }
}

/* ===============================
   MOBILE VIDEO SECTION
   =============================== */

@media (max-width: 767.98px) {

    .video {
        background: #071a32;
        padding: 50px 0 120px;
    }

    .video .row {
        flex-direction: column;
    }

    .video-left-content,
    .vedio-left-content {
        text-align: left;
        margin-bottom: 40px;
    }

    .video-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        position: relative;
        padding-top: 30px;
    }

    .video-card::before {
        transform: translate(10px, 12px);
        border-radius: 20px;
        opacity: 0.9;
    }

    .video-card__frame {
        border-radius: 18px;
        aspect-ratio: 3 / 4;
        width: 100%;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .video-card__video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .video-right-content {
        justify-content: flex-start;
        margin-top: 0;
    }

    /* Rating blok – na mobilu na celou šířku a víc “card-like” */
    .video-rating__link {
        width: 100%;
        border-radius: 18px;
        justify-content: flex-start;
        padding: 14px 16px;
    }

    .video-rating__text {
        font-size: 14px;
    }

}

.faq-cta {
    background: #ff9f0d;
    color: #000;
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    transition: 0.25s ease;
}

.faq-cta:hover {
    background: #ffc045;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.slide-item-center .content-box{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slide-item-right .content-box{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}


.header-menu-inner{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
ul#main-menu {
    display: flex;
    align-items: center;
}
.header-buttons-area{
    width: 100%;
    max-width: 450px;
}
@media (max-width: 1399px) {
    .home-three-menu-bar .main-navigation ul li{
        margin-right: 5px;
    }
    .header-three-menu-area button.btn.primary{
        margin: 0;
    }
    .portfolio__content{
        max-width: 400px;
    }
}
@media (max-width: 1366px) {
    .header-buttons-area{
        max-width: 300px;
    }
    .portfolio__content{
        max-width: 330px;
    }
}
@media (max-width: 1200px) {
    .header-buttons-area{
        max-width: 150px;
    }
}
@media (max-width: 991px) {
    .before-after-gallery{
        grid-template-columns: 1fr 1fr;
        display: grid !important;
    }
    .reference-shorts-container,
    .before-after-gallery .image-wrapper{
        height: 340px !important;
    }
    .reference-shorts-container{
        grid-column: span 2;
    }
}
@media (max-width: 767px) {
    .before-after-gallery{
        grid-template-columns: 1fr;
    }
    .reference-shorts-container{
        grid-column:  auto;
    }
    .mobile-info{
        padding-bottom: 30px;
    }
}


.contact-modal__success h3{
    color: #fff;
}



/* Красная рамка для полей с ошибкой */
.contact-modal__field input.error,
.contact-modal__field textarea.error,
.cm-services.error {
    border: 1px solid #ff4d4d !important;
    background-color: #fffafa;
}

/* Текст ошибки под полем */
.error-message {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Стиль для списка файлов с кнопкой удаления */
.cm-file-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 8px 12px;
    margin-top: 5px;
    border-radius: 4px;
    animation: fadeIn 0.3s ease;
}

.cm-file-remove {
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.cm-file-remove:hover {
    background: #cc0000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}




.heroSlider{
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}
.heroSlider-slider{
    width: 100%;
    overflow: hidden;
}
.heroSlider__slide{
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
}
.heroSlider__slide-bg{
    display: flex;
    position: absolute;
    inset: 0;
    z-index: -1;
}
.heroSlider__slide-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 8s ease;
}
.heroSlider__slide.swiper-slide-active .heroSlider__slide-bg img {
    transform: scale(1.15);
}
.heroSlider__slide-content{
    min-height: 800px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.heroSlider__slide .heroSlider__slide-bg:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90.17deg, #080C24 1.49%, rgba(0, 0, 0, 0) 38.15%);
    top: 0px;
    right: 0px;
    z-index: 1;
}
.heroSlider__slide-title{
    text-transform: capitalize;
    font-size: 68px;
    line-height: 100px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}
.heroSlider__description p {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}
.heroSlider__slide.swiper-slide-active .heroSlider__slide-title{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1000ms;
}
.heroSlider__slide.swiper-slide-active .heroSlider__description p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1200ms;
}
.heroSlider__buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}
.heroSlider__slide.swiper-slide-active .heroSlider__buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1400ms;
}
.heroSlider__slide-content{
    max-width: 820px;
    width: 100%;
    margin-left: 100px;
}
.heroSlider__slide.swiper-slide.content-center .heroSlider__slide-content{
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.heroSlider__slide.swiper-slide.content-center .heroSlider__slide-title{
    text-align: center;
}
.heroSlider__slide.swiper-slide.content-center .heroSlider__description p{
    text-align: center;
}
.heroSlider__slide.swiper-slide.content-right .heroSlider__slide-content{
    margin-left: auto;
    align-items: center;
    justify-content: center;
}
.heroSlider__slide.swiper-slide.content-right .heroSlider__slide-title{
    text-align: right;
}
.heroSlider__slide.swiper-slide.content-right .heroSlider__description p{
    text-align: right;
}
.heroSlider__pagination.swiper-pagination.swiper-pagination-clickable {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 100%;
    max-width: max-content;
    height: max-content;
}
.heroSlider__pagination.swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
    background: #fff;
    transition: opacity 200ms ease 0s;
    width: 13px;
    height: 13px;
    min-width: 13px;
    border-radius: 50%;
    opacity: 1;
    position: relative;
}
.heroSlider__pagination.swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #FF9F0D;
}
.heroSlider__pagination.swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border: 1.5px solid #FF9F0D;
    background: transparent;
}
@media (max-width: 1440px) {
    .heroSlider__slide-title {
        font-size: 58px;
        line-height: 80px;
    }
}
@media (max-width: 1199px) {
    .heroSlider__slide-content{
        margin-left: 0;
    }
}
@media (max-width: 1120px) {
    .heroSlider__slide-content{
        margin-left: 50px;
    }
}
@media (max-width: 991px) {
    .heroSlider__slide-content {
        width: 100%;
        min-height: 680px;
        padding: 80px 20px;
        margin: 0;
    }
    .heroSlider__slide-title {
        font-size: 44px;
        line-height: 60px;
    }
    .heroSlider__pagination.swiper-pagination.swiper-pagination-clickable {
        flex-direction: row;
        top: initial;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .heroSlider__slide .heroSlider__slide-bg:before {
        background: rgba(8, 12, 36, 0.55) !important;
    }
    .heroSlider__slide-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 46px;
    }
    .heroSlider__description p {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .heroSlider__slide-content{
        min-height: 600px;
    }
}
@media (max-width: 480px) {
    .heroSlider__description p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}
.heroSlider__slide-title, 
.heroSlider__description p, 
.heroSlider__buttons {
    will-change: transform, opacity;
}




/* insurance */
.insurance{
    margin-top: 100px;
}
.insurance__inner{
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}
.insurance__title{
    text-align: center;
    font-size: 60px;
}
.insurance__image {
    display: flex;
    margin: 40px auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
}
.insurance__image img{
    width: 100%;
}
.insurance__descr {
    font-size: 20px;
    text-align: center;
}
@media (max-width: 1279px) {
    .insurance{
        margin-top: 100px;
    }
}
@media (max-width: 999px) {
    .insurance{
        margin-top: 80px;
    }
}
@media (max-width: 767px) {
    .insurance__title{
        font-size: 32px;
    }
    .insurance__image{
        max-width: 240px;
        margin: 20px auto;
    }
    .insurance__descr{
        font-size: 18px;
    }
}
@media (max-width: 479px) {

}
/* search-page */
.search-page {
    margin-top: 100px;
    margin-bottom: 200px;
}
.search-page__title {
    font-size: 32px;
}
.search-page__no-results{
    margin-top: 40px;
}
.search-page__no-results-title {
    font-size: 20px;
}
.search-page__count,
.search-page__no-results-text,
.search-page__no-results-tips {
    margin-top: 10px;
    font-size: 18px;
    color: #000;
}
.search-page__no-results-tips li{
    padding-left: 23px;
    position: relative;
    color: #000;
}
.search-page__no-results-tips li::before{
    content: '';
    position: absolute;
    background-color: #001E24;
    top: 11px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    min-width: 6px;
}
.search-page__no-results-form{
    margin-top: 20px;
}
.search-page__no-results-form-title {
    font-size: 24px;
    font-weight: 600;
}
.search-page__no-results-form .header__search-form {
    position: initial;
    display: flex;
    transform: none;
    margin-top: 10px;
    width: 100%;
    max-width: 400px;
}
.search-page__results {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}
.search-result__content {
    padding: 20px;
    background-color: #fffafa;
    border-radius: 4px;
}
.search-result__read-more {
    color: #FF563F;
    font-size: 16px;
    margin-top: 10px;
    display: flex;
    max-width: max-content;
    font-weight: 500;
}
.search-result__read-more:not(:hover){
    text-decoration: underline;
}
.search-result__title{
    font-size: 20px;
    margin-bottom: 10px;
}
.search-result__title > *{
    color: #000;
}
.search-result__title a:hover{
    color: #FF563F;
}
.search-page__pagination{
    margin-top: 20px;
}
.search-page__pagination .navigation{
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-page__pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.page-numbers{
    transition: all .2s ease;
    font-size: 18px;
    color: #000;
}
.page-numbers:hover,
.page-numbers.current{
    color: #FF563F;
}


form#searchform div {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
}
form#searchform input#s{
    padding: 10px;
    font-size: 14px;
    border: 1px solid #000;
    height: 50px;
    width: 100%;
}
form#searchform #searchsubmit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    background-color: #ff9f0d;
    padding: 10px;
    border: 1px solid #000;
    margin-left: -1px;
    outline: none;
    font-weight: 500;
    height: 50px;
}
footer{
	margin-top: -250px;
	padding-top: 250px;
	overflow: hidden;
}


.choose-right-content-image {
    max-width: 560px;
    width: 100%;
}
.faq-image {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 800px;
}
.faq-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.faq > .container > .row{
    display: flex;
    align-items: start;
    justify-content: center;
}
.choose-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.choose-icon svg {
    width: 100%;
    height: 100%;
}
.choose-wrapper:hover .choose-icon svg path[stroke]{
    stroke: #fff;
}
.choose-wrapper:hover .choose-icon svg path[fill]{
    fill: #fff;
}