@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
}

ul li{
    list-style: none
}

.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 50px;
    padding-right: 50px;
}

.header{
    width: 100%;
    height: 100vh;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}

.navbar .logo img{
    width: 90px;
    height: 90px;
}

nav ul li{
    display: inline-block;
    margin-right: 25px;
}

nav li a{
    color: rgb(77, 160, 233);
    font-weight: 600;
}

nav{
    margin-right: 35%;
}

.icon i{
    font-size: 20px;
}

/* ROW */

.row{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.col-2{
    flex-basis: 50%;
}

.container .box{
    width: 500px;
    height: 500px;
    margin-top: -30px;
    position: relative;
}

.container .box img{
    width: 120%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: screen;
}

.container .box video{
    position:absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    object-fit: cover;
}

.col-2 h1{
    font-size:3rem ;
    color:rgb(69, 161, 36) ;
}

.col-2 span{
    font-size: 6rem;
    color: rgb(249, 73, 173);
    margin-left: 75px!important;
    line-height: 60px;
    margin: 20px 0;
}

.col-2 .xd{
    font-size: 2rem;
    color: gray;
}

.col-2 p{
    margin: 15px 0;
    font-weight: 400;

}

.btn{
    font-size: 120%;
    display: inline-block;
    color: white;
    background-color: rgb(4, 190, 4);
    padding: 8px 30px;
    border-radius: 30px;
    margin-top: 20px;
    margin-left: 50%;
}

.btn:hover{
    background-color: rgb(1, 61, 1);
}

.gmap{
    margin-top: 100px;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    border: 5px solid pink;
}