:root {
    --newsletter-width: 300px;
    --set-wdith: calc(100% - 12px);
}

.set-width {
    width: var(--set-wdith);
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

/* body {
    background: #FFF000;
    font-family: Arial, "Helvetica Neue", Helvetica, Geneva, sans-serif;
} */

ul {
    line-height: 2;
}

a {
    text-decoration: none;
    color: inherit;
}

input {
    border: none;
}

button {
    border: none;
}

input:focus {
    outline: none;
}

.gen-container {
    margin: 0px auto;
    /* height: 100%; */
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: calc(100% - 12px); */
}

.new-logo {
    max-width: 400px;
    margin-top: 40px;
}

.logo-txt {
    text-align: center;
    margin-top: 15px;
}

.logo-txt>.des {
    font-size: 16px;
    font-weight: 200;
    margin-top: 15px;
    line-height: 1.4;
}

.logo-txt>.title {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 25px;
}

.link-container {
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid #000;
    transition: all .15s ease-in-out;
    box-shadow: #000 8px 8px 0px 0px;
    color: #000;
    background-color: #eee;
    width: calc(100% - 24px);
    border-radius: 8px;
    text-align: center;
}

/* .link-container:nth-child(odd) {
    margin-right: -12px;
}

.link-container:nth-child(even) {
    margin-left: -12px;
} */

.link-container>.txt {
    padding: 15px;
    text-align: left;
}

.link-container>.txt>.title {
    text-align: left;
    font-weight: 600;
}

.link-container:hover {
    transform: translate(4px, 4px);
    box-shadow: #000 4px 4px 0px 0px
}

.link-container:has(img) {
    border: none;
    position: relative;
    max-height: 300px;

    background-size: contain;
    background-image: url("/images/templates/freccia.png");
    background-position: left;
    background-repeat: no-repeat;
}

.link-container:has(img):hover {
    /* background-size: 50% 100%; */
    background-position: right;
}

.link-container:has(img) .url {
    color: #FFF;
    font-size: 16px;
    position: absolute;
    bottom: 10px;
    left: 40px;
    font-weight: 600;
    z-index: 2;
}

.link-container:has(img)::after {
    content: "";
    height: 50%;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}

.link-container>img {
    max-height: 100%;
    width: 75%;
    object-fit: cover;
    object-position: center;
}

.link-container>.padd {
    padding: 10px 0px;
}

.mail-list {
    list-style-type: none;
}

.mail-list li::before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    padding-right: 5px;
}

.mail-list li:hover::before {
    content: "\f2b6";
    font-family: "Font Awesome 5 Free";
}

.mail {
    /* color: #FFF000; */
    font-weight: 600;
}

.login_bar {
    width: var(--newsletter-width);
    height: 50px;
    background: white;
    border-radius: 8px;
    top: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 15px;
}

.login {
    background: transparent;
    position: absolute;
    height: 100%;
    width: 200px;
    padding-left: 10px;
    text-align: left;
    line-height: 50px;
    vertical-align: middle;
    z-index: 10;
    -webkit-transition: transform 0.2s ease-in-out 0s;
    -moz-transition: transform 0.2s ease-in-out 0s;
    -o-transition: transform 0.2s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s;
}

.login_active {
    -webkit-transform: translateX(var(--newsletter-width));
    -moz-transform: translateX(var(--newsletter-width));
    -ms-transform: translateX(var(--newsletter-width));
    -o-transform: translateX(var(--newsletter-width));
    transform: translateX(var(--newsletter-width));
}

.subscribe_button:hover {
    background-color: #222A33;
    cursor: pointer;
}

.subscribe_button {
    background: #171D23;
    position: absolute;
    top: -50px;
    right: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 150px;
    width: 100px;
    text-align: center;
    line-height: 150px;
    vertical-align: middle;
    color: white;
    -webkit-transition: transform 0.5s ease 0s;
    -moz-transition: transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
}

.subscribe_button_active {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.subscribing {
    background: #CDD4DC;
    height: 100%;
    width: var(--newsletter-width);
    z-index: 5;
    position: absolute;
    left: calc(var(--newsletter-width) * (-1));
    display: inline-block;
    -webkit-transition: transform 1s ease 0s;
    -moz-transition: transform 1s ease 0s;
    -o-transition: transform 1s ease 0s;
    transition: transform 1s ease 0s;
    top: 0;
}

.subscribing_active {
    -webkit-transform: translateX(var(--newsletter-width));
    -moz-transform: translateX(var(--newsletter-width));
    -ms-transform: translateX(var(--newsletter-width));
    -o-transform: translateX(var(--newsletter-width));
    transform: translateX(var(--newsletter-width));
}

.thanks {
    background: transparent;
    height: 100%;
    width: var(--newsletter-width);
    z-index: 5;
    text-align: left;
    line-height: 1.1;
    vertical-align: middle;
    padding-left: 10px;
    position: absolute;
    top: 60px;
    display: inline-block;
    -webkit-transition: transform 0.5s ease 0s;
    -moz-transition: transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    font-size: 12px;

}

.thanks_active {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
}





.service-container {
    background-size: contain;
    background-image: url("/images/templates/freccia.png");
    background-position: left;
    background-repeat: no-repeat;
}

.bg-clip {
    background-clip: content-box;
}

.cont-title {
    text-align: center;
    margin-top: 10px;
}

.service-container img {
    max-width: 200px;
    margin-bottom: 10px;
}

.service-container:first-child {
    padding-left: 0;
}

.service-container:last-child {
    padding-right: 0;
}

@media screen and (max-width: 767px) {
    .service-container {
        row-gap: 0px;
    }

    .service-container .service-title {
        font-size: 22px;
    }

    .service-container img {
        max-width: 90px;
        margin-bottom: 10px;
    }
}