@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Ubuntu+Condensed&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0px;
    padding: 0px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
}

.logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 26%;
    margin: 5px;
    border-radius: 50px;
    border: 2px solid white;
}

.nav-list {
    width: 70%;
    display: flex;
    align-items: center;
    /* background-color: black; */
}

.nav-list li {
    list-style: none;
    padding: 26px 30px;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-family: "Ubuntu Condensed", sans-serif;
    font-size: 20px;
}

.nav-list li a:hover {
    color: rgb(131, 125, 125);
}

.rightnav {
    /* background-color: purple; */
    width: 30%;
    text-align: right;
    padding: 0px 23px;
}

#search {
    padding: 5px;
    font-size: 17px;
    border: 2px solid grey;
    border-radius: 9px;
}

.background{
    background: rgba(0, 0, 0, 0.7) url(/img/bg.jpg);
    background-size: cover;
    background-blend-mode: darken;
}

.firstsection {
    height: 89vh;
}

.box-main {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: auto;
    max-width: 50%;
    height: 80%;
}

.firsthalf {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondhalf {
    width: 30%;
}

.secondhalf img {
    width: 70%;
    border: 4px solid white;
    border-radius: 150px;
    display: block;
    margin: auto;
}

.text-big{
    font-size: 30px;

}

.text-small {
    font-size: 18px;
}

.btn {
    padding: 8px 20px;
    margin: 7px 3px;
    border: 2px solid white;
    border-radius: 8px;
    background: none;
    cursor: pointer;
    color: white;
    font-family: "Ubuntu Condensed", sans-serif;
    font-size: 20px;
}

.btn-sm {
    padding: 6px 10px;   
    vertical-align: middle;
    font-size: 16px;
}

.section {
    /* height: 500px; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 96%;
    margin: auto;
    font-family: "Righteous", sans-serif;
    padding: 10px;
}

.section-left {
    flex-direction: row-reverse;
}

.paras {
    padding: 0px 65px;
}

.sectiontag {
    padding: 16px 0px;
}
.sectionsubtag {
    font-family: "Ubuntu Condensed", sans-serif;
}

.thumbnail img {
    border: 2px solid black;
    border-radius: 26px;

}

.firstimg {
    height: 200px;
    margin-top: 60px;
}

.secondimg {
    width: 250px;
    margin-top: 69px;
}

.thirdimg {
    width: 300px;
    margin-top: 46px;
}

.contact {
    background-color: #f6f5f4;
    height: 520px;
}

.text-center {
    text-align: center;
    padding-top: 20px;
    font-family: "Ubuntu Condensed", sans-serif;
    font-size: 35px;
}

.form {
    max-width: 62%;
    margin: 25px auto;
    text-align: center;
    
}

.form input {
    margin: 14px 0px;
    padding: 5px 13px;
    width: 97%;
    font-size: 19px;
    border: 2px solid grey;
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-dark {
    color: black;
    border: 2px solid gray;
}

#text {
    width: 100%;
}

.text-footer {
    text-align: center;
    padding: 20px 0px;
    font-family: "Ubuntu Condensed", sans-serif;
    display: flex;
    justify-content: center;
    color: white;
}

.burger {
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
}

.line {
    width: 33px;
    background-color: white;
    height: 4px;
    margin: 3px 3px;
}

