/*
    GENERAL STYLES
*/
:root {
    --color-main        : #F18104;
    --color-main-rgb    : 241, 129, 4;
}

a{
    font-family: 'Sofia Sans Condensed';
    text-decoration: none;
    color:#000;
    cursor: pointer;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400; /* або 700 для товщини bold */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sofia Sans Condensed';
    color:#000;
    
} 

h2 {
    line-height: 42px;
}

div.bg,
section.bg {
    background:#F4F4F4;
}


.over-hiden {
    overflow: hidden;
}


.pos-relative {
    position: relative;
}

.flex-flow-column {
    flex-flow:column;
}







/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    z-index: 997;
    transition: all 0.5s;
    background: white;
    top: -70px;
    box-shadow:1px 1px 10px rgba(0,0,0,0.5);
  }
  
  #header.header-scrolled,
  #header.header-inner-page {
    top: 0;
  }
  
  #header .logo h1 {
    font-size: 30px;
    margin: 0;
    line-height: 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
  }
  
  @media (max-width: 992px) {
    #header {
      height: 60px;
    }
  }

  #header a.phone {
    color: #000;
    margin-right: 30px;
    font-weight: 700;
    letter-spacing: 1.5px;
  }

  #header a.order {  
    padding:12px;
    width: 200px;
    height: 30px;
    flex-shrink: 0;
    background-color: var(--color-main);
    color:white;
  }
  
  #header a.order:hover {  
    background-color: rgba(var(--color-main-rgb), 0.8);
  }
    
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a,
  .navbar a:hover,
  .navbar a:focus {

    color:#000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 5px 0px;
    margin: 0px 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Sofia Sans Condensed';
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navbar a:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0px;
    left: 0;
    background-color: var(--color-main);
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar a:hover:before {
    visibility: visible;
    width:100%;
  }

  

  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  /*
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: red;
  }

  .navbar a:hover::before,
  .navbar .active::before
 {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0px;
    left: 0;
    background-color: var(--color-main);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
  }  */
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    color: #000;
    text-transform: uppercase;
  }
   
  .navbar .dropdown ul a i {
    font-size: 16px;
    
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #000;
    
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-phone,
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  @media (max-width: 991px) {
    .mobile-phone,
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(29, 37, 37, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #334242;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: var(--color-main);
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #00c1c1;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }



/*
    HERO SECTION
*/

.hero {
    position: relative;
    display: flex;
    height: 100vh;
    min-height:700px;
    padding:0px;
    width: 100%;
    background: linear-gradient(180deg, #121016 0%, #282828 100%);
    overflow: hidden;
    align-items: center;
}

.hero img.background {
    position: absolute;
    margin-left:200px;
    height: 100%;
}

.hero .header {
    position: absolute;
    top:0px;
    height: 70px;
    padding:15px;
    width: 100%;
}

@media (max-width:1199px) {
    .hero .header {
        background-color: #282828;
    }
}

.hero .header img.logo {
    max-height: 40px;
}

.hero .header .menubtn {
    display: inline-block;
    color:white;
    letter-spacing: 3.4px;
    cursor: pointer;
}


.hero .header .menubtn img {
    margin-top: -3px;
    margin-right: 10px;
    max-height: 25px;
}

.hero .popupmenu {
    border-radius: 0px;
    text-align: center;
    padding:20px 40px;
}

.hero .popupmenu a, 
.hero .popupmenu a:focus,
.hero .popupmenu a:active {
    position: relative;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color:#000;
    width: fit-content;
    padding: 5px 0px;
     
}

.hero .popupmenu li {
    width: 100%;
    text-align: center;
}

.hero .popupmenu a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 2px;
    left: 0;
    background-color: var(--color-main);
    /*visibility: hidden;*/
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}


.hero .popupmenu  a:hover:before,
.hero .popupmenu  .active:before {
  visibility: visible;
  width: 100%;
}

.hero .popupmenu a:hover {
    background-color: unset;
}

.hero .popupmenu a.btn-popup {
    background-color: var(--color-main);
    color:white;
    padding: 7px 15px;
}


.hero .popupmenu a.btn-popup:hover {
    background-color: rgba(var(--color-main-rgb), 0.8);
    color:white;
}


.hero .header .phone  {
    margin-top:-1px  
} 


.hero .header .phone i {
    color: #898989;
    font-size: 24px;
    line-height: 1;

}

.hero .content {
    margin-left: calc(20% + 260px);
    position: relative;
    height: fit-content;
    padding-left: 170px;
    padding-right: 30px;
    opacity: 0; /* Початкова прозорість 0 */
    animation: fadeIn 1.5s ease-in-out forwards; /* Анімація з'явлення */ 
    
}
.hero .vertical {
    position: absolute;
    color: rgba(255, 255, 255, 0.07);
    transform: rotate(-90deg);
    width: fit-content;
    left:-160px;
    top: calc(50% - 30px);
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 100px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 50% */
    text-transform: uppercase; 
    flex-shrink: 0;
}

.hero .vertical .a {
    font-size: 120px;
}

.hero .content .number {
    display: block;
    position: relative;
    color: var(--color-main);
    font-family: 'Roboto Condensed';
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase;
    padding-bottom: 20px;
}

.hero .content .number:after {
    position: absolute;
    content: "";
    left:0px;
    bottom:-10px;
    width: 160px;
    height: 1px;;
    background: rgba(255, 255, 255, 0.25);
}

.hero .content h1 {
    color: #FFF;
    padding-top: 30px;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 62px; /* 88.571% */
    text-transform: uppercase;    
}

.hero .content p {
    color: #B7B7B7;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 150% */
    max-width: 500px;
}

.hero .content .get-started {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 87.5% */
    letter-spacing: 6.4px;
    text-transform: uppercase;    
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media (max-width:1199px){
    .hero .vertical {
        left:-200px;
    }

    .hero .content {
        padding-left: 140px;
    }
    .hero img.background { 
        margin-left:10%;
    }

}


@media (max-width:991px){
    .hero img.background {
        position: absolute;
        right: -100px;
        height: 100%;
    } 

    .hero .vertical {
        display: none;
    }

    .hero .content {
        padding-left: 40px;
        margin-right: 250px;
        margin-left: 0px;
    }
}

@media (max-width:500px) {
    .hero img.background {
        right:-150px;
    }
    .hero .content {
        margin-left: 15px;
        padding-left: 0px;
    }

    .hero .content h1 {
        font-size:42px;
        line-height: 40px;
    }
}


.hero .footer-menu {
    position: absolute;
    bottom: 0px;
    height:70px;
    width: 100%;
    background-color: black;
    
}

.hero .footer-menu a {
    display: inline-block;
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 158.824% */
    letter-spacing: 3.4px;  
    margin-left: 20px; 
    padding-top: 20px; 
    margin-top:0px;
}

.hero .footer-menu a i {
    color: var(--color-main);
}

.hero .footer-menu a.about {
    text-align: center;
    height: 70px;
    width: 70px;
    background-color: var(--color-main);
}

.hero .footer-menu a.about i {
    font-size: 28px;;
    color:white;
}







/*
    STEP1
*/



.step2 h2 {
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 108.696% */
    text-transform: uppercase;   
}

.step2 p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.step2 p.border {
    padding:20px;
    font-family: 'Sofia Sans Condensed';
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;    

    
    border: 1px solid rgba(0,0,0,0.3);
}

.step2 div.img {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-bottom:1px solid rgba(0,0,0,0.3);
    padding-bottom: 40px;
 }
.step2 div.img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.step2 .ps {
    line-height: 26px;
    letter-spacing: 2.4px;
    text-decoration-line: underline;    
}


.step2 .vertical-container {
    position: relative;
}

.step2 .e-vertical {
    position: relative;
    width: 574px;
    height: 29px;
    transform: rotate(-90deg);
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 69.444% */
    text-transform: uppercase; 
    top:250px;
    right:170px;
}

.step2 .e-horizontal { 
    color: rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 72px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 69.444% */
    text-transform: uppercase;   
}

@media (max-width:540px){
    .step2 .e-horizontal {
        font-size: 50px;
    }
}






/*
    STEP 3
*/

.step3 h2 {
    font-size: 42px;
}

.step3 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}


.step3 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}

.step3 span.number.invert:after {
    left:unset;
    right:0px !important;
}


.step3 div.info {
    width: 232px;
    height: 90px;
    position: absolute;
    bottom:20px;
    right:0px;
    background: rgba(0, 0, 0, 0.50);
    border-left:2px solid white;
    padding:15px 20px;
}

.step3 div.info p {
    color:white;
    font-size: 14px;
}

/*
    STEP 4
*/

.step4 h2 {
    font-size: 42px;
    
}

.step4 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-align: right;
    text-transform: uppercase; 
    height: 70px;    
}

.step4 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    right:0px;
    bottom:-10px;
}



@media (max-width:768px) {
    .step4 .myorder-1 {
        order: 1 !important;
    }
    .step4 .myorder-2 {
        order: 2 !important;
    }
}    


.step4 .step-item {
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);  
    margin: 0;
    height: fit-content;
      
}

.step4 .step-item p {
    display: inline-block;
    padding: 20px 20px 20px 20px ;
    margin:0px !important;
     
}



.step4 .book-cont {
    min-width: 200px;
    max-width: 200px;
    min-height:100%; 
    position: relative;
}

.step4 .book-cont img.book{
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 0px 3px rgba(0, 0, 0, 0.20));
    object-fit: fill;
}


.step4 .book-cont .minibook {
    font-size: 28px;
    color:rgba(255,255,255,0.5);
    position: absolute;
    left: 20px; 
    top: 50%;
    transform: translateY(-50%);
}

.step4 .book-cont span.step {
    position: absolute;
    left: 70px; 
    top: 50%;
    transform: translateY(-50%);

    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;  
    text-transform: uppercase;    
}

.step4 h3 {
    position: relative;
    display: inline-block;
    line-height: 42px; /* 150% */

    
}

.step4 h3.withline::after {
    content: '';
    position: absolute;
    top: calc(50% + 8px);  
    left: calc(100% + 10px);  
    width: 100vw;  
    border-top: 1px solid rgba(0, 0, 0, 0.25);  
    transform: translateY(-50%);  
    z-index: -1; 
}


 /*
    STEP 5
*/

.step5 h2 {
    font-size: 42px;
    line-height: 42px; /* 100% */
}

.step5 h3 {
 
    font-family: 'Roboto Condensed';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 114.286% */
    text-transform: uppercase;   
}

.step5 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step5 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}


.step5 .vertical-img {
    top: 0px;
    right: 0px;
    position: absolute;
    width: 100px;
    height: 100%;

}

.step5 .vertical-img span{
    left: 30px;
    position: absolute;
    bottom: 50px;
    display: inline-block;
    width: 71px;
    height: 10px;
    transform: rotate(-90deg);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px; /* 100% */
    letter-spacing: 2.4px;
    text-transform: uppercase;    
}

.step5 .vertical-img span:after {
    content: "";
    position: absolute;
    left: calc(100% + 10px);
    top: 10px;
    width: 60px;
    height: 1px;
    background-color: #000;
}

.step5 .vertical-img.img1 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), url('../img/step05-02+.jpg'), lightgray 50% / cover no-repeat;
}

.step5 .vertical-img.img2 {
    background: linear-gradient(180deg, rgba(241, 129, 4, 0.80) 0%, rgba(241, 129, 4, 0.08) 100%), url('../img/step05-03.jpg'), lightgray 50% / cover no-repeat;
}


/*
    РАМКА З КУТИКАМИ
*/

.step5 .focus .color-main {
    color: var(--color-main);
}

.step5 .focus p {
    line-height: 24px;
}


.step5 .focus-top {
    position: relative;
    padding:10px     
}

.step5 .focus-top::before,
.step5 .focus-top::after {
  content: "";
  position: absolute;
  width: 60px; /* Ширина кутів */
  height: 70px; /* Висота кутів */
  top:0px;
  border-top: 2px solid #D9D9D9; /* Стиль та колір границі кутів */
  margin-bottom: -70px;
}

.step5 .focus-top::before {
    border-left: 2px solid #D9D9D9; /* Стиль та колір границі кутів */
    left:0px;
}

.step5 .focus-top::after {
    border-right: 2px solid #D9D9D9; /* Стиль та колір границі кутів */
    right:0px;
}


.step5 .focus-bottom {
    position: relative;
        
}

.step5 .focus-bottom::before,
.step5 .focus-bottom::after {
  content: "";
  position: absolute;
  width: 60px; /* Ширина кутів */
  height: 70px; /* Висота кутів */
  top:0px;
  border-bottom: 2px solid #D9D9D9; /* Стиль та колір границі кутів */
  margin-top: -70px;
}

.step5 .focus-bottom::before {
    border-left: 2px solid #D9D9D9; /* Стиль та колір границі кутів */
    left:0px;
}

.step5 .focus-bottom::after {
    border-right: 2px solid #D9D9D9; /* Стиль та колір границі кутів */
    right:0px;
}

/*
    STEP 06
*/


.step6 .fillimg {
    background-image: url('../img/step06-01.jpg');
    background-size: cover;
    background-position: center;  
    background-repeat: no-repeat;
    min-height: 250px;
}

.step6  .gradient {
    background: linear-gradient(180deg, #121016 0%, #282828 100%);
}

.step6  .gradient h2 {
    color: #FFF;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 100% */
}

.step6  .gradient p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.step6 img.main {
    min-height: 100%;
}

.step6 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step6 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}

.step6 .square {
    position: absolute;
    width: 110px;
    height: 110px;
    top: calc(50% - 55px);
    right: -55px;
    background-color: var(--color-main);   
}

@media (max-width:1199px) {
    .step6 .square {

        left: calc(50% - 55px);
        top:-55px;
    }
}



/*
    STEP07
*/

.step7 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step7 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}

.step7 h2 {
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 100% */
}

.step7 p {

    font-weight: 400;
    line-height: 24px; /* 150% */
}

.step7 .alert {
    border-radius: 0px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.30);
}

.step7 .alert img {
    position: absolute;
    top:-23px;
    right:20px;
    background-color: white;
    padding: 0px 10px;
}






/*
    STEP 08
*/

.step8 .fillimg1 {
    background-image: url('../img/step08-01.jpg');
    background-size: cover;
    background-position: center;  
    background-repeat: no-repeat;
    min-height: 300px;  
}

.step8 .fillimg2 {
    background-image: url('../img/step08-02.jpg');
    background-size: cover;
    background-position: center;  
    background-repeat: no-repeat;
    min-height: 300px;  
}

.step8 h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 42px;    
}

.step8 .gradient {
    background: linear-gradient(180deg, #000 0%, #282828 100%);
}

.step8 .number {
    position: absolute;
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    font-family: 'Sofia Sans Condensed';
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    display: inline-block;  
    text-align: center;  
    line-height: 75px;
    text-transform: uppercase;
    background-color: #191919;
    width: 90px;
    height: 90px;
    left:-45px;
    top: calc(100% - 45px);
    border-radius: 50%;
    border:10px solid #F4F4F4;
    z-index:200;
}

.step8 .number-line {
    position: absolute;
    content: "";
    width: 200px;
    height: 4px;
    left:-100px;
    top: calc(100% - 2px);
    background-color: var(--color-main);
    z-index: 100;
}

@media (max-width:991px) {
    .step8 .number-line {
        left: calc(50% - 100px) ;
    } 

    .step8 .number {
        left: calc(50% - 45px);
    }
}


/*
    STEP 09
*/

.step9 h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 42px;    
}

.step9 h3{
    color: #000;
    font-family: Sofia Sans Condensed;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
}




.step9 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step9 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}


.step9 .fillimg1 {
    background-image: url('../img/step09-01.jpg');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    min-height: 100px;  
}

.step9 .fillimg2 {
    background-image: url('../img/step09-02.jpg');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    min-height: 90px;  
    max-height: 90px;  
}

.step9 .fillnoimg {
    min-height: 90px;  
     
}

.step9 div.line {
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}



/*
    STEP 10
*/

.step10 h3 {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;    
}

.step10 h2 {
    font-size: 46px;
    line-height: 48px;   
    
    
    
}

.step10 .h2-line {
    margin-left: 72px;
    border-bottom: 1px solid #333333;  
}

.spte10 p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.step10 .fillimg1 {
    background-image: url('../img/step10-01.jpg');
    background-size: cover;
    background-position: top;  
    background-repeat: no-repeat;
    min-height: 800px;     
}

.step10 i {
    font-size: 48px;
    color:var(--color-main);
}


.step2 .vertical-container {
    position: relative;
}

.step10 .e-vertical {
    position: relative;
    width: 800px;
    height: 29px;
    transform: rotate(-90deg);
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 79px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 69.444% */
    text-transform: uppercase; 
    top:350px;
    right:350px;
}

.step10 .e-horizontal { 
    color: rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 72px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 69.444% */
    text-transform: uppercase; 
    padding-bottom: 20px;  
}

@media (max-width:990px){
    .step10 .e-horizontal {
        font-size: 50px;
    }
}

@media (max-width:540px){
    .step10 .e-horizontal {
        font-size: 50px;
    }
}



/*
    STEP 11
*/


.step11 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step11 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}

.step11 h2 {
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px    
}

.step11 a {
    font-family: 'Roboto Condensed';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 87.5% */
    letter-spacing: 2.4px;
}



/*
    STEP 12
*/

.step12 .fillimg {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.80) 100%), url('../img/step12-01.jpg'), lightgray 50%;
    background-repeat: no-repeat;
    background-size: cover;
}


.step12 span.count {
    display: block;
    color: #FFF;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    padding:0px;
    margin: 0px;
    margin-top: -10px;
   
}
 
.step12 span.info {
    position: relative;
    display: block;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 0px;  
    margin:0px;
    margin-top: -10px;
}

.step12 .info:before {
    position: absolute;
    content: "";
    left: 0px;
    top:-5px;
    height: 1px;
    width: 100%;
    max-width: 140px;
    background-color: var(--color-main);
}

.step12 img {
    width:70px
}

.step12 img.i1 {
    width: 50px;
    margin-right: 20px;
}


.step12 .item {
    display: flex;
    max-width: 200px;
}


/*
    STEP 13
*/

.step13 .swiper {
    width: 100%;
    height: calc(100% + 50px);
}



.swiper-bnt-cont {
    position: absolute;;
    top: -40px;
    right: 00px;
    
    width: 120px;
    background-color: red;
}

.step13 .swiper-button-prev,
.step13 .swiper-button-next {
    
    border: 1px solid #F18104;
    display: inline-block;
    height: 45px;
    width: 45px;
    color: var(--color-main);
    transition: all 0.5s ease;
}

.step13 .swiper-button-prev:hover,
.step13 .swiper-button-next:hover {
    border: 1px solid #F18104;
    background: var(--color-main);
    color:white;
}

.step13 .swiper-button-next:after {
    padding-left: 7px;
    content: "\F285";
    font-family: 'bootstrap-icons' !important;  
    font-size: 30px !important;
    padding-top: 4px;
    line-height: 45px;
    font-weight: 900;
}


.step13 .swiper-button-prev:after {
    padding-left: 7px;
    content: "\F284";
    font-family: 'bootstrap-icons' !important;  
    font-size: 30px !important;
    padding-top: 4px;
    line-height: 45px;
    font-weight: 900;
}


.step13 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet
{

    width:30px;
    height:5px;
    border-radius: 0px;
}

.step13 .swiper-pagination-bullet-active {
    background-color: var(--color-main);
}

/*
    STEP 14
*/

.step14 .fillimg1 {
    background-image: url('../img/step14-01.jpg');
    background-size: cover;
    background-position: top;  
    background-repeat: no-repeat;
    min-height: 600px; 
    margin-left: 100px;
}

.step14 .fill1-margin {
    margin-left: 100px;
    flex-grow: 1;
}


.step14 .fillimg1 div.info {
    position: absolute;
    bottom:20px;
    right:0px;
    width: 320px;
    height: 60px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0.02%, rgba(0, 0, 0, 0.70) 50.01%);
    backdrop-filter: blur(2.5px);    
}

.step14 .fillimg1 div.info-line {
    position: absolute;
    right: 0px;
    bottom:78px;
    width: 100px;
    height: 4px;
    background-color: var(--color-main);
}

.step14 .fillimg1 div.info p span {
    padding: 0px;
    color:white;
}
.step14 .fillimg1 div.info p {
    text-align: end;
    font-size: 14px;
    line-height: 14px;
    padding:10px 20px; 
    color:white; 
}

.step14 .fillimg2 {
    background-image: url('../img/step14-02.jpg');
    background-size: cover;
    background-position: top;  
    background-repeat: no-repeat;
    min-height: 400px; 
}

.step14 .fillimg2 div.info {
    position: absolute;
    bottom:40px;
    left:0px;
    width: 320px;
    height: 60px;
    background: linear-gradient(90deg, rgba(61, 88, 160, 0.85) 50%, rgba(61, 88, 160, 0.00) 100%);
    backdrop-filter: blur(2.5px);    
}

.step14 .fillimg2 div.info p span {
    padding: 0px;
    color:white;
}
.step14 .fillimg2 div.info p {
    text-align: start;
    font-size: 14px;
    line-height: 14px;
    padding:10px 20px; 
    color:white; 
}


@media (max-width:991px) {
    .step14 .fill1-margin,
    .step14 .fillimg1 {
        margin-left: 0px;
    }

     
}

.step14 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step14 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}

.step14 h2 {
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 100% */
}

.step14 h2 span.small {
    color: #000;
    font-family: Roboto Condensed;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 87.5% */
    letter-spacing: 3.36px;
    display: block;
    height: 13px;        
}

.step14 p {
    color:#898989;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px; /* 150% */
}

.step14 p span {
    display: block;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 20px 0px;
}

.step14 a {
    font-family: 'Roboto Condensed';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 87.5% */
    letter-spacing: 2.4px;
}

.step14 a.more {
    color:var(--color-main);
    background:white !important;
}

.step14 .foot {
    max-height: 50px;
    min-height: 50px;
    border: 1px solid var(--color-main);
}

.step14 .foot a {
    width: 50px;
    height: 100%;
    background-color: var(--color-main);
    transition: all 0.5s ease;
}

.step14 .foot a:hover {
    background-color: rgba(var(--color-main-rgb),0.8);
}

.step14 .foot h4 {
    color: var(--color-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 100% */
    letter-spacing: 1.6px;
    text-transform: uppercase; 
    margin: 0px;   
}

/*
    STEP 15
*/

section.step15 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%), url('../img/step15-01.jpg');
    background-size: cover;
    background-position: top;  
    background-repeat: no-repeat;
    background-attachment: fixed;    
}


@media (max-width:540px) {
    section.step15 {
        background-attachment: unset;
    }
}


.step15 h3 {
    color:white;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 100% */
    max-width: 815px;
}

@media (max-width:540px) {
    .step15 h3 { 
        font-size: 24px;
        line-height: 30px; 
        
        
    }
}

.step15 .item {
    display: block;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px); 
    border-right:3px solid var(--color-main);   
    height: 100%;
}

.step15 .item .head{ 
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.step15 .img {
    display: inline-block;
    height: 46px;
    width: 46px;
    background-color: var(--color-main);
    border-radius: 50%;
}

.step15 .img img{ 
    padding:8px;
}

.step15 .item h4 {
    display: inline-block;
    margin-left: 10px;
    max-width: 130px;
    color:white;
}

.step15 .item p {
    color: #FFF;
    line-height: 24px; /* 150% */    
}

/*
    STEP 16
*/

.step16 .fillimg {
    position: relative;
    background-image: url('../img/step16-01.jpg');
    background-size: cover;
    background-position: top;  
    background-repeat: no-repeat;
    min-height: 600px; 
}

.step16 span.number {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase; 
    height: 70px;    
}

.step16 span.number:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--color-main);
    left:0px;
    bottom:-10px;
}

.step16 h2 {
    
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; /* 104.348% */    
}

.step16 div.form {
    position: absolute;
    width: 400px;
    height: 400px;
    left:-100px;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid #F18104;
    background: #F4F4F4;

}

.step16 .form-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
    padding-right: 200px;
    min-height: 400px;
}

@media (max-width:991px) {
    .step16 .form-info {
        position: unset;
        transform: unset;
        padding-right: 20px;
         
    }

    .step16 div.form {
        position: unset;
        transform: unset;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px;
        
    }

    .step16 .fillimg {
        min-height: 500px;
    }
}

.step16 .form-foot {
    border-top: 1px solid var(--color-main);
    min-height: 50px;

    
}


.step16 .form-foot a {
    display: inline-block;;
    color: #000;
    font-family: Roboto Condensed;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 10px 20px 0px 0px;
    
}

.step16 .form-foot a img {
    display: inline-block;
    margin: -4px 5px 0px 0px;
}

.step16 .form-foot a span {
    display: inline-block;
}

.step16 form input[type="text"] {
    width: calc(100% - 100px);
    padding: 30px 0px 10px 0px;
    margin : 0px 50px;
    border: none;  
    border-bottom: 1px solid black;  
    background:#F4F4F4;
    outline: none;  
}



/* Загальні стилі для чекбокса */
.step16 form input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;  
    height: 20px;  
    border: 1px solid black;  
    appearance: none;  
    outline: none;  
    cursor: pointer;  
   
     
}
  
  /* Галочка чекбокса */
.step16 form  input[type="checkbox"]:checked::before {
    margin: -5px 0px 0px 1px;
    font-size: 20px;
    font-weight: 900;    
    content: '\2713'; 
    display: block;
    position: absolute;
    color: var(--color-main); 
}

.step16 form input[type="button"],
.step16 form input[type="submit"] {
    margin : 0px 50px;  
    border: 1px solid #F18104;
    background: #F18104;
    color:white;
    font-weight: 700;
    width: 200px;
    height: 50px;
    flex-shrink: 0; 
}



.step16 form div.check {
    display: flex;
    width: calc(100% - 100px);
    margin : 30px 50px;  
}

.step16 form {
    margin-top: 40px; 
}



/*
    CONTACT
*/


.contact .fillimg {
    position: relative;
    background-image: url('../img/contact01-01.jpg');
    background-size: cover;
    background-position: top;  
    background-repeat: no-repeat;
    min-height: 600px; 
}
 
.contact h2 {
    
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; /* 104.348% */    
}

.contact div.contacts {
    position: absolute;
    width: 600px;
    height: 400px;
    left:-250px;
    top: 50%;
    transform: translateY(-50%);
    background: #191919;;
}

.contact div.contacts:after {
    content: "";
    position: absolute;
    width:10px;
    height:200px;
    background:var(--color-main);
    right: -10px;
    top:50%;
    transform: translateY(-50%)
}


.contact div.contacts .phones {
    width: fit-content;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding:30px;
    height: calc(100% - 70px);
}

.contact div.contacts a {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    padding: 20px 10px;
    transition: all 0.5s ease;
    min-width: fit-content;  
    width: 45%;
}

.contact div.contacts a:hover {
    color:var(--color-main);
}

.contact div.contacts .address {
    color:white;
    text-align: center;
    border-top:1px solid rgba(255,255,255,0.3);
    margin: 0px 30px;
    padding-top: 20px;
}

.contact .form-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
    padding-right: 200px;
    min-height: 400px;
}

.contact .form-caption {
    width:calc(100% - 100px);
}

@media (max-width:991px) {
    .contact .form-info {
        position: unset;
        transform: unset;
        padding-right: 20px;
         
    }

    .contact div.contacts {
        
        position: sticky;
        transform: unset;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px;
        
    }

    .contact .fillimg {
        min-height: 500px;
    }
}

.contact .form-foot {
    /*border-top: 1px solid var(--color-main);*/
    min-height: 50px;

}


.contact .form-foot a {
    display: inline-block;;
    color: #000;
    font-family: Roboto Condensed;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 10px 20px 0px 0px;
    
}

.contact .form-foot a img {
    display: inline-block;
    margin: -4px 5px 0px 0px;
}

.contact .form-foot a span {
    display: inline-block;
}

.contact form input[type="text"] {
    width: calc(100% - 100px);
    padding: 30px 0px 10px 0px;
    border: none;  
    border-bottom: 1px solid black;  
    outline: none;  
}



/* Загальні стилі для чекбокса */
.contact form input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;  
    height: 20px;  
    border: 1px solid black;  
    appearance: none;  
    outline: none;  
    cursor: pointer;  
   
    
}
  
  /* Галочка чекбокса */
.contact form  input[type="checkbox"]:checked::before {
    margin: -5px 0px 0px 1px;
    font-size: 20px;
    font-weight: 900;    
    content: '\2713'; 
    display: block;
    position: absolute;
    color: var(--color-main); 
}

.contact form input[type="button"],
.contact form input[type="submit"] {
      
    border: 1px solid #F18104;
    background: #F18104;
    color:white;
    font-weight: 700;
    width: 200px;
    height: 50px;
    flex-shrink: 0; 
}



.contact form div.check {
    display: flex;
    width: calc(100% - 100px);
    margin : 30px 00px;  
}

/*
    CARDS
*/


.cards .br-top-right {
    border-top:1px solid var(--color-main);
    border-right:1px solid var(--color-main);
    padding-top:35px;
    padding-left:40px;
    padding-right: 100px !important;
}

.cards .br-top-left {
    border-top:1px solid var(--color-main);
    border-left:1px solid var(--color-main);
    padding-top:35px;
    padding-right:40px;
    padding-left: 100px !important;}


.cards .br-top-right .number {
    position: absolute;
    top:35px;
    right:20px;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase;
}


.cards .br-top-left .number {
    position: absolute;
    top:40px;
    left:20px;
    color: rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px; /* 71.429% */
    text-transform: uppercase;
}



.cards h2 {
    width: 100%;
    height: 70px;
    color:white;
    padding:20px;
    background-color: var(--color-main);
    margin: 0px;
}

.cards .fillimg {
    background-image: url(../img/cards/0001.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 150px;
    
}


/*
    FOOTER
*/

footer {
    background-color: black;
}

footer img.logo {
    max-width: 200px;
}

footer .logo-info p {
    position: relative;
    max-width: 195px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-style: normal;
    font-family: 'Roboto Condensed';
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    padding-top: 20px;
    margin-top:20px;
}

footer .logo-info p::after {
    content: "";
    position: absolute;
    top:0px;
    left:0px;
    height: 1px;
    width: 60px;
    background: var(--color-main);
}

footer a.button {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    width:180px;
    display: block;
    line-height: 28px; /* 233.333% */
    letter-spacing: 1.8px;
    padding: 8px 23px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.5s ease; 

}

footer a.button:hover {
    background-color: var(--color-main);

}

footer span.title {
    display: block;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 175% */
    letter-spacing: 2.4px;    
}


footer a.menu {
    font-family: 'Roboto Condensed';
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;    
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.5s ease;
    cursor: pointer;
}

footer a.menu:hover,
footer a.menu.active {
    color:var(--color-main);
}

footer a.map {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 2.1px;    
}

footer .smallinfo {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-family: 'Roboto Condensed';
    font-weight: 400;
    line-height: 14px; /* 100% */   
}
  
 
footer p.SILLANIUM {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

footer a.SILLANIUM {
    font-size: 12px;
    color:#fff;
    font-family: 'Roboto Condensed';
    
    text-align: right;
     
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 116.667% */
    letter-spacing: 1.8px;    
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    margin-top: 80px;
  }
  
  .breadcrumbs h2 {
    color: #000;
    
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 100% */
    text-transform: uppercase;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #f8c255;
    font-size: 20px;
    line-height: 16px;
    content: "•";
  }