* {
    padding: 0;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    scroll-behavior: smooth;

}

.container-main {
    gap: 20px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-block: 5px;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 50;
}

.logo img {
    height: 60px;
}


.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    color: #734817;
    /* border: 1px solid #734817; */
    padding-block: 5px;
    padding-inline: 10px;
    border-radius: 2px;

}

.nav-links a:hover {
    border-bottom: 1px solid #734817;
    box-shadow: 0 5px 2px -1px #a7671d;
}

.login-btn {
    text-decoration: none;
    font-size: 18px;
    background-color: #7f4c11;
    border: 1px solid #885c1b;
    border-radius: 3px;
    width: 80px;

}

.login-btn .login-btn-link {
    color: #ffffff;
    border: none;
}

.login-btn:hover {
    border: 1px solid #fffaf4;
    box-shadow: 2px 2px 2px 2px #734817;
    background-color: #fff;
}

.login-btn:hover .login-btn-link {
    border: none;
    box-shadow: none;
    color: #885c1b;
}


.parentnav {
    display: none;
}

.navbar-2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-block: 5px;
    background-color: #fff;
    width: 100%;
    /* background: linear-gradient(to right, #fff, #ffe9cf); */
    position: fixed;
    top: 62px;
    border-bottom: 5px solid #c46c07;
    border-top: 2px solid #c46c07;
    
}

.logo img {
    height: 50px;
}


.nav-link {
    display: flex;
    gap: 20px;
}

.nav-link ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-link a {
    text-decoration: none;
    font-size: 18px;
    color: #734817;
    padding-block: 5px;
    padding-inline: 15px;
    border-radius: 2px;

}

.nav-link a:hover {
    border-inline: 3px solid #734817;
    /* box-shadow: 3px 0 2px 2px #a7671d; */
}


.img-container1,
.img-container2,
.img-container3,
.img-container4 {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.slide-img {
    /* width: 100%; */
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: zoom-in 3s linear infinite;
}

@keyframes zoom-in {
    100% {
        width: 100%;
    }

}


.img-container1 {
    animation: slide1 12s linear infinite;
}

.img-container2 {
    animation: slide2 12s linear infinite;
}

.img-container3 {
    animation: slide3 12s linear infinite;
}

.img-container4 {
    animation: slide4 12s linear infinite;
}

@keyframes slide1 {
    0% {
        visibility: visible;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }

}

@keyframes slide2 {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }

}


@keyframes slide3 {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }

}

@keyframes slide4 {
    0% {
        visibility: hidden;
    }

    25% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    75% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }

}

.container-1 {
    width: 100%;
    height: 100vh;
}

.main-tag {
    color: #fff;
    width: 40%;
    text-align: center;
    position: absolute;
    top: 30%;
    bottom: 30%;
    right: 10%;
    animation: textup 12s linear infinite;
    transform: translateY(100px);

    /* height: 100vh; */
    /* display: block;
    margin-left: auto;
    margin-right: auto; */
    /* font-size: 22px; */
}

.main-tag .main-head {
    font-size: 45px;
    font-weight: 1000;
    text-shadow: 1px 1px #e1e1e1;
}

.main-tag .main-info {
    margin-top: 15px;
    font-weight: 600;
    font-size: 26px;
    text-shadow: 1px 1px #e1e1e1
}

@keyframes textup {
    10% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }

}

.txt-box1 {
    animation-delay: 0s;
}

.txt-box2 {
    animation-delay: 3s;
}

.txt-box3 {
    animation-delay: 6s;
}

.txt-box4 {
    animation-delay: 9s;
}

.main-tag .hr-1 {
    height: 4px;
    width: 100%;
    background-color: #fff;
    margin-block: 12px;
    animation-name: hr1;
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
    animation-direction: linear;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;

}

@keyframes hr1 {
    0% {
        width: 0;
    }

    10% {
        width: 10%;
    }

    20% {
        width: 20%;
    }

    30% {
        width: 30%;
    }

    40% {
        width: 40%;
    }

    50% {
        width: 50%;
    }

    60% {
        width: 60%;
    }

    70% {
        width: 70%;
    }

    80% {
        width: 80%;
    }

    90% {
        width: 90%;
    }

    100% {
        width: 100%;
    }

}

.main-tag .hr-2 {
    height: 4px;
    width: 100%;
    background-color: #fff;
    margin-block: 12px;
    animation-name: hr2;
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
    animation-direction: linear;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;

}

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

    10% {
        width: 90%;
    }

    20% {
        width: 80%;
    }

    30% {
        width: 70%;
    }

    40% {
        width: 60%;
    }

    50% {
        width: 50%;
    }

    60% {
        width: 40%;
    }

    70% {
        width: 30%;
    }

    80% {
        width: 20%;
    }

    90% {
        width: 10%;
    }

    100% {
        width: 0;
    }

}


.video-head {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;

}

.video-head p {
    font-size: 20px;
}

.video-desc {
    width: 30%;
}

.video-desc h2 {
    margin-bottom: 5px;
}

.video-desc p {
    margin-block: 10px;

}

.book-button {
    width: 90%;
    padding-inline: 5px;
    padding-block: 10px;
    margin-top: 10px;
    background-color: #fff;
    border-bottom: 4px solid #71440c;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: 0 1px 1px 1px #77440a;
    transition-property: all;
    transition-duration: .8s;
    transition-timing-function: ease-in-out;

}

.book-button:hover {
    box-shadow: 0 3px 3px 3px #7f4c11;
    background-color: #eeeeee;

}

.book-button a {
    font-size: 18px;
    text-decoration: none;
    color: #955307;
    font-weight: 600;
}

.video {
    width: 60%;
}

.video video {
    width: 100%;
}

.video-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

.video-head h1 {
    margin-bottom: 5px;
}

.container-3 {
    margin-bottom: 25px;

}

.head-3 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 25px;
}

.head-3 p {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.projects {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.head-3 {
    text-align: center;
    margin-bottom: 20px;
}

.project {
    width: 21%;
    box-shadow: 1px 1px 10px 2px #bebebe;
    padding-inline: 10px;
    padding-block: 16px;
    margin-bottom: 30px;
}

.project img {
    width: 100%;

}

.prj-desc {
    margin-block: 10px;
    font-size: 18px;
}

.project a {
    color: #a7671d;
    text-decoration: none;
    font-size: 16px;
}

.project a:hover {
    text-decoration: underline;
    color: #db821c;
}

.container-4 {
    margin-bottom: 25px;

}

.head-4 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 25px;
}

.head-4 p {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.image-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* height: 60vh; */
    margin-bottom: 30px;

}

.image-descc {
    width: 40%;
}

.image-descc h2 {
    margin-bottom: 5px;
}

.image-descc p {
    margin-block: 10px;
}

.assist-img {
    width: 50%;
}

.assist-img img {
    width: 100%;
    height: 75%;
}


.features {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 5px;
}

.feature {
    width: 28%;
    box-shadow: 1px 1px 15px 2px #d0d0d0;
    padding-block: 20px;
    padding-inline: 15px;
    margin-bottom: 20px;

}

.feature-desc {
    text-align: center;
}

.feature i {
    color: #db923e;
    padding: 5px;
    font-size: 26px;
    /* border-radius: 5px; */
    box-shadow: 1px 1px 10px 2px #e1e1e1;

}

.feat-desc {
    text-align: justify;
    margin-block: 10px;
}

.font-icon {
    margin-top: 8px;
    margin-bottom: 20px;
    text-align: center;

}

.container-5 {
    margin-bottom: 30px;
}

.review-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.review {
    width: 35%;
    box-shadow: 1px 1px 15px 2px #c4c4c4;
    padding-block: 20px;
    padding-inline: 30px;
    margin-bottom: 15px;
    /* margin-block: 15px; */
}

.review img {
    height: 90px;
    width: 90px;
    border-radius: 50%;

}

.review h3 {
    /* display: inline-block; */
    margin-block: 10px;

}

.head-5 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 25px;
}

.head-5 p {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer {
    padding-top: 12px;
    margin-top: 120px;
}

.footer .box-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
    gap: 3rem;
     margin-left: 5rem; 
    padding-inline: 10px;
    margin-bottom: 0; */
}

.box-container .box {
    width: 21%;
    padding-inline: 10px;
    padding-block: 16px;
    margin-bottom: 30px;
}

.footer .box-container .box h3 {
    text-transform: uppercase;
    /* color: var(--black); */
    font-size: 20px;
    padding-bottom: 8px;
}

.footer .box-container .box h3:hover {
    text-decoration: underline;
}

.footer .box-container .box p,
.footer .box-container .box a {
    display: block;
    font-size: 18px;
    color: black;
    padding: 8px 0;
    text-decoration: none;
}

.footer .box-container .box p i,
.footer .box-container .box a i {
    color: black;
    padding-right: 5px;

}

.footer .box-container .box a:hover {
    color: #eea858;
    text-decoration: underline;
}

.footer .credit {
    text-align: center;
    font-size: 22px;
    color: #fff0d6;
    background-color: #6e3804;
    /* margin-top: 2px; */
    padding-top: 10px;
    padding-bottom: 20px;
}

.footer .credit span {

    color: #f9b331;
}

.footer svg {
    /* position: relative; */
    /* top: -30px; */
    margin-bottom: 0;
    padding-bottom: 0;

}

.foot {
    display: flex;
    flex-direction: column;

}


@media screen and (max-width:991px) {
    .main-head {
        font-size: 35px;
    }

    .main-info {
        font-size: 25px;
    }
}


@media screen and (max-width:768px) {

    .nav-links ul{
        display: none;
    }

    .parentnav {
        display: block;
      
    }

    .main-tag .main-head {
        font-size: 25px;
    }

    .main-tag .main-info {
        font-size: 18px;
    }

    .video-container {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .video {
        width: 90%;
    }

    .video-desc {
        width: 90%;
    }

    .projects .project {
        width: 40%;
    }

    .assist-img {
        width: 90%;
    }

    .image-descc {
        width: 90%;
    }

    .feature {
        width: 40%;
    }

    .review {
        width: 45%;
    }

    .footer .box {
        width: 40%;
    }

    .footer .box-container .box p,
    .footer .box-container .box a {
        font-size: 16px;
    }

    .navbar,
    .navbar-2 {
        z-index: 50;
    }
}


@media screen and (max-width:600px) {

    .nav-links ul{
        display: none;
    }

    .parentnav {
        display: block;
    }

    .main-tag .main-head {
        font-size: 22px;
    }

    .main-tag .main-info {
        font-size: 16px;
    }

    .video-container {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .video {
        width: 90%;
    }

    .video-desc {
        width: 80%;
    }

    .projects .project {
        width: 80%;
    }

    .assist-img {
        width: 80%;
    }

    .image-descc {
        width: 80%;
    }

    .feature {
        width: 80%;
    }

    .review {
        width: 80%;
    }

    .footer .box {
        width: 80%;
    }

    .footer .box-container .box p,
    .footer .box-container .box a {
        font-size: 14px;
    }

    .navbar,
    .navbar-2 {
        z-index: 50;
    }
}





/*

.container-1 {

     background-image: linear-gradient(rgba(131, 131, 131, 0.2), rgba(24, 24, 24, 0.4)), url(./img/main-img.jpg);
    background-size: 100% 100vh;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    /* animation-name: slider;
    animation-iteration-count: infinite;
    animation-duration: 20s;
    animation-direction: linear;
    animation-fill-mode: backwards;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards; 

}

/*
@keyframes slider {

    0% {
        background-image: linear-gradient(rgba(131, 131, 131, 0.2), rgba(24, 24, 24, 0.4)), url(./img/main-image.jpg);
    }

    65% {
        background-image: linear-gradient(rgba(131, 131, 131, 0.2), rgba(24, 24, 24, 0.4)), url(./img/main-img4.jpg);
    }

   50% {
        background-image: linear-gradient(rgba(131, 131, 131, 0.2), rgba(24, 24, 24, 0.4)), url(./img/main-img4.jpg);
    } */

/* 75% {
        background-image: linear-gradient(rgba(131, 131, 131, 0.2), rgba(24, 24, 24, 0.4)), url(./img/main-img.jpg);
    }

} */