@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 1.5; 
}

a {
    text-decoration: none;
    color: #fff;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto; 
}

.wrapper {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(32, 34, 217, 1) 100%);
    width: 100%;
    overflow-x: hidden; 
}

.container {
    width: 90%; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px; 
}

header {
    padding: 20px 0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    text-transform: uppercase;
    font-size: 24px; 
    font-weight: 800;
    margin-bottom: 10px; 
}

header nav {
    width: 100%; 
    text-align: center; 
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    padding: 0;
    margin: 0;
    padding-top: 20px;
}

header nav ul li {
    display: inline-block;
    margin: 5px;
}

header nav ul li a {
    color: #fff;
    display: block; 
    padding: 5px;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 30px; 
    height: 3px; 
    background: #2022d9;
    border-radius: 10px;
    position: relative;
    top: 5px; 
    left: 50%;
    transform: translateX(-50%);
}

header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 3px solid #2022d9; 
}

header nav ul li.btn a {
    background: #2022d9;
    padding: 7px 15px; 
    border-radius: 5px;
    transition: all 500ms ease;
}

header nav ul li.btn a:hover {
    background: #f0f0f0;
    color: #000; 
}

.container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin: 20px auto;
}

.container1 p {
    margin-bottom: 10px;
    text-align: left;
}

h1 {
    text-align: center;
    color: #ffffff;
    font-size: 2em;
}

.contact-info {
    display: flex;
    justify-content: flex-start; 
    flex-direction: column;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    align-items: stretch; 
}

.contact-info h2 {
    text-align: center; 
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #4083b0;
}

.contact-info p {
    margin: 3px 0;
    line-height: 1.4;
    text-align: left; 
}

.container1 a {
    margin-top: 20px;
}

.map {
    margin-top: 15px; 
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%; 
}

iframe {
    width: 100%;
    height: 250px; 
    border: none;
}

/* Footer */
footer {
    background: #000000;
    padding: 50px;
    margin-top: 50px;
}

footer .blocks{
    display: flex;
    justify-content: space-between;
}

footer .logo{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
}

footer .blocks p{
    width: 300px;
    margin: 15px 0;
}

footer .blocks h4{
    font-weight: 500;
    font-size: 17px;
}

footer .blocks ul{
    list-style: none;
}

footer .blocks ul li{
    margin-top: 7px;
    opacity: 0.8;
}

hr{
    margin-top: 20px;
}


@media (min-width: 767px) {


    /* Header */
    header {
        flex-wrap: nowrap;
    }
    
    header nav {
        width: 49%;
        text-align: right;
        order: 0;
    }
   

    h1 {
        font-size: 2.5em;
    }

    .container1 {
        padding: 30px;
    }

    .contact-info {
        margin: 20px 0;
        padding: 20px;
    }

    .contact-info h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    iframe {
        height: 300px;
    }
}

@media (max-width: 767px) {
    
    .container {
        width: 100%; 
    }

    /* Footer */
    footer {
        padding: 30px; 
        text-align: center; 
    }

    footer .blocks {
        flex-direction: column;
        align-items: center;
    }

    footer .blocks p {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }

    footer .logo {
        font-size: 24px;
    }

    footer .blocks{
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    footer .blocks ul{
        display: flex;
        flex-direction: column;
        align-items: center;

    }
}