@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
    margin: 0;
    padding: 10;
}

html{
    scroll-behavior: smooth;
}

.logo{
    width:40%;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.logo img{
    width: 35%;
    border: 2px solid black;
    border-radius: 60px;
    margin: 2px;
}

.navbar{
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: sticky; 
    top:0; 
    cursor: pointer;     
}

.nav-list{
    width: 60%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
}

.nav-list li{
    list-style: none;
    padding: 26px 25px;
}

.nav-list li a{
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: 'ubuntu', sans-serif;
}

.nav-list li a:hover{
    text-decoration: none;
    color: grey;
}

.rightNav{
    /* background-color: yellowgreen; */
    width: 30%;
    text-align: right;
    padding: 0 23px;
}

#search{
    padding: 8px;
    font-size: 14px;
    border: 2px solid grey;
    border-radius: 9px;
}

.background{
    background: rgba(0, 0, 0, 0.7) url('../img/Guard Image.jpeg');
    background-size: cover;
    background-blend-mode: darken;
}

.firstsection{
    height: 80vh;
}

.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: 70%;
}

.firstHalf{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondHalf{
    width: 30%;
}

.secondHalf img{
    width: 200%;
    padding: 0px 0; 
    border: 4px solid white;
    border-radius: 150px;
    display: block;
    margin: auto;
}

.text-big{
    font-size: 23px;
}

.text-small{
    font-size: 15px;
}

.btn{
    padding: 8px 20px;
    margin: 7px 3px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 18px;
    background: none;
    color: white;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.btn-sm{
    padding: 6px 10px;
    vertical-align: middle;
    font-size: 16px;
}

.btn-dark{
    color: black;
        border: 2px solid grey;
}

.section{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px;    
}

.section-left{
    flex-direction: row-reverse;
    max-height: 500px; /* change for height
    height: 500px;
    */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
}    

.paras{
    padding: 0px 65px;
}

.sectionTag{
    padding: 16px 0;
}

.sectionSubTag{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.thumbnail img{
    width: 340px;
    border: 2px solid black;
    border-radius: 26px;
    margin-top: 19px;
}

.contact{
    background-color: #85929E;
    height: 520px;
}

.text-center{
    text-align: center;
    padding-top: 20px;
    font-family: 'Ubuntu', sans-serif;
        font-size: 20px;
}

.form{
    max-width: 62%;
     margin: 18px auto;
}

.form-input{
    margin: 10px 0;
    padding: 5px 11px;
    width: 100%;
    font-size: 16px;
    border: 2px solid grey;
    border-radius: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text-footer{
    text-align:center;
    padding: 20px 0;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    justify-content: center;
    color: white;
}

.burger{
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top:15px;
}

.line{
    width: 30px;
    background-color: white;
    height: 3px;
    margin: 5px 3px;
}

@media only screen and (max-width: 1140){
    .nav-list{
        flex-direction: column;
    }
    .navbar{
        height: 447px;
        flex-direction: column;
        transition: all 0.7s ease-out;
    }
    .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;
    }
}