@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

.logo {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    font-size: 45px;
    color: #00f8ff;
    font-family: 'Ubuntu', sans-serif;
}


.background1 {
    background: rgba(0, 0, 0, 0.7) url(Image01.jpg);
    background-size: cover;
    background-blend-mode: darken;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
}

.nav-list {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    width: 70%;
    padding: 10px 0;
}

.nav-list li {
    padding: 30px 30px;
    list-style: none;
}

.nav-list li a {
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
    color: white;
}

.nav-list li a:hover {
    color: grey;
}

.rightnav {
    width: 30%;
    text-align: right;
    padding: 0 23px;
}

#search {
    padding: 5px;
    font-size: 17px;
    border: 2px solid grey;
    border-radius: 9px;

}

.burger {
    display: none;
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 5%;
}

.line {
    width: 33px;
    height: 4px;
    margin: 5px 3px;
    background-color: white;
}

.background {
    background: rgba(0, 0, 0, 0.7) url(image.jpg);
    background-size: cover;
    background-blend-mode: darken;
}

.firstsection {
    height: 75vh;
}

.box-main {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 50%;
    margin: auto;
    height: 80%;
}

.firsthalf p {
    padding: 16px 0;
    line-height: 30px;
}

.firsthalf .btn {
    margin: 5px 10px;
}

.firsthalf {
    text-align: center;
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.secondhalf {
    width: 30%;
}

.secondhalf img {
    width: 70%;
    border: 4px solid white;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.text-big {
    font-size: 41px;
}

.text-small {
    font-size: 18px;
}

.btn {
    padding: 8px 20px;
    margin: 7px 3px;
    border: 2px solid white;
    border-radius: 8px;
    background: none;
    color: white;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
}

.buttons a{
    text-decoration: none;
    color: white;
}

.btn-dark {
    color: grey;
    border: 2px solid grey;
}

.btn-sm {
    padding: 6px 10px;
    vertical-align: middle;
    font-size: 16px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    font-family: 'Ubuntu', sans-serif;
    padding: 15px;
}

.section-left {
    flex-direction: row-reverse;
}

.sectionTag {
    padding: 12px 0;
}

.paras {
    padding: 0 65px;
}

.sectionSubTag {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.thumbnail img {
    width: 400px;
    border: 2px solid black;
    border-radius: 25px;
    margin-top: 20px;
}

.contact {
    margin-top: 5%;
    background-color: azure;
    height: 70%;
}

.text-center {
    text-align: center;
    padding-top: 35px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 34px;
}

.form {
    max-width: 65%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    margin: 14px 0;
    border: 2px solid grey;
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text-footer {
    text-align: center;
    font-size: 22px;
    padding: 20px;
    color: white;
    font-family: 'ubuntu', sans-serif;
}

@media only screen and (max-width: 1090px) {
    .nav-list {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        transition: all 1s ease-in-out;
        height: 540px;
        overflow: hidden;
    }

    .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%;
    }

    .section {
        max-width: 90%;
        flex-direction: column-reverse;
    }

    .firsthalf,
    .buttons {
        text-align: center;
    }

    .thumbnail img {
        width: 300px;
    }

    .text-big {
        font-size: 35px;
    }

    .form {
        max-width: 65%;
        align-items: center;
        margin: 30px auto;
    }

    .paras {
        padding: 0;
    }
}
