* {
    margin: 0;
    padding: 0;
}

h2 {
    font-family: "Hanken Grotesk", Sans-serif;
    line-height: 1.1
}

h3 {
    font-family: "Hanken Grotesk", Sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-y: auto;
    color: #fff;
}

.container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
}

.logo-top {
    width: 100%;
    height: auto;
    margin: 0px auto;
}

.logo-top img {
    width: 178px;
    height: 164px;
    display: block;
    margin: 200px auto 40px;
}

.address-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}



@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.about-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.line {
    width: 100px;
    height: 2px;
    background-color: #fff;
}



.text {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    text-indent: 2em;
}



.left-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}



.left-title {
    display: inline-block;
}

.left-title .title-h2 {
    display: inline-block;
}


.right-item {
    list-style: disc;
}


.services-list {
    text-align: left;
    margin-left: 30px;
}

.services-item {
    list-style: disc;
}



.map iframe {
    width: 100%;
    height: 100%;
}

.contact {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.contact-btn {
    width: 100%;
    margin: 0 auto 20px;
}

.contact-btn img {
    width: 200px;
    height: auto;
}

.contact-copyright {
    width: 100%;
    text-align: center;
}


a:hover {
    color: #049590;
}

@media screen and (min-width: 1200px) {
    .op-section {
        background-color: #000;
        height: 100vh;
        width: 100%;
        border-bottom: 1px solid gray;
        position: relative;
    }

    .address-item {
        width: 30%;
        text-align: center;
        opacity: 1;
        animation: opacity 1s ease-in-out;
    }

    .right-container {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .map {
        display: block;
        height: 400px;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 870px) {
    .op-section {
        background-color: #000;
        height: 100vh;
        width: 100%;
        border-bottom: 1px solid gray;
        position: relative;
    }

    .address-item {
        width: 30%;
        text-align: center;
        opacity: 1;
        animation: opacity 1s ease-in-out;
    }

    .right-container {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .map {
        display: block;
        height: 400px;
        width: 100%;
    }
}

@media screen and (max-width: 869px) {
    .op-section {
        background-color: #000;
        /* min-height: 100vh; */
        height: auto;
        width: 100%;
        border-bottom: 1px solid gray;
        position: relative;
    }

    .first {
        min-height: 100vh;
    }

    .address-item {
        width: 100%;
        text-align: center;
        opacity: 1;
        animation: opacity 1s ease-in-out;
        margin: 20px auto;
    }

    .right-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .right-container ul {
        margin-left: 20px;
    }

    .map {
        display: block;
        height: 200px;
        width: 100%;
        margin-bottom: 30px;
    }
}

.contact-container {
    background-color: #555555;
}

.expertise-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.expertise-item.show {
    opacity: 1;
    transform: translateY(0);
}

.expertise-item2 {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;

}

.expertise-item2.show {
    opacity: 1;
    transform: translateY(0);
}

.expertise-item3 {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;

}

.expertise-item3.show {
    opacity: 1;
    transform: translateY(0);
}