@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Gabarito&family=Inclusive+Sans&family=Montserrat&family=Poppins&family=Roboto&family=Space+Grotesk&family=Ubuntu&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all 0.5s linear;
    font-family: 'Gabarito', sans-serif;
    font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
    cursor: pointer !important;
}

.main {
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgb(4 3 3/60%), rgb(0 0 0/33%)), url(pic.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 5%;
}

.navbar li {
    display: inline;
    padding: 0 15px;
}

.navbar li a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 1.3rem;
    padding: 4px;
}

.navbar li a:hover {
    color: #C19A6B;
}

.burger {
    display: none;
    position: absolute;
    top: 15px;
    right: 5%;
    cursor: pointer;
    font-size: 2rem;
    color: antiquewhite;
}

.btn {
    padding: 12px 39px;
    background-color: chocolate;
    color: white;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
}

.btn:hover {
    background-color: #9c8c7a;
    color: black;
}

.main-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
    width: 40%;
    margin: auto;
    height: 60vh;
}

.para {
    color: #9c8c7a;
    letter-spacing: 2px;
}

.heading {
    color: #ff6b00;
    font-size: 4.6875rem;
    font-family: 'Courgette', cursive;
}

.mid-para {
    font-size: 0.75rem;
    color: #9c8c7a;
    padding: 2% 0;
}

.btn1 {
    border-radius: 20px;
    letter-spacing: 1px;
    margin-top: 2%;
}

/* ________sec_________ */

.sec {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 3% 0;
}

.row {
    display: flex;
    justify-content: center;
    margin: 2% 0;
}

.img {
    width: 40%;
}

.row img {
    width: 80%;
}

.boxes {
    width: 35%;
    align-self: center;
    text-align: left;
}

.boxes h1 {
    color: rgb(57, 36, 36);
    font-size: 1.875rem;
}

.sec .heading {
    color: rgb(92, 44, 10);
    font-size: 3.125rem;
}

/* ________about_________ */

.about {
    background: url(pic1.jpg) no-repeat center center / cover;
    height: 45vh;
    margin-bottom: 5%;
    position: relative;
}

.about-box {
    position: absolute;
    top: 56%;
    width: 50%;
    left: 25%;
    padding: 12px;
    background-color: whitesmoke;
}

/* _______comments_______ */

.c-box {
    border: 2px solid #3d1f0a;
    width: 300px;
    height: 330px;
    margin-right: 20px;
}

.commentimg {
    width: 250px;
    height: 150px;
    cursor: pointer;
}

.c-box h3 {
    color: brown;
    text-align: left;
    padding-left: 12px;
    cursor: pointer;
}

.c-box p {
    text-align: left;
    padding-left: 12px;
    font-size: 14px;
    padding-top: 10px;
    cursor: pointer;
}

/* _______contact______ */

.contact {
    background: url(pic2.jpg) no-repeat center center / cover;
    width: 100%;
    height: 50vh;
    padding: 0;
    margin-top: 10%;
    position: relative;
}

.Con-box {
    background-color: #3d1f0a;
    position: absolute;
    width: 50%;
    margin: auto;
    height: 300px;
    top: -25%;
    left: 25%;
    padding: 35px 0;
}

.Con-box .heading {
    color: white;
}

.Con-box .icons {
    color: #9c8c7a;
    margin: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons div {
    padding: 0px 13px;
    overflow: hidden;
    cursor: pointer;
}

.icons i {
    display: block;
    padding: 12px 0px;
    font-size: 1.625rem;
}

.icons div:hover {
    color: white;
}

.cardt {
    background: white !important;
    color: brown !important;
}

.boxxc {
    width: 300px !important;
    height: 400px !important;
    text-align: left;
    border: 2px solid brown;
    border-radius: 5px;
    margin-right: 30px;
}

.boxxc p {
    font-size: 13px;
    padding-right: 50px !important;
    padding-left: 12px;
}

.boxxc h2 {
    padding-left: 12px;
}

.btnboxxc {
    width: 100px;
    height: 30px;
    background: brown;
    color: white;
    border: none;
    margin-left: 12px;
    margin-top: 12px;
}

/* Media Queries */
@media only screen and (max-width: 1072px) {
    .about-box {
        top: 45%;
        width: 65%;
        left: 18%;
    }
    .navbar li a {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 820px) {
    .burger {
        display: block;
    }

    .navbar {
        position: absolute;
        height: 80vh;
        width: 200px;
        top: 0;
        flex-direction: column;
        right: 0;
        text-align: left;
        justify-content: center;
        transition: all 1s ease-in-out;
        background-color: black;
    }

    .navbar li a {
        padding: 18% 0;
        display: block;
    }

    .navbar .btn {
        padding: 15px 24px;
    }

    .h-class {
        height: 100vh;
        opacity: 0;
    }

    .v-class {
        opacity: 0;
    }

    .main-heading {
        height: 80vh;
        width: 60%;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .boxes,
    .img {
        width: 80%;
        padding-bottom: 2%;
    }

    .comments {
        width: 50%;
        margin: 4% auto;
    }

    .about-box {
        top: 30%;
        width: 72%;
        left: 14%;
    }

    .Con-box {
        width: 70%;
        left: 15%;
    }

    .contact {
        height: 50vh;
    }
}

@media only screen and (max-width: 500px) {
    .main-heading {
        width: 80%;
    }

    .heading {
        font-size: 3.75rem;
    }

    .comments {
        width: 80%;
        margin: 10% auto;
    }

    .mid-para {
        font-size: 10px;
    }

    .about-box {
        width: 87%;
        left: 7%;
    }

    .Con-box {
        width: 88%;
        left: 6%;
        bottom: 20px;
    }
}
