@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont.woff2') format('woff2'),
         url('../fonts/Roboto-VariableFont.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont.woff2') format('woff2'),
       url('../fonts/Montserrat-VariableFont.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --color-primary: #089DD9;
    --color-secondary: #1C2564;
    --color-heading: #21272A;
    --color-white: #fff;
    --color-black: #000;
    --f-fw-normal: 400;
    --f-fw-medium: 500;
    --f-fw-semibold: 600;
    --f-fw-bold: 700;
    --f-fw-ex-bold: 800;
    --f-fw-black: 800;
    --f-fs-font-14: 14px;
    --f-fs-font-15: 15px;
    --f-fs-font-16: 16px;
    --f-fs-font-18: 18px;
    --f-fs-font-20: 20px;
    --f-fs-font-22: 22px;
    --f-fs-font-24: 24px;
    --f-fs-font-26: 26px;
    --f-fs-font-28: 28px;
    --f-fs-font-30: 30px;
    --f-fs-font-32: 32px;
    --f-fs-font-34: 34px;
    --f-fs-font-36: 36px;
    --f-fs-font-38: 38px;
    --f-fs-font-40: 40px;
    --f-fs-font-42: 42px;
    --f-fs-font-44: 44px;
    --f-fs-font-46: 46px;
    --f-fs-font-48: 48px;
    --f-fs-font-50: 50px;
    --f-fs-font-52: 52px;
    --f-fs-font-54: 54px;
    --f-fs-font-56: 56px;
    --f-fs-font-58: 58px;
    --f-fs-font-60: 60px;
    --radius-6: 6px;
    --radius-35: 35px;
    --radius-25: 25px;
    --radius-20: 20px;
    --radius-15: 15px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
:focus {
    outline: 0;
    box-shadow: none;
}
:focus-visible {
    outline: none;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-heading);
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a {
    color: var(--color-heading);
    text-decoration: none;
}
a:hover {
    color: var(--color-primary);
}
b,
strong {
    font-weight: 500;
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}
.z-1 {
    z-index: 1;
}
.z-n1 {
    z-index: -1;
}
.btn-theme {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    width: fit-content;
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-24);
    font-weight: var(--f-fw-medium);
    border: 2px solid var(--color-white);
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 16px;
    padding: 13px 20px 13px 20px;
    min-height: 56px;
    text-align: left;
    transition: all 0.5s ease;
}
.btn-theme:after {
    display: inline-block;
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    font-size: 17px;
}
.btn-theme:hover {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    color: var(--color-primary);
}
.btn-border {
    background-color: var(--color-white);
    color: var(--color-secondary);
}
.btn-border:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.text-18 {
    font-size: var(--f-fs-font-18);
    line-height: var(--f-fs-font-26);
}
.py-65 {
    padding: 65px 0;
}
.py-100 {
    padding: 100px 0;
}
.py-120 {
    padding: 120px 0;
}
.py-140 {
    padding: 140px 0;
}
.py-80 {
    padding: 80px 0;
}
.f-w-500 {
    font-weight: var(--f-fw-medium);
}
.gap-y-30 {
    gap: 30px 0;
}
.main-wrap>.alignwide {
    max-width: 1388px;
    margin: 0 auto;
}
.main-wrap>.alignfull {
    max-width: none;
}
.main-wrap>.alignfull>* {
    padding: 0 15px;
}
.h1title {
    font-size: var(--f-fs-font-54);
    line-height: var(--f-fs-font-58);
    font-weight: var(--f-fw-bold);
    word-break: break-word;
}
.h2title {
    font-size: var(--f-fs-font-42);
    line-height: var(--f-fs-font-46);
    font-weight: var(--f-fw-bold);
    letter-spacing: 1px;
    margin-bottom: 35px;
    word-break: break-word;
}
.top-title {
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-20);
    font-weight: var(--f-fw-bold);
    color: var(--color-primary);
    letter-spacing: 1px;
    margin-bottom: 11px;
    word-break: break-word;
}
.heading-5 {
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-22);
    font-weight: var(--f-fw-bold);
    word-wrap: break-word;
}
.container {
    max-width: 1640px;
}
.container.small-cntr {
    max-width: 1365px;
}
.sec-bg {
    background-color: #F9F9F9;
}
.location-wrap .h2title {
    margin-right: -239px;
}
.news-wrap .btn-theme {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: var(--color-white);
}
.news-wrap .btn-theme:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}
.slick-slide {
    margin: 0 10px;
}
:is(.author-slider, .cpny-list, .employee-review) .slick-track {
    display: flex;
}
:is(.author-slider, .cpny-list, .employee-review) .slick-slide {
    height: inherit;
}
/*.slick-track {
    margin-left: -10px;
    margin-right: -10px;
}*/
.slick-arrow {
    top: inherit;
    right: 0;
    left: 0;
    bottom: -60px;
    margin: 0 auto;
}
.slick-arrow.slick-prev {
    left: -50px;
}
.slick-arrow.slick-next {
    right: -50px;
}
.slick-arrow:before {
    display: none;
}
.slick-arrow i {
    color: var(--color-black);
    font-size: var(--f-fs-font-20);
    font-weight: 400;
}
.slick-dots li button:before {
    display: none;
}
.slick-dots li {
    width: 17px;
    height: 17px;
}
.slick-dots li button {
    width: 17px;
    height: 17px;
    padding: 0;
    border: 1px solid var(--color-primary);
    border-radius: 100%;
}
.slick-dots li.slick-active button {
    background-color: var(--color-primary);
}
.height-23 {
    border-width: 23px;
    opacity: 1;
}
.btm-awards {
    margin-top: -40px;
}
.btm-awards .container {
    max-width: 1400px;
}
.wpcf7-not-valid-tip {
    font-size: 13px;
    line-height: 18px;
}
.custom-dropd .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}
.custom-dropd .select {
    cursor: pointer;
    display: block;
    position: relative;
    font-size: 16px;
    color: #000;
    width: 100%;
}
.custom-dropd .select-styled {
    padding: 10px 0;
    border-bottom: 1px solid #666;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.custom-dropd .select-styled:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    color: #344054;
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: all 0.2s ease-in-out;
}
.custom-dropd .select-styled:active:after,.custom-dropd .select-styled.active:after {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}
.custom-dropd .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #f2f4f8;
}
.custom-dropd .select-options li {
    margin: 0;
    padding: 4px 15px;
    border-top: 1px solid #C1C7CD;
    color: var(--color-black);
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}
.custom-dropd .select-options li:hover,.custom-dropd .select-options li.is-selected {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.custom-dropd .select-options li[rel="hide"] {
    display: none;
}
.cta-wrap .container {
    max-width: 1320px;
}
.cta-wrap .text-18 p:not(:last-child) {
    margin-bottom: 16px;
}
.single-top {
    padding: 200px 0 300px;
    background-image: url('../img/single-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.thumb-img {
    margin-top: -250px;
}
.single-wrap .container {
    max-width: 1358px;
    margin: 0 auto;
}
.single-wrap .entry-content p:not(:last-child) {
    margin-bottom: 15px;
}
.thumb-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.sidebar-latest-posts {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 11.8px rgba(0, 0, 0, 0.15);
    background-color: var(--color-white);
    position: sticky;
    top: 30px;
    margin: 30px 0 50px;
}
.sidebar-latest-posts h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}
.latest-post-thumb img {
    border-radius: 5px;
}
.latest-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.latest-post-item + .latest-post-item {
    margin-top: 15px;
}
.latest-post-item a {
    text-decoration: none;
    font-weight: 500;
}
.latest-post-item a:hover {
    color: #0073aa;
}
/*Responsive Start*/
@media only screen and (max-width: 1650px) {
    .container {
        padding: 0 50px;
    }
    .location-wrap .h2title {
        margin-right: 0;
    }
}
@media only screen and (max-width: 1199px) {
    .lg\:pr-12 {
        padding-right: 12px;
    }
}
@media only screen and (max-width: 991px) {
    .container {
        padding: 0 25px;
    }
    .md\:pr-12 {
        padding-right: 12px;
    }
    .md\:py-70 {
        padding: 70px 0;
    }
    .h1title {
        font-size: var(--f-fs-font-48);
        line-height: var(--f-fs-font-50);
    }
}
@media only screen and (max-width: 767px) {
    .sm\:py-50 {
        padding: 50px 0;
    }
    .sm\:pt-50 {
        padding-top: 50px;
    }
    .sm\:pb-80 {
        padding-bottom: 80px;
    }
    .pt-m-120 {
        padding-top: 120px;
    }
    .h1title {
        font-size: var(--f-fs-font-32);
        line-height: var(--f-fs-font-36);
    }
    .top-title {
        font-size: var(--f-fs-font-14);
        line-height: var(--f-fs-font-14);
    }
    .h2title {
        font-size: var(--f-fs-font-24);
        line-height: var(--f-fs-font-26);
        margin-bottom: 30px;
    }
    .text-18 {
        font-size: var(--f-fs-font-16);
        line-height: var(--f-fs-font-22);
    }
    .mobile-pt-75 {
        padding-top: 75px;
    }
    .slick-arrow {
        bottom: -70px;
    }
    .m-order-2 {
        order: 2;
    }
    .news-wrap .btn-theme {
        border-radius: 6px;
        gap: 25px;
    }
    .motivating-wrap {
        position: relative;
        padding-bottom: 180px;
    }
    .motivating-wrap .btn-wrap {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 75px;
        width: fit-content;
    }
    .career-benefits .sec-info {
        text-align: center;
    }
    .single-top {
        padding: 155px 0 300px;
    }
}
@media only screen and (max-width: 575px) {
    .company-img img {
        width: 263px;
    }
    .building-img img {
        width: 287px;
    }
}
@media only screen and (max-width: 400px) {
    .container {
        padding: 0 15px;
    }
    .btn-wrap .btn-theme {
        padding: 13px 20px 13px 25px;
    }
    .btn-theme {
        padding: 13px 10px 13px 15px;
    }
    .news-wrap .btn-wrap .btn-theme {
        gap: 15px;
        font-size: var(--f-fs-font-16);
        line-height: var(--f-fs-font-20);
        padding: 10px 15px 10px 20px;
    }
}