:root {
    --body-font: 'RobotoCondensed',sans-serif;
    --header-font: 'Merriweather',sans-serif;
    --primary-color: #C61105;
    /* Font size h1,h2,h3,h4,h5,h6 */
    --fs-h1: clamp(1.75rem, 1.4rem + 1.75vw, 3.5rem);
    --fs-h2: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    --fs-h4: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    --fs-h5: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    --fs-h6: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    /* Spacing */
    --space-1: 0.25rem;  /* 4px */
    --space-2: 0.5rem;   /* 8px */
    --space-3: 0.75rem;  /* 12px */
    --space-4: 1rem;     /* 16px */
    --space-5: 1.5rem;   /* 24px */
    --space-6: 2rem;     /* 32px */
    --space-7: 3rem;     /* 48px */
    --space-8: 4rem;     /* 64px */

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
}
@font-face {
    font-family: 'RobotoCondensed';
    src: url(../fonts/RobotoCondensed.ttf);
}
@font-face {
    font-family: 'Merriweather';
    src: url(../fonts/Merriweather.ttf);
}
@keyframes pulse-anim {
    0% {
        transform: translate(-50%, -50%) scale(.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(.6);
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
html {
  font-size: 100%;
  box-sizing: border-box
}

body {
    font-family: var(--body-font);
    font-size: var(--fs-h6);
    line-height: 1.6;
    overflow-x: hidden;
    color: #222;
}
h1,h2,h3,h4,h5,h6{
    line-height: 1.4;
}
h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
}
h5 {
  font-size: var(--fs-h5);
}
h6 {
  font-size: var(--fs-h6);
}
a {
    display: inline-block;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
p {
    margin-bottom: var(--space-3);
}
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    -o-object-fit: cover;
}
select:focus{
    outline: none;
}
.section{
    padding-block: clamp(var(--space-4),0.4rem + 3vw,var(--space-8));
}
.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-3);
}
.text-center{
    text-align: center;
}
.title{
    font-size: var(--fs-h2);
    margin-bottom: var(--space-4);
    font-family: var(--header-font);
}
.subtitle{
    position: relative;
    width: fit-content;
    font-size: var(--fs-h6);
    font-weight: 500;
    margin-bottom: var(--space-2);
    padding-left: var(--space-4);
}
.subtitle.center{
    margin-inline: auto;
}
.subtitle::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .375rem;
    height: .375rem;
    border-radius: 50%;
    background: var(--primary-color);
}
.button{
    position: relative;
    padding: var(--space-2) var(--space-6);
    background: transparent;
    border-radius: 3rem;
    border: 2px solid #222;
    color: #222;
    line-height: normal;
    overflow: hidden;
}
.button::before{
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background: var(--primary-color);
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}
.button.white-btn{
    border-color: #fff;
}
.button:hover{
    border-color: var(--primary-color);
    color: #fff;
}
.button:hover::before{
    height: 100%;
}
.button.flip-txt:hover .txt span::after,.button.flip-txt:hover .txt span::before{
    color: #fff;
}
.flip-txt .txt{
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 2;
}
.flip-txt span{
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    white-space: nowrap;
}
.flip-txt .txt span::after,.flip-txt .txt span::before{
    content: attr(data-text);
    display: block;
    position: absolute;
    color: #222;
}
.white-btn.flip-txt .txt span::after,.white-btn.flip-txt .txt span::before{
    color: #fff;
}
.flip-txt .txt span:before {
    top: 0;
    transform: skewY(0);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.flip-txt .txt span:after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.flip-txt:hover .txt span {
  transform: translateY(-105%);
}
.flip-txt:hover .txt span::before {
  transform: skewY(7deg);
}
.flip-txt:hover .txt span::after {
  transform: skewY(0);
}
main{
    margin-top: -4.8125rem;
}
.d-none{
    display: none;
}
.d-block{
    display: block;
}
.d-flex{
    display: flex;
}
.flex-column{
    flex-direction: column;
}
.align-items-center{
    align-items: center;
}
.justify-content-between{
    justify-content: space-between;
}
.overflow-hidden{
    overflow: hidden;
}
.mb-0{
    margin-bottom: 0;
}
.mb-3{
    margin-bottom: 1rem;
}
.mt-3{
    margin-top: 1rem;
}
.mt-4{
    margin-top: 1.5rem;
}
.pb-0{
    padding-bottom: 0;
}
.loader-wrap{
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .6s ease-out;
    z-index: 999999;
}
.loader-wrap.loaded{
    transform: translateY(-100%);
}
.loader {
    width: 3rem;
    height: 3rem;
    border: .25rem solid var(--primary-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.modal{
    position: fixed;
    inset: 0;
    padding-inline: var(--space-4);
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;
}
.modal.opened{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.modal-wrap{
    background: #fff;
    border-radius: var(--radius-md);
    margin-inline: auto;
    margin-block: var(--space-5);
    max-width: 991px;
    transform: translateY(-200%);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all .6s ease-in-out;
}
.modal-wrap.small-modal{
    max-width: 575px;
}
.opened .modal-wrap{
    transform: translateY(0);
}
.modal-body::-webkit-scrollbar{
    display: none;
}
.modal-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-3);
    border-bottom: 1px solid #dee2e6;
}
.modal-body{
    padding: var(--space-3);
    max-height: 85vh;
    overflow-y: auto;
}
.close-modal{
    font-size: var(--fs-h4);
    cursor: pointer;
    transition: all .3s ease-in;
}
.close-modal:hover{
    color: var(--primary-color);
}
#contact .contact-form{
    width: 100%;
}
.table-responsive{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table{
    width: 100%;
    border-collapse: collapse;
    vertical-align: middle;
    white-space: nowrap;
}
table tr,table td{
    border: 1px solid #dee2e6;
    padding: .5rem .5rem;
}
aside ul{
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 99;
}
aside ul a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: all .3s ease-in-out;
}
aside ul a:hover{
    transform: scale(1.1);
}
/* HEADER */
header{
    position: relative;
    background: transparent;
    z-index: 99;
}
header::before{
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    background: #fff;
    height: 0;
    transition: all .3s ease-in;
    z-index: 1;
}
header.sticky{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header.sticky::before{
    height: 100%;
}
.header-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo{
    position: relative;
    width: 8.75rem;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.header-nav{
    display: flex;
    flex-direction: column;
}
.header-nav-link{
    display: block;
    font-weight: 600;
    padding: var(--space-3) var(--space-5);
    cursor: pointer;
}
.mobile-menu-header{
    padding: 0 var(--space-4);
    border-bottom: 1px solid #dee2e6;
}
.header-nav-link.flip-txt .txt span::after,.header-nav-link.flip-txt .txt span::before{
    color: #fff;
}
.sticky .header-nav-link.flip-txt .txt span::after, .sticky .header-nav-link.flip-txt .txt span::before{
    color: #222;
}
.sticky .header-nav-link.active.flip-txt .txt span::after, .sticky .header-nav-link.active.flip-txt .txt span::before{
    color: var(--primary-color);
}
.header-nav-link:hover .txt span::after,.header-nav-link:hover.txt span::before,.header-nav-link.active .txt span::after,.header-nav-link.active.txt span::before,.sticky .header-nav-link:hover .txt span::after,.sticky .header-nav-link:hover.txt span::before,.sticky .header-nav-link.active .txt span::after,.sticky .header-nav-link.active.txt span::before{
    color: var(--primary-color);
}
.menumb-btn{
    position: relative;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
.close-menu-mobile{
    font-size: 1.5rem;
    color: #222;
    cursor: pointer;
}
.menumb-btn:hover,.sticky .menumb-btn:hover,.close-menu-mobile:hover{
    color: var(--primary-color);
}
.sticky .menumb-btn{
    color: #222;
}
/* BANNER SECTION */
.banner-sec{
    position: relative;
    display: grid;
    height: 100vh;
    overflow: hidden;
}
.banner-sec::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 2;
}
.banner-image{
    position: relative;
    grid-area: 1/1;
    z-index: 1;
}
.banner-image img{
    height: 100%;
    width: 100%;
}
.banner-content{
    position: relative;
    grid-area: 1/1;
    align-self: center;
    color: #fff;
    font-size: var(--fs-h5);
    z-index: 2;
}
/* ABOUT SECTION */
.about-sec .grid-wrap{
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
.about-sec li strong{
    text-decoration-line: underline;
    text-underline-offset: 4px;
}
.about-sec figure,.about-sec figure img{
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: var(--radius-md);
}
/* PROCESS SECTION */
.pin-section-area{
    padding-top: var(--space-4);
    border-top: 1px solid #222;
}
.process-item{
    margin-bottom: var(--space-6);
}
.process-item figure,.process-item figure img{
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.process-item h5{
    font-size: var(--fs-h3);
}
/* PRICE SECTION  */
.price-sec .grid-wrap{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: var(--space-4);
}
.price-box{
    clip-path: polygon(0px 24px, 12px 24px, 12px 12px, 24px 12px, 24px 0px, calc(100% - 24px) 0px, calc(100% - 24px) 12px, calc(100% - 12px) 12px, calc(100% - 12px) 24px, 100% 24px, 100% calc(100% - 24px), calc(100% - 12px) calc(100% - 24px), calc(100% - 12px) calc(100% - 12px), calc(100% - 24px) calc(100% - 12px), calc(100% - 24px) 100%, 24px 100%, 24px calc(100% - 12px), 12px calc(100% - 12px), 12px calc(100% - 24px), 0px calc(100% - 24px));
    background: #f5f5f5;
    padding: var(--space-6);
}
.price-box h5{
    color: var(--primary-color);
}
.price-box ul li{
    list-style-position: inside;
}
.price-box ul li::marker{
    content: '✔';
    font-size: .75rem;
    padding-right: .25rem;
}
.price-head{
    margin-bottom: var(--space-4);
}
/* WHY CHOOSE US SECTION */
.why-choose-sec .grid-wrap{
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
.why-choose-sec ul li{
    list-style-position: inside;
}
.why-choose-sec ul li::marker{
    content: '✔';
    font-size: .75rem;
    padding-right: .25rem;
}
.why-choose-sec figure,.why-choose-sec figure img{
    aspect-ratio: 5/4;
    border-radius: var(--radius-md);
}
.why-choose-sec .right{
    display: grid;
}
.why-choose-sec .right figure{
    grid-area: 1/1;
}
.why-choose-sec .right .play-btn{
    position: relative;
    grid-area: 1 / 1;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    justify-self: center;
    align-self: center;
    z-index: 3;
}
.why-choose-sec .right .play-btn .icon{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    color: #fff;
    transition: all .3s ease-in;
    z-index: 4;
}
.play-btn .pulse{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: pulse-anim 2s ease-out infinite;
    z-index: 3;
}
.play-btn:hover .icon {
    transform: scale(1.1);
}
/* CONTACT SECTION */
.form-group{
    margin-bottom: var(--space-3);
}
input,textarea{
    padding: var(--space-3) var(--space-5);
    width: 100%;
    border: 2px solid #dee2e6;
    border-radius: var(--radius-md);
}
input:focus,textarea:focus{
    outline: none;
    border-color: var(--primary-color);
}
input::placeholder,textarea::placeholder{
    font-weight: 600;
    font-family: var(--body-font);
}
/* FOOTER */
footer{
    padding-block: var(--space-2);
    background: #222;
    color: #fff;
}
@media only screen and (min-width: 768px){
    .price-sec .grid-wrap{
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (min-width: 992px){
    .d-lg-flex{
        display: flex;
    }
    .d-lg-none{
        display: none;
    }
    .mb-lg-6{
        margin-bottom: var(--space-6);
    }
    .header-nav{
        flex-direction: row;
        align-items: center;
        gap: var(--space-5);
    }
    .header-nav-link{
        padding: 0;
    }
    .about-sec .left{
        order: 2;
    }
    .about-sec .right{
        order: 1;
    }
    .about-sec figure,.about-sec figure img{
        aspect-ratio: 5/4;
    }
    .why-choose-sec .grid-wrap,.about-sec .grid-wrap{
        grid-template-columns: 1.5fr 1fr;
        column-gap: var(--space-8);
    }
    .pin-section-area{
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: var(--space-4);
    }
    .process-pin{
        height: fit-content !important;
    }
    .process-pin .item-number{
        color: rgba(26, 26, 26, 0.08);
        font-size: 300px;
        font-style: normal;
        font-weight: 500;
        line-height: 0.7;
    }
    .process-pin .total-count{
        font-size: var(--fs-h5);
        line-height: 1.4;
    }
    .process-item figure,.process-item figure img{
        aspect-ratio: 5/4;
    }
    .contact-form{
        width: 50%;
        margin-inline: auto;
    }
}
@media only screen and (min-width: 1280px){
    .container{
        max-width: 75rem;
    }
}
@media only screen and (min-width: 1700px){
    .container{
        max-width: 90rem;
    }
}
@media only screen and (max-width: 991.98px){
    .header-nav-link.flip-txt .txt span::after, .header-nav-link.flip-txt .txt span::before {
        color: #222;
    }
    .header-nav-link:hover .txt span::after, .header-nav-link:hover.txt span::before, .header-nav-link.active .txt span::after, .header-nav-link.active.txt span::before{
        color: var(--primary-color);
    }
    .mobile-menu{
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        transform: translateX(-100%);
        transition: all .4s ease-in-out;
        z-index: 9999;
    }
    .mobile-menu.opened{
        transform: translateX(0);
    }
}