@font-face {
    font-family: 'PF Square Sans Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('PF Square Sans Pro Regular'), url('../fonts/PFSquareSansProRegular_35489.woff') format('woff');
}
@font-face {
    font-family: 'PF Square Sans Pro Thin';
    font-style: normal;
    font-weight: normal;
    src: local('PF Square Sans Pro Thin'), url('../fonts/PFSquareSansProThin_35490.woff') format('woff');
}
@font-face {
    font-family: 'PF Square Sans Pro Light';
    font-style: normal;
    font-weight: normal;
    src: local('PF Square Sans Pro Light'), url('../fonts/PFSquareSansProLight_35485.woff') format('woff');
}
@font-face {
    font-family: 'PF Square Sans Pro Medium';
    font-style: normal;
    font-weight: normal;
    src: local('PF Square Sans Pro Medium'), url('../fonts/PFSquareSansProMedium_35487.woff') format('woff');
}
@font-face {
    font-family: 'PF Square Sans Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('PF Square Sans Pro Bold'), url('../fonts/PFSquareSansProBold_35480.woff') format('woff');
}
@font-face {
    font-family: 'PF Square Sans Pro Extra Black';
    font-style: normal;
    font-weight: normal;
    src: local('PF Square Sans Pro Extra Black'), url('../fonts/PFSquareSansProExtraBlack_35482.woff') format('woff');
}
body {
    /*font-family: 'Exo', sans-serif;*/
    font-family: 'PF Square Sans Pro Regular', sans-serif;
    margin: 0 auto;
}

svg {
    pointer-events:none;
}

/* universal */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.sectionWrapper {
    width: 80%;
}
.blueButton {
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    line-height: 22px;
    font-size: 16px;
    padding: 10px 20px;
    color: white;
    background-color: dodgerblue;
    border: 1px solid transparent;
    cursor: pointer;
    height: fit-content;
    transition-duration: 300ms;
}
.blueButton.center {
    justify-content:center;
}
.blueButton:hover:not(.nonHover) {
    background-color: #05c;
}
.whiteButton {
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    line-height: 22px;
    font-size: 16px;
    padding: 10px 20px;
    color: dodgerblue;
    background-color: transparent;
    border: 1px solid dodgerblue;
    height: fit-content;
    transition-duration: 300ms;
    cursor: pointer;
}
.tabBtn {
    padding: 12.5px 20px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    transition-duration: 500ms;
    font-family: 'PF Square Sans Pro Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    cursor: pointer;
    background-color: white;
}
.tabBtn:hover {
    color: white;
    background-color: dodgerblue;
}
.tabBtn:active, .tabBtn:visited, .tabBtn.active {
    color: white;
    background-color: black;
}
h1 {
    font-size: 86px;
    letter-spacing: -0.75px;
    font-weight: 600;
    margin-top:2rem;
    margin-bottom:2rem;
}
h2 {
    font-size: 62px;
    line-height: 62px;
    letter-spacing: -0.75px;
}
h3 {
    font-size: 50px;
    line-height: 56px;
}
h4 {
    font-size: 32px;
    line-height: 38px;
    margin: 0;
 }
h5 {
    font-size: 16px;
    line-height: 28px;
}
.paragraphSmall {
    font-size: 16px;
    line-height: 24px;
}
.paragraph {
    font-size: 20px;
    line-height: 26px;
}
.paragraphBig {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.25px;
}
span {
    display: flex;
    align-items: center;
}
ul {
    display: flex;
    flex-direction: row;
    margin: 0 !important;
}
li {
    list-style-type: none;
}
a {
    color: dodgerblue;
    font-weight: 600;
    text-decoration: none;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 11;
}
.flex {
    display: flex !important;
}
.hidden {
    display: none;
}
/* universal end */

#headerNav {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    padding: 0 4px 0;
    font-family: 'PF Square Sans Pro Medium', sans-serif;
    -webkit-tap-highlight-color: transparent;
    margin: 0 1rem -1px;
}
#headerNav div {
    display: flex;
    flex-direction: row;
    align-items: center;
}
#headerNav li {
    height: auto;
    text-align: center;
}
#headerNav li:after {
    display      : block;
    content      : '';
    border-bottom: solid 2px black;
    transform    : scaleX(0);
    transition   : transform 300ms ease-in-out;
}
#headerNav li:hover:after {
        transform: scaleX(1);
}
#headerNav li:after {
    transform-origin: 0 50%;
}
#headerNav li{
    padding-right: 1.5rem;
    list-style-type: none;
}
#headerNav li:last-of-type{
    padding-right: 0;
}
#headerNav a {
    text-decoration: none;
    list-style-type: none;
    color: black;
    display: flex;
    align-items: center;
    padding:18px 0;
    cursor: pointer;
    font-weight: 400;
}
#leftNav {
    width: 50%;
}
#leftNav ul {
    padding-left: 3rem;
}
#rightNav{
    width: 50%;
    display: flex;
    justify-content: end;
}
#hamburgerDiv, .checkbox {
    display: none;
}

.subNav {
    display: none;
    width: 200px;
    border: 1px solid lightgray;
    padding: 0 20px;
    position: absolute;
    top: 57.5px;
    left: 393px;;
    background-color: white;
    font-size: 16px;
    z-index: 10;
    align-self: center;
}
.subNav ul {
    display: flex;
    flex-direction: column;
    padding:30px 10px !important;
    gap:2rem;
    font-weight: 500;
}
.subNav ul li {
    cursor: pointer;
}
.subNav ul li:last-of-type {
    padding-right: 1.5rem !important;
}
.subNav ul li a {
    padding:0 !important;
}
.darkNav .subNav {
    background-color: black;
    color: white;
    border: 1px solid dimgrey;
}

.menu-items {
    display: none;
}

/* footer */
footer {
    color: whitesmoke;
    padding:60px 0;
    font-size: 14px;
    border-top:1px solid white;
}
footer a {
    color: whitesmoke;
    font-size: 14px;
    font-weight: 600;
    padding:6px 0;
}
footer #wrapper {
    width: 74%;
    margin: 0 auto;
}
footer #lang {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
    padding:20px 0;
}
@media (max-width:500px) {
    footer #lang {
        flex-direction:column !important;
        align-items:center;
        gap:1rem;
    }
}
footer #lang button {
    background-color: transparent;
    color:whitesmoke;
    outline: none;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
    gap:0.5rem;
    text-transform: uppercase;
}
footer #lang, footer #lang #social {
    display: flex;
    flex-direction: row;
}
#social {
    gap:1rem;
    justify-content: space-between;
}
#social a svg {
    fill:white;
    width:14px;
}
#social a[title="facebook"] svg {
    width:9px;
}
#copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0 0;
}
#copyright span {
    opacity: 50%;
    display: flex;
    align-items: baseline;
}
#copyright div ul {
    color: whitesmoke;
    flex-direction: column;
}
#copyright div ul li {
    display: flex;
    justify-content: end;
}
footer nav div, footer nav div div ul, #copyright div {
    display: flex;
    flex-direction: column;
}
footer nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap:2rem;
    flex-wrap:wrap;
}
footer nav div {
    padding-bottom: 30px;
}
footer nav h6 {
    opacity: 50%;
    font-size: 16px;
    padding-bottom: 10px;
    margin: 0;
}
footer nav ul.navLinksList {
padding: 0!important;
}
.navLinksList li {
    padding: 6px 0;
}
#langModal {
    position: fixed;
    bottom: -1000px;
    background-color: white;
    border-radius: 5px;
    color: black;
    display: grid;
    font-size: 24px;
    transition-duration: 500ms;
    z-index: 12;
    padding:1rem 1rem 2rem 1rem;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    width:150px;
    height:max-content;
}
#langModal h4{
    margin: 0 0 6px 0;
    font-weight: 400;
}
#langModal ul {
    padding: 0.5rem 0;
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items:center;
}
#langModal ul li a{
    font-size: 16px;
    padding: 2px 0;
}

#langModal ul li a.disabled {
    pointer-events: none;
    color: lightgray;
}
#langModal button {
    border-radius: 5px;
    background-color: #f2f2f2;
    outline: none;
    border: 0;
    padding: 10px;
    display: flex;
    justify-self: right;
    cursor:pointer;
    font-weight: bold;
}

#langModal button svg {
    width:14px;
    height:14px;
}
#langModal button:hover {
    background-color: darkgray;
}

/*hero section*/
.heroSection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 0 50px;
}
.heroLeft {
    width: 32%;
}
.heroLeft h2 {
    letter-spacing: 1px;
    line-height: 58px;
    margin: 0.50em 0;
}
.heroLeft p {
    font-weight: 400;
}
.heroLeft > div {
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    gap:0.5rem;
}
.contactLink {
    margin-left: 0.5rem;
}
.heroRight {
    width: 60%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items:center;
}
.heroRight img {
    object-fit: cover;
    border-radius: 25px;
}
/*#heroRight img:nth-of-type(2) {*/
/*    margin-left: 2rem;*/
/*}*/
/* tabbar section*/

.tabBar .sectionWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tabBar .sectionWrapper > .tabBarLinksDiv {
    max-width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
}
.tabBar .sectionWrapper > .tabBarLinksDiv > ul {
    padding: 10px 0;
    gap:1rem;
    flex-wrap:wrap;
}
.navigationTabsTopBar {
    padding:2rem 0;
}
.tabBarBtns {
    display: none;
    flex-direction: row;
    align-items: center;
}
.hiddenSelectedTab {
    display: none;
}
.tabSection {
    display: flex;
}

@media (max-width:500px) {
    .tabSection {
        padding-bottom:0rem !important;
    }
}

/* videos section with banner beneath */
.videos {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}
.videos > div {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-between;
    flex-wrap:wrap;
}
.videos .title h2, .listPointsHeader > div > h2 {
    width: 50%;
}
.videoCards {
    width: 31%;
    /*max-height: 700px;*/
}
.videoCards img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.videoCards p {
    margin: 0.5em 0;
}
.videoCards p a, #banner a {
    display: inline;
    color: dodgerblue;
    font-weight: 600;
}
.banner {
    margin:1rem auto;
    width:80%;
    position:relative;
}

@media (max-width:1023px) {
    .banner img {
        width:auto !important;
        margin:0 auto;
        display:block;
        max-width:100%;
    }

    .banner .content {
        text-align:center;
    }
}

.banner .content {
    position:absolute;
    top:50%;
    bottom:50%;
    left:5%;
    color:black;
    z-index:1;
    max-width:42%;
    margin-top:auto;
    margin-bottom:auto;
    height:max-content;
    box-sizing:border-box;
}

.banner .content .buttons {
    display:flex;
    gap:0.5rem;
    flex-wrap:wrap;
    margin:1rem 0;
}

@media (max-width:1024px) {
    .banner .content .buttons {
        justify-content:center;
    }
}

.banner .play {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    cursor:pointer;
}

.banner .play svg {
    width:64px;
    fill:#1e90ff;
    transition:0.3s ease fill;
}

@media (max-width:1024px) {
    .banner .play {
        position:static;
        top:unset;
        left:unset;
        transform:unset;
        order:2;
        margin:1rem auto;
        display:block;
        width:max-content;
    }
}

@media (hover:hover) {
    .banner .play svg:hover {
        fill:#0055cc;
    }
}

.banner .embed {
    display:none;
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:3;
}

.banner .overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    z-index:2;
    display:none;
}

@media (max-width:1024px) {
    .banner .embed {
        width:90%;
    }

    .banner .embed iframe {
        width:100%;
    }
}

.freeze {
    overflow:hidden;
}

.banner .content .buttons .button {
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    line-height: 22px;
    font-size: 16px;
    padding: 10px 20px;
    color: dodgerblue;
    background-color: transparent;
    height: fit-content;
    transition-duration: 300ms;
    cursor: pointer;
}

@media (max-width:1024px) {
    .banner {
        display:flex;
        flex-direction:column;
    }
    .banner .content {
        position:relative;
        top:unset;
        left:unset;
        max-width:100%;
        width:100%;
        margin:1rem 0;
        order:1;
    }
    .banner picture {
        order:3;
    }
}

.banner .content p {
    font-size: 32px;
    line-height: 38px;
    margin:0;
}
@media only screen and (min-width: 1680px) {
    .banner {
        max-width:1400px;
    }
}

@media (max-width:1024px) {
    .banner {
        max-width:100%;
        width:100%;
        padding:0 1rem;
        box-sizing:border-box;
    }
}
.banner img {
    width:100%;
    height:auto;
}
/* operations section */
.listPoints {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.listPointsHeader {
    display: flex;
    flex-direction: column;
    width: 80%;
}


.listPointsHeader h2 {
    padding-right:1rem;
    box-sizing:border-box;
}

@media (max-width:1024px) {
    .listPointsHeader h2 {
        padding-right:0;
    }
}
.listPointsHeader > div, .columnTitles, .operationRow {
    display: flex;
    flex-direction: row;
}
.listPointsHeader > div > h2, .listPointsHeader > div > p, .operationRow > div {
    width: 50%;
    margin-top: 0;
}
.operationRows {
    display: flex;
    flex-direction: column !important;
}
.operationRow {
    padding: 30px 0;
}
.operationRow > div:first-child {
    display: flex;
}
.operationRow h4 {
    display: flex;
    align-items:center;
    font-weight: 400;
    margin: 0;
}
.operationRowNumber {
    border: 2px solid black;
    border-radius: 50%;
    width: max-content;
    padding: 0 7px;
    margin-right: 10px;
    font-size: 20px;
    height: 24px;
    font-weight: 600;
}
.operationSpans > span {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
}
.operationSpans > span > a {
    color: dodgerblue;
    font-weight: 600;
    padding: 0;
}
.operationSpans > span:last-of-type {
    margin-bottom: 0;
}

.columnTitles, .operationRow {
    border-bottom: 1px solid #d9d9d9;

}
.columnTitle {
    width: 50%;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}
.moreLessBtn {
    color: dodgerblue;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
}
.slideDown {
    display: none;
}

/* FAQ section */
#faq h2 {
    margin: 0 0 30px 0;
    font-weight: 400;
}
#faq {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    color: white;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
}
#faq > div {
    width: 80%;
}
#faq > div > div, .question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#faq ul {
    width: 48%;
    display: flex;
    flex-direction: column;
    padding: 0;

}
.faqSingle {
    border-bottom: 1px solid #d9d9d9;
    padding: 30px 0;
    width: 100%;
}
.faqSingle:first-of-type {
    border-top:1px solid #d9d9d9;
}
.question {
    font-size: 20px;
    line-height: 26px;
}
.answer {
    display: none;
    font-size: 16px;
    line-height: 24px;
    padding-top: 10px;
}
.answer span a{
    margin: 0;
    color: dodgerblue;
    font-weight: 600;
    padding: 0;
    display: contents;
}
.plus-minus-toggle {
    cursor: pointer;
    height: 21px;
    position: relative;
    width: 21px;
    -webkit-tap-highlight-color: transparent;
}
.plus-minus-toggle:before, .plus-minus-toggle:after {
    background: dodgerblue;
    content: '';
    height: 5px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 21px;
    transition: transform 500ms ease;
    border-radius: 10px;
}
.plus-minus-toggle:after {
    transform-origin: center;
}
.plus-minus-toggle.collapsed:after {
    transform: rotate(90deg);
}
.plus-minus-toggle.collapsed:before {
    transform: rotate(180deg);
}
.faqPar {
    margin: 120px 0;
    font-size: 12px;
    line-height: 22px;
}

/*support section*/
.gradientHeroWrapper {
    color: white;
    text-align: center;
    padding: 300px 0;
    position: relative;
}
@media (max-width:768px) {
    .gradientHeroWrapper {
        padding: 100px 0;
    }
}
.gradientHeroWrapper .sectionWrapper {
    z-index: 10;
    position: relative;
}
.gradientHeroWrapper .paragraph {
    max-width: 50%;
    margin: 0 auto 25px;
}
.gradientHeroWrapper .blueButton {
    margin: 0 auto;
}
.gradient {
    width: 700px;
    height: 600px;
    filter: blur(50px);
    animation: rotate 10s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#homeContent .accordionSection {
    background:black;
    color:white;
}

/* customize secion */
.slidingHeroSection .sectionWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 120px 0;
}
.slidingHeroSection .sectionWrapper > div {
    width: 46%;
}

/* universal link arrow*/
.linkArrow:after {
    content: "→";
    pointer-events: none;
    display: inline-block;
    margin-left: 0.25em;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.linkArrow:hover::after {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

/* slider section */
#sellers {
    box-sizing: border-box;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 60px 0;
}
.slider {
    height: 100%;
}
.slider-track {
    position: relative;
    left: calc(-66% - 12.5rem*2);
    height: inherit;
    display: flex;
    gap: 2rem;
    list-style-type: none;
    transition: transform 0.8s;
    width: 100%;

}
.slider-track .item {
    min-width: 90%;
    background-position: center;
    background-size: cover;
    min-height: 550px;
    width: 70px;
    border-radius: 25px;
}
.slider-track .item > div {
    background-color: #005a44;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: space-between;
    overflow: hidden;
}
.slider-track .item > div > a {
    width: 100%;
    height: 100%;
}
.slider-track .item > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
.slider-track .item > div > div, .slider-track .item > div > span {
    padding: 40px 40px;
}
.slider-track .item a {
    color: white;
}
.slider-track .textCard a:after {
    content: "→";
    pointer-events: none;
    display: inline-block;
    margin-left: 0.25em;
}
/*.slider-track .videoPlayBtn a:after {*/
/*    color: black;*/
/*    position: relative;*/
/*    bottom: 60px;*/
/*    font-size: 50px;*/
/*}*/
.slider-track .item .quote {
    font-size: 40px;
    line-height: 46px;
}
/* play btn and youtube modal slider sellers section */
.gg-play-button {
    box-sizing: border-box;
    position: absolute;
    display: block;
    transform: scale(5);
    width: 22px;
    height: 22px;
    top: 50px;
    cursor: pointer;
}
.gg-play-button::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 0;
    height: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid;
    top: 50px;
    left: 240%;
    color: black;
}
/* modal*/
.play-video {
    display: inline-block;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    background: #40c0c0;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
}
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 100;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 10;
    top: 50%;
    transform: /*translateX(-50%)*/ translateY(-50%);
}
.video-container {
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    height: 0;
    box-shadow: 0 0 15px #333;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.close-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    right: 35px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 100%;
    border: 1px #fff solid;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    background-color: #737373;
    text-align: center;
    text-decoration: none;
    color: #fff;
    z-index: 101;
    transition: all 0.3s ease;
}
.-webkit-.touchevents .close-modal {
    line-height: 0.5;
}
.close-modal svg {
    width: 100%;
}
.close-modal:hover {
    opacity: 0.8;
    color: #fff;
}
/**/
.textCard h2 {
    margin: 50px 0 10px;
}
.btn__arrow {
    height: 40px;
    position: absolute;
    top: 50%;
    width: 40px;
    border-radius: 50%;
    background-color: white;
    transform: translateY(-50%);
    cursor: pointer;
    border: 1px solid lightgrey;
}
.btn__arrow svg {
    position: absolute;
    left: 28%;
    top: 30%;
    width: 40%;
    height: 40%;
}
.arrow {
    fill: #333;
    transform: translateX(15%);
}
.left { left: 2%; }
.right {
    right: 2%;
    transform: translate(0%, -50%) rotate(180deg);
}
@media (width < 501px) {
    .slider-track {
        left: calc(-100% - 0.5rem * 2);
    }
    .slider-track .item {
        min-width: 50%;
    }
}
@media (width < 700px) {
    .slider-track {
        left: calc(-200% - 0.5rem * 2);
    }
    .slider-track .item {
        min-width: 100%;
    }
}

.highway {
    max-width:100%;
    overflow:hidden;
    padding:4rem 0;
}
.splide__pagination__page.is-active {
    background-color: #1e90ff !important;
}
.splide__arrow {
    background:#1e90ff !important;
}

.splide__arrow svg {
    fill:white !important;
}
.highway .splide__pagination {
    display:none !important;
}

.highway .splide__arrow {
    display:none !important;
}


.highway .splide__slide {
    display:flex;
    justify-content:center;
    align-items:center;
}
.highway .splide__slide img  {
    max-width:550px;
}

.splide__slide img {
    width:100%;
    height:auto;
    object-fit:contain;
}

.splide__slide {
    position:relative;
}
.splide__pagination {
    bottom:-1.5rem !important;
}

.splide__slide .slideTitle {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    color:white;
    font-size:1.2rem;
}

.slideEmbed .embed {
    display:none;
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:3;
}

.slideEmbed .overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    z-index:2;
    display:none;
}

.slider .play {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    cursor:pointer;
}

.slider .play svg {
    width:64px;
    fill:white;
    transition:0.3s ease fill;
}

#embedView {
    display:none;
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:9;
}

#embedOverlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    z-index:8;
    display:none;
}

@media (max-width:1024px) {
    #embedView {
        width:90%;
    }

    #embedView iframe {
        width:100%;
    }
}


@media (max-width:1024px) {
    .slideEmbed .embed {
        width:90%;
    }

    .slideEmbed .embed iframe {
        width:100%;
    }
}

.highwayBarrier {
    overflow: hidden;
    position: relative;
}

.slider {
    padding: 2rem 0;
}

.highwayBarrier:before {
    top: 0;
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    content: " ";
    position: absolute;
    z-index: 8;
    width: 150px;
    height: 100%;
}

.highwayBarrier:after {
    top: 0;
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    content: " ";
    position: absolute;
    z-index: 8;
    width: 150px;
    height: 100%;
}

/* looping logos section */
section.slide-option {
    margin: 0 0 50px 0;
}
section.slide-option .no-marg {
    margin: 0 0 0 0;
}

.verticalSlider {
    height: 500px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    -webkit-mask-image: -webkit-gradient(linear, 0 100%, 0 0, from(transparent), to(transparent), color-stop(50%, black));}

.verticalSlider img {
    width:auto !important;
    max-width:100%;
}
/* PRICING PAGE*/
/**/
#pricingHeader .sectionWrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}
#pricingHeader .sectionWrapper > .textWrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}
#pricingHeader .sectionWrapper > .textWrapper > h1 {
    width: 66%;
}
#pricingHeader .sectionWrapper > .textWrapper > p {
    display: flex;
    width: 34%;
    align-items: center;
}
#pricingHeader .imageWrapper {
    height: 350px;
    overflow: hidden;
    border-radius: 25px;
}
.imageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* pricing FAQ section*/
#pricingFaq .sectionWrapper {
    display: flex;
    flex-direction: row;
    padding: 120px 0;
}
#pricingFaq .sectionWrapper > h2{
    width: 34%;
    font-weight: 600;
}
#pricingFaq .sectionWrapper > div {
    width: 66%;
}
#pricingFaq .sectionWrapper ul {
    flex-direction: column;
}
#pricingFaq .question {
    font-weight: 600;
    font-size: 24px;
}
/**/
#pricingHero {
    margin-bottom: 120px;
}
.heroRight img{
    width: 100%;
}
#pricingHero .heroLeft h2{
    font-weight: 600;
}
/**/
.navigationTabsTopBar .tabBarLinksDiv, .navigationTabsTopBar ul {
    width: 100%;
    max-width: 100% !important;
}
.navigationTabsTopBar .tabBtn {
    width: max-content;
    border: 1px solid black;
}
.navigationTabsTopBar .tabBtn:hover {
    border: 1px solid transparent;
}
/* gray cards section */
#grayCards .sectionWrapper > div:first-of-type {
    margin-bottom: 60px;
}
#grayCards h3 {
    margin: 0 0 10px 0;
}
.grayCards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.grayCard {
    background-color: #f2f2f2;
    border-radius: 25px;
    padding: 0 0 30px;
}
.grayCard img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.grayCard span {
    margin: 1rem 0;
}
.grayCard span {
    padding: 0 30px;
}

/* plan cards section */
.planCards {
    margin-bottom: 60px;
}
.planCards h4 {
    margin-top:1rem;
}
.planCards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-direction: row;
    gap: 2rem;
}
.planCard {
    border: 1px solid #d9d9d9;
    padding: 30px;
    border-radius: 25px;
}
.planCard button {
    width: 100%;
    justify-content: center;
}
.planCard .paragraphSmall {
    margin-top: 10px;
}
.planCard .price {
    margin-bottom: 20px;
}

.planCard.highlight {
    border: 2px solid #1e90ff;
}

.billingInterval {
    margin:1rem auto;
    display:flex;
    justify-content:center;
    gap:1rem;
}

.billingInterval .billingSwitch {
    cursor:pointer;
    padding:0.5rem 1rem;
    border-radius:5px;
    background:#f2f2f2;
    font-weight:bold;
    transition:0.3s ease all;
}

.billingInterval .billingSwitch.active {
    background:#1e90ff;
    color:white;
}

.features {
    display:flex;
    flex-direction:column;
    gap:1rem;
}
.features span {
    display:flex;
    gap:0.5rem;
}
.features span svg {
    fill:#1e90ff;
    width:24px;
}
/* fees section */
.contentCard {
    padding:4rem 0;
}
.contentCard .sectionWrapper{
    padding: 80px 120px 120px;
    border-radius: 25px;
    box-sizing:border-box;
}
.contentCard .fees {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-row-gap:2rem;
    grid-column-gap: 1rem;
}
.fee p {
    margin:20px 20px 20px 0;
}
.fee span {
    font-weight: 600;
}
.contentCard a {
    margin-top: 4rem;
    color: black;
    text-decoration: underline;
    transition-duration: 300ms;
    display:block;
}
.contentCard a:hover {
    color: #0055cc;
}
/* tools section */
.tools h3 {
    margin-bottom: 20px;
}
.tools .tabBarLinksDiv {
    max-width: 100%;
}
.tools ul > li:nth-child(1) > button {
    margin-left: 0;
}
.sectionWrapper .tabBarLinksDiv {
    gap:1rem;
}
.roundedCards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-direction: row;
    gap: 2rem;
    margin: 60px 0;
}
.roundedCard {
    flex-direction: column;
}
.roundedCard span {
    margin-top: 50px;
    font-weight: 600;
}
.expand {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
    align-items: center;
}
.expand hr {
    color: #d9d9d9;
    width: 100%;
    background-color: #d9d9d9;
    height: 0px;
    display: flex;
    align-items: center;

}
.expand > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: max-content;
}
.expand span {
    margin: 0 10px;
    color: dodgerblue;
    cursor: pointer;
    font-weight: 600;
}

/* CONTACT PAGE*/
.contact .sectionWrapper {
    width: 72%;
    max-width: 960px;
}
.contactNav #leftNav {
    width: 100% !important;
    justify-content: center;
    border-bottom: 1px solid #d9d9d9;
}
.contact form {
    margin-bottom: 60px;
}
.contact form button {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}
.contact form span {
    display: inline-block;
}
.contact form label {
    font-weight: 600;
    line-height: 28px;
}
.contact form input, .contact form select, .contact form textarea, .mail input, .subscription form input {
    border-radius: 5px;
    padding:11px 17px;
    outline: none;
    border: 1px solid gray;
    font-family: 'PF Square Sans Pro Regular', sans-serif;
    font-size: 16px;
}
.contactHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 40rem;
    text-align: center;
    margin: 60px auto;
}
.grid2cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.gridInputRow {
    display: flex;
    flex-direction: column;
}
.messageRow {
    margin: 1.5rem 0;
}
.contact .phone {
    width: 100% !important;
    padding-left: 56px;
}

.contact label {
    display:flex;
    flex-direction:column;
}
@media (max-width:500px) {
    .contact input,
    .contact select,
    .contact textarea {
        width:100%;
        box-sizing:border-box;
    }
}
.iti__country-list {
    flex-direction: column !important;
}

/* ABOUT PAGE*/

.darkBgSection {
    background-color: black;
    color: white;
}
.lightBgSection {
    color:black;
    background-color:white;
}
.darkNav {
    background-color: black;
}
.darkNav a {
    color: white !important;
}
.darkNav #headerNav li:after {
    border: 1px solid white;
}
.contactPage .sectionWrapper, .justText .sectionWrapper, footer.aboutFooter #wrapper {
    width: 62%;
}
.subscription {
    border-bottom: 1px solid #737373;
    padding: 120px 0;
}
.subscription form {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.subscription h3 {
    padding-top: 10px;
    margin: 0;
}
.subscription h3, .subscription p {
    padding-right: 20rem;
}
.subscription form input {
    width: 50%;
}
.subscription form button{
    margin-left: 20px;
}
.subscription span {
    color: #737373;
    display: inline-block;
}
/* faq alike section */
#faqAlike {
    padding-top: 120px;
}
#faqAlike ul{
    width: 100%;
    display: flex;flex-direction: column;
    padding-left: 0;
}
#faqAlike .faqSingle {
    border-bottom: 1px solid #737373;
    padding:80px 0;
}
#faqAlike .faqSingle:first-of-type {
    border-top: 0;
}
/* pictures sections */
.grid3colsContact {
    grid-template-columns: 1fr 2fr 1fr;
}
.grid2colsContact {
    grid-template-columns: 1fr 2fr;
}
.grid1colContact {
    grid-template-columns: 3fr;
    width: 94%;
}
.picturesWrapper {
    display: grid;
    gap: 2rem;
    padding:80px 30px 0;
}
.picturesWrapper img{
    width: 100%;
    border-radius: 25px;
    height: 440px;
    object-fit: cover;
}
/* just text sections */
.justText {
    padding-top: 80px;
}
.justText .sectionWrapper > *{
    padding-right: 20%;
}
.justTextCentered > div {
    text-align: center;
}
.justText h3, .justTextCentered h3 {
    margin: 20px 0;
}
.dir-row {
    display: flex;
    flex-direction: row;
}
/* about hero */
.aboutHero {
    min-height: 100vh;
}
.aboutHero .sectionWrapper{
    text-align: center;
    padding: 0 0 120px;
    z-index: 2;
}
.aboutHero h2 {
    font-weight: 600;
    margin: 30px 0;
}

.buttonsWrapper {
    width: revert;
    justify-content: center;
    gap: 1em;
    margin: 0 auto;
}
/*darkCartNav*/
.darkCartNav {
    background-color: black !important;
    color: white;
    border: 1px solid dimgrey !important;
}
.whiteHamburger .line {
    background: white !important
}
/* about bottom sticky nav */
#aboutBottomNav {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background-color: black;
    justify-content: center;
    /*display: flex;*/
    height: 62px;
    top: auto !important
}
#aboutBottomNav div {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding:10px 25px;
    justify-content: space-between;
}
#aboutBottomNav .contactSvg {
    background-color: black;
    border: 1px solid #0055cc;
    border-radius: 2px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    margin-right: 1rem;
}
#aboutBottomNav .blueButton {
    width: 100%;
    justify-content: center;
}

/* up/down arrow for submenu */
.toggleArrow {
    width: 12px !important;
    height: 12px;
    position: relative;
    font-size: 12px;
    padding: 0 !important;
    border: 0 !important;
    -webkit-tap-highlight-color: transparent;
}
.toggleArrow span {
    top: 4px;
    position: absolute;
    width: 8px;
    height: 2px;
    background-color: black;
    display: inline-block;
    transition: all 0.2s ease;
    padding: 0 !important;
}
.darkNav .toggleArrow span {
    background-color: white;
}
.toggleArrow span:first-of-type {
    left: 0;
    transform: scale(0.9) rotate(45deg);
}
.toggleArrow span:last-of-type {
    right: 0;
    transform: scale(0.9) rotate(-45deg);
}
.toggleArrow.active span:first-of-type {
    transform: scale(0.9) rotate(-45deg);
}
.toggleArrow.active span:last-of-type {
    transform: scale(0.9) rotate(45deg);
}
.toggleArrow:hover {
    cursor: pointer;
}

#leftNav .toggleArrow {
    margin-top: 4px;
    margin-left: 6px;
}

.tabBar {
    padding:1rem 0;
}


/* fixing showing hamburger sub menu on desktop */
@media only screen and (min-width: 1024px) {
    .menu-items {
        display: none !important;
    }
    section {
        scroll-margin-top: 200px;
    }
}

/* mobile and tablet responsive common */

@media only screen and (max-width: 1024px) {
    /*header responsive mobile*/
    #leftNav .wrapper, #rightNav ul li {
        display: none;
    }
    /* hamburger */
    .checkbox {
        position: absolute;
        display: block;
        height: 32px;
        width: 32px;
        right: 14px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }
    /*input[type='checkbox']:checked ~ .menu-items {*/
    /*    background-color: #292929;*/
    /*}*/
    #hamburgerDiv {
        margin: 0 10px 0 14px;
    }

    .hamburger {
        height: 21px;
        width: 30px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        margin: auto 0;
        z-index: 2;
        flex-direction: column !important;
    }

    .hamburger .line {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        background: #0e2431;
    }

    .hamburger .line-top {
        transform-origin: 0 0;
        transition: transform 0.4s ease-in-out;
    }

    .hamburger .line-middle {
        transition: transform 0.2s ease-in-out;
    }

    .hamburger .line-bottom {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    input[type='checkbox']:checked ~ .hamburger .line-top {
        /*transform: rotate(45deg);*/
        transform: rotate(40deg);
    }

    input[type='checkbox']:checked ~ .hamburger .line-middle {
        transform: scaleY(0);
    }

    input[type='checkbox']:checked ~ .hamburger .line-bottom {
        /*transform: rotate(-45deg);*/
        transform: rotate(-40deg);
    }

    .menu-items {
        display: grid;
        /*gap: 1em;*/
        flex-direction: column !important;
        width: 86%;
        transition-duration: 500ms;
        text-align: center;
        position: fixed;
        right: -89%;
        top: 56px;
        background-color: white;
        z-index: 11;
        height: 100%;
    }

    .menu-items > span {
        font-size: 16px;
        list-style: none;
        color: black;
        padding: 20px 50px 25px 20px;
        border-bottom: 1px solid lightgrey;
        width: -moz-available;
        width: -webkit-fill-available;
        width: fill-available;
        font-family: 'PF Square Sans Pro Medium', sans-serif;
        justify-content: space-between;
    }

    .menu-items span a {
        padding: 0px;
        color: black;
        font-weight: 400;
    }

    /*sub menu*/
    .sub-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #d9d9d9;
        padding-left: 0;
        transition-duration: 300ms;
    }
    .sub-menu li a {
        color: black;
        font-weight: 400;
        padding: 20px;
    }
    /* FAQ section */
    #faq > div > div {
        display: flex;
        flex-direction: column;
    }
    #faq ul {
        width: 100%;
    }
    /* operations start */
    .listPoints {
        margin-bottom: 60px;
    }
    .listPointsHeader > div, .columnTitles, .operationRow {
        display: flex;
        flex-direction: column;
    }
    .listPointsHeader > div > h2, .listPointsHeader > div > p, .operationRow > div {
        width: 100%;
    }
    .listPointsHeader > div.operationRows > div:nth-child(2) {
        border-top: 1px solid #d9d9d9;
    }
    .columnTitles {
        display: none;
    }
    .slideDown {
        display: none;
    }
    .operationRowNumber {
        border: 1px solid black;
        padding: 0px 4px;
        font-size: 12px;
        height: 14px;
    }
    /* operations end*/
    /* tabBar */
    .tabBar .sectionWrapper {
        flex-direction: column;
    }

    .tabBar .sectionWrapper > div {
        flex-direction: column !important;
        width: 100%;
        max-width: 100% !important;
        align-items: start !important;
    }

    .tabBarBtns {
        display: none !important;
    }

    .tabBarLinksDiv > span {
        padding-top: 20px;
    }

    .tabBar .sectionWrapper > .tabBarLinksDiv:not(.navigationTabs) > ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
        padding: 20px 0px 30px;
    }

    .tabBar .sectionWrapper > .tabBarLinksDiv > ul > li > button {
        width: 100%;
    }

    .tabBar .tabBtn {
        margin: 0;
    }


    .sticky ul {
        grid-template-columns: 1fr !important;
    }

    .hiddenSelectedTab {
        padding: 20px 0;
        font-weight: 600;
        border-bottom: 1px solid #d9d9d9;
        width: 100%;
        justify-content: center;
    }
    .hiddenSelectedTab > span {
        width: 80%;
        justify-content: space-between;

    }
    /* tabBar section end */
    .darkMenu-items {
        background-color: black;
    }
    .darkMenu-items span {
        color: white !important;
    }
    .darkMenu-items .toggleArrow span {
        background-color: white;
    }
    div.highway-slider {
        height: 55px;
    }
    .loopingLogos  img {
        height: 55px;
    }
    /* slider width (distance between logos)  */
    .infinite div.highway-barrier ul.highway-lane {
        width: calc(2920px);
    }
    .buttonsWrapper {
        width: revert !important;
        justify-content: center;
        gap: 1em;
    }

}

/* mobile responsive*/

@media only screen and (max-width: 500px) {
    /* universal*/
    section {
        scroll-margin-top: 24rem;
    }
    h1 {
        font-size: 46px;
        line-height: 50px;
    }
    h2 {
        font-size: 38px;
        line-height: 42px;
        letter-spacing: normal;
    }
    h3 {
        font-size: 30px;
        line-height: 36px;
    }
    h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .paragraphBig {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0.25px;
    }

    .paragraph {
        font-size: 16px;
        line-height: 24px;
    }

    /* universal end */
    #headerNav {
        margin: 0 5px;
    }

    /* banner responsove mobile*/
    #banner {
        flex-direction: column !important;
    }

    #banner > div > p {
        padding: 30px;
        margin: 0;
        font-size: 24px;
        line-height: 30px;
    }

    #banner img {
        width: 100%;
    }

    /* footer responsove mobile*/
    footer nav {
        flex-direction: column !important;
        gap:1rem;
    }

    footer nav div {
        text-align: center;
    }

    footer nav > div {
        padding-bottom: 0px;
    }
    footer nav h6 {
        padding-bottom: 14px;
    }
    footer .navLinks {
        display: none;
    }
    .navLinksList li {
        justify-content: center;
        display: flex;
    }
    footer .toggleArrow {
        display: inline-flex;
        margin-left: 0.5rem;
    }
    footer .toggleArrow span {
        background-color: white;
    }

    #copyright {
        flex-direction: column;
    }

    #copyright div ul {
        padding-left: 0;
    }

    #copyright span {
        margin: 20px auto;
    }

    #copyright div ul li {
        margin: 0 auto;
    }

    /*hero section responsive mobile*/
    .heroSection {
        flex-direction: column;
        margin: 0;
        padding: 0 0 30px 0;
    }

    .heroSection > div {
        width: 100%;
    }

    .heroLeft > div {
        flex-direction: column-reverse;
        margin-bottom: 2rem;
    }

    .heroLeft > div > a {
        justify-content: center;
    }

    .heroLeft h2 {
        font-size: 38px;
        line-height: 42px;
        letter-spacing: -1px;
    }

    .contactLink {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .heroRight img {
        width:100%;
        height:auto;
    }

    /* videos responsove mobile*/
    .videos {
        margin: 0;
        padding: 60px 0;
    }

    .videos .title h2 {
        width: 80%;
    }

    .videos > div {
        flex-direction: column;
    }

    .videoCards {
        width: auto;
        margin-bottom: 60px;
    }

    #banner {
        margin: 0 0 4rem 0
    }
    /* support section */
    .gradientHeroWrapper .paragraph {
        max-width: 100%;
    }

    .gradientHeroWrapper .blueButton {
        margin: 0 auto;
    }
    .gradient {
        width: 50%;
        height: 300px;
    }

    /* support section */
    .slidingHeroSection .sectionWrapper {
        flex-direction: column;
        padding: 60px 0;
    }

    .slidingHeroSection .sectionWrapper > div {
        width: 100%;
    }
    .slider-holder {
        margin-top: 60px;
    }

    /* footer */
    #copyright > div > ul {
        flex-direction: column;
    }

    /* pricing page responsive */
    #pricingHeader .sectionWrapper > .textWrapper, #pricingFaq .sectionWrapper {
        flex-direction: column;
    }
    #pricingHeader .sectionWrapper > .textWrapper > h1, #pricingHeader .sectionWrapper > .textWrapper > p {
        width: 100%;
    }
    #pricingHeader p, .navigationTabsTopBar .tabBarLinksDiv li, .roundedCards {
        margin: 0;
    }
    .navigationTabsTopBar .tabBarLinksDiv ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .planCards, .roundedCards {
        grid-template-columns: 1fr;
    }
    .contentCard {
        padding: 60px 0 100px;
        margin-bottom: 60px;
    }
    .contentCard .fees {
        flex-direction: column !important;
    }
    .grayCards {
        grid-template-columns: 1fr;
    }
    #grayCards {
        overflow: hidden;
    }
    .contentCard .sectionWrapper, #pricingFaq .sectionWrapper ul {
        padding: 0;
    }
    .tools div.whiteBgSection.tabBar > div, #pricingFaq .sectionWrapper > div {
        width: 100%;
    }
    .tools div.whiteBgSection.tabBar ul {
        gap: 1rem;
    }
    .expand > div {
        margin: 0 1rem 0 0;
    }
    .expand span {
        margin-right: 0;
    }
    #grayCards .sectionWrapper > div:first-of-type {
        margin-bottom: 30px;
    }
    #pricingFaq .question {
        font-size: 20px;
        line-height: 26px;
    }
    #pricingFaq .sectionWrapper {
        padding: 60px 0;
    }
    #pricingHero {
        margin-bottom: 60px;
    }

    /* CONTACT PAGE */
    .grid2cols {
        grid-template-columns: 1fr;
    }
    .contact .sectionWrapper {
        width: 80%;
    }
    .contact h4 {
        font-size: 24px;
        line-height: 32px;
    }
    /* ABOUT PAGE  */
    .contactPage .sectionWrapper, .justText .sectionWrapper, footer #wrapper,.grid1colContact {
        width: 76% !important;
    }
    .aboutHero h5 {
        letter-spacing: 1.75px;
    }
    .buttonsWrapper {
        width: 100%;
        justify-content: space-around;
    }
    .justText .sectionWrapper, .justTextCentered .sectionWrapper {
        text-align: left
    }
    .grid3colsContact, .grid2colsContact {
        grid-template-columns: 1fr;
    }
    .picturesWrapper {
        width: 76%;
    }
    .picturesWrapper img {
        height: 190px;
        margin: 0 auto;
    }
    .picturesWrapper {
        padding: 80px 0;
    }
    #faqAlike, .justText {
        padding-top: 0;
    }
    .subscription h3, .subscription p, .justText .sectionWrapper > * {
        padding-right: 0;
    }
    .subscription form {
        flex-direction: column;
        margin: 30px 0;
    }
    .subscription form input {
        width: auto;
    }
    .subscription form button {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
    #faqAlike .faqSingle {
        padding: 60px 0;
    }

}

/* TABLET responsive */
@media only screen and (min-width: 501px) and (max-width: 1023px) {
    /* universal */
    h1 {
        font-size: 46px;
        line-height: 50px !important;
    }
    h2 {
        font-size: 38px;
        line-height: 42px !important;
        letter-spacing: revert !important;
    }
    h3 {
        font-size: 30px;
        line-height: 36px !important;
    }
    h4 {
        font-size: 24px;
        line-height: 32px;
    }
    .aboutPage {
        background-color: black;
    }
    .aboutPage h2 {
        font-size: 50px;
        line-height: 58px !important;
    }
    .aboutPage h4 {
        font-size: 32px;
        line-height: 40px !important;
    }
    .aboutPage .paragraphBig {
        font-size: 24px;
        line-height: 34px !important;
    }
    .paragraphBig {
        font-size: 20px;
        line-height: 28px;
    }
    /* end universal */
    #headerNav {
        margin: 0 5px 0 15px;
    }
    .darkMenu-items {
        width: 52%;
    }
    /* index tablet responsive */
    .heroSection {
        flex-direction: column;
        padding: 10px 0 40px;
    }
    .heroSection > div {
        width: 100%;
    }
    .heroLeft > div {
        margin: 1em 0 2em;
    }
    .heroRight img {
        height: auto;
    }
    div.heroLeft > div {
        width: 100%;
        justify-content: space-between;
    }
    div.heroLeft a {
        width: 45%;
        justify-content: center;
    }
    #banner {
        margin: 4em 0 2em;
    }
    #banner p {
        padding: 60px 80px 0px;
        font-size: 24px;
        line-height: 30px;
    }
    #banner img {
        width: auto;
    }
    .gradient {
        width: 40ch;
        height: 36ch;
    }
    /* tabbar section end */
    .videos {
        padding:60px 0;
    }
    .videos > div {
        flex-direction: column;
    }
    .videos > .videoCardsWrapper {
        gap: 60px;
    }
    .videoCards img {
        width: 60%;
    }
    .videoCards {
        width: auto;
        display: flex;
        flex-direction: row;
        gap: 2em;
    }
    .videoCards p {
        align-items: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .videoCards > .paragraphSmall {
        display:none;
    }
    .videoCards a {
        align-items: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .videoCards p a {
        display: contents;
    }
    #title h2 {
        margin-top: 0;
    }
    .tabBar .sectionWrapper > .tabBarLinksDiv > ul {
        padding: 20px 0 0;
    }
    section .sectionWrapper, .videos > div, .listPointsHeader,#faq > div, .contact .sectionWrapper, footer #wrapper {
        width: 86%;
        max-width: 680px;
    }
    .slider-track .item {
        width: 50px;
        min-height: 400px;
        height: 400px;
    }
    .slider-track .item > div > div, .slider-track .item > div > span {
        padding:20px
    }
    .textCard h2 {
        margin: 10px 0;
    }
    /* support section */
    .slidingHeroSection .sectionWrapper {
        flex-direction: column;
        padding: 60px 0;
    }

    .slidingHeroSection .sectionWrapper > div {
        width: 100%;
    }
    .slider-holder {
        margin-top: 100px;
    }
    .slidingHeroSection h2 > br {
        display: none;
    }
    .slidingHeroSection h2, .slidingHeroSection p {
        padding-right: 28%;
    }
    .verticalSlider {
        height: 300px;
    }
    .gradientHeroWrapper {
        padding: 150px 0;
    }
    .gradientHeroWrapper .paragraph {
        max-width: none;
    }

    /* contact page tablet */
    .contactHeader h4 br {
        display: none;
    }
    .grid2cols {
        grid-template-columns: 1fr;
    }

    /* about page tablet */
    .contactPage .sectionWrapper, .justText .sectionWrapper, footer.aboutFooter #wrapper {
        width: 86%;
    }
    .grid2colsContact {
        grid-template-columns: 1fr;
    }
    .grid3colsContact img{
        height: 300px;
    }
    .subscription h3, .subscription p {
        padding-right: 0;
    }
    .subscription form input {
        width: 60%;
    }
    .sub form > button {
        min-width: 104px;
    }

    /* about bottom sticky nav */
    #aboutBottomNav {
        width: 97%;
    }

    /*  pricing page tablet   */
    #pricingHeader .sectionWrapper > .textWrapper {
        flex-direction: column;
    }
    #pricingHeader .sectionWrapper > .textWrapper > h1, #pricingHeader .sectionWrapper > .textWrapper > p {
        width: revert;
    }

    #pricingHeader .sectionWrapper > .textWrapper > h1, #pricingHeader .sectionWrapper > .textWrapper > p {
        text-wrap: balance;
    }
    #pricingHeader .sectionWrapper > .textWrapper > h1 {
        max-inline-size: 20ch;
    }

    .planCards, .roundedCards, .grayCards {
        grid-template-columns: 1fr;
    }
    .planCard .price {
        margin-top: 2em;
    }
    .contentCard .sectionWrapper {
        padding:50px 50px 120px;
        border-radius: 0;
    }
    .contentCard .fees {
        flex-direction: column;
    }
    .fee {
        margin-bottom: 60px;
    }
    #pricingFaq .sectionWrapper {
        flex-direction: column;
        padding-bottom: 60px;
    }
    #pricingFaq .sectionWrapper > div {
        width: 100%;
    }
    #pricingFaq .question {
        font-weight: 400;
    }
    #pricingFaq .sectionWrapper ul {
        padding-left: 0;
    }
    #pricingHero {
        margin-bottom: 60px;
    }
    #planCards {
        margin-top: 60px;
    }
    .gg-play-button::after {
        top: 34px;
        left: 210%;
    }
    .tools div.whiteBgSection.tabBar > div {
        width: 100%;
    }
}

/* wide screens responsive */
@media only screen and (min-width: 1680px) {
    .hero .heroLeft {
        padding: 100px 0;
    }
    .sectionWrapper, .videos > div, .listPointsHeader, #faq > div, footer #wrapper {
        max-width: 1400px;
    }
}

#notFound {
    min-height:55vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-content:center;
}
#notFound h2 {
    text-align:center;
    font-size:2rem;
}

#notFound p {
    font-size:1.5rem;
    text-align:center;
    padding:0 1rem;
}

#notFound a {
    display:block;
    width:max-content;
    margin:1rem auto;
}

#overlay {
    display:none;
    position:fixed;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    top:3.6rem;
}

#overlay.active {
    display:block;
}


.alignLeft {
    text-align:left;
}

.alignCenter {
    text-align:center;
}

.alignRight {
    text-align:right;
}

.belowPricingText {
    margin-bottom:10px;
}

.accordion {
    margin-bottom:2rem;
    align-items: start;
}

.accordion.multiple {
    gap:2rem;
}
@media (max-width:768px) {
    .accordion {
        grid-template-columns:1fr !important;
    }
    .accordion.multiple {
        gap:unset;
    }
    .accordion.multiple .accordionSegment {
        border-bottom:none !important;
    }
    .accordion.multiple .accordionSegment:last-of-type {
        border-bottom: 1px solid #d9d9d9 !important;
    }
}
.accordionSegment {
    display:grid;
    grid-template-columns: 0.9fr 0.1fr;
    border-top: 1px solid #d9d9d9;
    align-items:center;
}

.accordionSegment p {
    margin-top:0;
}
.accordion.single .accordionSegment:last-of-type {
    border-bottom: 1px solid #d9d9d9;
}

.accordion.multiple .accordionSegment {
    border-bottom: 1px solid #d9d9d9;
}
.accordionSegment .plus-minus-toggle {
    order:2;
    margin-left:auto;
}
.accordionSegment h3 {
    order:1;
    font-size:1.5rem;
    margin:1rem 0;
}
.accordionDescription {
    margin-bottom:4rem;
    margin-top:6rem;
}
@media (max-width:1200px) {
    .accordionSegment h3 {
        font-size: 1.5rem;
    }
}

.accordionSegment .accordionContent {
    display:none;
    order:3;
    flex-basis:100%;
}

.accordionSegment .accordionContent.active {
    display:block;
}
.videos {
    padding-top:0 !important;
}
@media (max-width:1024px) {
    .videos .title h2 {
        width:100%;
        margin-top:0;
    }
}

.ql-align-left {
    text-align: left;
}

.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}

.text span {
    display:inline;
}

.cardsSection {
    margin:2rem auto;
}
.cardsSection h3 {
    margin-top:0;
    margin-bottom:1rem;
}

.cardsSection .grayCards {
    margin-top:4rem;
}

.grayCards .grayCard {
    max-width: 100%;
}

@media (max-width:1024px) {
    .cardsSection h3 {
        text-align:center;
    }
    .cardsSection span {
        justify-content:center;
    }
    .grayCards {
        justify-items:center;
    }
    .grayCards .grayCard {
        width:auto;
        max-width:100%;
    }
}

.tools .roundedCards:has(.roundedCard.hidden) {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0.2)));
}

@media (max-width:500px) {
    .contentCard .sectionWrapper {
        border-radius:0;
        width:100%;
        padding:2rem;
        box-sizing:border-box;
    }
}

section.dark,
div.dark {
    background:black;
    color:white;
}

section.dark .grayCard .paragraphSmall {
    color:black;
}
.bannerContainer {
    padding:1rem 0;
}
.listPoints {
    padding:2rem 0 0 0;
}
.text h1 {
    margin:0;
}

.text h1:has(>span) {
    font-size:unset;
}

.gradientHeroWrapper .buttons {
    display:flex;
    gap:0.5rem;
    flex-wrap:wrap;
    justify-content:center;
}

.gradientHeroWrapper .buttons a {
    margin:0;
    min-width:130px;
    justify-content:center;
}

.accordionSection.dark {
    background:black;
    color:white;
}

body:has(> section:first-of-type.dark) header {
    background:black;
}

body:has(> section:first-of-type.dark) #logo svg path {
    fill:white;
}

body:has(> section:first-of-type.dark) header #headerNav .wrapper > ul > li > a {
    color:white;
}

.imageSection {
    padding:4rem 0;
}

.imageSection img {
    border-radius:10px;
    max-width:90%;
}

.gallery {
    padding:4rem 0;
    display:flex;
    gap:2rem;
    flex-wrap:wrap;
    justify-content:center;
}

.gallery img {
    max-width:100%;
    align-self:flex-start;
}

.dark .contact input,
.dark .contact textarea {
    background:transparent;
    color:white;
}

.dark .contact select {
    background:black;
    color:white;
}

.messageContainer {
    display:block !important;
    padding:1rem;
    width:50%;
    margin:1rem 0;
    box-sizing:border-box;
    font-weight:bold;
}

@media (max-width:768px) {
    .messageContainer {
        width:100%;
    }
}

.messageContainer.error {
    background:#ff3d3d;
    color:white !important;
}

.messageContainer.success {
    background:#4fc46d;
    color:black !important;
}