* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #222020;
    width: 100%;
}
.row{
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    height: 8vh;
    display:flex;
    justify-content:center;
    overflow-x: auto;
    align-items: center;
    text-align: center;
    z-index: 2;
}
.headers{
    color: white;
    cursor: pointer;
    font-size: 1.7vw;
    font-family: 'consolas';
    transition: 0.6s;
}
.headers:hover{
    color:black;
    font-size: 100%;
    font-style: bold;
    background-color: #fff;
    padding:10px ;
    border: 1px solid white;
    border-radius: 7px;
    box-shadow: 0px 0px 10px white,0px 0px 10px white;
    width: 30px;
    height: 50px;
    transition: 0.4s;
}

.logo{
    width: 50px;
    height: 50px;
}
.contact{
    background: url("https://cdn.pixabay.com/photo/2020/03/03/20/31/boat-4899802_1280.jpg") no-repeat center center/cover;
    height: 90vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
}

.content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.content h1 {
    font-size: 4rem;
}

.content p {
    font-size: 1.9rem;
    margin: 10px;
    
}

section {
    padding: 50px 20px;
    text-align: center;
}


.contact-details {
    background-color: black;
    color: white;
    height: auto;
}

.details-container {
    display: flex;
    justify-content: space-around;
    padding: 30px;
}

.map-section {
    height: 500px;
    background-color: #f4f4f4;
    padding: 50px 20px;
}



iframe{
    width: 100%;
    height: 300px;
}

footer {
    background-color: #222020;
    color: white;
    text-align: center;
    padding: 20px;
}
.contact-icon{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.iconic_margin{
    margin-bottom: 80px;
}

.btn{
    width: auto;
    height: auto;
    transition: 0.6s;
}

.icons {
    width: 100px;
    height: 100px;
    border: 1px solid white;
    border-radius: 50%;
    transition: 0.9s;
}


.btn:hover {
    scale: 1.4;
    box-shadow: 0 0 10px cyan,0 0 20px cyan, 0 0 40px cyan, 0 0 60px cyan;
    z-index: 1;
}



img{
    overflow: hidden;
    width: 100px;
    height: 100px;
}
.input{
    width: 100%;
    height:30px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 700;
}
.form{
    border:2px solid black;
    width:300px;
    height: 330px;
    margin-top: 9%;
    padding: 10px;
    display:inline-block;
    text-align: center;
}
.button{
    border:1px solid blue;
    border-radius:8px;
    width:140px;
    height: 40px;
    font-size: 20px;
    color: white;
    background-color: blue;
}
textarea{
    width: 100%;
}
.info-label{
    color: #fff;
    font-size: 18px;
}
.contact-form {
    padding: 50px;
    background: #333;
    color: black;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    background: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #777;
}