:root{
    --first-color:#6D87FF;
}
@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;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    font-family: montserrat;
}


/*section-1*/
.section-1{
    background: url(../images/contact-banner-2.jfif);
    height: 60vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-1 h1{
    font-size: 50px;
    font-weight: 600;
    color: white;

}

.section-2{
    padding: 100px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-2 .container{
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.section-2 .container .left-side{
    width: 50%;
    margin-bottom: 20px;
}
.section-2 .container .left-side iframe{
    width: 100%;
}
.section-2 .container .right-side{
    background: var(--first-color);
    width: 50%;
    padding: 50px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
}
.section-2 .container .right-side h2{
    color: white;
    font-size: 23px;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}
.section-2 .container .right-side .adres,
.section-2 .container .right-side .phone,
.section-2 .container .right-side .mail{
    margin-bottom: 20px;
    font-size: 16px;
    color: white;
}
.section-2 .container .right-side b{
    font-size: 16px;
    color: #fff;
}
.section-2 .container .right-side a{
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 992px){
    .top {
        display: none !important;
    }
    .section-2 .container .left-side,
    .section-2 .container .right-side{
        width: 100%;
    }
}



