@font-face {
    font-family: ITCAvantGardeStd-Md;
    src: url(/fonts/ITCAvantGardeStd-Md.eot);
    src: url(/fonts/ITCAvantGardeStd-Md.svg);
    src: url(/fonts/ITCAvantGardeStd-Md.ttf);
    src: url(/fonts/ITCAvantGardeStd-Md.woff);
}

@font-face {
    font-family: ledgr-bold;
    src: url(/fonts/ledgr.-Bold.eot);
    src: url(/fonts/ledgr.-Bold.ttf);
    src: url(/fonts/ledgr.-Bold.woff);
    src: url(/fonts/ledgr.-Bold.woff2);
    src: url(/fonts/ledgr.-Bold.svg);
}
@font-face {
    font-family: ITCAvantGardeStd-Bk;
    src: url(/fonts/ITCAvantGardeStd-Bk.eot);
    src: url(/fonts/ITCAvantGardeStd-Bk.svg);
    src: url(/fonts/ITCAvantGardeStd-Bk.ttf);
    src: url(/fonts/ITCAvantGardeStd-Bk.woff);
}

@font-face {
    font-family: ITCAvantGardeStd-BkObl;
    src: url(/fonts/ITCAvantGardeStd-BkObl.eot);
    src: url(/fonts/ITCAvantGardeStd-BkObl.svg);
    src: url(/fonts/ITCAvantGardeStd-BkObl.ttf);
    src: url(/fonts/ITCAvantGardeStd-BkObl.woff);
}

@font-face {
    font-family: ITCAvantGardeStd-Bold;
    src: url(/fonts/ITCAvantGardeStd-Bold.eot);
    src: url(/fonts/ITCAvantGardeStd-Bold.svg);
    src: url(/fonts/ITCAvantGardeStd-Bold.ttf);
    src: url(/fonts/ITCAvantGardeStd-Bold.woff);
}

@font-face {
    font-family: ITCAvantGardeStd-Demi;
    src: url(/fonts/ITCAvantGardeStd-Demi.eot);
    src: url(/fonts/ITCAvantGardeStd-Demi.svg);
    src: url(/fonts/ITCAvantGardeStd-Demi.ttf);
    src: url(/fonts/ITCAvantGardeStd-Demi.woff);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    font-family: ITCAvantGardeStd-Bk;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 60%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

p.odometer-we {
    font-family: ITCAvantGardeStd-Md;
    font-size: 18px;
    width: 300px;
    text-align: left;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.83;
    letter-spacing: -0.7px;
    animation-duration: 12s;
    -webkit-animation-duration: 12s;
    position: absolute;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-name: odometer-we;
    -webkit-animation-name: odometer-we;
    animation-play-state: inherit;
    -webkit-animation-play-state: inherit;
    will-change: opacity, transform;
}

@keyframes odometer-we {
     0% {
         opacity: 0.0;
         transform: translateY(192px);
     }
     16.6% {
         opacity: 0.0;
         transform: translateY(160px);
     }
     33.3% {
         opacity: 0.0;
         transform: translateY(128px);
     }
     50% {
         opacity: 0.2;
         transform: translateY(96px);
     }
     66.6% {
         opacity: 0.4;
         transform: translateY(64px);
     }
     83.3% {
         opacity: 1.0;
         transform: translateY(32px);
     }
     100% {
         opacity: 0.0;
         transform: translateY(0px);
     }
 }

@-webkit-keyframes odometer-we {
    0% {
        opacity: 0.0;
        -webkit-transform: translateY(192px);
    }
    16.6% {
        opacity: 0.0;
        -webkit-transform: translateY(160px);
    }
    33.3% {
        opacity: 0.0;
        -webkit-transform: translateY(128px);
    }
    50% {
        opacity: 0.2;
        -webkit-transform: translateY(96px);
    }
    66.6% {
        opacity: 0.4;
        -webkit-transform: translateY(64px);
    }
    83.3% {
        opacity: 1.0;
        -webkit-transform: translateY(32px);
    }
    100% {
        opacity: 0.0;
        -webkit-transform: translateY(0px);
    }
}

@media only screen and (min-width: 768px) {

    p.odometer-we {
        top: 0px;
        left: 50px;
        width: 600px;
        font-size: 36px;
        line-height: 1.25;
        letter-spacing: -1.5px;
    }

    @keyframes odometer-we {
        0% {
            opacity: 0.0;
            transform: translateY(397px) rotateX(60deg);
        }
        16.6% {
            opacity: 0.2;
            transform: translateY(351px) rotateX(40deg);
        }
        33.3% {
            opacity: 0.4;
            transform: translateY(288px) rotateX(20deg);
        }
        50% {
            opacity: 1.0;
            transform: translateY(216px);
        }
        66.6% {
            opacity: 0.4;
            transform: translateY(144px) rotateX(-20deg);
        }
        83.3% {
            opacity: 0.2;
            transform: translateY(81px) rotateX(-40deg);
        }
        100% {
            opacity: 0.0;
            transform: translateY(35px) rotateX(-60deg);
        }
    }

    @-webkit-keyframes odometer-we {
        0% {
            opacity: 0.0;
            -webkit-transform: translateY(397px) rotateX(60deg);
        }
        16.6% {
            opacity: 0.2;
            -webkit-transform: translateY(351px) rotateX(40deg);
        }
        33.3% {
            opacity: 0.4;
            -webkit-transform: translateY(288px) rotateX(20deg);
        }
        50% {
            opacity: 1.0;
            -webkit-transform: translateY(216px);
        }
        66.6% {
            opacity: 0.4;
            -webkit-transform: translateY(144px) rotateX(-20deg);
        }
        83.3% {
            opacity: 0.2;
            -webkit-transform: translateY(81px) rotateX(-40deg);
        }
        100% {
            opacity: 0.0;
            -webkit-transform: translateY(35px) rotateX(-60deg);
        }
    }

}

p.odometer-why-blockchain {
    font-family: ITCAvantGardeStd-Md;
    font-size: 15px;
    width: 250px;
    text-align: left;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.83;
    letter-spacing: -0.7px;
    animation-duration: 12s;
    -webkit-animation-duration: 12s;
    position: absolute;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-name: odometer-why-blockchain;
    -webkit-animation-name: odometer-why-blockchain;
    animation-play-state: inherit;
    -webkit-animation-play-state: inherit;
    will-change: opacity, transform;
}

@keyframes odometer-why-blockchain {
    0% {
        opacity: 0.0;
        transform: translateY(128px);
    }
    16.6% {
        opacity: 0.0;
        transform: translateY(128px);
    }
    33.3% {
        opacity: 0.0;
        transform: translateY(128px);
    }
    50% {
        opacity: 0.2;
        transform: translateY(96px);
    }
    66.6% {
        opacity: 0.4;
        transform: translateY(64px);
    }
    83.3% {
        opacity: 1.0;
        transform: translateY(32px);
    }
    100% {
        opacity: 0.0;
        transform: translateY(0px);
    }
}

@-webkit-keyframes odometer-why-blockchain {
    0% {
        opacity: 0.0;
        -webkit-transform: translateY(128px);
    }
    16.6% {
        opacity: 0.0;
        -webkit-transform: translateY(128px);
    }
    33.3% {
        opacity: 0.0;
        -webkit-transform: translateY(128px);
    }
    50% {
        opacity: 0.2;
        -webkit-transform: translateY(96px);
    }
    66.6% {
        opacity: 0.4;
        -webkit-transform: translateY(64px);
    }
    83.3% {
        opacity: 1.0;
        -webkit-transform: translateY(32px);
    }
    100% {
        opacity: 0.0;
        -webkit-transform: translateY(0px);
    }
}

@media only screen and (min-width: 768px) {

    p.odometer-why-blockchain {
        top: 0px;
        left: 25px;
        width: 200px;
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -1.5px;
    }

    @keyframes odometer-why-blockchain {
        0% {
            opacity: 0.0;
            transform: translateY(354px) rotateX(60deg);
        }
        16.6% {
            opacity: 0.2;
            transform: translateY(318px) rotateX(40deg);
        }
        33.3% {
            opacity: 0.4;
            transform: translateY(270px) rotateX(20deg);
        }
        50% {
            opacity: 1.0;
            transform: translateY(216px);
        }
        66.6% {
            opacity: 0.4;
            transform: translateY(162px) rotateX(-20deg);
        }
        83.3% {
            opacity: 0.2;
            transform: translateY(114px) rotateX(-40deg);
        }
        100% {
            opacity: 0.0;
            transform: translateY(78px) rotateX(-60deg);
        }
    }

    @-webkit-keyframes odometer-why-blockchain {
        0% {
            opacity: 0.0;
            -webkit-transform: translateY(354px) rotateX(60deg);
        }
        16.6% {
            opacity: 0.2;
            -webkit-transform: translateY(318px) rotateX(40deg);
        }
        33.3% {
            opacity: 0.4;
            -webkit-transform: translateY(270px) rotateX(20deg);
        }
        50% {
            opacity: 1.0;
            -webkit-transform: translateY(216px);
        }
        66.6% {
            opacity: 0.4;
            -webkit-transform: translateY(162px) rotateX(-20deg);
        }
        83.3% {
            opacity: 0.2;
            -webkit-transform: translateY(114px) rotateX(-40deg);
        }
        100% {
            opacity: 0.0;
            -webkit-transform: translateY(78px) rotateX(-60deg);
        }
    }

}

@media only screen and (min-width: 768px) {
    .text-line {
        white-space: nowrap;
    }
}

.mobile {
    display: initial;
}

@media only screen and (min-width: 768px) {
    .mobile {
        display: none;
    }
}

a:link {
    text-decoration: none;
}

a:link {
    color: #121212;
}

a:visited {
    color: #121212;
}

a:hover {
    color: #121212;
}

a:active {
    color: #121212;
}

a[href^="tel"]:link {
    color: inherit;
}

a[href^="mailto"]:link {
    color: inherit;
}

.desktop {
     display: none;
 }

@media only screen and (min-width: 768px) {
    .desktop {
        display: initial;
    }
}

.landing-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.landing-logo {
    width: 190px;
}

.landing-subtitle {
    min-width: 200px;
    width: 53%;
    font-family: ITCAvantGardeStd-Bk;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: 0.2px;
    text-align: center;
    color: #747474;
}

@media only screen and (min-width: 350px) {
    .landing-logo {
        width: 240px;
    }
}

@media only screen and (min-width: 768px) {

    .landing-centered {
        width: 586px;
        height: 475.1px;
        top: 55%;
        margin: -237px 0 0 -293px;
        transform: initial;
    }

    .landing-logo {
        width: 321px;
        height: 326px;
        object-fit: contain;
    }

    .landing-subtitle {
        width: 586px;
        object-fit: contain;
    }
}

.top-right {
    position: absolute;
    top: -320px;
    right: -400px;
    z-index: 10;
    pointer-events: none;
    transform: scale(0.5);
}

.bottom-left {
    position: absolute;
    bottom: -300px;
    left: -400px;
    z-index: 10;
    pointer-events: none;
    transform: scale(0.5);
}

@media only screen and (min-width: 768px) {
    .top-right {
        top: -345px;
        right: -450px;
        transform: initial;
    }

    .bottom-left {
        bottom: -345px;
        left: -450px;
        transform: initial;
    }
}

@media only screen and (min-width: 768px) and (min-height: 720px) {
    .top-right {
        top: -310px;
    }

    .bottom-left {
        bottom: -310px;
    }
}

@media only screen and (min-width: 1700px) {
    .top-right {
        top: -240px;
        right: -390px;
    }

    .bottom-left {
        bottom: -240px;
        left: -390px;
    }
}

.section-header-fixed {
     position: absolute;
     margin-top: 61px;
     width: 100%;
     z-index: 1;
 }

.section-header {
    padding-top: 34px;
}

.dark-screen-text {
    color: #ffffff;
}

.section-title {
    padding-left: 5%;
    padding-right: 5%;
    font-family: ledgr-bold;
    font-size: 36px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.4;
    letter-spacing: -1.7px;
    text-align: center;
}

.section-subtitle {
    padding-left: 15%;
    padding-right: 15%;
    font-family: ITCAvantGardeStd-Bk;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: 0.1px;
    text-align: center;
}

@media only screen and (min-width: 350px) {
    .section-title {
        font-size: 44px;
    }
}

@media only screen and (min-width: 768px) {

    .section-number {
        position: absolute;
        margin-top: -2px;
        margin-left: -40px;
        padding-left: 2px;
        padding-bottom: 10px;
        color: white;
        border-bottom: 1px solid white;
        width: 26px;
        height: 10px;
        font-family: ITCAvantGardeStd-Bk;
        font-size: 10px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 0.2px;
    }

    .section-header-fixed {
        margin-left: 107px;
    }

    .section-header {
        padding-top: 40px;
        margin-left: 107px;
    }

    .section-title {
        padding-left: initial;
        padding-right: initial;
        font-family: ledgr-bold;
        font-size: 72px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        letter-spacing: -2.5px;
        text-align: left;
    }

    .section-subtitle {
        margin-top: -15px;
        padding-left: initial;
        padding-right: initial;
        font-family: ITCAvantGardeStd-Bk;
        font-size: 18px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.67;
        letter-spacing: 0.2px;
        text-align: left;
    }
}

@media only screen and (min-width: 768px) and (min-height: 720px) {
    .section-header-fixed {
        margin-top: 86px;
    }

    .section-header {
        padding-top: 65px;
    }

    .section-subtitle {
        margin-top: 0px;
    }
}

.list-wrapper {
    text-align: center;
}

.list-content {
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    .list-wrapper {
        margin-top: calc(50vh - 400px);
    }
}

@media only screen and (max-height: 800px) {
    .list-wrapper {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1700px) {
    .list-wrapper {
        margin-top: calc(50vh - 500px);
    }
}

@media only screen and (min-width: 1700px) and (max-height: 1000px) {
    .list-wrapper {
        margin-top: 0;
    }
}

.we-section-title {
    padding-top: 15px;
}

.we-col {
    width: 100%;
}

@media only screen and (min-width: 768px) {

    .we-section-title {
        padding-top: initial;
    }

    .we-col {
        width: 20%;
        float: left;
    }
}

.we-title {
    font-family: ledgr-bold;
    font-size: 36px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.63;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-align: left;
    margin-top: 30px;
}

.we-odometer {
    margin-top: -20px;
    width: 300px;
    height: 200px;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

@media only screen and (min-height: 500px) {
    .we-odometer {
        margin-top: -10px;
    }

    .we-title {
        margin-top: 65px;
    }

}

@media only screen and (min-height: 600px) {
    .we-odometer {
        margin-top: -10px;
    }

    .we-title {
        margin-top: 100px;
    }

}

@media only screen and (min-width: 768px) {

    .we-odometer {
        margin-top: -65px;
        width: 300px;
        height: 200px;
    }

    .we-title {
        font-size: 72px;
        width: 200px;
        float: left;
        padding-top: 90px;
        padding-right: 20px;
        text-align: right;
    }

    .we-odometer {
        width: 600px;
        height: 485px;
        float: right;
    }
}

@media only screen and (min-width: 768px) and (min-height: 720px) {
    .we-odometer {
        margin-top: -50px;
        height: 200px;
    }

    .we-title {
        padding-top: 105px;
    }

    .we-odometer {
        height: 500px;
    }
}

@media only screen and (min-width: 1700px) {

    .we-odometer {
        margin-top: 0px;
        width: 300px;
        height: 200px;
    }

    .we-title {
        font-size: 72px;
        width: 200px;
        float: left;
        padding-top: 160px;
        padding-right: 20px;
        text-align: right;
    }

    .we-odometer {
        width: 600px;
        height: 500px;
        float: right;
    }
}

.solutions-section-header {
    color: white;
}

.solutions-section-title {
    text-align: left;
    margin-left: 20px;
    padding-left: initial;
    padding-right: initial;
}

.solutions-section-subtitle {
    text-align: left;
    margin-left: 20px;
    padding-left: initial;
    padding-right: initial;
}

.solutions {
}

.solutions-background {
    position: absolute;
    z-index: -20;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 310px);
    height: calc(var(--vh, 1vh) * 100 - 310px);
    object-fit: cover;
}

.solutions-background-1 {
    opacity: 1;
}

.solutions-background-2 {
    opacity: 0;
}

.solutions-background-3 {
    opacity: 0;
}

.solutions-background-4 {
    opacity: 0;
}

.solutions-background-5 {
    opacity: 0;
}

.solutions-background-6 {
    opacity: 0;
}

.solutions-col {
    width: 100%;
    height: 300px;
    position: absolute;
    padding: 5px;
    bottom: 0px;
    left: 0px;
    background: rgba(1, 1, 1, 0.7);
    color: white;
}

.solutions-pagination-indicator {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 10px;
    left: 0px;
    background: rgba(1, 1, 1, 0.7);
    color: white;
}

.solutions-col-1 {
    opacity: 1;
}

.solutions-col-2 {
    opacity: 0;
}

.solutions-col-3 {
    opacity: 0;
}

.solutions-col-4 {
    opacity: 0;
}

.solutions-col-5 {
    opacity: 0;
}

.solutions-col-6 {
    opacity: 0;
}

.solutions-pagination-indicator-1 {
    opacity: 1;
}

.solutions-pagination-indicator-2 {
    opacity: 0;
}

.solutions-pagination-indicator-3 {
    opacity: 0;
}

.solutions-pagination-indicator-4 {
    opacity: 0;
}

.solutions-pagination-indicator-5 {
    opacity: 0;
}

.solutions-pagination-indicator-6 {
    opacity: 0;
}

.solutions-list-wrapper {
    margin-left: 20%;
}

.solution-title {
    font-family: ledgr-bold;
    font-size: 30px;
    width: 80%;
    padding-top: 20px;
    padding-left: 26px;
    margin-top: 3px;
    text-align: left;
    color: inherit;
}

.solution-detail {
    margin-top: 8px;
    font-family: ITCAvantGardeStd-Bk;
    font-size: 18px;
    width: 80%;
    padding-top: 0px;
    padding-bottom: 15px;
    padding-left: 26px;
    text-align: left;
    color: inherit;
}

@media only screen and (min-height: 500px) {
    .solution-detail {
        font-size: 21px;
    }

    .solution-title {
        font-size: 32px;
        width: 85%;
    }
}

@media only screen and (min-height: 600px) {
    .solution-detail {
        font-size: 22px;
    }

    .solution-title {
        font-size: 32px;
        width: 85%;
    }
}

@media only screen and (min-width: 768px) {

    .solutions-section-title {
        margin-left: initial;
    }

    .solutions-section-subtitle {
        margin-left: initial;
    }

    .solutions-background {
        height: 100%;
    }

    .solutions-col {
        width: 450px;
        height: 350px;
        position: absolute;
        padding: 5px;
        top: initial;
        left: initial;
        bottom: 0px;
        right: 0px;
    }

    .solution-title {
        width: 350px;
        font-size: 48px;
    }

    .solution-detail {
        width: 350px;
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (min-height: 720px) {
    .solutions-col {
        height: 350px;
    }

    .solution-title {
        padding-top: 20px;
        margin-top: 3px;
    }

    .solution-detail {
        padding-top: 10px;
        padding-bottom: 20px;
    }

}

@media only screen and (min-width: 1700px) {
    .solutions-col {
        width: 550px;
        height: 500px;
    }

    .solution-title {
        font-size: 55px;
        width: 500px;
        padding-top: 30px;
        padding-left: 39px;
        margin-top: 4px;
    }

    .solution-detail {
        font-size: 36px;
        width: 500px;
        padding-top: 0px;
        padding-bottom: 20px;
        padding-left: 36px;
    }
}

.why-blockchain-section-title {
    font-size: 38px;
}

.why-blockchain-title {
    margin-top: 30px;
    font-family: ledgr-bold;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.63;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-align: left;
}

.why-blockchain-col {
    width: 100%;
}

.why-blockchain-odometer {
    margin-top: -10px;
    width: 300px;
    height: 150px;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

.why-blockchain-bottom {

}

@media only screen and (min-height: 600px) {
    .why-blockchain-bottom {
        display: none;
    }
}

@media only screen and (min-width: 768px) {

    .why-blockchain-section-title {
        font-size: 72px;
    }

    .why-blockchain-col {
        width: 180px;
        height: 435px;
        float: left;
    }

    .why-blockchain-title {
        margin-top: 183px;
        padding-left: 0px;
        text-align: right;
    }

    .why-blockchain-odometer {
        margin-top: -65px;
        width: 240px;
    }
}

@media only screen and (min-width: 768px) and (min-height: 720px) {
    .why-blockchain-col {
        height: 450px;
    }

    .why-blockchain-title {
        margin-top: 198px;
    }

    .why-blockchain-odometer {
        margin-top: -50px;
    }
}

@media only screen and (min-width: 1700px) {

    .why-blockchain-col {
        width: 200px;
        height: 450px;
        float: left;
    }

    .why-blockchain-title {
        margin-top: 248px;
        padding-left: 0px;
        text-align: right;
    }

    .why-blockchain-odometer {
        margin-top: 0px;
        width: 240px;
    }
}

.our-team-section-title {
    text-align: left;
    margin-left: 20px;
    padding-left: initial;
    padding-right: initial;
}

.our-team-section-subtitle {
    text-align: left;
    margin-left: 20px;
    padding-left: initial;
    padding-right: initial;
}

.meet-our-team-wrapper {
    display: flex;
    justify-content: center;
}

.meet-our-team {
    padding-top: 5px;
    margin: 50px;
    width: 175px;
    height: 45px;
    border: solid 1px #979797;
    text-align: center;
    font-family: ITCAvantGardeStd-Md;
    font-size: 13px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 3.46;
    letter-spacing: 0.2px;
}

.our-team-section-header {
    color: black;
}

.our-team {
}

.our-team-background {
    position: absolute;
    z-index: -20;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 320px);
    height: calc(var(--vh, 1vh) * 100 - 320px);
    object-fit: cover;
}

.our-team-background-1 {
    opacity: 1;
}

.our-team-background-2 {
    opacity: 0;
}

.our-team-background-3 {
    opacity: 0;
}

.our-team-col {
    width: 100%;
    height: 310px;
    position: absolute;
    padding: 5px;
    bottom: 0px;
    left: 0px;
    background: rgba(1, 1, 1, 0.7);
    color: white;
}

.our-team-pagination-indicator {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 10px;
    left: 0px;
    background: rgba(1, 1, 1, 0.7);
    color: white;
}

.our-team-col-1 {
    opacity: 1;
}

.our-team-col-2 {
    opacity: 0;
}

.our-team-col-3 {
    opacity: 0;
}

.our-team-pagination-indicator-1 {
    opacity: 1;
}

.our-team-pagination-indicator-2 {
    opacity: 0;
}

.our-team-pagination-indicator-3 {
    opacity: 0;
}

.our-team-list-wrapper {
    margin-left: 20%;
}

.our-team-title {
    font-family: ledgr-bold;
    font-size: 36px;
    width: 260px;
    margin-top: 3px;
    padding-top: 10px;
    padding-left: 26px;
    padding-right 0px;
    text-align: left;
    color: inherit;
}

.our-team-detail {
    font-family: ITCAvantGardeStd-Bk;
    margin-top: 10px;
    font-size: 17px;
    width: 75%;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 26px;
    text-align: left;
    color: inherit;
}

@media only screen and (min-height: 500px) {
    .our-team-detail {
        font-size: 20px;
    }

    .our-team-title {
        font-size: 32px;
        width: 85%;
    }
}

@media only screen and (min-height: 600px) {
    .our-team-detail {
        font-size: 20px;
    }

    .our-team-title {
        font-size: 32px;
        width: 85%;
    }
}

.our-team-col-border-top {
    border-top: 1px #121212 solid;
}

@media only screen and (min-width: 768px) {

    .our-team-section-title {
        margin-left: initial;
    }

    .our-team-section-subtitle {
        margin-left: initial;
    }

    .our-team-background {
        width: 100%;
        height: 100%;
    }

    .our-team-col {
        width: 990px;
        height: 155px;
        bottom: 100px;
    }

    .our-team-title {
        float: left;
        font-size: 42px;
        width: 260px;
        height: 120px;
        margin-top: 3px;
        padding-top: 50px;
        padding-left: 26px;
        padding-right 0px;
        text-align: left;
        color: inherit;
    }

    .our-team-detail {
        float: left;
        font-size: 24px;
        width: 700px;
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 0px;
        text-align: left;
        color: inherit;
    }

    .meet-our-team-wrapper {
        display: inline-block;
        position: absolute;
        right: 325px;
        bottom: 420px;
    }

    .meet-our-team {
        position: absolute;
        left: 20%;
        color: white;
        border: initial;
        background-color: rgba(1, 1, 1, 0.7);
        margin: 5px;
        margin-top: 350px;
    }

}

@media only screen and (min-width: 768px) and (min-height: 720px) {

    .our-team-col {
        height: 205px;
        width: 1150px;
    }

    .our-team-title {
        font-size: 48px;
        width: 300px;
        padding-top: 70px;
        margin-top: 3px;
    }

    .our-team-detail {
        font-size: 28px;
        width: 800px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .our-team-separator {
        display: none;
    }

}

@media only screen and (min-width: 1700px) {

    .our-team {
        width: initial;
    }

    .our-team-col {
        width: 1500px;
        height: 220px;
    }

    .our-team-list-wrapper {
        margin-left: 20%;
    }

    .our-team-title {
        font-size: 55px;
        width: 350px;
        height: 120px;
        padding-top: 90px;
        padding-left: 39px;
        padding-right: 0px;
        margin-top: 4px;
    }

    .our-team-detail {
        font-size: 36px;
        width: 1100px;
        padding-top: 0px;
        padding-bottom: 20px;
        padding-left: 0px;
    }

    .our-team-separator {
        display: none;
    }

    .meet-our-team-wrapper {
        right: 375px;
    }

}


.contact-col {
    margin-top: 40px;
    width: 269px;
    height: 240px;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    text-align: left;
    color: #ffffff;
}

.contact-header {
    font-family: ledgr-bold;
    margin-bottom: 7px;
}

.contact-detail {
    font-family: ITCAvantGardeStd-Bk;
    line-height: 1.2;
}

.contact-detail + .contact-header {
    margin-top: 20px;
}

.places {
    margin-top: -70px;
}

.place-box {
    height: 300px;
    background-size: cover;
    text-shadow: 1px 1px 3px black;
}

.place-atlanta {
    background-image: url(/img/cities/Atlanta-381x290.png);
}

.place-antwerp {
    background-image: url('/img/cities/Antwerp-381x290.png');
}

.place-london {
    background-image: url('/img/cities/London2-381x290.png');
}

.place-mexico-city {
    background-image: url('/img/cities/MexicoCity-381x290.png');
}

.place-trichy {
    background-image: url('/img/cities/Trichy-381x290.png');
}

.place-toronto {
    background-image: url('/img/cities/Toronto-381x290.png');
}

.place-title {
    text-align: left;
    padding-left: 15px;
    padding-top: 135px;
    object-fit: contain;
    font-family: ITCAvantGardeStd-Demi;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.place-greeting {
    text-align: left;
    padding-left: 15px;
    object-fit: contain;
    font-family: ITCAvantGardeStd-Bk;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #ffffff;
}

@media only screen and (min-width: 768px) {

    .contact-col {
        margin: 50px;
        margin-top: 0px;
        float: left;
        width: 250px;
        height: 200px;
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.67;
        letter-spacing: 0.2px;
        text-align: left;
        color: #ffffff;
    }

    .places {
        margin-top: initial;
        max-width: 800px;
        height: 435px;
    }

    .place-row {
        float: left;
    }

    .place-box {
        width: 245px;
        height: 187px;
        float: left;
    }

    .place-atlanta {
        background-image: url(/img/cities/Atlanta-381x290.png);
    }

    .place-antwerp {
        background-image: url('/img/cities/Antwerp-381x290.png');
    }

    .place-london {
        background-image: url('/img/cities/London2-381x290.png');
    }

    .place-mexico-city {
        background-image: url('/img/cities/MexicoCity-381x290.png');
    }

    .place-trichy {
        background-image: url('/img/cities/Trichy-381x290.png');
    }

    .place-toronto {
        background-image: url('/img/cities/Toronto-381x290.png');
    }

    .place-title {
        padding-top: 60px;
        padding-left: 10px;
        object-fit: contain;
        font-family: ITCAvantGardeStd-Demi;
        font-size: 24px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.25;
        letter-spacing: 0.2px;
        color: #ffffff;
    }

    .place-greeting {
        padding-left: 10px;
        object-fit: contain;
        font-family: ITCAvantGardeStd-Bk;
        font-size: 20px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: 0.2px;
        color: #ffffff;
    }
}

@media /* only for retina displays */
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px),
only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 768px),
only screen and (min-device-pixel-ratio: 2) and (min-width: 768px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px),
only screen and (min-resolution: 192dpi) and (min-width: 768px),
only screen and (min-resolution: 2dppx) and (min-width: 768px) {

    .place-atlanta {
        background-image: url(/img/cities/Atlanta-762x580.png);
    }

    .place-antwerp {
        background-image: url('/img/cities/Antwerp-762x580.png');
    }

    .place-london {
        background-image: url('/img/cities/London2-762x580.png');
    }

    .place-mexico-city {
        background-image: url('/img/cities/MexicoCity-762x580.png');
    }

    .place-trichy {
        background-image: url('/img/cities/Trichy-762x580.png');
    }

    .place-toronto {
        background-image: url('/img/cities/Toronto-762x580.png');
    }
}

@media only screen and (min-width: 1700px) {

    .contact-col {
        margin: 50px;
        margin-top: 0px;
        float: left;
        width: 275px;
        height: 270px;
        font-family: ITCAvantGardeStd-Bk;
        font-size: 18px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.67;
        letter-spacing: 0.2px;
        text-align: left;
        color: #ffffff;
    }

    .places {
        max-width: 1200px;
        height: 650px;
    }

    .place-row {
        float: left;
    }

    .place-box {
        width: 381px;
        height: 290px;
        float: left;
    }

    .place-atlanta {
        background-image: url(/img/cities/Atlanta-762x580.png);
    }

    .place-antwerp {
        background-image: url('/img/cities/Antwerp-762x580.png');
    }

    .place-london {
        background-image: url('/img/cities/London2-762x580.png');
    }

    .place-mexico-city {
        background-image: url('/img/cities/MexicoCity-762x580.png');
    }

    .place-trichy {
        background-image: url('/img/cities/Trichy-762x580.png');
    }

    .place-toronto {
        background-image: url('/img/cities/Toronto-762x580.png');
    }

    .place-title {
        padding-top: 100px;
        padding-left: 15px;
        object-fit: contain;
        font-family: ITCAvantGardeStd-Demi;
        font-size: 34px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.25;
        letter-spacing: 0.2px;
        color: #ffffff;
    }

    .place-greeting {
        padding-left: 15px;
        object-fit: contain;
        font-family: ITCAvantGardeStd-Bk;
        font-size: 24px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: 0.2px;
        color: #ffffff;
    }
}

@media /* only for retina displays */
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1700px),
only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 1700px),
only screen and (min-device-pixel-ratio: 2) and (min-width: 1700px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1700px),
only screen and (min-resolution: 192dpi) and (min-width: 1700px),
only screen and (min-resolution: 2dppx) and (min-width: 1700px) {
    .place-atlanta {
        background-image: url(/img/cities/Atlanta-1143x870.png);
    }

    .place-antwerp {
        background-image: url('/img/cities/Antwerp-1143x870.png');
    }

    .place-london {
        background-image: url('/img/cities/London2-1143x870.png');
    }

    .place-mexico-city {
        background-image: url('/img/cities/MexicoCity-1143x870.png');
    }

    .place-trichy {
        background-image: url('/img/cities/Trichy-1143x870.png');
    }

    .place-toronto {
        background-image: url('/img/cities/Toronto-1143x870.png');
    }
}


.footer-section {
    background-color: white;
}

.footer-wrapper {
    text-align: center;
}

.footer-content {
    display: inline-block;
}

.footer-ledgr {
    font-family: ledgr-bold;
    font-size: 40px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -2.5px;
    color: black;
    padding-top: 10px;
}

.footer-copyright {
    object-fit: contain;
    font-family: ITCAvantGardeStd-Md;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    color: black;
    padding-top: 5px;
    padding-bottom: 10px;
}

@media only screen and (min-width: 768px) {

    .footer-wrapper {
        text-align: center;
        height: 120px;
    }

    .footer-content {
        display: inline-block;
    }

    .footer-ledgr {
        font-family: ledgr-bold;
        font-size: 72px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        letter-spacing: -2.5px;
        color: black;
        padding-top: 25px;
        padding-right: 200px;
        float: left;
    }

    .footer-copyright {
        object-fit: contain;
        font-family: ITCAvantGardeStd-Bk;
        font-size: 18px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        letter-spacing: 0.2px;
        color: black;
        padding-top: 47px;
        padding-left: 180px;
        padding-right: 60px;
        float: left;
    }
}
