:root {
    --primary-color: #0a1118;
    --promary-color-highlight: #233d54;
    --bs-body-bg: #fbf0f6;
    --bs-body-font-family: 'Monserrat', sans-serif;
}

a {color:var(--primary-color);}
a:hover {color:var(--primary-color);}

html {scroll-behavior: smooth}

a {color: var(--primary-color)}
a:hover {color: var(--primary-color)}
/*
    @media (min-width: 544px)  {}
    @media (min-width: 768px)  {}
    @media (min-width: 992px)  {}
    @media (min-width: 1200px) {}
    @media (min-width: 1400px) {}
    @media (min-width: 1600px) {}
/*
* Main Header
*/
/*
* Custom Container
*/
.container-custom {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}


@media (min-width: 1200px){
    .container-custom {width: 1140;}
}
@media (min-width: 1400px){
    .container-custom {width: 1340;}
}
@media (min-width: 1600px){
    .container-custom {width: 1520;}
}
.header {
    z-index: 2;
}



/*
* nav bar
*/

#navbar {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255,247,231);
    z-index: 4;
}


.dropdown-nav__closeNavBtn {
    position: absolute;
    top: 20px;
    right: 16px;
    background-color: rgbA(255,255,255,0.6);

}

.dropdown-nav__container {
    height: 100vh;
    padding: 0 1rem;
}


/*
* Main Section
*/

.zito {
    position:relative;
    height: 100vh;
    background-color: var(--primary-color);
    overflow: hidden;

}
@media (min-width: 1400px){
    .zito__heading{
    font-size: 3.2rem;
    }  
}




.zito__video {
    position: absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}




.zito__overlay {
    position: absolute;
    left:0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0.5;
    z-index: 1;   
}


.zito__content {
    z-index: 1;
}

.zito__content-width{
   max-width: 530px; 
}

.zito__scroll-btn {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--bs-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.zito__scroll-btn:hover {
    color: var(--bs-light);
    opacity: 0.8;
}

.zito__scroll-btn .bi {
    transition-delay: 0.8;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-10px);
    }
}

/*
*Steps Section
*/

.steps {
    padding-top: 40px;
    padding-bottom: 40px;
}

.steps__section-thumbnail {
    height: 240px;
    object-fit: cover;
    margin: 0 auto;
}

.steps__content-width {
    max-width: 456px;
    margin: 0 auto;
}

.steps--background{
    background-color: #fef8f9;
}

@media (min-width: 544px) {
    .steps{
        padding-top: 80px;
        padding-bottom: 80px;
    }
        .steps__section-thumbnail {
            height: auto;
        }
}

/*
*Footer Section
*/
.footer .border-highlight {
    border-top: 1px solid var(--primary-color-highlight);
}