/*
** Theme Variables
*/
:root {
    --green: #1EAA46;
    --red: #D71923;
    --white: #ffffff;
    --black: #000000;

    --primary:  #3C8CF0;
    --primary-a:#2972cc;

    --secondary:  var(--red);
    --secondary-a:  #b50f17;

    --tertiary: #5fc271;

    --dark: #3B454A;
    --navy: #0D1E32;

    --body: var(--dark);

    --link: var(--primary);
    --link-a: var(--primary-a);
    
    --white50: rgba(255,255,255,0.5);

    --formfieldbg: var(--white);
    --formfieldplaceholder: rgba(0,0,0,0.5);
    --formtextcolor: var(--body);
    --formfieldborder: #D9D9D9;

    --siteradius: 24px;
    --siteradius16: 16px;

    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 140px;
}

/*
** Fonts
*/
@font-face {
    font-family: 'realceb';
    src: url('../fonts/Realce-Blackv0006.woff2') format('woff2'),
        url('../fonts/Realce-Blackv0006.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*
@font-face {
    font-family: 'sfc';
    src: url('../fonts/SFCompactText-Regular.woff2') format('woff2'),
        url('../fonts/SFCompactText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'sfc-md';
    src: url('../fonts/SFCompactText-Medium.woff2') format('woff2'),
        url('../fonts/SFCompactText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'sfc-sb';
    src: url('../fonts/SFCompactText-Semibold.woff2') format('woff2'),
        url('../fonts/SFCompactText-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'sfc-bd';
    src: url('../fonts/SFCompactText-Bold.woff2') format('woff2'),
        url('../fonts/SFCompactText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*/

@font-face {
    font-family: 'ibmplex';
    src: url('../fonts/IBMPlexSans-Regular.woff2') format('woff2'),
        url('../fonts/IBMPlexSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-display: block;
}

@font-face {
    font-family: 'ibmplex-md';
    src: url('../fonts/IBMPlexSans-Medium.woff2') format('woff2'),
        url('../fonts/IBMPlexSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ibmplex-sb';
    src: url('../fonts/IBMPlexSans-SemiBold.woff2') format('woff2'),
        url('../fonts/IBMPlexSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ibmplex-bd';
    src: url('../fonts/IBMPlexSans-Bold.woff2') format('woff2'),
        url('../fonts/IBMPlexSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*
** Font Icons
*/
@font-face {
    font-family: 'poly';
    src: url('../fonts/icons/poly.ttf?7fcjdz') format('truetype'),
         url('../fonts/icons/poly.woff?7fcjdz') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'poly';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-sm:before {
    content: "\e912";
}
.icon-plus:before {
    content: "\e900";
}
.icon-minus:before {
    content: "\e901";
}
.icon-quotes:before {
    content: "\e902";
}
.icon-arrow:before {
    content: "\e903";
}
.icon-angle-down:before {
    content: "\e904";
}
.icon-twitter:before {
    content: "\e905";
}
.icon-youtube:before {
    content: "\e906";
}
.icon-facebook:before {
    content: "\e907";
}
.icon-linkedin:before {
    content: "\e908";
}
.icon-pin:before {
    content: "\e909";
}
.icon-whatsapp:before {
    content: "\e90a";
}
.icon-play:before {
    content: "\e90b";
}
.icon-search:before {
    content: "\e90c";
}
.icon-instagram:before {
    content: "\e90d";
}
.icon-email-l:before {
    content: "\e90e";
}
.icon-phone-l:before {
    content: "\e90f";
}
.icon-email:before {
    content: "\e910";
}
.icon-phone:before {
    content: "\e911";
}


/*
** Custom Reset
*/
*,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box }
img { max-width: 100%; height: auto; vertical-align: top; }
a, span, i, label { display: inline-block; }
a { color: var(--link); text-decoration: none; transition: 0.3s ease-in-out; }
a:hover { color: var(--link-a); }
a:focus { outline: none; }
strong, b { font-family: 'ibmplex-bd', sans-serif; font-weight: normal; }

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p:last-child,
ul:last-child,
li:last-child {
    margin-bottom: 0;
}

button,
button:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

input:focus {
    outline: none;
    box-shadow: none;
}

ul, ol { padding-left: 20px; }

li { margin-bottom: 10px; }


/*
** Globals
*/

/*Typo*/
body {
    font-family: 'ibmplex', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: var(--body);
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'realceb', sans-serif;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
    color: var(--navy);
}

/* h1, .h1 { --fsize: 68px; font-size: var(--fsize); line-height: calc(var(--fsize) + 0px); margin-bottom: 30px; } */
h1, .h1 { --fsize: 64px; font-size: var(--fsize); line-height: calc(var(--fsize) + 0px); margin-bottom: 30px; text-transform: uppercase; }
h2, .h2 { --fsize: 58px; font-size: var(--fsize); line-height: calc(var(--fsize) + 0px); margin-bottom: 14px; }
h3, .h3 { --fsize: 38px; font-size: var(--fsize); line-height: calc(var(--fsize) + 0px); margin-bottom: 14px; }
h4, .h4 { --fsize: 32px; font-size: var(--fsize); line-height: calc(var(--fsize) + 2px); margin-bottom: 14px; }
h5, .h5 { --fsize: 26px; font-size: var(--fsize); line-height: calc(var(--fsize) + 2px); margin-bottom: 8px; }
h6, .h6 { --fsize: 20px; font-size: var(--fsize); line-height: calc(var(--fsize) + 2px); margin-bottom: 8px; }

h1 span,
.h1 span,
h2 span,
.h2 span {
    color: var(--secondary);
    display: inline;
}

h1 strong,
.h1 strong,
h2 strong,
.h2 strong {
    display: inline;
    font-family: 'realceb', sans-serif;
    font-style: normal;
    font-weight: normal;
    color: var(--secondary);
}

p { margin-top: 0; margin-bottom: 14px; }

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Form Fields */
form {
    --fieldsize: 53px;
    --fieldpadds: 0 20px;
    --fieldtop: 14px;
    --fieldfsize: 16px;
    --fieldrads: var(--siteradius16);
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="num"],
input[type="tel"],
input[type="url"],
select,
textarea {
    font-family: 'ibmplex', sans-serif;
    font-size: var(--fieldfsize);
    line-height: calc(var(--fieldsize) - 2px);
    width: 100%;
    height: var(--fieldsize);
    padding: var(--fieldpadds);
    border-radius: var(--fieldrads);
    background-color: var(--formfieldbg);
    color: var(--formtextcolor);
    border: 1px solid var(--formfieldborder);
    outline: 0 !important;
    vertical-align: top;
}

input::placeholder,
textarea::placeholder {
    color: var(--formfieldplaceholder);
}

textarea {
    padding-top: var(--fieldtop);
    line-height: 22px;
    height: 110px;
    resize: vertical;
}

select {
    width: 100%;
    padding-right: 42px;
    background-image: url('../images/angle-down.svg');
    background-size: 10px;
    background-position: right 22px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}

.polform label {
    display: block;
    font-family: 'ibmplex-md', sans-serif;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 4px;
    color: var(--white);
}

.iti, .wpcf7-form-control-wrap { display: block; }

.wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.3;
    padding: 6px 5px 3px;
    margin-top: -4px;
    color: #ff000c;
    /* background: #a60000; */
    border-radius: 0px 0px 10px 10px;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.4em;
    padding: 8px 10px;
    margin: 20px 0 0 0;
    border: 0;
    border-radius: 5px;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: var(--green);
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output {
    background: var(--secondary-a);
    color: #ffffff;
}

.wpcf7-spinner {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateX(110px) translateY(-15px);
}

/*Background Utilities*/
/* .bg--navy { background-color: var(--navy); } */
.bg--pure { background: #F4F3FC; }
.bg--white { background: var(--white) }
.bg--grad { color: var(--white); background: linear-gradient(114.29deg, #9A4045 0.42%, #414396 42.57%, #1D164A 87.22%); }
.bg--grad h2 { color: var(--white); }


/*Text Utilities*/
.text-rb { font-family: 'realceb', sans-serif; }
.text-rg { font-family: 'ibmplex', sans-serif; }
.text-md { font-family: 'ibmplex-md', sans-serif; }
.text-sb { font-family: 'ibmplex-sb', sans-serif; }
.text-bd { font-family: 'ibmplex-bd', sans-serif; }

.text--navy { color: var(--navy); }
.text--primary { color: var(--primary); }
.text--secondary { color: var(--secondary); }
.text--body { color: var(--body); }
.text--white { color: var(--white); }
.text--black { color: var(--black); }
.text--white-hard, .text--white-hard a:not(.bttn) { color: var(--white); }

.text-uppercase { text-transform: uppercase; }
.text-italic { font-style: italic; }
.text-underline { text-decoration: underline; }

.font-32 { font-size: 32px; line-height: 42px; }
.font-28 { font-size: 28px; line-height: 36px; }
.font-26 { font-size: 26px; line-height: 36px; }
.font-24 { font-size: 24px; line-height: 34px; }
.font-22 { font-size: 22px; line-height: 32px; }
.font-20 { font-size: 20px; line-height: 28px; }
.font-18 { font-size: 18px; line-height: 24px; }
.font-17 { font-size: 17px; line-height: 23px; }
.font-16 { font-size: 16px; line-height: 24px; }
.font-15 { font-size: 15px; line-height: 21px; }
.font-14 { font-size: 14px; line-height: 22px; }

/*Other Utilities*/
.list-unstyled, .list-unstyled ul, .list-unstyled ol { padding: 0; margin: 0; list-style: none; }
.transition { transition: 0.3s ease-in-out; }
.unlink, img { pointer-events: none; cursor: none; }
.siteradius { border-radius: var(--siteradius); }
.fullradius { border-radius: 100%; }
.siteimg, .siteimg img { border-radius: var(--siteradius); }
.fitimg { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.site-radius { border-radius: var(--siteradius); overflow: hidden; }
.z-index-1 { z-index: 1; }

/*
** Buttons
*/
.bttn {
    --btnsize: 55px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'realceb', sans-serif;
    font-size: 18px;
    line-height: calc(var(--btnsize) - 2px);
    min-width: 130px;
    height: var(--btnsize);
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    border: 0px solid transparent;
    letter-spacing: 0.02em;
    border-radius: 26px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.bttn span { position: relative; z-index: 1; }

.bttn-auto { min-width: 0; }

.bttn-primary {
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), var(--primary);
}

.bttn-primary:hover {
    color: var(--white);
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), var(--primary-a); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%), var(--primary-a);
}

.bttn-black {
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), #11181C;
}

.bttn-black:hover {
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), var(--black);
}

.bttn-cut {
    --clipsize: 18px;
    clip-path: polygon(0 var(--clipsize), var(--clipsize) 0, 100% 0, 100% calc(100% - var(--clipsize)), calc(100% - var(--clipsize)) 100%, 0 100%);
    border-color: transparent;
    border-radius: 9px;
}

.bttn-white {
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.bttn-cut.bttn-white::before,
.bttn-cut.bttn-white::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--clipsize) var(--clipsize) 0px 0px;
    border-color: rgba(255, 255, 255, 0.2) transparent transparent transparent;
    transform: rotate(0deg);
    z-index: 2;
}

.bttn-cut.bttn-white::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    border-width: 0px 0px var(--clipsize) var(--clipsize);
    border-color: transparent transparent rgba(255, 255, 255, 0.2) transparent;
}

.bttn-white:hover {
    color: var(--white);
    background-color: rgba(255,255,255,0.3);
}


/*
** Bootstrap Extends & Overrides
*/
.container, .container-fluid, .row>* { padding-left: 17px; padding-right: 17px; }
.row { margin-left: -17px; margin-right: -17px; }
.gx-0.row>* { padding-left: 0; padding-right: 0; }
.gx-0.row { margin-left: 0; margin-right: 0; }
.row-20 { margin-left: -10px; margin-right: -10px; }
.row-20>* { padding-left: 10px; padding-right: 10px; }

/*Gap*/
.gapy-20 { row-gap: 20px; }
.gapy-30 { row-gap: 30px; }
.gapy-40 { row-gap: 40px; }

/*Margins*/
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.visually-hidden,
.sr-only {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
}

/*
** WP Overrides
*/
.screen-reader-text { position: absolute; visibility: hidden; opacity: 0; }

/*
** Slick Slider
*/
.slick-initialized { z-index: 0; position: relative; }
.slide .slick-slide, .slide { display: none; float: left; height: 100%; min-height: 1px; }
.slick-initialized .slick-list { position: relative; overflow: hidden; z-index: 0; }
.slick-initialized .slick-slide { display: inline-block; width: auto; vertical-align: top; }
.slick-initialized .slick-slide:focus { outline: none; }

.slick-dots {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0 auto;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(24px); */
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.5);
    border-left-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.8), inset -1px -1px 2px rgba(255, 255, 255, 0.1), 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    list-style: none;
}

.slick-dots li { margin: 0; }
.slick-dots li + li { margin: 0; margin-left: 10px; }
.slick-dots button {
    --size: 10px;
    display: block;
    font-size: 0px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    padding:0;
    border: 0px solid transparent;
    border-radius: var(--size);
    background-color: rgba(13, 30, 50, 0.3);
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.slick-dots .slick-active button { --size: 10px; background-color: var(--primary); }

.slick-ctrls { display: flex; justify-content: center; } /*This wrapper div is added using js*/

.slick-arrow {
    position: relative;
    --btnsize: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: calc(var(--btnsize) - 2px);
    padding: 0;
    width: var(--btnsize);
    min-height: var(--btnsize);
    background: transparent;
    --clipsize: 18px;
    clip-path: polygon(0 0, var(--clipsize) 0, 100% 0, 100% calc(100% - var(--clipsize)), calc(100% - var(--clipsize)) 100%, 0 100%);
    border-radius: 9px;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.prev-arrow {
    clip-path: polygon( var(--clipsize) 0, 100% 0, 100% 100%, 0 100%, 0 var(--clipsize) );
}

.slick-arrow:focus { border: 1px solid var(--primary); }

.slick-arrow i { transition: 0.3s ease; }
.next-arrow i { transform: rotate(45deg); }
.prev-arrow i { transform: rotate(-135deg); }
.next-arrow:hover i { transform: rotate(45deg) translate(2px, -2px); }
.prev-arrow:hover i { transform: rotate(-135deg) translate(2px, -2px); }

.slick-arrow::before {
    content: "";
    position: absolute;
    bottom: 9px;
    right: -6px;
    width: 27px;
    height: 1px;
    background: var(--primary);
    transform: rotate(-45deg);
}

.prev-arrow::before {
    top: 8px;
    left: -5px;
    bottom: auto;
    right: auto;
    width: 26px;
    transform: rotate(135deg);
}

/*
** Header
*/
.sub-menu { display: none; }

.site-header {
    font-family: 'ibmplex-md', sans-serif;
    position: fixed;
    position: sticky;
    top: 0;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 0;
    text-transform: uppercase;
    background-color: var(--white);
    border-bottom: 1px solid rgba(23, 23, 27, 0.1);
    border-bottom: 1px solid transparent;
    transition: all 0.15s ease-out;
    z-index: 10;
}

.site-header.siteheader-sticky { padding: 8px 0; }

.custom-logo {
    /*
    width: auto;
    height: 50px;
    */
    transition: 0.2s ease;
}

/*
.siteheader-sticky .custom-logo {
    height: 40px;
}
*/

.site-header .row {
    align-items: center;
}

.colheadright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.headernav {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
}

.headernav li { margin-bottom: 0; }

.headernav a {
    padding: 10px 5px;
    color: var(--navy);
}

.headernav a:hover,
.headernav .current-menu-ancestor>a,
.headernav .current-menu-parent>a,
.headernav .current-menu-item>a {
    color: var(--primary);
}

/*Site Menu Toggle*/
.site-menutoggle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    position: relative;
    margin-bottom: 0;
}

.site-menutoggle span {
    display: block;
    width: 33px;
    height: 5px;
    margin-bottom: 5px;
    position: relative;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 100%);
    border-radius: 6px;
    transform-origin: 5px 5px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    z-index: 1;
}

.site-menutoggle span:last-child {
    margin-bottom: 0;
}

.site-menutoggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.site-menutoggle input:checked~span {
    margin: 0;
    opacity: 1;
    transform: rotate(45deg) translate(-8px, -12px);
}

.site-menutoggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(1px, 20px);
    transform: rotate(-45deg) translate(-2px, 13px);
}

.site-menutoggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    transition: 0s;
}


/*
** Common Section
*/
section.section {
    --padds: 120px;
    padding-top: var(--padds);
    padding-bottom: var(--padds);
}

.section h2, .section .h2 { text-transform: uppercase; }

.section-head { margin-bottom: 40px; }
.section-head h2:last-child, .section-head .h2:last-child { margin-bottom: 0; }
.section-head:last-child { margin-bottom: 0; }

.seccut-left, .seccut-right { position: relative; }
.seccut-left::before,
.seccut-right::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 66px;
    width: 165px;
    height: 84px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-size: 8.12vw auto;
}
.seccut-left::before {
    left: 0;
    top: 0;
    background-image: url('../images/leftcut.svg');
    background-position: top left;
}
.seccut-right::after {
    right: -1px;
    bottom: -1px;
    background-image: url('../images/rightcut.svg');
    background-position: right bottom;
}

.secx {
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--siteradius);
    overflow: hidden;
}

/*
** Homepage
*/
.hero { position: relative; }
.hero-home .slick-track { display: flex; }
.hero-home .hero-slider { max-height: 100vh; }

.hero-home .hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    /* height: 600px; */
    min-height: calc(100vh - 86px);
    min-height: 757px;
    padding: 50px 0;
    /* border-radius: var(--siteradius); */
    overflow: hidden;
}

.hero-home .hero-slide:first-child { background: linear-gradient(180deg, #D5E6FF 0%, #FFE8B2 100%); }
/* .hero-home .hero-slide:first-child { background: linear-gradient(180deg, #B9ECFF 0%, #F8F8F8 47.88%, #E6F4D9 92.21%); } */
.hero-home .hero-slide:nth-child(2) { background: linear-gradient(180deg, #B9ECFF 0%, #E4ECD5 47.88%, #F4EE98 92.21%); }
.hero-home .hero-slide:nth-child(3) { background: linear-gradient(180deg, #FFF3D5 0%, #DDD5FF 100%); }
.hero-home .hero-slide:nth-child(4) { background: linear-gradient(180deg, #D5EBFF 0%, #F2FFC5 50%, #FFEFD4 100%); }
.hero-home .hero-slide:nth-child(5) { background: linear-gradient(180deg, #E8EAFF 0%, #FFE8D7 92.21%); }

.hero-home .hero-wrap { width: 542px; max-width: 100%; }

.hero-slide .hero-img,
.hero-servsub .hero-img {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 50%;
    height: 100%;
}

.hero .flex-end { align-items: flex-end; }

/* .hero-slide-1 .hero-img { width: 43%; } */
.hero-slide-4 .hero-img { width: 58%; }

.hero-home p { margin-bottom: 0; }
.hero-home .bttn { margin-top: 30px; }

.hero-slider .slick-ctrls {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 30px;
    z-index: 1;
}

/*LR Sec*/
.lriwrap { position: relative; display: inline-flex; }
.lriwrap .charc { position: absolute; right: 0; bottom: 0; }

/*LR Sec - Home*/
.lrsec-imt .lriwrap { padding-bottom: 65px; }
.lrsec-imt .charc { max-width: 63%; right: -146px; }
.lrsec-imt .lrcont { padding-left: 50px; }

/*Service Section*/
.servslide {
    position: relative;
    display: inline-block;
    margin: 0 17px;
    border-radius: var(--siteradius);
    overflow: hidden;
}

.servslide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(0px);
    border-radius: var(--siteradius);
    transition: 0.2s ease-in-out;
    z-index: 0;
}

.servslide:hover::after {
    backdrop-filter: blur(5px);
}

.servslide img {
    vertical-align: top;
}

.servslide-info {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    inset: 0;
    width: 100%;
    padding: 30px;
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.servslide:hover .servslide-info { transform: translateY(-10px); }

.ss-infowrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    overflow: hidden;
    opacity: 0;
}

.servslide:hover .ss-infowrap {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 1rem;
}

.secslider-dots .slick-dots {
    margin-top: 30px;
}

.servslide .bttn { backdrop-filter: none; margin-top: 15px; }

/*Why Polymator Bento*/
.bentob {
    position: relative;
    padding: 80px;
    color: var(--white);
    border-radius: var(--siteradius);
    background: linear-gradient(144.77deg, #1D164A 12.47%, #A05140 88.39%);
}
.bentob-img { position: absolute; width: 46%; bottom: 0; right: 0; text-align: right; z-index: 0; }
.bentob-ul { position: relative; display: grid; gap: 30px; width: 54%; z-index: 1; }
.bentob-ul p { color: rgba(255, 255, 255, 0.8); }

.bentob-cont h2 { width: 510px; max-width: 100%; }


/*Technologies*/
.techs {
    --tabsize: 383px;
    --bordercolor: rgba(59, 69, 74, 0.2);
    display: flex;
    border: 1px solid var(--bordercolor);
    border-radius: var(--siteradius);
    background: var(--white);
    overflow: hidden;
}

.tech-tabs {
    flex: 1 0 var(--tabsize);
    min-width: var(--tabsize);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--bordercolor);
    background-color: var(--white);
}

.tech-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 28px;
    line-height: 1;
    color: var(--navy);
    text-transform: uppercase;
    min-height: 102px;
    padding: 15px 32px 8px;
    border-bottom: 1px solid var(--bordercolor);
    cursor: pointer;
    transition: all 0.3s ease;
}
.tech-link:last-child { border-bottom: 0; }
.tech-link.active { color: var(--primary); }

.tech-panels {
    flex: 1 0 calc(100% - var(--tabsize));
    min-width: calc(100% - var(--tabsize));
    padding: 40px;
    position: relative;
}

.tech-pane {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 40px;
    animation: techFadeIn 0.4s ease forwards;
}

@keyframes techFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.tech-pane.active {
    display: grid;
}

.tech-li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 15px;
}

.tech-li img {
    width: 80px;
    height: 45px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

/* .tech-li:hover img { filter: grayscale(0); } */

.tech-title {
    font-size: 16px;
    line-height: 20px;
    color: var(--navy);
}

/* CTA Bar */
.ctabar {
    border-radius: var(--siteradius);
    background: linear-gradient(91.62deg, #9A4045 0.18%, #414396 48.65%, #1D164A 100%);
    overflow: visible;
}

.ctabar .container {
    --padds: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 285px;
    padding-top: var(--padds);
    padding-bottom: var(--padds);
}

.ctab {
    display: flex;
    align-items: center;
}

.ctab h2:last-child,
.ctab .h2:last-child {
    margin-bottom: 0;
}

.ctab-img {
    position: absolute;
    bottom: 0;
    left: 17px;
    max-width: 32%;
}

.ctab-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: calc(68% - 50px);
    z-index: 1;
}

.ctab-wrap .bttn:not(:only-child) { flex: 1 0 auto; max-width: 258px; }

.ctab-left .ctab-wrap { margin-left: auto; }
.ctab-right .ctab-img { left: auto; right: 17px; }

.ctab-bttns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}


/*
** Case Studies Section
*/
.csslider .slick-track { padding: 50px 0 20px; }

.csslide {
    --cardRad: 32px;
    position: relative;
    padding: 10px;
    margin: 0 20px;
    border-radius: var(--cardRad);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.csslide::before {
    --offset: 10px;
    content: "";
    position: absolute;
    top: var(--offset);
    left: var(--offset);
    width: calc(100% - calc(2 * var(--offset)));
    height: calc(100% - calc(2 * var(--offset)));
    border-radius: var(--cardRad);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.csslide img {
    border-radius: var(--cardRad);
}

.csslide-info {
    --sideSpace: 50px;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    left: var(--sideSpace);
    bottom: var(--sideSpace);
    width: calc(100% - calc(2 * var(--sideSpace)));
    z-index: 1;
}

.csslide-det {
    --wideSize: 472px;
    flex:  1 0 var(--wideSize);
    max-width: var(--wideSize);
}

.csslide-det h3 { max-width: 352px; }

.csslide .bttn { font-size: 16px; min-width: 0; }

/*Testimonials*/
.testslider {
    width: 822px;
    max-width: 100%;
    padding: 10px;
    border-radius: 32px;
    background: linear-gradient(94.25deg, rgba(60, 140, 240, 0.1) 0.2%, rgba(215, 25, 35, 0.1) 100.74%);
}

.testslider .slick-track { display: flex; }

.testslide {
    --testsgap: 50px;
    display: inline-flex;
    gap: 30px var(--testsgap);
    padding: 30px;
    border-radius: var(--siteradius);
    background-color: var(--white);
}

.slick-initialized .testslide { display: inline-flex; }

.testimg {
    position: relative;
    --imgwid: 271px;
    flex: 1 0 var(--imgwid);
    align-self: flex-start;
    max-width: var(--imgwid);
    border-radius: var(--siteradius16);
    overflow: hidden;
}

.testimg::after { background-size: auto 40px; }

.testcont {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 20px;
    flex: 1 0 calc(100% - var(--imgwid) - var(--testsgap));
    max-width: calc(100% - var(--imgwid) - var(--testsgap));
}

.testquote::before {
    display: block;
    font-family: 'poly';
    content: "\e902";
    font-size: 30px;
    line-height: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.test-name { display: flex; align-items: center; gap: 10px; font-size: 24px; line-height: 1; margin-bottom: 10px; }

.testctrls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.test-name [class^="flag-"] {
    width: 32px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: left top;
}

.test-name .flag-in { background-image: url('../images/flag-in.svg'); }
.test-name .flag-us { background-image: url('../images/flag-usa.svg'); }
.test-name .flag-gb { background-image: url('../images/flag-gb.svg'); }
.test-name .flag-sa { background-image: url('../images/flag-sa.svg'); }
.test-name .flag-za { background-image: url('../images/flag-za.svg'); }


/* Clientele */
.logolist {
    --size: clamp(10rem, 1rem + 25vmin, 30rem);
    --gap: calc(var(--size) / 3);
    --duration: 15s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    display: flex;
    gap: var(--gap);
    -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
    mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
    margin: -30px 0;
    overflow: hidden;
}

.logotrack {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
    padding: 0 0 30px;
}

.logolist:hover .logotrack { animation-play-state: paused; }

.logoitem {
    display: flex;
    place-items: center;
    width: auto;
    max-width: 210px;
    height: auto;
    min-height: 50px;
    padding: calc(var(--size)/10);
    transition: all 0.3s ease-in-out;
    -webkit-user-drag: none;
}

.logoitem img {
    max-height: 80px;
    height: auto;
    max-width: 100%;
    width: 100%;
    filter: grayscale(1);
    transition: 0.3s ease;
}

.logoitem:hover img { filter: grayscale(0); }

@keyframes scroll-x {
    from { transform: translateX(var(--scroll-start)); }
    to { transform: translateX(var(--scroll-end)); }
}

/* Blog Section */
.blogcard {
    border-radius: var(--siteradius16);
    box-shadow: 0px -7px 16px 0px rgba(0, 0, 0, .03);
    overflow: hidden;
}

.blog-img {
    display: block;
    position: relative;
    height: 285px;
    border-radius: var(--siteradius16);
    overflow: hidden;
}

.blog-img img { vertical-align: top; }

.blog-img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 173px;
    height: 50px;
    background-image: url('../images/leftbcut.svg');
    background-size: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.blog-date {
    display: block;
    position: relative;
    width: 101px;
    padding-left: 10px;
    margin-top: -28px;
    z-index: 2;
}

.blog-title {
    font-size: 18px;
    line-height: 28px;
}

/* FAQs */
.faqsechome { overflow: visible; }

.faqcharc { position: sticky; top: 90px; }

.faqs-homeimg::before {
    --size: 356px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--size);
    height: var(--size);
    left: 50%;
    top: 50%;
    background: linear-gradient(147.23deg, #F6D365 11.8%, #F56F49 83.63%);
    filter: blur(125px);
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/*FAQ List*/
.faqlist {
    position: relative;
    display: grid;
    gap: 0;
    padding-top: 20px;
    z-index: 1;
}

.faqitem {
    --paddings: 30px;
    --bttnsize: 30px;
    --headgap: 20px;
    padding: var(--paddings);
    border: 1px solid rgba(13, 0, 121, 0.1);
    border-radius: var(--siteradius);
    background-color: var(--white);
}

.faqitem + .faqitem { margin-top: calc(-1 * var(--paddings)); }

.faqitem:not(:last-child) { padding-bottom: calc(var(--paddings) + 20px); }

.faqhead {
    display: flex;
    align-items: center;
    gap: var(--headgap);
    cursor: pointer;
}

.faqhead h3 {
    --fsize: 26px;
    line-height: calc(var(--fsize) + 2px);
    margin-bottom: 0;
    order: 1;
}

.faqbttn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: var(--bttnsize);
    width: var(--bttnsize);
    min-width: var(--bttnsize);
    height: var(--bttnsize);
    color: var(--primary);
    /* background: #efefef; */
    border-radius: var(--bttnsize);
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

/* .faqbttn i { transform: translateX(1px); } */

.faqitem:not(.open) .faqbttn i { transform: translateX(1px); }

.open .faqbttn {
    color: var(--white);
    background: var(--primary);
    transform: rotate(45deg);
}

.faqbody { display: none; padding: 20px 0 0; }


/* CTA Box */
.ctasec .section-head h2 {
    max-width: 540px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.ctabox {
    --ctagap: 30px;
    --ctacontwid: 492px;
    position: relative;
    display: flex;
    gap: var(--ctagap);
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--siteradius);
    background: linear-gradient(144.77deg, #1D164A 12.47%, #A05140 88.39%);
    overflow: hidden;
}

.ctabox-char {
    margin-bottom: -20px;
    text-align: center;
}

.ctabox-lt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 0 var(--ctacontwid);
    max-width: var(--ctacontwid);
    gap: 30px;
    padding-top: 40px;
    padding-left: 40px;
}

.ctabox-lt h3 {
    margin-bottom: 30px;
    color: var(--white);
}

.ctabox-ul {
    display: grid;
    gap: 10px;
}

.ctabox-ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.ctabox-ul i {
    --size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    border-radius: var(--siteradius16);
    background: rgba(255, 255, 255, 0.1);
}

.ctabox-ul a { font-size: 28px; line-height: 1; color: var(--white); }

.ctabox-ul a:hover { color: var(--primary); }

.ctabox-rt {
    flex: 1 0 calc(100% - var(--ctacontwid) - var(--ctagap));
    padding: 32px 40px;
    max-width: calc(100% - var(--ctacontwid) - var(--ctagap));
    border-radius: var(--siteradius);
    background: rgba(255, 255, 255, 0.1);
}

/*
** Footer
*/
.site-footer {
    position: relative;
    background: #0D1E32;
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    --size: 32.29vw;
    content: "";
    position: absolute;
    width: var(--size);
    height: var(--size);
    opacity: 0.3;
    filter: blur(175px);
}

.site-footer::before {
    left: 44px;
    top: -13.17vw;
    background: linear-gradient(94.25deg, #3C8CF0 0.2%, #D71923 100.74%);

}

.site-footer::after {
    right: 20px;
    top: calc(100% - 124px);
    background: #3C8CF0;
}

.foo-intro, .foo-top, .foo-bot { z-index: 1; }

.foo-title { font-size: 24px; line-height: 1; margin-bottom: 20px; }

.site-footer li { margin: 0; }
.site-footer .menu-item a { color: var(--white50); }
.site-footer .menu-item a:hover { color: var(--white); }

.foo-intro .container {
    display: flex;
    align-items: center;
    gap: 120px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(90deg, transparent 0, transparent 17px, rgba(255,255,255,0.1) 17px, rgba(255,255,255,0.1) calc(100% - 17px), transparent calc(100% - 17px), transparent 100%);
    background-size: 100% 1px;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.foo-intro .foo-logo { min-width: 279px; }

.secondary-logo-link img { width: auto; }

.foo-top { padding-top: 40px; padding-bottom: 40px; }

.foonav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fooind {
    flex-direction: row;
    flex-wrap: wrap;
}

.fooind li {
    max-width: calc(50% - 8px);
    flex: 1 0 calc(50% - 8px);
}

.foo-cont-ul {
    display: grid;
    gap: 20px;
}

.foo-cont-ul a {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--white);
}

.foo-cont-ul i {
    --size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background: rgba(255, 255, 255, 0.1);
}

.socialnav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
}

.socialnav a {
    --size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    /* color: var(--white); */
    border-radius: var(--size);
    background: var(--primary);
}

.site-footer .socialnav a { color: var(--white); }

.foo-bot { color: var(--white50); }

.foo-bot .container {
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(90deg, transparent 0, transparent 17px, rgba(255,255,255,0.1) 17px, rgba(255,255,255,0.1) calc(100% - 17px), transparent calc(100% - 17px), transparent 100%);
    background-size: 100% 1px;
    background-position: top left;
    background-repeat: no-repeat;
}

.footerms {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* Footer Edit */
.post-edit-link,
.wp-logout {
    position: fixed;
    left: 0;
    bottom: 28px;
    font-size: 16px;
    line-height: 16px;
    padding: 6px 12px;
    min-width: 70px;
    text-align: center;
    color: var(--white) !important;
    background-color: var(--primary);
    z-index: 9;
}

/*** FOOTER ENDS ***/

/*
** Services Main
*/
.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    min-height: 570px;
    background: linear-gradient(180deg, #D5E6FF 0%, #FFE8B2 100%);
}

.hero-servsub {
    justify-content: stretch;
    min-height: 757px;
    background: linear-gradient(180deg, #D5EBFF 0%, #F2FFC5 50%, #FFEFD4 100%);
}

.hero-grid::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-pattern.svg');
    background-position: left top;
    background-repeat: repeat;
    background-size: contain;
    opacity: 0.4;
}

.hero-servsub.hero-grid::before { opacity: 0.8; }

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

/*Jumbo Box*/
.jumbox {
    position: relative;
    display: flex;
    gap: 30px 60px;
    border-radius: var(--siteradius);
    background: url('../images/services-experiences-interactivity-bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.jumbox-lt {
    flex-shrink: 0;
    margin-top: -35px;
}

.jumbox-rt {
    --padds: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: var(--padds);
    padding-left: 0;
}

.jumbox::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 189px;
    height: 90px;
    background-image: url(../images/jumbox-cut.svg);
    background-size: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

/*Services: Lefts & Rights */
.ltrt { --sidePadds: 50px; }
.ltrt-img { vertical-align: top; }
/* .ltrt-cont, .ltrt-techs, .ltrt-ctas { padding-left: var(--sidePadds); } */
.ltrt-cont, .ltrt-techs { padding-left: var(--sidePadds); }
.ltrt-alt .ltrt-cont, .ltrt-alt .ltrt-techs, .ltrt-alt .ltrt-ctas { padding-left: 0; padding-right: var(--sidePadds); }
.ltrt-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.ltrt-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.ltrt-techs span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 71.2px;
    height: 60px;
    background-image: url('../images/tech-ring.svg');
}

.ltrt-techs img {
    width: 35px;
    height: 35px;
}

/*Services: Why Polymator*/
.wcp {
    display: flex;
    gap: 55px;
    padding: 54px 30px;
}

.wcp-subh {
    font-size: 26px;
    line-height: 1;
}

.wcp-cont {
    margin-bottom: 40px;
}

/*Services: Brands*/
.brandl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brandi {
    --widths: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 var(--widths);
    max-width: var(--widths);
    height: 124px;
    border: 1px solid rgba(59,69,74,0.1);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
}

.brandi:nth-child(2n) { background: rgba(255, 255, 255, 0.4); }

.brandi img {
    width: 100%;
    max-width: 200px;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    filter: grayscale(1);
    transition: 0.3s ease;
}

.brandi:hover img { filter: grayscale(0); }

/*FAQs*/
.faqbox {
    padding: 80px 20px 20px;
    background: linear-gradient(94.25deg, rgba(60, 140, 240, 0.1) 0.2%, rgba(215, 25, 35, 0.1) 100.74%);
}

/*Serv Intro*/
.servintro-box {
    --spaces: 60px;
    position: relative;
    display: flex;
    gap: var(--spaces);
    padding: var(--spaces);
    background: linear-gradient(94.25deg, rgba(60, 140, 240, 0.1) 0.2%, rgba(215, 25, 35, 0.1) 100.74%);
    border-radius: var(--siteradius);
}

.servintro-box::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: var(--siteradius);
    background-color: var(--white);
}

.servintro-lt {
    --size: 240px;
    display: flex;
    flex: 1 0 var(--size);
    max-width: var(--size);
    min-width: var(--size);
    align-items: center;
    justify-content: center;
    height: var(--size);
    /*
    padding: 30px;
    border-radius: var(--siteradius);
    background: rgba(255,255,255,0.1);
    box-shadow: 0px 24.7399px 49.4797px rgba(0, 0, 0, 0.1);
    */
}

/*Services Mid: Hero*/
.hero-servsub .hero-wrap { max-width: calc(50% + 5px); }

.hero-servsub .hero-img {
    justify-content: center;
    left: 50%;
    right: auto;
    width: 590px;
    padding-left: 30px;
}

/*Services Internal: Hero*/
.hero-servint { background: linear-gradient(90deg, #EDEDFF 0%, #F2D8DE 100%); }

/*Solution List*/
.sollist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 35px;
}

.soli {
    --padds: 40px;
    position: relative;
    padding: 0 var(--padds) var(--padds);
    margin-top: 40px;
}


.soli::before,
.soli::after {
    --clipsize: 40px;
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: var(--siteradius);
    background-color: var(--white);
    clip-path: polygon( 0 0, calc(100% - var(--clipsize)) 0, 100% var(--clipsize), 100% 100%, 0 100% );
    z-index: 0;
}

.soli::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #667EEA 0%, #9942F1 100%);
}

.soli img,
.soli h3,
.soli p,
.soli a {
    position: relative;
    z-index: 1;
}

.soli img { margin-top: -40px; transition: 0.3s ease; }
.soli:hover img { transform: translateY(-10px); }
.soli h3 { margin-top: 40px; margin-bottom: 20px; }
.soli p:not(:last-child) { margin-bottom: 20px; }

.soli a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}

.soli a i {
    font-size: 14px;
    transform: translateX(0px);
    transition: 0.3s ease;
}

.soli a:hover i {
    transform: translateX(5px);
}

/*Key Benefits List*/
.keybl {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}

.keybi {padding: 30px;}
.keybi h3 { margin-top: 40px; margin-bottom: 20px; }

.keybi-bg {
    --clipsize: 52px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--siteradius);
    background: linear-gradient(180deg, #F4F3FC 0%, rgba(244, 243, 252, 0) 96.01%);
    clip-path: polygon( 0 0, calc(100% - var(--clipsize)) 0, 100% var(--clipsize), 100% 100%, 0 100% );
}

/*Process*/
.sprocsec {
    position: relative;
    padding-bottom: 0;
    overflow: visible;
}

.sprocl {
    display: grid;
    gap: 30px;
}

.sproci {
    --clipsize: 52px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--siteradius);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    clip-path: polygon( 0 0, calc(100% - var(--clipsize)) 0, 100% var(--clipsize), 100% 100%, 0 100% );
}

.sproci-head {
    gap: 20px;
    margin-bottom: 20px;
}

.sprocsec .section-head {
    --pbtm: 370px;
    position: sticky;
    top: 102px;
    padding-bottom: var(--pbtm);
}

.col-sproc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sproc-char {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}

/*About Us*/
.hero-abt {
    min-height: 460px;
    background-color: #DEF5FF;
    background-image: url('../images/hero-pattern.svg');
}

.hero-abt::before,
.hero-abt::after {
    content: "";
    --size: 886px;
    position: absolute;
    left: 0;
    bottom: 143px;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background: #E2F8C3;
    filter: blur(225px);
}

.hero-abt::after {
    left: auto;
    right: -33px;
    top: 200px;
    bottom: auto;
    background: #CBB4FF;   
}

.sdteam {
    --gridcol: 6;
    --gridcol: 5;
    display: grid;
    grid-template-columns: repeat(var(--gridcol), 1fr);
    gap: 20px;
}

.sdteam + .sdteam { margin-top: 20px; }
.sdteam-i h3 { line-height: 1; }
.sdteam-img { border-radius: 6px; overflow: hidden; }

.sdteam-img a,
.letel-img a {
    --posoff: 8px;
    position: absolute;
    bottom: var(--posoff);
    right: var(--posoff);
}

.sdteam-img i,
.letel-img i {
    --size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: var(--size);
    height: var(--size);
    color: var(--white);
    border-radius: 4px;
    background-color: var(--primary);
}

.sdteam-role { line-height: 20px; margin-top: 4px; }

.viewmore { display: flex; align-items: center; justify-content: center; gap: 10px; }
.viewmore i { font-size: 10px; font-weight: bold; transform: rotate(0deg); }
.viewmore-less i { padding-top: 6px; transform: rotate(-180deg); }

.letel {
    width: 1022px;
    max-width: 100%;
    margin: 0 auto;
}

.letel .slick-list { margin: 0 -20px; }
.letel-i { margin: 0 20px; }
.letel-img { position: relative; border-radius: var(--siteradius16); overflow: hidden; }
.letel-img a { --posoff: 10px;}
.letel-img i { --size: 26px; }

.letel-i h3 {
    position: relative;
    line-height: 1.15;
    margin-top: -40px;
    z-index: 1;
}

.letel-img::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 173px;
    height: 50px;
    background-image: url(../images/leftbcut.svg);
    background-size: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.oah h2 { color: var(--white); }

.ososec-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 41.66%;
}

/* Contact Us */
.hero-contact { background: url('../images/hero-pattern.svg'), linear-gradient(180deg, #FFF3D5 0%, #DDD5FF 100%); }
.hero-contact::before { background: #F0F8C3; }
.hero-contact::after { background: #D2FFCC; }

.wcp-contact::before {
    --offset: 12px;
    content: "";
    position: absolute;
    top: var(--offset);
    left: var(--offset);
    width: calc(100% - calc(2 * var(--offset)));
    height: calc(100% - calc(2 * var(--offset)));
    background: var(--white);
    border-radius: var(--siteradius);
}

.wcp.wcp-contact {
    position: relative;
    padding: 56px;
    background: linear-gradient(94.25deg, rgba(60, 140, 240, 0.1) 0.2%, rgba(215, 25, 35, 0.1) 100.74%);
}

.contdline { width: 480px; max-width: 100%; }

.contdline + .contdline { margin-top: 40px; }

.contd-title {
    display: flex;
    column-gap: 18px;
    align-items: flex-start;
}

.contd-title img {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
}

.contdline-lbl { padding-left: calc(38px + 18px); }

.contdline h3 a, .contdline-lbl a { color: var(--navy); }

.contmap iframe { max-width: 100%; vertical-align: middle; }

/*
** Default Page
*/
.hero-default {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 50px 0;
    background-color: #fff5de;
    background-image: linear-gradient(180deg, #D5E6FF, rgba(30, 170, 70, 0.122), rgba(215, 25, 35, 0.15));
}

.hero-default h1:only-child {
    margin-bottom: 0;
}