:root {
    --font-heading: 'Tektur', sans-serif;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: var(--font-heading);
    --moroccan-blue: #0057FF;
    --desert-storm: #F8F8F8;
    --dark-peacock-blue: #162A73;
    --light-black: #2E2E2E;
    --accent-color: var(--moroccan-blue);
    --text-color: var(--light-black);
    /*--iti-path-flags-1x: url("../img/flags@2x.webp");*/
    /*--iti-path-globe-1x: url("../img/globe@2x.webp");*/
    scroll-behavior: smooth;
}

.tektur-font {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.montserrat-font {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

*, *::before, *::after {
    box-sizing: inherit;
    outline: none !important;
}

*:hover, *:focus {
    outline: none !important;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
    /* overflow: hidden; */
}

body {
    min-width: 320px;
    position: relative;
    font-family: var(--font-primary);
    /* font-optical-sizing: auto; */
    font-weight: 400;
    font-style: normal;
    line-height: 1.25;
    color: var(--text-color);
    background: #fff;
    opacity: 1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.wrapper {
    overflow: hidden;
    width: 100%;
}

.wrapper-in {
    overflow: hidden;
    /* padding-bottom: 60px; */
    /*max-width: 375px;*/
    /* max-width: 1440px; */
}

.ps-wrap {
    max-width: 1760px;
    max-width: 1360px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: auto;
    margin-left: auto;
}

input[type="search"]::-ms-clear {
    width : 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

a, button {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    background: none;
    padding: 0;
    border: none;
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
    cursor: pointer;
}

a {
    transition: color 0.3s ease 0s;
}

a:hover, a:focus {
    color: #FFB607;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.text-nowrap {
    white-space: nowrap;
}

.ps-desktop-hide {
}

.ps-desktop-show {
    display: none;
}

@media (min-width: 1200.98px) {
    .ps-desktop-hide {
        display: none;
    }

    .ps-desktop-show {
        display: block;
    }
}

.wp-lightbox-overlay .scrim {
    background: rgba(0, 0, 0, 0.8) !important;
}

.wp-lightbox-overlay .close-button {
    fill: #fff !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--font-heading);
}

h1, .h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 116%;
    text-transform: uppercase;
}

h2, .h2 {
    font-size: 25px;
    font-weight: 500;
    line-height: 116%;
    text-transform: uppercase;
}

h3, .h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.18;
}

h4, .h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
}

h5, .h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.225;
}

h6, .h6 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.08px;
}

@media (min-width: 1200.98px) {
    h1, .h1 {
        font-size: 70px;
    }

    h2, .h2, .h2-desktop {
        font-size: 44px;
        line-height: 120%;
    }

    h3, .h3 {
        font-size: 32px;
    }

    h4, .h4 {
        font-size: 28px;
    }

    h5, .h5 {
        font-size: 24px;
    }

    h6, .h6 {
        font-size: 20px;
    }
}

.arrowbutton {
    --bg-color: #fff;
    --bg-hover-color: var(--accent-color);
    --bg-angle: 7px;
    color: var(--bg-hover-color);
    position: relative;
    font-size: 0;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.arrowbutton::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, transparent var(--bg-angle), var(--bg-color) var(--bg-angle), var(--bg-color) 51%, transparent 51%), linear-gradient(-45deg, transparent var(--bg-angle), var(--bg-color) var(--bg-angle), var(--bg-color) 51%, transparent 51%);
    transition: all 0.3s ease 0s;
}

.arrowbutton::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, transparent var(--bg-angle), var(--bg-hover-color) var(--bg-angle), var(--bg-hover-color) 51%, transparent 51%), linear-gradient(-45deg, transparent var(--bg-angle), var(--bg-hover-color) var(--bg-angle), var(--bg-hover-color) 51%, transparent 51%);
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.arrowbutton svg {
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 2;
}

.ps-btn:hover .arrowbutton:after, .arrowbutton--has-hover:hover:after {
    opacity: 1;
}

.ps-btn:hover .arrowbutton, .arrowbutton--has-hover:hover {
    color: #fff;
}

@media (min-width: 1200.98px) {
    .arrowbutton {
        width: 65px;
        height: 65px;
        --bg-angle: 10px;
    }

    .arrowbutton::before {
    }

    .arrowbutton::after {
    }

    .arrowbutton svg {
        width: 15px;
        height: auto;
    }

    .ps-btn:hover .arrowbutton:after, .arrowbutton--has-hover:hover:after {
    }

    .ps-btn:hover .arrowbutton, .arrowbutton--has-hover:hover {
    }
}

.ps-btn {
    --bg-color: var(--accent-color);
    --border-color: var(--bg-color);
    --bg-hover-color: #fff;
    --angle-size: 10px;
    --angle-size-end: 12px;
    --angle-spacing: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.16px;
    color: var(--bg-hover-color);
    background: linear-gradient(135deg, transparent var(--angle-size), var(--border-color) var(--angle-size), var(--border-color) var(--angle-size-end), transparent var(--angle-size-end)), linear-gradient(180deg, transparent var(--angle-spacing), var(--border-color) var(--angle-spacing)), linear-gradient(-45deg, transparent var(--angle-size), var(--border-color) var(--angle-size), var(--border-color) var(--angle-size-end), transparent var(--angle-size-end)), linear-gradient(270deg, transparent var(--angle-spacing), var(--border-color) var(--angle-spacing), var(--border-color)), linear-gradient(0deg, transparent var(--angle-spacing), var(--border-color) var(--angle-spacing)), linear-gradient(90deg, transparent var(--angle-spacing), var(--border-color) var(--angle-spacing), var(--border-color));
    background-size: auto auto, 2px 100%, auto auto, 100% 2px, 2px 100%, 100% 2px;
    background-repeat: no-repeat;
    background-position: 0 0, 0% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 0%;
    margin: 0;
    padding: 4px;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    z-index: 1;
    width: 100%;
    min-height: 55px;
    transition: all 0.3s ease 0s;
}

.ps-btn:before, .ps-btn:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.ps-btn:before {
    background-image: linear-gradient(135deg, transparent var(--angle-size), var(--bg-color) var(--angle-size), var(--bg-color) 51%, transparent 51%), linear-gradient(-45deg, transparent var(--angle-size), var(--bg-color) var(--angle-size), var(--bg-color) 51%, transparent 51%);
    opacity: 1;
}

.ps-btn::after {
    background-image: linear-gradient(135deg, transparent var(--angle-size), var(--bg-hover-color) var(--angle-size), var(--bg-hover-color) 51%, transparent 51%), linear-gradient(-45deg, transparent var(--angle-size), var(--bg-hover-color) var(--angle-size), var(--bg-hover-color) 51%, transparent 51%);
}

.ps-btn:hover {
    color: var(--dark-peacock-blue);
}

.ps-btn:hover:before {
    opacity: 0;
}

.ps-btn:hover:after {
    opacity: 1;
}

.ps-btn:hover .arrowbutton {
}

.ps-btn__text {
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
}

.ps-btn__icon {
}

.ps-btn--white {
    --bg-color: #fff;
    --bg-hover-color: var(--accent-color);
}

.ps-btn--white:hover {
    color: #fff;
}

.ps-btn--white:before {
}

.ps-btn--white:after {
}

.ps-btn--white .arrowbutton {
    --bg-color: var(--accent-color);
    --bg-hover-color: var(--dark-peacock-blue);
    color: #fff;
}

.ps-btn--secondary {
    --bg-color: rgba(217, 217, 217, 0.15);
    --bg-hover-color: #fff;
    --border-color: #fff;
}

.ps-btn--secondary:before {
}

.ps-btn--secondary:after {
}

@media (min-width: 1200.98px) {
    .ps-btn {
        --angle-size: 13px;
        --angle-spacing: 18px;
        --angle-size-end: 15px;
        font-size: 20px;
        letter-spacing: -0.2px;
        padding: 5px;
        min-height: 75px;
    }

    .ps-btn:before, .ps-btn:after {
    }

    .ps-btn:before {
    }

    .ps-btn::after {
    }

    .ps-btn:hover {
    }

    .ps-btn:hover:before {
    }

    .ps-btn:hover:after {
    }

    .ps-btn:hover .arrowbutton {
    }

    .ps-btn__text {
    }

    .ps-btn__icon {
    }

    .ps-btn--white {
    }

    .ps-btn--white:hover {
    }

    .ps-btn--white:before {
    }

    .ps-btn--white:after {
    }

    .ps-btn--white .arrowbutton {
    }

    .ps-btn--secondary {
    }

    .ps-btn--secondary:before {
    }

    .ps-btn--secondary:after {
    }
}

.text-block {
}

.text-block p {
    margin: 4px 0;
}

.text-block p:first-child {
    margin-top: 0;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 22px;
    font-family: var(--font-secondary);
    line-height: 1.32;
    text-transform: uppercase;
}

.block-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    line-height: 1.32;
    padding: 8px 0;
}

.block-description {
    padding-top: 10px;
}

@media (min-width: 1200.98px) {
    .text-block {
        font-size: 18px;
        line-height: 1.224;
    }

    .text-block p {
        margin: 0;
    }

    .text-block p:first-child {
    }

    .text-block p:last-child {
    }

    .block-title {
        font-size: 35px;
        line-height: 1.34;
        max-width: 1000px;
        margin: 0 auto;
    }

    .block-subtitle {
        font-size: 25px;
    }

    .block-description {
        padding-top: 24px;
        margin: 0 auto;
    }
}

.subtitle {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 263'><g transform='translate(-837 431)'><path fill='%230057FF' d='M837.2-407.2l.3,23.7,109,107.7,109,107.7,22.3.1H1100v-53.6L993.9-326.3,887.8-431H837Z'/><path fill='%230057FF' d='M1005.5-411.9c10.5,10.5,36,35.7,56.8,56.1l37.7,37V-431H986.5Z'/><path fill='%230057FF' d='M837-224.1V-168h56.5c31.1,0,56.5-.1,56.5-.3,0-.1-25.4-25.4-56.5-56.1L837-280.2Z'/></g></svg>");
    background-repeat: no-repeat;
    background-position: 3px 0px;
    background-size: 20px 20px;
    color: var(--moroccan-blue);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    padding-left: 50px;
    padding: 1px 0 0px 38px;
    background-image: linear-gradient(45deg, var(--accent-color) 21%, transparent 21%, transparent 42%, var(--accent-color) 42%, var(--accent-color) 60%, transparent 60%, transparent 77%, var(--accent-color) 77%);
    background-size: 20px 20px;
}

.wpcf7-form-control-wrap {
    display: block;
}

.iti {
    --iti-hover-color: transparent;
    display: block;
}

.iti__selected-country {
    padding: 0 0 0px 18px;
    position: relative;
}

.iti__selected-country-primary {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iti .iti__selected-dial-code {
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 1.85714286;
    margin-left: 7px;
}

.iti__search-input {
    background: #F5F6F8;
    height: 40px;
    min-height: 40px;
    padding: 0 10px 0 30px;
}

.iti__search-input:focus {
    outline: none;
}

.iti--inline-dropdown .iti__dropdown-content {
    color: #000;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(64, 61, 61, 0.10);
    border: none;
    margin-top: 6px;
    overflow: hidden;
}

.iti__selected-country-primary .iti__flag {
    transform: scaleY(1.66666667) scaleX(1.9305);
}

.iti__arrow {
    margin: 0;
    border: none;
    width: auto;
    height: auto;
    padding-left: 19px;
}

.iti__arrow:before {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="5" viewBox="0 0 9 5" fill="none"><path d="M8.57131 0.184874C8.51321 0.126294 8.44408 0.0797974 8.36792 0.048067C8.29176 0.0163366 8.21006 0 8.12756 0C8.04505 0 7.96336 0.0163366 7.8872 0.048067C7.81104 0.0797974 7.74191 0.126294 7.68381 0.184874L4.37756 3.49737L1.07131 0.184874C0.953617 0.0671841 0.793996 0.00106692 0.627557 0.00106692C0.461119 0.00106692 0.301497 0.0671841 0.183807 0.184874C0.0661172 0.302564 0 0.462185 0 0.628624C0 0.795062 0.0661172 0.954684 0.183807 1.07237L3.93381 4.82237C3.99191 4.88095 4.06103 4.92745 4.1372 4.95918C4.21336 4.99091 4.29505 5.00725 4.37756 5.00725C4.46006 5.00725 4.54176 4.99091 4.61792 4.95918C4.69408 4.92745 4.76321 4.88095 4.82131 4.82237L8.57131 1.07237C8.62989 1.01427 8.67638 0.945147 8.70812 0.868984C8.73985 0.792822 8.75618 0.711131 8.75618 0.628624C8.75618 0.546117 8.73985 0.464426 8.70812 0.388263C8.67638 0.312101 8.62989 0.242976 8.57131 0.184874Z" fill="white"/></svg>');
}

.iti__highlight:hover, .iti__highlight:focus {
    background: #F5F6F8;
}

.iti input.iti__tel-input, .iti input.iti__tel-input[type=text], .iti input.iti__tel-input[type=tel] {
    padding-left: 123px !important;
}

@media (min-width: 1200.98px) {
    .wpcf7-form-control-wrap {
    }

    .iti {
    }

    .iti__selected-country {
    }

    .iti__selected-country-primary {
    }

    .iti__selected-dial-code {
    }

    .iti__search-input {
    }

    .iti__search-input:focus {
    }

    .iti--inline-dropdown .iti__dropdown-content {
    }

    .iti__flag {
    }

    .iti__arrow {
    }

    .iti__arrow:before {
    }

    .iti__highlight:hover, .iti__highlight:focus {
    }

    .iti input.iti__tel-input, .iti input.iti__tel-input[type=text], .iti input.iti__tel-input[type=tel] {
    }
}

.slick-slider {
    /* padding-bottom: var(--f-padding-bottom, 79px); */
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.slick-list {
    width: 100%;
    height: 100% !important;
}

.slick-track {
    display: flex;
    float: none;
    height: 100%;
}

.slick-slide {
    height: 100%;
}

.slick-slide>div {
    display: block;
    height: 100%;
}

.slick-slide>div>div {
    display: block !important;
}

.slick-arrow {
    border-radius: 3px;
    border: 1px solid var(--dark-peacock-blue);
    color: var(--dark-peacock-blue);
    display: flex;
    width: 50px;
    height: 50px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    /* position: absolute; */
    position: relative;
    bottom: 0;
    transition: all 0.3s ease 0s;
    order: 1;
    margin-top: 29px;
}

.slick-arrow:hover {
    background: var(--dark-peacock-blue);
    color: #fff;
}

.slick-prev {
    margin-left: var(--f-arrow-pos, 0);
    margin-right: auto;
}

.slick-next {
    margin-right: var(--f-arrow-pos, 0);
}

.slick-disabled {
    opacity: 0.5;
}

@media (min-width: 1200.98px) {
    .slick-slider {
    }

    .slick-track {
        align-items: center;
    }

    .slick-slide>div {
    }

    .slick-slide>div>div {
    }

    .slick-arrow {
    }

    .slick-arrow:hover {
    }

    .slick-prev {
        left: auto;
        margin-right: 7px;
    }

    .slick-next {
    }

    .slick-disabled {
    }
}

.entry-content .slick-dots, .slick-dots {
    margin: 0 0 28px 0;
    padding: 0 var(--f-arrow-pos);
    max-width: none;
    font-size: 0;
    line-height: 1;
    display: flex;
    order: -1;
    width: 100%;
    max-width: 565px;
}

.entry-content .slick-dots li, .slick-dots li {
    margin: 0;
    padding: 0;
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
}

.entry-content .slick-dots li:before {
    display: none;
}

.entry-content .slick-dots button, .slick-dots button {
    border-bottom: 1px solid rgb(21 27 33 / 50%);
    display: block;
    width: 100%;
    background: none;
    height: 3px;
}

.entry-content .slick-dots .slick-active button, .slick-dots .slick-active button {
    background: var(--dark-peacock-blue);
}

.slider-info {
    color: #151B21;
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: right;
    padding-bottom: 19px;
    line-height: 0.9;
}

.f-carousel {
    --f-arrow-width: 48px;
    --f-arrow-height: 48px;
    --f-arrow-svg-width: 35px;
    --f-arrow-svg-height: 35px;
    --f-arrow-bg: transparent;
    --f-arrow-color: var(--dark-peacock-blue);
    --f-button-border: 1px solid var(--dark-peacock-blue);
    --f-arrow-border-radius: 3px;
    --f-arrow-svg-stroke-width: 0;
    --f-arrow-hover-color: #fff;
    --f-arrow-hover-bg: var(--dark-peacock-blue);
    --f-button-svg-disabled-opacity: 1;
    --f-carousel-dots-position: static;
}

.f-carousel.has-arrows {
    padding-bottom: var(--f-padding-bottom, 80px);
}

.f-carousel.is-horizontal .f-button.is-arrow.is-prev, .f-carousel.is-horizontal .f-button.is-arrow.is-next {
    bottom: 0;
    top: auto;
    transform: translateY(0%);
}

.f-carousel .f-button[aria-disabled] {
    opacity: 0.5;
}

.f-carousel__dots {
    order: -1;
    padding: 0 var(--f-carousel-horizontal-padding, 12px) 28px;
}

.f-carousel__dot {
    --f-carousel-dots-width: 100%;
    --f-carousel-dots-height: auto;
    --f-carousel-dot-opacity: 1;
    --f-carousel-dot-width: 100%;
    --f-carousel-dot-height: 3px;
    --f-carousel-dot-border-radius: 0;
    --f-carousel-dot-selected-bg: var(--dark-peacock-blue);
    color: transparent;
    flex: 1 0 0;
    max-width: 100%;
    border-bottom: 1px solid rgb(21 27 33 / 50%);
}

.f-carousel__dot:after {
    top: auto;
    bottom: 0;
    transform: none;
    left: 0;
}

.f-carousel__info {
    order: -2;
    color: #151B21;
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: right;
    padding: 0 var(--f-carousel-horizontal-padding, 12px) 21px;
    line-height: 0.9;
}

.playbutton {
    border-radius: 3px;
    background: rgba(217, 217, 217, 0.55);
    font-size: 0;
    line-height: 1;
    width: 45px;
    height: 45px;
    color: var(--dark-peacock-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 4px;
}

@media (min-width: 1200.98px) {
    .playbutton {
        width: 65px;
        height: 64px;
    }

    .playbutton svg {
        height: auto;
        width: 17px;
    }
}

.logoicontext {
    background-image: linear-gradient(45deg, #fff 21%, transparent 21%, transparent 42%, #fff 42%, #fff 60%, transparent 60%, transparent 77%, #fff 77%);
    background-size: 19px 19px;
    background-repeat: no-repeat;
    background-position: 3px 0px;
    padding-left: 38px;
    display: block;
}

.clientsbadge {
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.17;
    display: flex;
}

.clientsbadge-figure {
    font-size: 0;
    line-height: 1;
}

.clientsbadge-figure div {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.clientsbadge-figure div:nth-child(2) {
    margin: 0 -10px;
    position: relative;
    z-index: 1;
}

.clientsbadge-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clientsbadge-text {
    padding: 1px 0 0 12px;
}

@media (min-width: 1200.98px) {
    .clientsbadge {
    }

    .clientsbadge-figure {
    }

    .clientsbadge-figure div {
        width: 70px;
        height: 70px;
    }

    .clientsbadge-figure div:nth-child(2) {
        margin: 0 -35px;
    }

    .clientsbadge-figure img {
    }

    .clientsbadge-text {
        padding-left: 17px;
        padding-top: 14px;
    }
}
