/*
** Theme Variables
*/
:root {
    --green: #399c39;
    --red: #FF4C1B;
    --white: #ffffff;
    --black: #000000;

    --primary:   #3B9FAD;
    --primary-a:   #278692;
    
    --secondary: #50A459;
    --secondary-a: #3c8644;
    --dark:      #121212;
    --aqua:        #E4FCFF;

    --body:      #575756;

    --gray:  #F8F8F9;
    --silver:#828282;
    --sky:  #F7F9FC;
    --lime: #EFFEF0;
    
    --link: var(--body);

    --formfieldbg: transparent;
    --formfieldplaceholder: var(--body);
    --formtextcolor: var(--body);
    --formfieldborder: #E8E8E8;

    --siteradius: 40px;
    --siteradius10: 10px;
    --siteradius16: 16px;
    --siteradius60: 60px;

    scroll-behavior: smooth;
}

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

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

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

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

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

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

[class^="icon-"], [class*=" icon-"] {
  font-family: 'ig';
  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-instagram:before {
    content: "\e908";
}
.icon-angle-down:before {
    content: "\e907";
}
.icon-linkedin:before {
    content: "\e900";
}
.icon-mail:before {
    content: "\e901";
}
.icon-phone:before {
    content: "\e902";
}
.icon-x:before {
    content: "\e903";
}
.icon-arrow-right:before {
    content: "\e904";
}
.icon-bullet:before {
    content: "\e905";
}
.icon-facebook:before {
    content: "\e906";
}

/*
** 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(--primary); }
a:focus { outline: none; }
strong, b { font-family: 'geist-bd', serif; }
address { font-style: normal; }

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

header ul li,
footer ul li {
    margin: 0;
}

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: 'geist', 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: 'geist-md', serif;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
    color: var(--dark);
}

h1, .h1 { --fsize: 70px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 32px; }
h2, .h2 { --fsize: 52px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 32px; }
h3, .h3 { --fsize: 42px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 16px; }
h4, .h4 { --fsize: 28px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 16px; }
h5, .h5 { --fsize: 20px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 16px; }
h6, .h6 { --fsize: 16px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); margin-bottom: 10px; }

p { margin-top: 0; }

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

/* Form Fields */
form {
    --fieldsize: 55px;
    --fieldpadds: 0px 24px;
    --fieldtop: 17px;
    --fieldfsize: 16px;
    --fieldRads: var(--siteradius16);
    font-size: var(--fieldfsize);
}

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: 'geist', 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: transparent;
    border: 1px solid var(--formfieldborder);
    outline: 0 !important;
    vertical-align: top;
    color: var(--formtextcolor);
}

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

textarea {
    padding-top: var(--fieldtop);
    line-height: 1.4;
    height: 120px;
    resize: none;
}

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


/*Background Utilities*/
.bg--secondary { background-color: var(--secondary); }
.bg--sky { background-color: var(--sky); }
.bg--lime { background-color: var(--lime); }
.bg--aqua { background-color: var(--aqua); }
.bg--dark { background-color: var(--dark); color: var(--white); }
.bg--white { background-color: var(--white); }

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

.text--primary { color: var(--primary); }
.text--secondary { color: var(--secondary); }
.text--body { color: var(--body); }
.text--white { color: var(--white); }
.text--dark { color: var(--dark); }
.text--silver { color: var(--silver); }
.text--black { color: var(--black); }

.text-upercase { text-transform: uppercase; }
.text-justify { text-align: justify; }
.text-italic { font-style: italic; }

.font-32 { --fsize: 32px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-30 { --fsize: 30px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); }
.font-28 { --fsize: 28px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-24 { --fsize: 24px; font-size: var(--fsize); line-height: calc(var(--fsize) + 8px); }
.font-22 { --fsize: 22px; font-size: var(--fsize); line-height: calc(var(--fsize) + 10px); }
.font-20 { font-size: 20px; line-height: 30px; }
.font-18 { font-size: 18px; line-height: 24px; }
.font-16 { font-size: 16px; line-height: 24px; }
.font-14 { font-size: 14px; line-height: 22px; }
.font-10 { font-size: 10px; line-height: 18px; }

/*Gaps*/
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }

/*
** Buttons
*/
.bttn {
    --btnsize: 50px;
    font-family: 'geist', sans-serif;
    font-size: 18px;
    line-height: calc(var(--btnsize) - 2px);
    min-width: 152px;
    height: var(--btnsize);
    padding: 0 24px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: var(--siteradius10);
    cursor: pointer;
    vertical-align: top;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.bttn.bttn-sm {
    --btnsize: 50px;
    border-radius: var(--siteradius10);
}

.site-header .bttn { min-width: 140px; }

.bttn-primary {
    color: var(--white);
    background-color: var(--primary);
}

.bttn-primary:hover {
    color: var(--white);
    background-color: var(--primary-a);
}

.bttn-primary-alt {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.bttn-primary-alt:hover {
    color: var(--white);
    background-color: var(--primary);
}

.bttn-secondary {
    color: var(--white);
    background-color: var(--secondary);
}

.bttn-secondary:hover {
    color: var(--white);
    background-color: var(--secondary-a);
}


.bttn-secondary-alt {
    color: var(--secondary);
    border-color: var(--secondary);
    background-color: transparent;
}

.bttn-secondary-alt:hover {
    color: var(--white);
    background-color: var(--secondary);
}

.bttn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*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 { pointer-events: none; cursor: none; }
.siteradius { border-radius: var(--siteradius); }

.iialist,
.iialist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*
** Bootstrap Extends & Overrides
*/
.container, .container-fluid, .row>* { padding-left: 15px; padding-right: 15px; }
.row { margin-left: -15px; margin-right: -15px; }
.row-gap { row-gap: 40px; }
/* .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; } */

.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;
}

.overflow-hidden { overflow: hidden; }

/*
** 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; }
.slick-initialized .slick-slide { display: inline-block; width: auto; }
.slick-initialized .slick-slide:focus { outline: none; }
.slick-dots { display: flex; align-items: center; justify-content: center; list-style: none; padding: 0; }
.slick-dots li { margin: 0; }
.slick-dots li + li { margin: 0; margin-left: 10px; }
.slick-dots li button {
    display: block;
    font-size: 0px;
    width: 12px;
    max-width: 12px;
    height: 12px;
    padding:0;
    border: 0px solid transparent;
    border-radius: 12px;
    background-color: #cccccc;
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.slick-dots li.slick-active button { background-color: var(--primary); }


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

.site-header {
    font-family: 'geist-md', sans-serif;
    position: sticky;
    top: 0;
    padding: 24px 0;
    background-color: var(--white);
    transition: all 0.3s ease;
    z-index: 15;
}

.site-header.siteheader-sticky {
    padding: 14px 0;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.14);
}

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

.siteheader-sticky .custom-logo {
    height: 50px;
}

.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: 40px;
}

.headernav li { margin-bottom: 0; }

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

/* .siteheader-sticky .headernav a { font-size: 18px; } */

.headernav a:hover,
.headernav .current-menu-ancestor:not(.nothigh)>a,
.headernav .current-menu-parent:not(.nothigh)>a,
.headernav .current-menu-item:not(.nothigh)>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 {
    --padds: 120px;
    --padds: 90px;
    padding-top: var(--padds);
    padding-bottom: var(--padds);
}

.section-head {
    margin-bottom: 60px;
}

.subhead {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 40px;
    padding: 0 24px;
    border: 1px solid var(--secondary);
    border-radius: var(--siteradius16);
    margin-bottom: 24px;
}

.subhead::before {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: var(--secondary);
}

/*
** Homepage
*/

/*Hero*/
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 630px;
    padding: 80px 0;
    overflow: hidden;
}

.hero-home {
    --offset: 108px;
    position: relative;
}

.hero-page {
    min-height: 360px;
}

.hero-lines::before,
.hero-lines::after {
    --size: 60px;
    --total: calc(5 * var(--size));
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--total);
    height: 100%;
    background-size: var(--size) 100%;
    background-position: 0 0;
    background-repeat: repeat-x;
}

.hero-lines::before {
    background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-lines::after {
    left: auto;
    right: 0;
    background-image: linear-gradient(-90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(-90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-wrap { position: relative; z-index: 1; }

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/*Logo Carousel*/
.logolist {
    --size: clamp(10rem, 1rem + 25vmin, 30rem);
    --gap: calc(var(--size) / 6);
    --duration: 20s;
    --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));
    overflow: hidden;
}

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

.logoitem {
    display: flex;
    place-items: center;
    justify-content: center;
    width: 200px;
    /* height: 100px; */
    fill: var(--color-text);
    background: var(--color-bg-accent);
    -webkit-user-drag: none;
}

.logoitem img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 80px;
}

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


/*WWH*/
.wwh h3 {
    --fsize: 32px;
    color: var(--white);
}

/*Our Services*/
.oslist:not(.slick-initialized) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.slick-track { display: flex; }

.ositem { display: inline-flex; margin: 0 15px; }

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

.oscard {
    border-radius: var(--siteradius16);
    background-color: var(--sky);
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
    overflow: hidden;
}

.osimg {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.osimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.0);
    transition: 0.4s ease-in-out;
}

.osimg:hover img { transform: scale(1.1); }

.oscont { padding: 20px; }

.oscont h3 a { color: var(--dark); }

.oscont h3 a:hover { color: var(--primary); }

.oslist .slick-dots { margin-top: 40px; }

/*Why Choose Us*/
.wcus .section-head {
    position: sticky;
    top: 140px;
}

.wculist {
    display: grid;
    /* gap: 80px; */
    width: 680px;
    max-width: 100%;
}

.wcuitem {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.wcuitem:not(:last-child) {
    padding-bottom: 80px;
}

.wcuitem-cont h3 {
    --fsize: 28px;
    margin-bottom: 28px;
}

.wcuitem-num {
    --wcnumsize: 88px;
    text-align: center;
}

.wcuitem-num::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--wcnumsize) / 2);
    width: 2px;
    height: 100%;
    background-color: var(--formfieldborder);
    z-index: 0;
}

.wcuitem-num span {
    position: relative;
    flex: 1 0 var(--wcnumsize);
    min-width: var(--wcnumsize);
    background-color: var(--lime);
}

.wcuitem:last-child .wcuitem-num::before { display: none; }

/*Our Products*/
/* .slick-initialized .proditem { display: inline-flex; } */

.prodlist .slick-track { display: block; }

.proditem { margin: 0 20px; }

.prodcard {
    position: relative;
    padding: 40px 25px;
    row-gap: 20px;
    border-radius: var(--siteradius16);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.prodimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--siteradius16);
    overflow: hidden;
}

.prodlist .slick-dots { margin-top: 40px; }

.prodcont h4 { margin-bottom: 4px; }

/*
** About Us
*/
.vismis {
    padding: 40px;
    border: 1px solid var(--secondary);
    border-radius: var(--siteradius);
    transition: 0.3s ease;
}

.vismis:hover { background-color: var(--sky); }
.vismis + .vismis { margin-top: 32px; }
.vismis img, .vismis h3 { margin-bottom: 32px; transition: 0.3s ease; }
.vismis:hover img { mix-blend-mode: multiply; }
.covw-img { position: relative; }
.covw-img img {
    position: absolute;
    left: 15px;
    top: 0;
    width: calc(100% - 30px);
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cvitem p {
    width: 432px;
    max-width: 100%;
}

.row-cteam {
    --thisRads: 60px;
    row-gap: 32px;
}

.teamc {
    padding: 10px;
    border-radius: var(--thisRads);
    background-color: var(--sky);
}

.teamcont {
    position: relative;
    padding: 40px 14px 22px;
}

.teamimg {
    position: relative;
    border-radius: var(--thisRads);
    overflow: hidden;
}

.teamimg::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}

.teamimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.teamsoc {
    --thisSize: 40px;
    position: absolute;
    top: calc(0px - var(--thisSize));
    left: 50%;
    /* right: 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    /* width: 114px; */
    height: 58px;
    padding: 8px;
    margin: 0 auto;
    transform: translateX(-50%);
    border: 1px solid var(--secondary);
    border-radius: var(--siteradius60);
    background-color: var(--white);
}

.teamsoc a {
    font-size: 15px;
    width: var(--thisSize);
    height: var(--thisSize);
    line-height: var(--thisSize);
    border: 1px solid var(--formfieldborder);
    border-radius: 100%;
    color: var(--black);
}

.teamsoc a:hover {
    color: var(--white);
    background-color: var(--secondary);
}

/*
** Stats
*/
.sitecta {
    --padds: 80px;
    padding: var(--padds) 0;
    position: relative;
}

.sitecta-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 0;
}

.sitecta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.statlist {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    z-index: 1;
}


/*
** Partnerships
*/
.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    line-height: 40px;
    margin-bottom: 40px;
}

.tabs a {
    padding: 0 24px;
    color: var(--dark);
    border: 1px solid var(--primary);
    border-radius: var(--siteradius16);
}

.tabs a:hover, .tabs .active { border-color: var(--primary); color: var(--white); background-color: var(--primary); }
.tabs a:hover { opacity: 0.9; }

.tabpane { display: none; }
.tabpane.active { display: flex; }

.partlogos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 80px 90px;
    width: 1300px;
    margin: 0 auto 0;
}

.partlogos img {
    --partLogosWid: calc(20% - 80px);
    flex: 1 0 var(--partLogosWid);
    width: auto;
    max-width: var(--partLogosWid);
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/*
** Our Services
*/
.oserv-list {
    display: grid;
    gap: 60px;
}

.oserv-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: var(--siteradius60);
    background: var(--sky);
}

.oserv-img {
    position: relative;
    border-radius: var(--siteradius);
    overflow: hidden;
}

.oserv-img img {
    position: absolute;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.oserv-cont {
    padding: 30px 0;
}

.indlist .osimg { aspect-ratio: 80/53; }
.indlist h3 { --fsize: 26px; margin-bottom: 10px; }
.indlist h3:last-child { margin-bottom: 0; }
.indlist p { font-size: 16px; line-height: 26px; }


/*
** Contact Us
*/
.cus-card {
    min-height: 100%;
    padding: 40px;
    border-radius: var(--siteradius);
}

.cus-details {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.cus-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cus-item:hover { color: var(--secondary); }

.cus-item i {
    --size: 55px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    line-height: var(--size);
    text-align: center;
    color: var(--white);
    border-radius: var(--siteradius16);
    background-color: var(--secondary);
}

.form-block {
    padding: 60px;
    text-align: left;
    background-color: var(--gray);
}

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

.cus-soc li { margin-bottom: 0;}

.cus-soc a {
    --size: 55px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    font-size: 20px;
    line-height: var(--size);
    text-align: center;
    color: var(--silver);
    border: 1px solid var(--silver);
    border-radius: var(--siteradius16);
}

.cus-soc a:hover {
    color: var(--white);
    border-color: var(--secondary);
    background-color: var(--secondary);
}

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

.iti__selected-flag {
    border-top-left-radius: var(--fieldRads);
    border-bottom-left-radius: var(--fieldRads);
}

.wpcf7 .row {
    row-gap: 20px;
}

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

.wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    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: #c41010;
    color: #ffffff;
}

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

/*Contact Form Quiz*/
.input-quiz label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-quiz label input {
    width: 50px;
    min-width: 0;
    padding: 0 10px;
    text-align: center;
}

.input-quiz label span {
    flex: 0 0 auto;
}

.input-quiz .wpcf7-not-valid-tip {
    margin-left: 177px;
    margin-left: 192px;
    margin-top: 0;
}


/*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: 9000;
}


/*
** Default Page
*/
.igx h2 { --fsize: 40px; margin-bottom: 16px; }
.igx h3 { --fsize: 36px; }
.igx h4 { --fsize: 32px; }
.igx h5 { --fsize: 26px; }
.igx h6 { --fsize: 20px; }


/*
** Footer
*/

.foo-adds,
.foo-top {
    padding-top: 40px;
}

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

.foo-adds address + address {
    margin-top: 20px;
}

.foo-top .custom-logo-wrap {
    margin-bottom: 32px;
}

.foo-top h2 {
    width: 440px;
    max-width: 100%;
}

.foo-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.foonav {
    display: grid;
    gap: 20px;
}

.foonav a {
    color: var(--silver);
}

.foonav .current-menu-item a,
.foonav a:hover {
    color: var(--secondary);
}

.foo-copy {
    padding: 24px 0;
    border-top: 1px solid var(--silver);
}

.socialnav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    line-height: 60px;
    line-height: 50px;
    border: 1px solid var(--silver);
    border-radius: var(--siteradius16);
}

.socialnav a:hover {
    color: var(--white);
    border-color: var(--primary);
    background-color: var(--primary);
}

.add-fulladd a {
    color: var(--silver);
}