html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

.center-box {
    border: none;
    margin: auto;
    width: 60%;
    min-height: 700px;
    margin-top: 10px;
    padding: 10px;
}

.contact {
    font-weight: bold;
    font-size: 19px;
}

.map {
    border: solid 1px lightgrey;
    height: 300px;
    width: 100%;
    margin-top: 5px;
}

.txt {
    color: #7a7a7a;
    font-size: 14px;
}

.txt-bold {
    font-weight: bold;
    font-size: 14px;
}

.big_contact_link {
    border: none;
    width: 100px;
    height: 100px;
    float: right;
    margin-left: 100px;
    margin-top: -10px;
}

.contact_link {
    border: none;
    width: 50px;
    height: 50px;
    margin: 15px;
}

.messenger {
    width: 100%;
}

.title {
    font-weight: bold;
    margin-left: -12px;
}

.info__texts {
    width: 70%;
}

.license-box {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120% !important;
    margin-left: -60px;
    margin-top: 400px;
}

.license-l-1 {
    border: none;
    width: 100px;
}

.license-a {
    text-decoration: none;
    color: #3b8ced;
    font-size: 16px;
}

.information {
    display: flex;
}

@media only screen and (max-width: 770px) {
    .inner {
        flex-direction: column;
    }
    .center-box {
        width: 90%;
    }
    .information {
        flex-direction: column;
    }
    .contact_link {
        width: 25%;
        margin: 0 auto;
    }
    .big_contact_link {
        width: auto;
        margin-top: 30px;
        margin: auto;
    }
    .messenger {
        margin-top: 50px;
        width: 120%;
    }
    .title {
        text-align: center;
        margin-left: 10px;
    }
    .license-box {
        width: 100% !important;
        margin-left: 20px;
        margin-top: 80px;
    }
}