﻿html {
    scroll-behavior: smooth;
}
*:hover {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
body {
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    padding: 0;
    margin: 0;
    color: #373d4a;
}
.bebas-neue-regular {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}
.containerSize {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.topHeader {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
}
    .topHeader .containerSize {
        display: flex;
        justify-content: space-between;
    }
a.logo {
    width: 150px;
}
    a.logo img {
        width: 100%;
        height:auto;
    }
ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
}
    ul.menu li a {
        padding: 5px 10px;
        color: #373d4a;
        text-decoration: none;
        font-size: 18px;
        position: relative;
        opacity:0.75;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
        ul.menu li a:after {
            content: "";
            position: absolute;
            height: 3px;
            width: 60%;
            margin: auto;
            left: 0;
            right: 0;
            border-radius: 99px;
            bottom: -3px;
            display: block;
            background: transparent;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }
        ul.menu li a:hover {
            opacity:1;
        }
        ul.menu li a:hover::after {
            background: #373d4a;
        }
.menuScroll {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    opacity:1;
}
.topControls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.mainBt {
    background: #395796;
    color: white;
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.optionStyle {
    background: #cfffed;
    color: white;
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 500;
    margin-left: 10px;
}
    .optionStyle select {
        background: transparent;
        border: none;
        color: #373d4a;
        font-weight: 500;
    }
.showcase {
    border-radius: 2.5em;
    overflow: hidden;
    padding: 20px;
    position: relative;
    height: 650px;
    margin: 30px 0;
}
    .showcase > img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
    .showcase > div {
        z-index: 1;
        position: relative;
    }
.showcaseMenu {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
    .showcaseMenu ul.menu {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px 15px;
        border-radius: 15px;
        max-width: 660px;
        justify-content: center;
        backdrop-filter: blur(10px);
    }
        .showcaseMenu ul.menu a {
            color: white;
            opacity: 0.8;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }
            .showcaseMenu ul.menu a:hover {
                opacity: 1;
            }
                .showcaseMenu ul.menu a:hover::after {
                    opacity: 1;
                    background: white;
                }
.showcaseLegend {
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
    margin-left: 15px;
    zoom: 1.2;
}
.showcaseHeader {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
}
.showcaseSubHeader {
    font-weight: 500;
    margin-bottom: 20px;
}
.altBg {
    background: #cfffed;
}
section {
    padding: 90px 0;
}
.titleMain {
    font-size: 40px;
    font-weight: 600;
    margin-top: 0;
}
.titleMainAlt {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
}
p {
    margin-top: 0;
    padding-top: 0;
}
.porqueCont {
    display: flex;
    justify-content: center;
    align-items: center;
}
.porqueItem {
    width: 15%;
    max-width: 200px;
    background: white;
    border-radius: 30px;
    border: 1px solid #dfc0c0;
    padding: 40px 30px;
    margin: 0 10px;
    text-align: center;
    min-height: 360px;
}
    .porqueItem img {
        width: 100%;
        max-width: 110px;
        display: block;
        margin: 20px auto 40px;
    }
    .porqueItem b {
        font-size: 18px;
    }
/*CARRUSEL*/
* {
    box-sizing: border-box
}

.slideshow-container {
    max-width: 1400px;
    width:100%;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #bbbbbb;
    font-weight: bold;
    font-size: 18px;
    transition: 1.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 6px;
    width: 85px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 100px;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #717171;
    }

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
.slideParent {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.slideSingle {
    position: relative;
    width: 49%;
    max-width: 600px;
    overflow: hidden;
    height: 640px;
    border-radius: 40px;
    border: 1px solid #c3c3c3;
    margin: 0 15px;
}
    .slideSingle img {
        position: absolute;
        top: 0;
        z-index: 0;
    }
    .slideSingle:after {
        content: "";
        background: rgb(255, 255, 255);
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 25%, rgba(247, 247, 247, 0) 100%);
        height: 100%;
        width: 100%;
        position: absolute;
    }
.slidelegend {
    position: absolute;
    width: 100%;
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 30px;
    min-height: 131px;
}
    .slidelegend b {
        display: block;
        font-size: 20px;
    }
    .slidelegend span {
        font-size: 18px;
    }
.seviciosCarrusel {
    margin-top: 50px;
}
@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #395796;
    color: white;
    cursor: pointer;
    padding: 15px 0;
    text-align: center;
    width: 51px;
    height: 51px;
    border-radius: 100px;
}

    #myBtn:hover {
        background-color: #555;
    }
.containerSize .menuScroll {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.float .menuScroll {
    visibility: initial;
    opacity: 1;
}
.pasosItem {
    display: flex;
    align-items: center;
}
span.pasosNumber.bebas-neue-regular {
    font-size: 20em;
    color: #73ffcb;
    text-shadow: 0 0 2px #b3b3b3;
}
.pasosInfo {
    width: 240px;
    position: relative;
}
    .pasosInfo img {
        display: block;
        width: 90px;
    }
    .pasosInfo b {
        display: block;
        margin-top: 10px;
        font-size: 22px;
    }
    .pasosInfo:after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        background: #73ffcb;
        opacity: 0.2;
        border-radius: 999px;
        left: -50px;
        top: -65px;
        z-index: 0;
    }
.pasosCont {
    position: relative;
    height: 800px;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
    .pasosCont > div {
        position: absolute;
    }
.pasosItem {
    transition: transform .2s;
}
    .pasosItem:hover {
       transform: scale(1.15);
    }
        .pasosItem:hover .pasosNumber {
            color: #5ceeb8;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }
.pasosItem.paso1 {
    top: 0;
    left: 0;
}
.pasosItem.paso2 {
    top: 23.333%;
    right: 0;
}
.pasosItem.paso3 {
    bottom: 0;
    left: 0;
}
.arrow {
    right: 31%;
    top: 15%;
    width: 145px;
    transform: rotate(5deg);
}
.arrow img {
    width:100%;
}
    .arrow.counter {
        bottom: 21%;
        top: initial;
        transform: rotate(120deg);
    }
.pasosInfo span {
    width: 200px;
    display: block;
    font-size: 14px;
}
.float {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.reviewCont {
    display: flex;
    justify-content: space-between;
    vertical-align: top;
}
.reviewItem {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.reviewImg {
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 145px;
}
    .reviewImg img {
        height: 100%;
        width: auto;
    }
.reviewBox {
    background: white;
    padding: 15px;
    width: 55%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 30px;
}
    .reviewBox h1 {
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 99
    }
    .reviewBox div {
        font-size: 14px;
        padding: 10px 0;
    }
        .reviewBox div.score {
            color: #0afc00;
            padding: 0;
            font-size: 20px;
        }
    .reviewBox:after {
        content: "\f10e";
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        color: #373d4a;
        font-size: 70px;
        position: absolute;
        top: -20px;
        right: -36px;
    }
    .reviewBox:before {
        content: "";
        --r: 40px;
        width: 300px;
        aspect-ratio: 1 / cos(30deg);
        -webkit-mask: conic-gradient(from -30deg at 50% calc(200% - 3* var(--r) / 2), #000 60deg, #0000 0) 0 100% / 100% calc(100% - 3* var(--r) / 2) no-repeat, radial-gradient(var(--r) at 50% calc(2* var(--r)), #000 98%, #0000 101%), radial-gradient(var(--r), #000 98%, #0000 101%) space no-repeat 0 100% / calc(2* tan(60deg)* var(--r)) calc(2* var(--r));
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        display: block;
        position: absolute;
        left: -7%;
        top: -63px;
        background: white;
        zoom: 0.2;
        rotate: 60deg;
    }
.preciosCont {
    display: flex;
    justify-content: space-around;
    align-items: end;
    margin-top: 60px;
}
.preciosItemParent {
    width: 18%;
    text-align: center;
    text-decoration: none;
    cursor:pointer;

}
.preciosItem {
    background-color: #395796;
    color: white;
    padding: 15px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    min-height: 505px;
    position:relative;
    top:0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.preciosTitle {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
    letter-spacing: -1px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preciosItem img {
    max-height: 90px;
    width: auto;
}
.preciosDesc {
    background: white;
    color: #373d4a;
    padding: 10px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 30px 0px;
}
.preciosItem span {
    width: 100%;
    display: block;
    text-align: left;
    font-weight: bold;
}
.preciosCant {
    color: #0afc00;
    font-size: 4em;
    font-weight: 800;
    letter-spacing: -2px;
}
.preciosMain {
    background-color: #373d4a;
}
    .preciosMain .preciosTitle {
        font-size: 3em;
        text-align: left;
        line-height: 40px;
    }
    .preciosMain img {
        max-height: 110px;
    }
.preciosSub {
    background: #cfffed;
    color: #373d4a;
}
    .preciosSub .preciosTitle {
        font-size: 1.333em;
        line-height: 22px;
    }
    .preciosSub .preciosCant {
        color: #373d4a;
        font-size: 1.6em;
        text-align: left;
        line-height: 25px;
    }
.preciosItemParent:hover .preciosItem {
    top: -10px;
}
.preciosItemParent:hover label.mainBt {
    background: #373d4a;
}
.ProfileCont {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
}
    .ProfileCont img {
        max-width: 280px;
    }
    .ProfileCont .profileBio {
        width: 45%;
        margin-left: 40px;
    }
.profileBio h1 {
    margin: 0;
    padding: 0;
    font-size: 2.4em;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 40px;
}
.profileBioBox {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 14px;
}
    .profileBioBox ul li {
        margin: 10px 0
    }
.profileQuote {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
}
.profileQuoteCont {
    background: white;
    padding: 20px 40px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 10px;
    position:relative;
}
    .profileQuoteCont:after {
        content: "\f10e";
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        color: #373d4a;
        font-size: 70px;
        position: absolute;
        top: -20px;
        right: -36px;
    }
footer {
    background: #373d4a;
    color: white;
}
.footerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 20px;
    border-bottom: 1px solid #5f646e;
}
    .footerTop img {
        max-width: 120px;
    }
.socialSection a {
    color: white;
    font-size: 24px;
    margin-left: 20px;
    opacity: 1;
}
.socialSection a:hover {
    opacity: 0.5;
}
.footerMiddle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0px;
    border-bottom: 1px solid #5f646e;
}
    .footerMiddle ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
        .footerMiddle ul a {
            color: white;
            opacity: 1;
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
            margin-bottom: 5px;
            display: block;
        }
        .footerMiddle ul a:hover {
           opacity:0.5;
        }
.subMiddle {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
    .subMiddle div {
        opacity: 0.5;
        margin-left: 40px;
    }
        .subMiddle div b {
            display: block;
            font-weight: 800;
            margin-bottom: 5px;
        }
.footerEnd {
    text-align: center;
    font-size: 14px;
    font-weight: 100;
    padding: 20px 0;
    opacity: 0.5;
}
.responsiveMenu {
    display:none;
}
button.responsiveSwich {
    padding: 10px 15px;
    font-size: 1.5em;
    border-radius: 10px;
    margin: 7px 0;
    border: none;
    background: #395796;
    color: white;
    display: none;
}
.responsiveMenuOpen {
    display:block;
}
.infobox-Doc {
    display: flex;
}
    .infobox-Doc div {
        width: 33.33%;
        max-width: 250px;
        font-weight: bold;
        margin-bottom: 20px;
    }
.infobox {
    border-bottom: 1px solid lightgray;
    padding-bottom: 30px;
}
.txtBox h3 {
    font-family: "Bebas Neue", serif;
    font-size: 32px;
    font-weight: 100;
}
.txtBox h2 {
    font-family: "Bebas Neue", serif;
    font-size: 25px;
    font-weight: 100;
}
.fixedmenu {
    opacity: 1 !important;
    visibility: visible !important;
}
section#pasos {
    background: #f9f9f9;
}
.contactCont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

    .contactCont > div {
        width: 48%;
    }

.contactContForm iframe {
    width: 100%;
    border: none;
}
.sendBtn.mainBt {
    font-family: "Funnel Sans", serif;
    font-size: 16px;
    border: none;
}
    .sendBtn.mainBt:hover {
        background: #373d4a;
    }
.basic-input {
    padding: 10px 15px;
    border-radius: 100px;
    border: 1px solid #9aebcd;
    width: 100%;
    font-family: "Funnel Sans", serif;
    font-size: 16px;
    font-weight: 400;
    background: #cfffed;
}
textarea.basic-input {
    border-radius: 12px;
    resize: none;
}
.list-box-cont > div {
    margin-bottom: 20px;
}
.row.doubleRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
    .row.doubleRow > div {
        width: 49%;
    }
section#contact .socialSection a {
    color: #395796;
    margin-left: 0;
    margin-right: 20px;
}
.sent-notification {
    margin: 20px 0 !IMPORTANT;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #373d4a;
}
/*MODAL*/
.modal-parent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 99999999;
}
.modal-cont {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 370px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: fit-content;
    border-radius: 20px;
    box-shadow: -1px 1px 100px 0px rgba(0, 0, 0, 0.3);
    z-index: 999999999;
}
.modal-body iframe {
    border: none;
    height: 400px;
}
.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
i#modal-close {
    position: relative;
    font-size: 30px;
    cursor: pointer;
    opacity: 1;
}
.modal-parent.modal-opened {
    display: block !important;
}
body.noOverflow {
    overflow:hidden !important;
}

/*RESPONSIVE*/
@media only screen and (max-width: 600px) {
    .reviewCont, .footerMiddle, .subMiddle, .porqueCont, .preciosCont {
        flex-wrap: wrap;
    }

    .arrow {
        display: none;
    }

    .pasosInfo {
        width: 100%;
    }

    .subMiddle div {
        width: 100%;
        margin: 10px 0;
    }

    .porqueItem {
        width: 41%;
        padding: 15px;
        margin: 5px;
        min-height: 335px;
    }

    .pasosCont {
        height: 1000px;
    }

        .pasosCont > div {
            position: relative;
            top: initial !important;
            right: initial !important;
            left: initial !important;
            bottom: initial !important;
            margin: 0 auto;
            height: 300px;
            width: 330px;
        }

    .reviewItem {
        zoom: 0.65;
        margin: 0 auto 30px auto;
    }

    .profileQuote {
        width: 70%;
    }

    a.preciosItemParent {
        width: 46%;
    }

    .preciosCant {
        font-size: 2.8em;
    }

    .preciosTitle {
        font-size: 1.8em;
        line-height: 25px;
    }

    .preciosDesc {
        min-height: 110px;
    }
    .preciosItemPremium {
        width: 80% !important;
        margin: 50px 0;
    }
        .preciosItemPremium .preciosTitle {
            font-size: 2em;
            line-height: initial;
        }
        .preciosItemPremium .preciosItem {
            min-height:auto !important;
        }
    section {
        padding: 90px 10px;
    }
    .ProfileCont .profileBio {
        margin: 30px 0;
        width: 90%;
    }
    .profileBio h1 {
        font-size: 2em;
        line-height: 35px;
    }
    footer {
        padding: 0 30px;
    }
    .preciosCont label.mainBt {
        font-size: 14px;
        padding: 10px 0;
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .preciosItem {
        min-height: 495px;
    }
    .showcaseMenu ul.menu {
        display: none;
    }
    .showcase > img {
        height: 100%;
        width: auto;
        margin: auto;
        left: -80%;
        right: -50%;
    }
    .showcaseLegend {
        margin: 0 auto;
        zoom: 0.9;
        background: rgba(255, 255, 255, 0.75);
        padding: 30px 20px 35px;
        border-radius: 20px;
        position: absolute !important;
        width: 90%;
        bottom: 20px;
        backdrop-filter: blur(10px);
    }
    div#topHeader {
        position: fixed !important;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
    }
    .topHeader .containerSize {
        flex-wrap: wrap;
        padding: 0 5px;
    }
    .menuFloat {
        display: none;
    }
    a.logo {
        width: 100px;
    }
    .topControls a.mainBt, .optionStyle, .optionStyle option {
        padding: 10px;
        font-size: 12px;
    }
    button.responsiveSwich {
        display: block;
    }
    .menuFloat.responsiveMenu {
        display: block !important;
        left: -1000px;
        position: absolute;
        background: rgba(57,87,150,0.8);
        backdrop-filter: blur(10px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0,3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
        .menuFloat.responsiveMenu.responsiveMenuOpen {
            left: 0;
        }
    .menuFloat.responsiveMenu ul.menu {
        flex-wrap: wrap;
    }
        .menuFloat.responsiveMenu ul.menu li {
            width: 100%;
            font-size: 1em;
            font-weight: 800;
            padding: 15px 10px;
            border-bottom: 1px solid #a2b7ed;
        }
            .menuFloat.responsiveMenu ul.menu li a {
                color: white;
                opacity: 1;
            }
    .optionStyle {
        display: none;
    }
    .langRes {
        border-bottom: 1px solid white;
    }
        .langRes .optionStyle {
            display: block;
            margin: 10px auto;
            width: 190px;
            /* border-bottom: 1px solid white; */
        }
    ul.menu li a:hover::after {
        display:none;
    }
    .slideSingle {
        width: 50%;
        overflow: hidden;
        height: 380px;
        margin: 0 4px;
    }
        .slideSingle img {
            position: absolute;
            top: 0;
            z-index: 0;
            height: 100%;
            width: auto;
        }
    .slidelegend {
        position: absolute;
        width: 100%;
        z-index: 2;
        bottom: 0;
        left: 0;
        padding: 15px 15px 25px 15px;
        min-height: initial;
    }
        .slidelegend b {
            line-height: 17px;
        }
        .slidelegend span {
            font-size: 16px;
            margin-top: 10px;
            display: block;
        }
    .ProfileCont img {
        max-width: 220px;
    }
    .contactCont > div {
        width: 100%;
    }
    .row.doubleRow > div {
        width: 100%;
    }
        .row.doubleRow > div:first-of-type {
            width: 100%;
            margin-bottom: 20px;
        }
}