*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

body{
    background: url(images/bg_img.png);
}

a{
    color: #fff;
}
:root{
    --shark-color:#20252b;
    --dark-shark-color:#1c2127;
    --grey-color:#9e9e9e4d;
    --pink-color:#ec3c4b;
    --white-color:#fff;
}

body{
    background:url(images/bg_img.png);
    font-family: 'Poppins' sans-serif;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #333;
  }
  
  .container .image {
    position: absolute;
    width: 100vw;
    height: 100vh;
  }
  
  .container .menu-icon {
    position: absolute;
    color: white;
    font-size: 30px;
    left: 42px;
    top: 24px;
    cursor: pointer;
    z-index: 1;
  }
  
  .menu-container {
    height: 0%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: var(--dark-shark-color);
    overflow: hidden;
    transition: 1s ease-in-out;
  }
  
  .menu-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .menu-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 70px;
    color: #ccc;
    opacity: 0.3;
    display: block;
    font-family: sans-serif;
    transition: .3s ease-in-out;
  }
  .menu-content a:hover{
    opacity: 1;
    color: #fff;
    transition: 0.5s;
  }
  
  .menu-container .closebtn {
    position: absolute;
    top: 36px;
    right: 48px;
    font-size: 50px;
    color: white;
    z-index: 1;
    cursor: pointer;
  }
  .logo{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: -7%;
    padding-left:33%;
    }
  .logo2{
    display: none;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: -7%;
    padding-left:33%;
}

/* a{
    color: var(--white-color);
}


button{
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

button:hover{
    opacity: 0.9;
}

.nav-brand{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
}

.nav-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-color: var(--dark-shark-color);
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.show-overlay{
    opacity: 1;
    visibility: visible;
}


.nav-overlay-container{
    background-color: var(--dark-shark-color);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

#menu-hide-btn{
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height:40px;
    border-radius: 50px;
    background-color: var(--white-color);
    color: var(--dark-shark-color);
}

.nav_links li{
    margin: 16px 0;
    position: relative;
}

.nav_links li::before , .nav_links li::after{
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--pink-color);
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.nav_links li::before{
    top: 0;
    left: 0;
}

.nav_links li::after{
    bottom: 0;
    right: 0;
}

.nav_links li:hover::before , .nav_links li:hover::after{
    width: 75%;
    opacity: 1;
}

.nav_links li a{
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 5px;
    font-weight: 700;
    transition: all 300ms ease-in-out;
}

.nav_icons{
    display: flex;
    font-size: 30px;
    align-items: center;
    margin-top: 20px;
}

.nav_icons li{
    border: 1px solid var(--grey-color);
    width: 40px;
    height: 40px;
    margin: 0 5px;
    line-height: 35px;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}

.nav_icons li:hover{
    background-color: var(--pink-color);
    border-color: var(--pink-color);
    transform:scale(1.2);
}

.nav_links li:hover a{
    color: var(--pink-color);
}

.nav-menu{
    background-color: transparent;
    z-index: 0;
} */



.contact{
    position: relative;
    height: 90vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content h2::after{
    content: "";
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    margin-bottom: 5%;
    background-color: #c78d20;
}
.contact .content{
    max-width: 800px;
    text-align: center;
}

.contact .content h2{
    margin-top: -80px;
    font-size: 55px;
    font-weight: 500;
    color: #fff;
}

.contact .content p{
    margin-bottom: 20px;
    font-weight: 300;
    color: #fff;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .contactInfo{
    width: 60%;
    display: flex;
    flex-direction: column;
}

.container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container .contactInfo .box .icon:hover{
    transform: scale(1.2);
    color: #ec3c4b;
}

.container .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.container .contactInfo .box .text h3{
    font-weight: 500;
    color: #008F8C;
}

.contactForm{
    width: 40%;
    padding: 40px;
    background-color: #fff;
}

.contactForm h2{
    color: #333;
    font-size: 30px;
    font-weight: 500;
}

.contactForm .inputbox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contactForm .inputbox input,
.contactForm .inputbox textarea
{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contactForm .inputbox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contactForm .inputbox input:focus ~ span,
.contactForm .inputbox input:valid ~ span ,
.contactForm .inputbox textarea:valid ~ span,
.contactForm .inputbox textarea:valid ~ span
{
    color: #008F8C;
    font-size: 12px;
    transform: translateY(-20px);
}

.map-wrapper{
    max-height: 100%;
}

.googlemap{
    width: 80vh;
    height: 40vh;
}

.contactForm .inputbox input[type="submit"]{
    width: 100px;
    background: #008F8C;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

@media (max-width:990px){
    .contact{
        padding: 50px;
        margin-top: 200px;
    }
    .container{
        flex-direction: column;
    }
    .container .contactInfo{
        margin-bottom: 40px;
    }
    .container .contactInfo 
    {
        width: 100%;
    }
}

@media (max-width:1050px){
    .logo{
        padding-left:15% ;
    }
}
@media (max-width:650px){
    .menu-content a{
        font-size: 35px;
    }
    .logo{
        display: none;
    }
    .logo2{
        display: block;
        top: 7%;
        left: -12%;
    }
}

@media (max-width:900px){
    .logo{
        padding-left:12% ;
    }
}
@media (max-width:830px){
    .logo{
        padding-left:9% ;
    }
}
@media (max-width:730px){
    .logo{
        padding-left:7% ;
    }
}
@media (max-width:450px){
    .content h2{
        font-size: 40px;
    }
}
/* @media (max-width:420px){
    .contact{
        margin-top: 200px;
    }
} */
@media (max-width:380px){
    *{
        display: none;
    }

}