@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scroll-behavior: smooth;
}


.logo {
    width: 12%;
    display: flex;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 70px;
    margin: 5px;
    margin-bottom: 15px;
    border: 3px solid white;
    border-radius: 50px;
}

.navbartop {
    display: flex;
    align-items:center;
    
    justify-content: space-around;
    position: sticky;
    
    cursor: pointer;
    background-color: rgb(148, 70, 70);
    height: 65px;


}

.nav-list {

    width: 100%;
    /* background-color: rgb(8, 8, 8);  */
    display: flex;
    padding-top: 16px;
    align-items: center;
    justify-content: space-between;
}

.nav-list li {

    list-style: none;
    padding: 10px 20px;
    
}

.nav-list li a {
    text-decoration: none;
    color: rgb(215, 210, 210);
    font-size: 23px;
    font-family: 'Ubuntu', sans-serif;
    
}

.nav-list li a:hover {
    text-decoration: none;
    color: rgb(5, 5, 5);

}

.rightnav {
    width: 5%;
    /* background-color: chartreuse; */
    text-align: right;
    padding: 0 50px;

}

#search {
    padding: 2px;
    font-size: 18px;
    border: 2px solid grey;

}

.background {
 
    background-size: cover;
    background-blend-mode: darken;
    

}

.box-main {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(10, 10, 10);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 75%;
    margin: auto;
    height: 100%;
}

.bton {
    padding: 8px 20px;
    margin: 7px 3px;
    border: 2px solid rgb(10, 10, 10);
    border-radius: 8px;
    font-size: 18px;
    height: 20px;
    width: 85px;
    justify-content: center;
    background: none;
    color: rgb(3, 3, 3);
    cursor: pointer;
    align-content: center;
    text-align: center;
}

.firstsection {
    height: 100vh;
    

}

.firsthalf {
    width: 100%;
    
    
}
.firsthalf h1{
    color: rgb(77, 51, 51);
    font-weight: 700;
}
.firsthalf h4{
    color: rgb(50, 50, 50);
}

.secndhalf {
    width: 100%;
    


}

.secndhalf img {
    width: 70%;
    border: 4px solid rgb(18, 17, 17);
    border-radius: 150px;
    display: block;
    margin: auto;
}

.text-big {
    font-size: 40px;
}

.text-small {
    text-shadow: 22px;
}

.button {
    display: flex;
    gap: 18px;
}

.btn.sn {
    padding: 6px 10px;
    vertical-align: middle;
    background: none;
    border: 2px solid rgb(26, 25, 25);

}

.secRight {
    font-family: 'Ubuntu', sans-serif;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
}

.secLeft {
    font-family: 'Ubuntu', sans-serif;

    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    margin: auto;

}

.paras {
    padding: 0px, 65px;
}


.sectionTag {
    font-weight: 600;
    font-size: 25px;
    color: rgb(165, 103, 103);
    padding: 16px 0px;

}

.sectionSubTag {
    font-weight: 600;
    font-size: 18px;
    font-family: poppins;
}

.Tumbnell {
    padding: 24px;
    /* height: 300px;
   width: 300px;
   border: 2px solid black;
   border-radius: 29px; */
    margin-top: 75px;
    
}
.Tumbnell img{
    border-radius: 50%;
}

.contact {
    background-color: rgb(238, 237, 237);
    height: 533px;
    
}

.text-center {
    text-align: center;
    /* padding: 34px; */
    font-family: 'Ubuntu', sans-serif;

}

.form {
    max-width: 500px;
    margin: 8px auto;
    justify-content: space-between;
    display: block;
    font-size: 54px;
}
.pura{
    background: linear-gradient(rgba(164, 93, 93, 0.3),rgb(160, 160, 160));
}

.form-input {
    width: 100%;
    margin: 14px, 0;
    font-size: 19px;
    border: 2px solid grey;
    border-radius: 6px;
    padding: 8px 9px;

}


.btn-dark {
    color: black;
    border: 2px solid grey;
    border-radius: 4px;
    font-size: 18px;
    

}

.text {
    padding: 40px;
    margin-top: 20px;
    font-size: 19px;
    border: 2px solid grey;
    border-radius: 6px;
    text-align: left;
    color: grey;

}

.burger {
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
}

.line {
    width: 33px;
    background-color: white;
    height: 4px;
    margin: 3px;
}

.text-footer {
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

@media only screen and (max-width:1140px) {
    .nav-list {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        transition: all 0.7s ease-out;
        height: 478px;
    }

    .rightnav {
        text-align: center;
    }

    #search {
        width: 100%;
    }

    .burger {
        display: block;
    }

    .h-nav-resp {
        height: 72px;
    }

    .v-class-resp {
        opacity: 0;
    }

    .box-main {
        flex-direction: column-reverse;
        max-width: 100%;
    }

    .secLeft {

        flex-direction: column;
    }

    .secRight {
        flex-direction: column-reverse;
    }

    .text-small {
        text-align: center;
    }

    .text-big {
        text-align: center;
    }

    .button {
        text-align: center;
    }

    .paras {
        padding: 0px 0px;
    }

    .text {
        padding: 0px;
        font-size: 15px
    }

    .form {
        max-width: 300px;
    }

    .text-footer {
        test-size: small;
    }

}