@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background: #f2f2f2;
}

p,
h6 {
    font-family: 'Inter', sans-serif;
}

h1,
.navbar a {
    font-family: 'Poppins', sans-serif;
}


.contact {
    position: relative;
    padding: 100px 0px 10px 0px;
    height: 100%;
}

.contact h1 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 30px;
    color: rgb(76, 35, 6);
}

.contact h6 {
    font-family: 'Inter';
    letter-spacing: 1px;
    color: #2b6777;
}

.contact p {
    font-family: 'Inter';
    color: rgb(100, 100, 100);
    text-align: justify;
}

.contact .input-1 input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    outline: none;
    border: 1px solid rgba(128, 128, 128, 0.345);
    background: transparent;
}

.contact input:focus {
    border: 1px solid #2b6777;
}

.contact textarea {
    width: 100%;
    padding: 8px;
    background: transparent;
    border-radius: 5px;
    outline: none;
    border: 1px solid rgba(128, 128, 128, 0.345);
}

.contact textarea:focus {
    border: 1px solid #2b6777;
}

.contact button {
    padding: 10px 20px;
    border: 1px solid #2b6777;
    border-radius: 5px;
    background-color: #2b6777;
    color: #f2f2f2;
}

.contact button:hover {
    transition: 0.2s ease-in-out;
    border: 1px solid #2b6777;
    color: black;
    background: none;
}

.contact .content i {
    background-color: #2b6777;
    padding: 20px 12px;
    border-radius: 50%;
}

.contact .content a {
    text-decoration: none;
    color: gray;
}

.contact .content a:hover {
    text-decoration: underline;
}

.cyberpunk-button {
    background-color: #30cfd0;
    color: #2b6777;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #30cfd0;
    border-radius: 5px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.cyberpunk-checkbox:before {
    content: "";
    background-color: #30cfd0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox:checked:before {
    transform: translate(-50%, -50%) scale(1);
}

.cyberpunk-checkbox-label {
    font-size: 18px;
    color: #2b6777;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news img {
    object-fit: cover;
    height: 40vh;
    width: 100%;
}

.navbar {
    background: #2b6777;
}

.navbar img {
    object-fit: cover;
    height: 8vh;
}

.navbar a {
    font-family: 'Poppins';
}

.footer {
    position: relative;
    padding: 20px 20px;
    height: 100%;
    background: #2b6777;
    color: #c8d8e4;
}

.footer img {
    height: 20vh;
}

.footer .logo p {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer a {
    text-decoration: none;
    color: #c8d8e4;
}
/* .footer p{
    word-spacing:0.5rem;
} */
.footer i {
    margin-right: 20px;
}

.footer h2 {
    color: rgb(248, 207, 0);
}

hr:not([size]) {
    height: 1px;
    color: rgb(159, 159, 159);
}

@media screen and (max-width:1024px) {

    .navbar-dark .navbar-nav .nav-link.active,
    .navbar-dark .navbar-nav .show>.nav-link {
        color: #fff;
        font-size: 13px;
    }
}

@media screen and (max-width:768px) {
    .contact {
        padding: 15% 10px 10px 10px;
    }

    .contact p {
        font-size: 14px;
    }

    .h2,
    h2 {
        font-size: 22px;
    }

    .footer img {
        height: 15vh;
    }

    .footer .logo p {
        font-size: 13px;
    }

    .h3,
    h3 {
        font-size: 20px;
    }

    .footer p {
        font-size: 12px;
    }

    .footer i {
        margin-right: 10px;
    }
}

@media screen and (max-width:480px) {
    .contact {
        padding: 35% 0px 10px 0px;
        ;
    }

    .contact button {
        margin-bottom: 15px;
    }

    .footer {
        padding: 30px 10px;
    }

    .footer h2 {
        text-align: left;
        margin-bottom: 10px;
    }

    .footer h3 {
        text-align: left;
    }

    .footer p {
        font-size: 13px;
    }

    .footer .social {
        margin-top: 10px;
    }

    .footer .social-button a {
        width: 100%;
    }
}