/* Padding */

.padding-xs {
    padding: 8px;
}

.padding-s {
    padding: 12px;
}

.padding {
    padding: 16px;
}

.padding-m {
    padding: 32px;
}

.padding-l {
    padding: 48px;
}

.padding-xl {
    padding: 64px;
}

.brand-slider {
    width: 100%;
max-width:1200px;
padding:10px 20px;
    overflow: hidden;
    padding: 10px 0;
}

.brand-slider .swiper-wrapper {
    align-items: center;
}

.brand-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand-slider .swiper-slide img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 1;

    transition: filter .3s ease, opacity .3s ease;}

.brand-slider .swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* Row */

.row::after {
    content: "";
    clear: both;
    display: table;
}


/* Colunm */

[class*="col-"] {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Colunm - Desktop */

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}


/* Colunm - Tablet */

@media only screen and (max-width: 768px) {
    .col-s-1 {
        width: 8.33%;
    }

    .col-s-2 {
        width: 16.66%;
    }

    .col-s-3 {
        width: 25%;
    }

    .col-s-4 {
        width: 33.33%;
    }

    .col-s-5 {
        width: 41.66%;
    }

    .col-s-6 {
        width: 50%;
    }

    .col-s-7 {
        width: 58.33%;
    }

    .col-s-8 {
        width: 66.66%;
    }

    .col-s-9 {
        width: 75%;
    }

    .col-s-10 {
        width: 83.33%;
    }

    .col-s-11 {
        width: 91.66%;
    }

    .col-s-12 {
        width: 100%;
    }
}


/* Colunm - Mobile */

@media only screen and (max-width: 600px) {
    [class*="col-"] {
        width: 100%;
    }
}


/* Zig Zag */

.zig-zag-container {
    /* padding: 48px 32px;
max-width: 1200px;
margin: auto;
overflow: auto; */
}

.zig-zag-container h2 {
    text-align: center;
}

.zig-zag-container .col-text,
.zig-zag-container .col-content {
    width: 50%;
    padding: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.zig-zag-container.odd .col-content,
.zig-zag-container.even .col-text {
    float: right;
}

.zig-zag-container.even .col-content,
.zig-zag-container.odd .col-text {
    float: left;
}

.zig-zag-container img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.zig-zag-container h4 {
    font-weight: normal;
    color: #000;
}

.zig-zag-container ul {
    list-style: none;
    padding-left: 28px;
    margin: 0;
    padding-bottom: 8px;
}

.zig-zag-container li {
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 8px;
}

.zig-zag-container ul li::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    position: relative;
    z-index: 1;
    color: var(--first-color);
    width: 1em;
    margin-left: -28px;
    margin-right: 8px;
}

@media only screen and (max-width: 768px) {

    .zig-zag-container .col-text,
    .zig-zag-container .col-content {
        width: 100%;
    }

    .col-text {
        text-align: center;
    }

    .zig-zag-container img {
        max-width: 300px;
    }

    .zig-zag-container ul {
        display: inline-block;
        text-align: left;
    }
}


/* Hero */

.hero {
    padding-top: 45%;
    position: relative;
    overflow: hidden;
}

.hero .hero-arrow {
    width: 100%;
    cursor: pointer;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    -webkit-animation: arrow 2s;
    -moz-animation: arrow 2s;
    -o-animation: arrow 2s;
    animation: arrow 2s;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 16px;
}

.hero .hero-arrow i {
    display: block;
    margin-top: -4px;
}

.hero .hero-arrow:hover {
    -webkit-animation: arrowHover 2s;
    -moz-animation: arrowHover 2s;
    -o-animation: arrowHover 2s;
    animation: arrowHover 2s;
}

.hero .hero-image {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero .hero-video {
    opacity: 0.83;
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hero .hero-logo {
    width: 300px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero .hero-text {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 32px;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 30%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.hero .hero-text h1,
.hero .hero-text h3 .bull {
    color: var(--second-color);
}

.hero-text p {
    font-weight: 500;
}

@media only screen and (max-width: 1200px) {
    .hero .hero-text {
        left: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .hero {
        padding-top: 0;
    }

    .hero .hero-arrow {
        position: relative;
        font-size: 16px;
        bottom: 36.8px;
        margin-bottom: -28.8px;
        -webkit-animation: arrowMobile 2s;
        -moz-animation: arrowMobile 2s;
        -o-animation: arrowMobile 2s;
        animation: arrowMobile 2s;
    }

    .hero .hero-arrow:hover {
        -webkit-animation: arrowHoverMobile 2s;
        -moz-animation: arrowHoverMobile 2s;
        -o-animation: arrowHoverMobile 2s;
        animation: arrowHoverMobile 2s;
    }

    .hero .hero-video,
    .hero .hero-image {
        position: relative;
        left: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .hero .hero-logo {
        left: auto;
        right: -10%;
        width: 33.33%;
        top: 120px;
    }

    .hero .hero-text {
        max-width: 100%;
        width: 100%;
        top: 100%;
        left: 0;
        text-align: center;
        padding: 16px;
        position: relative;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    /* .hero .hero-text h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .hero .hero-text h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .hero-text p {
        font-size: 12px;
        margin-bottom: 4px;
    } */
}

@-webkit-keyframes arrow {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@-moz-keyframes arrow {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@-o-keyframes arrow {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@keyframes arrow {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@-webkit-keyframes arrowHover {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@-moz-keyframes arrowHover {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@-o-keyframes arrowHover {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@keyframes arrowHover {
    0% {
        bottom: 16px;
    }

    25% {
        bottom: 24px;
    }

    50% {
        bottom: 16px;
    }

    75% {
        bottom: 24px;
    }

    100% {
        bottom: 16px;
    }
}

@-webkit-keyframes arrowMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@-moz-keyframes arrowMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@-o-keyframes arrowMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@keyframes arrowMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@-webkit-keyframes arrowHoverMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@-moz-keyframes arrowHoverMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@-o-keyframes arrowHoverMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}

@keyframes arrowHoverMobile {
    0% {
        bottom: 36.8px;
    }

    25% {
        bottom: 44.8px;
    }

    50% {
        bottom: 36.8px;
    }

    75% {
        bottom: 44.8px;
    }

    100% {
        bottom: 36.8px;
    }
}


/* Clients */

.client-container {
    background-color: #fff;
    /* padding: 16px;
max-width: 992px; */
    margin: auto;
}

.client-container::after {
    content: "";
    clear: both;
    display: table;
}

.client-heading {
    float: left;
    display: inline-block;
    margin: 0;
    margin-right: 16px;
    line-height: 66px;
    font-size: 18px;
    color: var(--first-color);
}

.client-logo {
    text-align: center;
    /* width: 3% !important; */
    padding: 8px;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.client-logo img {
    display: inline-block !important;
    max-width: 100%;
    max-height: 50px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.client-logo img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}


/* .logo-ticker .slick-list.draggable {
    position: relative;
}

.logo-ticker .slick-list.draggable::before,
.logo-ticker .slick-list.draggable::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 32px;
    z-index: 2;
}

.logo-ticker .slick-list.draggable::before {
    left: 0;
    background: transparent;
    background: -moz-linear-gradient(to right, #fff, transparent);
    background: -webkit-gradient(right, #fff, transparent);
    background: -webkit-linear-gradient(right, #fff, transparent);
    background: -o-linear-gradient(to right, #fff, transparent);
    background: -ms-linear-gradient(to right, #fff, transparent);
    background: linear-gradient(to right, #fff, transparent);
}

.logo-ticker .slick-list.draggable::after {
    right: 0;
    background: transparent;
    background: -moz-linear-gradient(to left, #fff, transparent);
    background: -webkit-gradient(to left, #fff, transparent);
    background: -webkit-linear-gradient(to left, #fff, transparent);
    background: -o-linear-gradient(to left, #fff, transparent);
    background: -ms-linear-gradient(to left, #fff, transparent);
    background: linear-gradient(to left, #fff, transparent);
}

.logo-ticker {} */

@media only screen and (max-width: 768px) {
    .client-heading {
        float: none;
        display: block;
        line-height: 1;
        margin-right: 0;
        margin-bottom: 8px;
        text-align: center;
    }

    /* .logo-ticker .slick-list.draggable,
    .logo-ticker .slick-list.draggable .slick-track {
        height: 60px;
    } */
    .client-logo {
        width: auto !important;
        padding: 0;
    }

    .client-logo img {
        max-width: none;
        padding: 0 16px;
        /* height: 60px; */
    }

    .logo-ticker .slick-list.draggable::before,
    .logo-ticker .slick-list.draggable::after {
        background: transparent;
    }
}


/* Textured Background */

.textured-background {
    background-image: linear-gradient(45deg, lightgrey, white);
}


/* Benefits */

.benefit-container {
    max-width: 1200px;
    padding: 48px 32px;
    margin: auto;
}

.benefit-container h2 {
    text-align: center;
}

.benefit {
    text-align: center;
    padding: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.benefit img {
    max-width: 100%;
    max-height: 70px;
    display: block;
    margin: auto;
    margin-bottom: 16px;
}

.benefit h3 {
    line-height: 1.3;
    margin: 0;
    color: var(--second-color);
    font-weight: normal;
}


/* Platforms */

.platform-container {
    /* max-width: 1200px;
padding: 48px 32px;
margin: auto; */
}

.platform-container h2 {
    text-align: center;
}

.platform-container .col-4.col-s-6 {
    padding: 16px;
}

.platform-container .col-4.col-s-6:nth-child(1) .platform {
    background-color: #bed7eb;
}

.platform-container .col-4.col-s-6:nth-child(2) .platform {
    background-color: #b9e6b8;
}

.platform-container .col-4.col-s-6:nth-child(3) .platform {
    background-color: #eddaed;
}

.platform {
    text-align: center;
    background-color: #fff;
    border: 8px solid #efefef;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    padding: 16px;
    margin: auto;
    max-width: 300px;
}

.platform h3 {
    background-color: var(--first-color);
    margin: 0;
    padding: 16px;
    color: #fff;
}

.platform img {
    width: 80%;
    max-width: 200px;
    display: block;
    margin: auto;
    margin-bottom: 16px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.platform img:hover {
    position: relative;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.platform .platform-list {
    text-align: left;
    display: inline-block;
}

.platform h5 {
    color: #000;
    padding-left: 29px;
}

.platform h5 i {
    color: var(--first-color);
    margin-right: 8px;
    margin-left: -29px;
}

.platform-container .largecta {
    margin-top: 16px;
}

@media only screen and (max-width: 992px) {
    .platform-container {
        text-align: center;
    }

    .platform-container .col-4.col-s-6 {
        display: inline-block;
        float: none;
        width: 49%;
    }
}

@media only screen and (max-width: 768px) {
    .platform-container .col-4.col-s-6 {
        width: 100%;
    }
}


/* Device Display */

.display-monitor {
    position: relative;
    width: 100%;
}

.device {
    position: relative;
    display: block;
    width: 100%;
}

.screen {
    width: 100%;
    padding: 0 4%;
    max-width: 320px;
    height: 65%;
    position: absolute;
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Social Icons */

.social-icons {
    text-align: center;
}

.social-icons a {
    display: inline-block;
    margin: 16px 32px;
    font-size: 36px;
    color: var(--second-color);
}

.social-icons a:hover {
    color: var(--second-color-dark);
}

@media only screen and (max-width: 768px) {
    .social-icons a {
        margin: 16px;
    }
}


/* Staff */

.staff {
    margin-bottom: 48px;
    background-color: #fff;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.staff:last-child {
    margin-bottom: 0;
}

.staff img {
    width: 25%;
    float: left;
    display: block;
}

.staff .staff-title {
    width: 75%;
    float: left;
    padding: 8px 16px;
    background-color: var(--first-color);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.staff .staff-title h4 {
    color: #fff;
    margin: 0;
}

.staff .staff-title .staff-position {
    font-weight: normal;
}

.staff .staff-title a {
    color: #fff;
    float: right;
    font-size: 25px;
    line-height: 27.2px;
}

.staff .staff-text {
    width: 75%;
    float: left;
    padding: 8px 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.staff .staff-text p:last-child {
    margin: 0;
}

@media only screen and (max-width: 768px) {

    .staff img,
    .staff .staff-title,
    .staff .staff-text {
        width: 100%;
    }

    .staff img,
    .staff .staff-title {
        max-width: 300px;
        margin: auto;
        float: none;
    }

    .staff .staff-text {
        padding: 0;
        padding-top: 8px;
    }

    .staff .staff-title .staff-position {
        display: block;
    }
}


/* World Map */

.world-map {
    position: relative;
    width: 90%;
    max-width: 992px;
    margin: auto;
    padding: 24px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.world-map .uk,
.world-map .australia,
.world-map .new-zealand,
.world-map .south-africa,
.world-map .canada,
.world-map .new-york {
    width: 35px;
    background: #fff;
    padding: 4.47px 7.5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.world-map .uk {
    top: 23%;
    left: 45%;
}

.world-map .australia {
    top: 76%;
    left: 90%;
}

.world-map .new-zealand {
    top: 86%;
    left: 97%;
}

.world-map .south-africa {
    top: 75%;
    left: 52.5%;
}

.world-map .canada {
    top: 16%;
    left: 14%;
}

.world-map .new-york {
    top: 25%;
    left: 22%;
}

@media only screen and (max-width: 600px) {

    .world-map .uk,
    .world-map .australia,
    .world-map .new-zealand,
    .world-map .south-africa,
    .world-map .canada,
    .world-map .new-york {
        width: 23.33px;
        padding: 2.98px 5px;
    }
}

.location {
    cursor: pointer;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.location .icon {
    width: 35px;
    background: #fff;
    padding: 4.47px 7.5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.location:hover .icon {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.location.aer-lingus {
    top: 19%;
    left: 15%;
}

.location.gsk {
    top: 31%;
    left: 19%;
}

.location.princes {
    top: 24%;
    left: 80%;
}

.location.irish-prison-service {
    top: 36%;
    left: 70%;
}

.location.yodel {
    top: 65%;
    left: 30%;
}

.location.sse {
    top: 76%;
    left: 89%;
}

.location.jbs-group {
    top: 26%;
    left: 56%;
}

.location.calmac-ferries {
    top: 60%;
    left: 53%;
}

.location i {
    position: relative;
    color: #fff;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.location i::after {
    content: "";
    background-color: #ad2330;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    z-index: -1;
    top: -8px;
    left: -9px;
}

.location:hover i {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.tooltip .tooltiptext img {
    max-width: 100%;
    max-height: 50px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .location {
        -webkit-transform: translate(-50%, -50%) scale(0.75);
        -moz-transform: translate(-50%, -50%) scale(0.75);
        -ms-transform: translate(-50%, -50%) scale(0.75);
        -o-transform: translate(-50%, -50%) scale(0.75);
        transform: translate(-50%, -50%) scale(0.75);
    }
}


/* office */

.office-container {
    max-width: 1200px;
    padding: 48px 32px;
    margin: auto;
}

.office-container .col-4 {
    padding: 16px;
}

.office {
    text-align: center;
    background-color: #fff;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.office h3 {
    background-color: var(--first-color);
    color: #fff;
    margin: 0;
    padding: 8px;
    text-align: center;
}

.office img {
    width: 100%;
}

.office-text {
    padding: 16px 0;
    text-align: left;
    display: inline-block;
}

.office .office-text p {
    font-weight: bold;
    font-size: 18px;
}

.office .largecta {
    margin-bottom: 16px;
}


/* Read More */


/* .read-more,
.read-more-anchor {
cursor: pointer;
font-weight: bold;
font-size: 20px;
color: var(--first-color);
text-decoration: none;
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
-o-transition: color 0.3s;
transition: color 0.3s;
}

.read-more:hover,
.read-more-anchor:hover {
color: var(--first-color-dark);
text-decoration: underline;
}

.read-more~div {
max-height: 0;
overflow: hidden;
-webkit-transition: max-height 0.3s ease-out;
-moz-transition: max-height 0.3s ease-out;
-o-transition: max-height 0.3s ease-out;
transition: max-height 0.3s ease-out;
} */


/* Icon List */

.icon-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    padding: 8px;
    margin: 0;
}

.icon-list li {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding: 8px;
    margin-bottom: 8px;
    line-height: 32px;
    font-weight: bold;
    color: var(--second-color);
    font-size: 20px;
    position: relative;
    padding-left: 64px;
}

.icon-list li i {
    vertical-align: top;
    font-size: 32px;
    color: var(--first-color);
    display: inline-block;
    margin-right: 8px;
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
    .icon-list li {
        width: 100%;
    }
}


/* Client Testimonial */

.client-testimonial {
    /* max-width: 992px; */
    margin: auto;
    overflow: auto;
    position: relative;
}

.client-testimonial-logo {
    position: absolute;
    max-width: 320px;
    top: 50%;
    left: 66.66%;
    width: 33.33%;
    padding: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client-testimonial-content {
    float: left;
    width: 66.66%;
    padding: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.client-testimonial-quote {
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
}

.client-testimonial-title {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .client-testimonial {
        text-align: center;
    }

    .client-testimonial-logo,
    .client-testimonial-content {
        width: 100%;
    }

    .client-testimonial-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .client-testimonial-content {
        text-align: center;
    }
}


/* .counter {
display: inline-block;
color: var(--first-color);
font-size: 1.3em;
min-width: 56.49px;
font-weight: bold;
} */

.counter.percent::after {
    content: "%";
}


/* FAQs */

.faq-container {
    max-width: 1000px;
    margin: 12px auto 12px auto;
}

.faq-accordion {
    position: relative;
    color: #fff;
    background-color: var(--first-color);
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    padding-right: 40px;
    font-size: 20px;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
    border-bottom: #fff 2px solid;
}

.faq-accordion.active,
.faq-accordion:hover {
    background-color: var(--second-color);
}

.faq-accordion:before,
.faq-accordion:after {
    content: "";
    width: 16px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.faq-accordion:after {
    -webkit-transform: rotate(-90deg) translate(2px, -8px);
    -moz-transform: rotate(-90deg) translate(2px, -8px);
    -ms-transform: rotate(-90deg) translate(2px, -8px);
    -o-transform: rotate(-90deg) translate(2px, -8px);
    transform: rotate(-90deg) translate(2px, -8px);
}

.faq-accordion.active::before,
.faq-accordion:hover::before,
.faq-accordion.active::after,
.faq-accordion:hover::after {
    background-color: white;
}

.faq-accordion.active:after {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.faq-accordion-panel {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    font-size: 18px;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.faq-accordion-panel div {
    padding: 16px;
}

@media only screen and (max-width: 768px) {
    .faq-accordion {
        font-size: 18px;
    }
}


/* Staff */

.staff-listing {
    padding: 16px;
}

.staff-listing a {
    position: relative;
    display: block;
}

.staff-listing img {
    width: 100%;
    display: block;
}

.staff-listing-name {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px;
    background-color: rgba(188, 3, 42, 0.8);
    width: 100%;
    box-sizing: border-box;
    line-height: 1.3;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    margin: 0;
}

.staff-listing a:hover .staff-listing-name {
    background-color: rgba(188, 3, 42);
}

.staff-listing-title {
    font-size: 12px;
    font-weight: normal;
}


/* Smart Red Check */

.smart-red-check.fas.fa-check {
    font-size: 24px;
    margin-bottom: 4px;
    padding: 6px;
    color: var(--second-color);
    border: solid 3px var(--first-color);
    clear: both;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}


/* List Icons */

.list-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    text-align: left;
}

.list-icons li {
    padding-left: 42px;
    position: relative;
    margin-bottom: 8px;
}

.list-icons li i {
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* Type Wroter Animation */

#typeWriterHeading {
    /* height: 39px; */
    margin-bottom: 13px;
}

#typeWriterSubheading {
    /* height: 26px; */
    margin-bottom: 8px;
}

.type-writer::after {
    content: "|";
    color: #000;
}

.type-writer-animation::after {
    content: "|";
    color: #000;
    -webkit-animation: typeWriter 1s linear 3 forwards;
    -moz-animation: typeWriter 1s linear 3 forwards;
    -o-animation: typeWriter 1s linear 3 forwards;
    animation: typeWriter 1s linear 3 forwards;
}

@-webkit-keyframes typeWriter {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    51% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes typeWriter {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    51% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes typeWriter {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    51% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes typeWriter {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    51% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* Perks */

.perks {
    color: var(--second-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.1;
}

.perks .col-4.col-s-6.padding-s {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 0 -0.5%;
}


/* Video Text */

.video-title,
.video-desc {
    color: #fff;
}

@media only screen and (max-width: 1408px) {
    .video-desc {
        min-height: 45px;
    }
}

@media only screen and (max-width: 889px) {
    .video-title {
        min-height: 55px;
    }
}

@media only screen and (max-width: 765px) {
    .video-desc {
        min-height: 67px;
    }
}

@media only screen and (max-width: 643px) {
    .video-desc {
        min-height: 90px;
    }
}

@media only screen and (max-width: 600px) {

    .video-title,
    .video-desc {
        min-height: unset;
    }
}


/* Tabs */

.tab {
    overflow: hidden;
    text-align: center;
}

.tab div {
    cursor: pointer;
    padding: 16px;
    transition: 0.3s;
    background-color: grey;
    float: left;
    width: 25%;
    box-sizing: border-box;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tab div h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.tab div:hover,
.tab div.active {
    background-color: #ad2330;
}

.tabcontent {
    display: none;
    border: 1px solid grey;
    background-color: #fff;
}

@media only screen and (max-width: 600px) {
    .tabcontent {
        height: auto !important;
    }

    .tab div {
        width: 50%;
    }
}


/* Timeline */

.timeline {
    position: relative;
    overflow-y: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.timeline::-webkit-scrollbar,
.timeline-nav::-webkit-scrollbar {
    display: none;
}

.timeline-text {
    padding: 16px 10%;
    width: 100%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    vertical-align: top;
}

.timeline-text h2,
.timeline-text h3,
.timeline-text p {
    color: white;
}

.timeline-text a {
    color: #cae6fe;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.timeline-text a:hover {
    color: lightgrey;
}

.timeline-nav {
    text-align: center;
    overflow: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    position: relative;
}

.stage {
    border-radius: 30px;
    width: 60px;
    height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    font-size: 28px;
    padding: 16px 0;
    color: var(--first-color);
    display: inline-block;
    text-align: center;
    margin: 16px;
    cursor: pointer;
    -webkit-transition: background-color 0.7s ease-out;
    -moz-transition: background-color 0.7s ease-out;
    -o-transition: background-color 0.7s ease-out;
    transition: background-color 0.7s ease-out;
    font-family: var(--first-font);
    position: relative;
}

.stage::before {
    content: "";
    position: absolute;
    top: 27.5px;
    left: -37px;
    width: 38px;
    height: 5px;
    background-color: white;
    -webkit-transition: background-color 0.7s ease-out;
    -moz-transition: background-color 0.7s ease-out;
    -o-transition: background-color 0.7s ease-out;
    transition: background-color 0.7s ease-out;
}

.stage-year {
    border-radius: 50px;
    width: 100px;
    height: 100px;
    padding: 39px 0;
    font-family: "Oswald", sans-serif;
}

.stage-year::before {
    top: 45px;
    height: 10px;
}

.stage:first-child::before {
    display: none;
}

.stage.active,
.stage.active::before,
.stage:hover,
.stage:hover::before {
    background-color: #cae6fe;
}

@media only screen and (max-width: 600px) {
    .timeline-text h2 i {
        font-size: 48px;
        display: block;
        margin-bottom: 16px;
    }
}

.year-container {
    width: 100px;
    height: 100px;
    background-color: #bc032a;
    text-align: center;
    padding: 32px 0;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.year {
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    font-family: "Oswald", sans-serif;
}

.timeline-row {
    position: relative;
    overflow: auto;
    padding: 32px;
    max-width: 1200px;
    margin: auto;
}

.timeline-row::-webkit-scrollbar {
    display: none;
}

.timeline-row::before,
.timeline-row::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 16px;
    z-index: 2;
}

.timeline-row::before {
    left: 0;
    background-image: linear-gradient(to right, #ffffff, rgba(0, 0, 0, 0));
}

.timeline-row::after {
    right: 0;
    background-image: linear-gradient(to left, #ffffff, rgba(0, 0, 0, 0));
}

.year-desc {
    background-color: #efefef;
    padding: 16px;
    width: 40%;
    max-width: 500px;
    position: relative;
    margin: auto;
    display: block;
}

.year-desc p {
    margin: 0;
}

.timeline-row:nth-child(even) .year-desc {
    float: right;
}

.timeline-row:nth-child(odd) .year-desc {
    float: left;
}

.year-desc::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 64px;
    color: #efefef;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.timeline-row:nth-child(even) .year-desc::before {
    content: "\f0d9";
    left: -20px;
}

.timeline-row:nth-child(odd) .year-desc::before {
    content: "\f0da";
    right: -20px;
}

@media only screen and (max-width: 600px) {
    .timeline-row {
        padding: 0 32px;
    }

    .year-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 16px auto;
    }

    .timeline-row:nth-child(even) .year-desc,
    .timeline-row:nth-child(odd) .year-desc {
        float: none;
        width: 100%;
        margin: 32px 0 16px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .timeline-row:nth-child(even) .year-desc::before,
    .timeline-row:nth-child(odd) .year-desc::before {
        right: auto;
        top: -16px;
        left: 50%;
    }

    .timeline-row:nth-child(even) .year-desc::before {
        -webkit-transform: translate(-50%, 0) rotate(90deg);
        -moz-transform: translate(-50%, 0) rotate(90deg);
        -ms-transform: translate(-50%, 0) rotate(90deg);
        -o-transform: translate(-50%, 0) rotate(90deg);
        transform: translate(-50%, 0) rotate(90deg);
    }

    .timeline-row:nth-child(odd) .year-desc::before {
        -webkit-transform: translate(-50%, 0) rotate(-90deg);
        -moz-transform: translate(-50%, 0) rotate(-90deg);
        -ms-transform: translate(-50%, 0) rotate(-90deg);
        -o-transform: translate(-50%, 0) rotate(-90deg);
        transform: translate(-50%, 0) rotate(-90deg);
    }
}


/* Timeline End*/
.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 30px !important;
}

.iti__selected-dial-code {
    margin-left: 30px !important;
}

.iti.iti--allow-dropdown {
    padding-left: 50px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.intl-tel-input .text {
    padding-left: 60px !important;
}

.intl-tel-input .hide {
    display: none;
}

.intl-text-input .hide {
    display: none;
}

.intl-tel-input .v-hide {
    visibility: hidden;
}

.intl-text-input .v-hide {
    visibility: hidden;
}

.intl-tel-input input,
.intl-tel-input input[type=text],
.intl-tel-input input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0;
}

.intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}

/* Pricing */

.text-center {
    text-align: center;
}

.pricing-col {
    display: inline-block;
    width: 33%;
    padding: 16px;
    text-align: center;
    box-sizing: border-box;
    vertical-align: top;
}

@media only screen and (max-width: 1100px) {
    .pricing-col {
        width: 49%;
    }
}

@media only screen and (max-width: 768px) {
    .pricing-col {
        width: 100%;
    }
}

.pricing-container {
    text-align: center;
    padding: 16px 32px;
    border: 8px solid #efefef;
    border-radius: 4px;
    vertical-align: top;
}

.pricing-container img {
    display: block;
    margin: auto auto 8px auto;
    width: 150px;
    transition: .3s;
    border-radius: 50%;
}

.pricing-container img:hover {
    position: relative;
    transform: scale(1.05);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.pricing-container h3 {
    font-size: 24px;
    margin: 8px 0 0 0;
    color: #000;
}

.pricing-container .pricing-button~div h3 {
    font-size: 18px;
}

.pricing-container .pricing-button~div h3 span {
    font-size: 24px;
}

.pricing-container .pricing-button~div h3 span::after {
    content: "*";
}

.pricing-container h4>h3 {
    margin: 0 0 8px 0;
}

.pricing-container h4 {
    font-size: 18px;
    margin: 0 0 4px 0;
}

.pricing-container p {
    margin: 0;
}

span[year*="£"]::before {
    content: "From ";
}

h3 span[year*="£"]::before {
    font-size: 14px;
    margin-right: 4px;
}

h4 span[year*="£"]::before {
    font-size: 13px;
}

.pricing-button {
    cursor: pointer;
    position: relative;
    background-color: #efefef;
    border-radius: 30px;
    width: 250px;
    height: 46px;
    margin: 16px auto 10px auto;
}

.pricing-button .pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #bc032a;
    width: 125px;
    height: 46px;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.pricing-button .pricing-overlay.active {
    left: 50%;
}

.pricing-button .pricing-option {
    font-family: var(--first-font);
    position: relative;
    float: left;
    width: 125px;
    height: 46px;
    line-height: 15px;
    padding: 8px 12px;
    font-size: 15px;
    user-select: none;
    box-sizing: border-box;
}

.pricing-button .pricing-option:last-child {
    line-height: 30px;
}

.pricing-button .pricing-option b {
    text-transform: uppercase;
    color: #bc032a;
    font-size: 20px;
    text-decoration: underline;
}

.pricing-button .pricing-option.active,
.pricing-button .pricing-option.active b {
    color: #fff;
}

@media only screen and (max-width: 420px) {
    .pricing-button {
        transform: translate(-9%) scale(0.9);
    }
}

.pricing-row {
    padding: 1px 8px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 4px;
    margin: 8px 0;
}

.pricing-row .row {
    border-bottom: solid 2px #bc032a;
}

.pricing-row .row:last-child {
    border-bottom: 0;
}

.pricing-row .row [class*="col-"] {
    padding: 8px 0;
    font-size: 16px;
    text-align: left;
}

.pricing-row .row .col-7,
.pricing-row .row .col-6:last-child {
    padding-left: 8px;
    text-align: center;
}

.pricing-row .row .col-7 {
    max-width: 58.33%;
}

.pricing-row .row .col-6 {
    max-width: 50%;
}

.pricing-row .row .col-5 {
    max-width: 41.66%;
}

.pricing-container .largecta {
    font-size: 24px;
    margin-top: 16px;
}

/* Table */

.smart-red-table {
    max-width: 1200px;
    margin: auto;
    background-color: var(--first-color);
    padding: 12px 32px;
    border: 8px solid #efefef;
    border-radius: 4px;
    position: relative;
}

/* .smart-red-table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 8px solid var(--first-color);
    border-radius: 4px;
} */

.smart-red-table tr {
    border-bottom: solid 2px #000444;
    background-color: #fff;
}

.smart-red-table tr:nth-child(2) td:first-child {
    border-top-left-radius: 10px;
}

.smart-red-table tr:nth-child(2) td:last-child {
    border-top-right-radius: 10px;
}

.smart-red-table tr:nth-child(2) {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.smart-red-table tr:nth-last-child(2) {
    border-bottom: 0;
}

.smart-red-table tr:nth-last-child(2) td:first-child {
    border-bottom-left-radius: 4px;
}

.smart-red-table tr:nth-last-child(2) td:last-child {
    border-bottom-right-radius: 4px;
}

.smart-red-table tr:first-child,
.smart-red-table tr:last-child {
    background-color: var(--first-color);
    color: #fff;
    font-weight: bold;
    text-align: left;
    border: 0;
    font-size: 18px;
}

.smart-red-table tr:first-child th {
    padding-bottom: 16px;
}

.smart-red-table tr:last-child th {
    padding-top: 16px;
}

.smart-red-table th,
.smart-red-table td {
    padding: 8px 16px;
    width: 25%;
}

.smart-red-table td {
    transition: 0.3s;
    font-size: 16px;
}

.smart-red-table td:first-child {
    font-weight: bold;
}

/* .smart-red-table td:hover  {
    background-color: grey;
} */

/* Options */

.option-card {
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
    transition: 0.3s ease-in-out;
    width: 40%;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    height: 400px;
    width: 300px;
    border-radius: 4px;
    overflow: hidden;
    animation-name: optionCard;
    animation-timing-function: ease-out;
    animation-duration: 1s;
}

.option-card:last-child {
    animation-delay: .25s;
}

.option-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 30%));
}

.option-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.option-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
}

.option-text {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    padding: 16px;
    text-align: left;
}

.option-text span {
    color: #fff;
    display: block;
}

.option-text span:first-child {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

@keyframes optionCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media only screen and (max-width: 730px) {
    .option-card {
        display: block;
        margin: 16px 0;
    }
}

/* Integration */

.zig-zag-sticky {
    position: relative;
    overflow: auto;
    background-color: var(--second-color);
}

.zig-zag-sticky .col-sticky {
    width: 192px;
    float: left;
    padding: 16px 8px;
}

.zig-zag-sticky .col-sticky h3 {
    cursor: pointer;
    color: #818181;
    margin: 16px 8px;
    transition: .3s;
    display: table;
    font-size: 16px;
}

.zig-zag-sticky .col-sticky h3:hover,
.zig-zag-sticky .col-sticky h3.active {
    color: #f1f1f1;
}

.zig-zag-sticky.active .col-sticky,
.zig-zag-sticky.deactive .col-sticky {
    left: 0;
}

.zig-zag-sticky.active .col-sticky {
    position: fixed;
    top: 90.4px;
}

.zig-zag-sticky.deactive .col-sticky {
    position: absolute;
    bottom: 0;
}

.zig-zag-sticky.active .col-sticky.indent {
    left: 250px;
}

.zig-zag-sticky .col-static {
    width: calc(100% - 192px);
    float: right;
    background-color: #fff;
}

@media only screen and (max-width: 768px) {
    .zig-zag-sticky .col-sticky {
        display: none;
    }

    .zig-zag-sticky .col-static {
        width: 100%;
    }
}

/* Expander */

.expander-img {
    position: relative;
    background-color: #fff;
}

.expander-img img {
    display: block;
    width: 100%;
    object-fit: contain;
    background-color: #fff;
    padding: 2%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.expander-img img:last-child {
    position: relative;
    z-index: -1;
    opacity: 0;
}

.expander-img img:first-child {
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
}

.expander-img img:first-child:not(.active):hover {
    cursor: pointer;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.expander-img img.active {
    position: fixed;
    z-index: 2;
    max-width: 80%;
    max-height: 80%;
}

@media only screen and (max-width: 1200px) {
    .expander-img img.active {
        position: absolute;
        max-width: none;
        max-height: none;
    }
}

h2[id^=heading] {
    clear: both;
    margin: 0;
    padding: 32px 32px 0 32px;
    color: #ad2330;
}

.integration-panel {
    box-sizing: border-box;
    display: block;
    float: left;
    width: 16.66%;
    padding: 2%;
}

.integration-panel .integration-image {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.integration-panel .integration-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.integration-panel h3 {
    color: #000444;
    margin: 8px 0 0 0 !important;
    text-align: center;
    font-size: 18px;
}

@media only screen and (max-width: 1200px) {
    .integration-panel {
        width: 20%;
    }
}

@media only screen and (max-width: 992px) {
    .integration-panel {
        width: 25%;
    }
}

@media only screen and (max-width: 768px) {
    .integration-panel {
        width: 33.33%;
    }
}

@media only screen and (max-width: 600px) {
    .integration-panel {
        width: 50%;
    }
}

/* Features */

.feature-container {
    text-align: left;
    overflow: auto;
}

.feature-container::-webkit-scrollbar {
    width: 10px;
}

.feature-container::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 8px;
}

.feature-container h2 {
    font-size: 20px;
    color: #ad2330;
    margin: 0 8px 16px 8px;
}

.feature-row::after {
    content: "";
    clear: both;
    display: table;
}

.feature-row h3 {
    font-size: 16px;
    color: #000444;
    margin: 8px;
    clear: both;
}

.feature-col {
    box-sizing: border-box;
    position: relative;
    margin: 0 8px;
    font-size: 12px;
    color: #000444;
    border-bottom: solid 2px lightgrey;
    padding: 8px 8px 8px 28px;
    float: left;
    width: calc(50% - 16px);
}

.feature-col:nth-last-child(2) .feature-col:last-of-type {
    border-bottom: 0;
}

.feature-col i {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #ad2330;
}

.feature-key {
    font-size: 12px;
    margin: 8px 8px 0 8px;
    line-height: 1;
    clear: both;
}

@media only screen and (max-width: 768px) {
    .feature-col {
        width: calc(100% - 16px);
    }
}