@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

a:hover {
    text-decoration: none;
}

a.logo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
    z-index:99;
}

.item {
    height: 100vh;
}

.item.bg1 {
    background: url('../img/leftbg.png') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.item.bg2 {
    background: url('../img/rightbg.png') no-repeat center center #79d0e2;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.item .title {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}


.item .title a, .item .title img {
    transition: all 0.5s ease;
}

.item .title a:hover img {
    transform: scale(1.1);
}

.item.bg1 .title {
    background: rgb(164 30 34 / 90%);
}

.item.bg2 .title {
    background: rgb(29 105 175 / 90%);
}

.item .buttons {
    position: absolute;
    width:100%;
    background: rgb(103 103 103 / 85%);
    bottom:0;
    padding: 20px 50px;
}

.item .buttons > div {
    flex-grow: 1;
    margin-left: 7px;
    margin-right: 7px;
}

.item .buttons > div a {
    background: #000;
    width: 100%;
    display: block;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
}

.item .buttons > div a i {
    font-size: 18px;
}

.item .buttons > div a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.item .buttons .whatsapp a {
    background: #6cb174!important;
}

.item .buttons .facebook a {
    background: #4d7cb4!important;
}

.item .buttons .instagram a {
    background: #9d476d!important;
}

.item .buttons .sagcontactblog a {
    background: #b24a40!important;
}

.item .buttons .sagcontacttel a {
    background: #479e99!important;
}

.item .buttons .sagcontactmail a {
    background: #424d91!important;
}

.mobilemenu {
    width: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    width: 100%;
    padding: 4rem;
    display: none;
    top: 110px;
    left: 0;
    position: fixed;
    height: 100vh;
    color: #fff;
}

section.mobilemenu.mobilemenushow {
    display: block;
}

.mobilemenu ul {
    list-style: none;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    top: 40%;
    transform: translate(-50%,-50%);
    padding-bottom: 110px;
    left: 50%;
    position: absolute;
    padding: 0px;
}

.mobilemenu ul li {
    margin-bottom: 25px;
    text-align: left;
}

.mobilemenu ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.mobilemenu ul li a i {
    width: 24px;
}


.footerfixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
}
.footerfixed .fixedwhatsapp {
    background: #52b145;
    padding: 20px 20px;
    font-weight: 600;
    transition: all .5s ease;
    width:100%;
    font-size:13px;
    flex-grow: 1;
    text-align: center;
}
.footerfixed .fixedtel {
    background: #BE1E2D;
    padding: 20px 20px;
    font-weight: 600;
    transition: all .5s ease;
    width:100%;
    font-size:13px;
    flex-grow: 1;
    text-align: center;
}

.mobileheader {
    display: none;
    background: #000;
    padding: 26px 0px;

}

.mobilemenu__burger {
    margin: 20px auto;
    text-align: center;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 19px;
    width: 30px;
    position: relative; }
.mobilemenu__burger:after {
    content: '';
    display: block;
    width: 60px;
    height: 40px;
    position: absolute;
    left: -14px;
    top: -13px; }
.mobilemenu__burger:focus {
    outline: none; }
.mobilemenu__burger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto 5px;
    transform-origin: 50% 50%;
    transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    position: absolute; }
.mobilemenu__burger span:nth-child(1) {
    top: 0px;
    animation: burger-close-top 400ms ease-out forwards; }
.mobilemenu__burger span:nth-child(2) {
    top: 8px;
    width: 30px;
    opacity: 1;
    transition: opacity 0ms linear 200ms, -webkit-transform 400ms ease-out;
    transition: all 400ms ease-out, opacity 0ms linear 200ms;
    transition: all 400ms ease-out, opacity 0ms linear 200ms, -webkit-transform 400ms ease-out; }
.mobilemenu__burger span:nth-child(3) {
    top: 16px;
    animation: burger-close-bot 400ms ease-out forwards; }
.mobilemenu__burger:hover span {
    width: 30px; }

.hamburgershow:nth-child(1) {
    top: 10px!important;
    transform: rotate(45deg)
}

.hamburgershow:nth-child(2) {
    opacity: 0!important
}

.hamburgershow:nth-child(3) {
    top: 10px!important;
    transform: rotate(-45deg)
}

@media only screen and (max-width : 768px) {
    .footerfixed {
        display: flex;
    }
}

@media only screen and (max-width : 600px) {
    .mobileheader {
        display: block;
    }
    .item .buttons {
        display: none!important;
    }
    .item.bg1 .title, .item.bg2 .title {
        background: rgb(0 0 0 / 55%);
    }
    .item .title {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        padding-top: 80px;
        padding-bottom: 80px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .item {
        height: calc( 50vh - 55.5px );
    }
    .logo {
        display: none;
    }
    .item img {
        width: 60%;
        height: auto;
    }

}