@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,500&display=swap');
*{
    margin: 0;
padding: 0;
}
html{
    scroll-behavior: smooth;
}
.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 26%;
    margin: 5px;
    border: 3px solid white;
    border-radius: 50px;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;

}
.nav-list{
width: 70%;
display: flex;
align-items: center;

}

.nav-list li{
    list-style: none;
    padding: 26px 30px;
}

.nav-list li a{
   text-decoration: none;
  color: white;
  font-size: 18px;  
}

.nav-list li a:hover{
   text-decoration: none;
   color: grey;
 }
.rightNav{
    width: 30%;
    text-align: right;
    padding: 0 23px;
}
#search{
    padding: 5px;
font-size: 17px;
border: 2px solid grey;
border-radius: 9px;
}
.background{
    background: rgba(0,0,0,0.7) url("bg.jpg");
    background-size: cover;
    background-blend-mode: darken;
}
.firstsection{
    height: 100vh;  
}
.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: 75%;
}
.firstHalf{
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.secondHalf{
    width: 30%;
}

.secondHalf img{
    width: 70%;
    border: 4px solid white;
    border-radius: 150px;
    display: block;
    margin: auto;
}
.text-big{
font-size: 30px;
}

.firstHalf .text-big {
font-size: 30px;
width: 0ch;
overflow: hidden;
white-space: nowrap;
animation: text 4s steps(15) infinite;
}
@keyframes text{
    0%{
        width: 0ch;
    }
    50%{
        width: 15ch;
    }
}
.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-size: 20px;
}
.btn-sm{
    padding: 6px 10px;
    vertical-align: middle;
    font-size: 14px;
}

.btn-dark{
    color: black;
    border: 2px solid grey;
}
.section{
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    max-width: 80%;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
}
.paras{
    padding: 0 65px;
}

.section-left{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    flex-direction: row-reverse;
    }
    .sectionTag{
        padding: 16px 0;
    }
    .sectiosubTag{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .thumbnail img{
        width: 250px;
        border: 4px solid black;
        border-radius: 26px;
        margin-top: 19px;
    }
    .contact{
        background-color: #f6f5f4;
        height: 833px;
    }
    .text-center{
        text-align: center;
        padding-top: 30px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 35px;
    }
    .form{
        max-width: 62%;
        margin: 25px auto;
    }
    .form-input{
        margin: 14px 0;
        width: 100%;
        font-size: 18px;
        border: 2px solid grey;
        border-radius: 6px;
        padding: 5px 10px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .text-footer{
        text-align: center;
        font-family: cursive;
        display: flex;
        justify-content: center;
        padding: 30px 0;
        color: white;
    }
    .burger{
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
    display: none;
    }
    .line{
        width: 33px;
        background-color: white;
        height: 4px;
        margin: 5px 3px;
    }
    @media only screen and (max-width: 1140px){
        .nav-list{
            flex-direction: column;
        }
        .navbar{
            flex-direction: column;
            transition: all 0.7s ease-out;
            height: 447px;
        }
        .rightNav{
            text-align: center;
        }
        .box-main{
            flex-direction: column-reverse;
            max-width: 100%;
        }
        #search{
            width: 100%;
        }
        .burger{
            display: block;
        }
        .h-nav-resp{
            height: 72px;
        }
        .v-class-resp{
            opacity: 0;
        }
        .section{
            flex-direction: column-reverse;
        }
        .text-small{
            text-align: center;
        }
        
        .text-big{
            text-align: center;
        }
   
        .buttons{
            text-align: center;
        }
        .paras{
            padding: 0px;
        }
        .section-left{
            display: flex;
            flex-direction: column-reverse;

}
    }
