

body {
    background: #333333;
}

section {
    height: 100%;
}

button {
    background: inherit;
    border: none;
}

.connect-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10px 0;
}

.panel {
    margin: auto 0;
}

.head {
    text-align: center;
    margin: 0 0 15px 0;

}

.head .logo {
    max-width: 200px;
    max-height: 18vmax;
	margin: 0 0 30px 0;
}

.head .logo-title {
    font-family: "BebasNeue-Light";
    text-transform: uppercase;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.head .link {
    font-family: "BebasNeue";
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.head .link img {
    width: 45px;
}

.social-links .social-item {
    margin: 7px 20px 7px 20px;
}

.social-item a {
	width: 57px;
	height: 60px;
	display: block;
}

.social-links .social-item img {
    width: 100%;
}

.whatsap {
    position: relative;
}

.whatsap img {
    animation: whats-animation 2s infinite;
    -webkit-animation: whats-animation 2s infinite;
    z-index: 0;
}

.whatsap:before {
    animation: whats2-animation 2s infinite;
    -webkit-animation: whats2-animation 2s infinite;
}

@keyframes whats-animation {
    from {opacity: 1;}
    50% {opacity: 0.6;}
    to {opacity: 1;}
}

@keyframes whats2-animation {
    from {transform: translateX(0);}
    5% {transform: translateX(2px);}
    10% {transform: translateX(0);}
    15% {transform: translateX(2px);}
    20% {transform: translateX(0);}
    25% {transform: translateX(2px);}
    30% {transform: translateX(0);}
    35% {transform: translateX(2px);}
    50% {transform: translateX(0);}
    to { transform: translateX(0);}
}

.whatsap:hover {
	cursor: pointer;
}

.whatsap:before {
    font-size: 0.8rem;
    content: '1';
    position: absolute;
	top: 0px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #FC5700;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.lang-panel-connect {
    position: absolute;
    width: auto;
    right: 30px;
    top: 10px;
}

:root {
	--language-switcher-color: #fff;
	--language-switcher-dropdown-color: #5e5e5e;
    --margin-dropdown-lang: 5px;
}

/* Button new */

.button-new {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;
    margin: 10px;
    padding: 0;

    border-radius: 50%;
    border: 6px solid #fff;
}

.button-new.button-new_site {
    background: rgb(67,119,242);
    background: linear-gradient(180deg, rgba(67,119,242,1) 0%, rgba(41,73,148,1) 100%);
}
.button-new.button-new_site:before {
    display: block;
    content: '';
    width: 46px;
    height: 46px;
    background: url('../img/connect/site.png') no-repeat;
    background-size: cover;
    margin-left: 2px;
}

.button-new.button-new_tel {
    background: rgb(122,204,52);
    background: linear-gradient(180deg, rgba(122,204,52,1) 0%, rgba(75,125,31,1) 100%);
}
.button-new.button-new_tel:before {
    display: block;
    content: '';
    width: 42px;
    height: 42px;
    background: url('../img/connect/tel.png') no-repeat;
    background-size: cover;
}


body::after {
    display: none!important;
}


@media screen and (max-width: 768px) {
    .social-links .social-item {
        margin: 3px 20px 3px 20px;
    }

    .head .logo {
        max-width: 165px;
        max-height: 20vmax;
        margin: 0 0 20px 0;
    }

    .social-item a {
        width: 52px;
        height: 55px;
        display: block;
    }
}

@media screen and (max-width: 575px) {
    .head .logo-title {
        font-size: 1.7rem;;
    }
    .head .link {
        font-size: 1.4rem;
    }

    .lang-panel-connect {
        right: 10px;
        top: 10px;
    }
}