/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "Fonseca";
    font-style: normal;
    font-weight: 500;
    src: url("./fonts/FonsecaMedium.woff2") format("woff2"),
        url("./fonts/FonsecaMedium.woff") format("woff");
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: "Fonseca", sans-serif;
    font-weight: 500;
    line-height: 1.2;   
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
body.menu--on {
    overflow: hidden;
}
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
    margin: 50px 0 40px 0;
}
h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    margin: 40px 0;
}
h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    margin: 40px 0;
}
h4 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    margin: 35px 0 20px 0;
}
h5 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    margin: 30px 0 15px 0;
}
ul,
ol {
    margin: 20px 0;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}
ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.wrapper {
    width: 940px;
    max-width: 100%;
    margin: 0 auto;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.align--left {
    text-align: left;
}
.align--center {
    text-align: center;
}
.align--right {
    text-align: right;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-align--center {
    align-items: center;
}
.flex-justify--center {
    justify-content: center;
}
.wp-block-image {
    margin: 30px 0;
}
.wp-block-image:first-child {
    margin-top: 0;
}
.wp-block-image:last-child {
    margin-bottom: 0;
}
.disable-margin--top {
    margin-top: 0 !important;
}
.disable-margin--bottom {
    margin-bottom: 0 !important;
}
.disable-margin--top-and-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.visibility--hidden {
    display: none !important;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    max-width: calc(100% + 20px);
    margin-top: 30px;
}
.btns:first-child {
    margin-top: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    min-width: 160px;
    font-size: 25px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #000;
    transition: all .2s ease;
    margin: 15px 0;
    cursor: pointer;
}
.btns .btn {
    margin: 15px 10px;
}
.btns .btn:only-child {
    margin-bottom: 0;
}

/* TEXT ********************************************************************************/
.text a:not(.btn) {
    color: #000;
    text-decoration: underline;
}
.text a:hover {
    text-decoration: none;
}
.text ul li {
    position: relative;
    padding-left: 20px;
    z-index: 1;
}
.text ul li:before {
    position: absolute;
    content: "";
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
    z-index: 1;
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    padding: 160px 0;
    border-bottom: 6px solid #000;
    z-index: 1;
}

/* SIGNATURE ********************************************************************************/
.signature {
    padding: 58px 0;
}
.signature .inner {
    text-align: right;
}
.signature img {
    width: 300px;
}

/* IDENTITY SIGNATURE ********************************************************************************/
.identity-signature {
    margin-bottom: 100px;
}
.identity-signature .inner {
    text-align: center;
}
.identity-signature img {
    width: 620px;
}

/* MAP ********************************************************************************/
.map {
    padding: 0;
    margin: 0;
}
.map #eapps-google-maps-1.eapps-google-maps {
    height: 700px;
    max-height: 90vh;
}

/* SOCIALS ********************************************************************************/
.socials__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(100% + 80px);
    max-width: calc(100% + 80px);
    margin: 0 -40px;
}
.socials__item {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px 40px;
    transition: all .2s ease;
    z-index: 1;
}

.socials__item:hover {
    opacity: 0.4;
}

/* CONTACTS ********************************************************************************/
.contacts h1 {
    font-size: 82px;
    text-transform: uppercase;
}
.contacts ul {
    padding: 0;
    margin: 0;
}
.contacts ul li {
    display: flex;
    font-size: 27px;
}
.contacts ul li:not(:last-child) {
    margin-bottom: 30px;
}
.contacts ul li strong {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    min-width: 160px;
    margin-right: 30px;
}
.contacts ul li a {
    color: #000;
}
.contacts ul li a:hover {
    opacity: 0.4;
}


/****************************************************************************************************
        RESPONSIVE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs {
    display: none;
}

@media only screen and (max-width: 991px) {
    .wrapper {
        width: 708px;
    }
    .contacts h1 {
        font-size: 66px;
    }
    .contacts ul li {
        font-size: 22px;
    }
    .contacts ul li strong {
        min-width: 140px;
        margin-right: 20px;
    }
    .identity-signature img {
        width: 420px;
    }
}

@media only screen and (max-width: 767px) {
    .hide--sm,
    .visibility--desktop-only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile-only {
        display: block;
    }
    .wrapper {
        width: 100%;
        padding: 0 30px;
    }
    .contacts h1 {
        font-size: 50px;
    }
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    .wrapper {
        padding: 0 10px;
    }
    .page-section {
        margin: 60px 0;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    section {
        border-bottom: 5px solid #000;
        padding: 80px 0;
    }
    .signature {
        padding: 20px 0;
    }
    .signature img {
        width: 200px;
    }
    .socials__items {
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
        margin: 0 -20px;
    }
    .socials__item {
        width: 40px;
        height: 40px;
        margin: 10px 20px;
    }
    .contacts h1 {
        font-size: 46px;
    }
    .contacts ul li {
        font-size: 18px;
        flex-wrap: wrap;
    }
    .contacts ul li strong {
        display: block;
        width: 100%;
        min-width: unset;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .identity-signature img {
        width: 260px;
    }
}