/* ========================= */
/* :: 1.0 FONTS  */
/* ========================= */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.woff2') format('woff2'),
        url('../fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Font */
    --gotham: 'Gotham', sans-serif;

    /* Color */
    --white: #fff;
    --black: #000;
    --primary: #172839;
    --primary-light: #183d61;
    --secondary: #94273a;
    --secondary-light: #d22745;
    --gray: #9d9d9d;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    color: var(--primary);
    font-size: 16px;
    font-family: var(--gotham);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -5%;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

button {
    padding: 0;
    border: none;
    background: unset;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}

*+address,
*+dl,
*+fieldset,
*+figure,
*+ol,
*+p,
*+pre,
*+ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

/* ========== Reusable & Bootstrap Customized CSS Start ========== */

/* Buttons Styling */
.btn {
    width: 100%;
    height: 48px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 0;
    white-space: nowrap;
    padding: 12px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    border: 1.5px solid var(--secondary);
}

.btn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn--two {
    border-color: var(--white);
    color: var(--white);
}

.btn--two:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn--three {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn--secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn--secondary:hover {
    background-color: var(--secondary-light);
    color: var(--white);
}

.btn__icon {
    width: 20px;
    height: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.btn__icon svg,
.btn__icon img {
    width: 100%;
    height: 100%;
}

.btn:hover .arrow-right-anim {
    animation: arrowRightTrough 0.6s ease-in-out forwards;
}

@keyframes arrowRightTrough {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    33% {
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
    }

    66% {
        transform: translateX(-100%);
    }
}

.btn:hover .movingAnim {
    animation: movingAnim 2s linear infinite;
}

@keyframes movingAnim {

    0%,
    50%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-4px);
    }

    75% {
        transform: translateY(4px);
    }
}

/* Typography */
.fs-1 {
    font-size: 40px !important;
    line-height: 1.125;
    letter-spacing: 0;
}

.fs-2 {
    font-size: 24px !important;
    line-height: 1;
}

.pretitle {
    font-size: 14px;
}

.letter-spacing-0 {
    letter-spacing: 0;
}

.font-size-14 {
    font-size: 14px;
}

/* Color Palette */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Others */
.transition-1 {
    transition: all 0.3s ease-in-out;
}

.transition-2 {
    transition: all 0.4s ease-in-out;
}

.transition-3 {
    transition: all 0.5s ease-in-out;
}

.border-radius-10 {
    border-radius: 10px;
}

/* ========== Reusable & Bootstrap Customized CSS End ========== */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header--area {
    padding: 20px 0;
}

.logo {
    max-width: 112px;
}

.menu-btn,
.menu-close {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    color: var(--white);
    background-color: var(--secondary);
}

.menu-btn:hover,
.menu-close:hover {
    background-color: var(--secondary-light);
    color: var(--white);
}

.menu .offcanvas {
    background-color: rgba(23, 40, 57, 0.75);
    backdrop-filter: blur(12px);
}

.menu .offcanvas-header {
    padding: 20px;
}

.menu .offcanvas-body {
    padding: 40px 20px;
}

.menu__link {
    padding: 12px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu__link:hover {
    color: var(--secondary-light);
}

.menu__btns__title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header Desktop Start */

.header__left {
    gap: 40px;
}

.header__ul {
    gap: 24px;
}

.header__nav__link {
    color: var(--white);
    line-height: normal;
    letter-spacing: 0;
}

.header__nav__link::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: all 0.3s ease-in-out;
}

.header__nav__link:hover {
    color: var(--secondary-light);
}

.header__nav__link:hover::after {
    background-color: var(--secondary-light);
}

.header__nav__link:hover::after,
.header__nav__link.active::after {
    transform: translateX(-50%) scale(1);
}

.header__btns__wrap {
    gap: 10px;
}

.header__sm__btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--primary);
}

.header__sm__btn svg {
    max-width: 22px;
}

.header__sm__btn svg path {
    fill: #fff;
}

.header__sm__btn:hover {
    background-color: var(--primary-light);
}

/* Header Desktop End */
.header--sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease-in-out;
}

.sticky-header.sticky-active {
    position: fixed;
    top: -100px;
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.sticky-header.sticky-active.show {
    top: 0;
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    min-height: 544px;
}

.hero--section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 23, 44, 0.8);
    z-index: -1;
}

.hero__para {
    font-size: 20px;
    line-height: 1.2;
}

.hero__btns {
    gap: 12px;
}

.hero__btns .btn {
    width: auto;
}

.contact-item,
.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    color: var(--secondary-light);
}

.contact-item {
    gap: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.hero__signature {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    max-width: 112px;
    opacity: 0.4;
    margin-bottom: 24px;
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Expertises Section CSS Start */
/* =============================== */
.expertises--section {
    padding: 48px 0 128px;
}

.expertises__wrapper {
    max-width: 1316px;
}

.expertises__mini__card {
    padding: 25px 30px 48px;
}

.expertises__mini__card {
    height: 100%;
    padding: 20px 20px 28px;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.3),
        0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

.expertises__mini__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(23, 40, 57, 0.73) 0%,
            #172839 100%);
    z-index: -1;
}

.expertises__mini__card:hover .expertises__bg__img {
    transform: scale(1.05);
}

.expertises__badge {
    color: var(--white);
    font-size: 12px;
    border-radius: 100px;
    background-color: var(--primary);
    padding: 5px 16px;
}

.expertise__title {
    font-size: 20px;
}

.expertises__ellipse {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.expertises__btns {
    gap: 16px;
}

/* =============================== */
/* :: 6.0 Expertises Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 References Section CSS Start */
/* =============================== */
.reference--section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: linear-gradient(170deg, rgba(23, 40, 57, 0.73) 0%, #172839 76%);
    z-index: -1;
}

.reference__wrapper {
    padding: 24px 16px;
    box-shadow: 2px -4px 30px 0 rgba(35, 35, 35, 0.13);
    margin-top: -80px;
}

.reference__slider__wrap {
    max-width: 1116px;
}

.reference__slider__item {
    padding: 24px 16px 64px;
    background-color: #efefef;
    gap: 16px;
}

.reference__slider__avatar {
    width: 48px;
    height: 48px;
    border: 1px solid var(--secondary);
}

.reference__slider__avatar__img {
    width: 88%;
    height: 88%;
}

.reference__person__company {
    font-size: 14px;
}

.reference__heading {
    line-height: 1.2;
    font-size: 18px;
}

.reference__slider__btns__wrap {
    margin-top: -36px;
}

.reference__slider__btns__inner {
    padding: 20px 28px;
    gap: 16px;
}

.reference__slider__btn {
    position: static;
    margin-top: 0;
    width: 20px;
    height: 10px;
    color: #ededed;
}

.reference__slider__btn::after {
    display: none;
}

.reference__slider__btn svg {
    width: 100%;
    height: 100%;
}

.reference__pagination {
    position: static;
    line-height: 1;
    width: auto !important;
}

.reference--section .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 !important;
    position: relative;
    opacity: 1;
    filter: grayscale(100);
    transition: all 0.3s ease-in-out;
}

.reference--section .swiper-pagination-bullet-active {
    filter: none;
}

.reference--section .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: no-repeat center / cover;
}

.reference--section .swiper-pagination-bullet:nth-child(1)::after {
    background-image: url('../imgs/bgs-thumbs/avatar/avatar-01.jpg');
}

.reference--section .swiper-pagination-bullet:nth-child(2)::after {
    background-image: url('../imgs/bgs-thumbs/avatar/avatar-03.jpg');
}

.reference--section .swiper-pagination-bullet:nth-child(3)::after {
    background-image: url('../imgs/bgs-thumbs/avatar/avatar-02.jpg');
}

.reference--section .swiper-pagination-bullet:nth-child(4)::after {
    background-image: url('../imgs/bgs-thumbs/avatar/Mask group.png');
}

/* Counter Content Start */
.counter-block {
    padding-top: 48px;
}

.counter-block__wrapper {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.counter-block__inner {
    max-width: 1420px;
}

.counter-block__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #425a73;
}

.counter-block__digit {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.counter-block__text {
    font-size: 14px;
    line-height: 1.2;
}

.counter-block__icon__img {
    max-height: 33%;
}

/* Counter Content End */
/* =============================== */
/* :: 7.0 References Section CSS End */
/* =============================== */
/* =============================== */
/* :: 8.0 Footer Area CSS Start */
/* =============================== */
.footer--area::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(163deg,
            #17283a 65%,
            rgba(23, 40, 57, 0.75) 100%);
    z-index: -2;
}

.footer__wrapper {
    max-width: 1920px;
    padding: 48px 0 64px;
}

.footer__inner {
    max-width: 1316px;
}

.footer__form__card {
    max-width: 560px;
    padding: 20px 16px 24px;
}

.form {
    gap: 10px;
}

.form__title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.form__input {
    width: 100%;
    height: 48px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    resize: none;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1.5px solid #ededed;
    transition: all 0.3s ease-in-out;
}

.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--primary-light);
}

.form__input--textarea {
    height: 112px;
}

*::-moz-placeholder {
    color: #898e93;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 1;
}

*::placeholder {
    color: #898e93;
    font-size: 13px;
    font-weight: 500;
    opacity: 1;
}

.contact__top {
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.contact__para {
    font-size: 20px;
    line-height: 1.2;
}

.contact__way {
    gap: 16px;
}

.footer__nav__link,
.widget {
    color: var(--gray);
}

.footer__nav__link:hover {
    color: var(--secondary-light);
}

.footer__bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 84%;
    height: 100%;
    z-index: -2;
}

.form__item--submit {
    margin-top: 20px;
}

.main-thumb {
    max-height: 200px;
    margin-left: -140px;
}

.main-thumb {
    max-height: 200px;
}

.footer__ellipse {
    position: absolute;
    bottom: -5%;
    right: -3%;
    z-index: -1;
}

/* =============================== */
/* :: 8.0 Footer Area CSS End */
/* =============================== */

/* ==================================== */
/* :: 9.0 companies.html Page CSS Start */
/* ==================================== */
/* Common Header CSS Start */
.header.header--bg {
    background-color: #172839;
}

.header.header--bg .header__sm__btn {
    background-color: #183d61;
}

.header.header--bg .header__sm__btn:hover {
    background-color: #264c72;
}

/* Common Header CSS End */

/* Common Hero CSS Start */
.hero.hero--page {
    height: 330px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero.hero--page::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg,
            rgba(23, 40, 57, 0.53) 0%,
            #172839 100%);
    z-index: -1;
    box-shadow: 0px 4px 8px 3px #00000026;
}

.hero__content span.pretitle {
    font-family: var(--gotham);
    color: #ffffff;
    font-size: 16px;
    display: block;
    font-weight: 300;
}

.hero.hero--page .hero__content h1 {
    color: #ffffff;
    font-size: 32px;
}

.fadeUp {
    transform: translateY(30px);
    opacity: 0.2;
}

/* Common Hero CSS End */

/* Common Footer CSS Start */
.footer--topSpace {
    padding-top: 184px;
    margin-top: -184px;
}

.footer--topSpace .footer__wrapper {
    padding-top: 32px;
}

/* Common Footer CSS End */

.expertises--companies {
    padding-bottom: 48px;
}

.expertises--companies .expertises__wrapper {
    max-width: 100%;
}

.expertises--companies .section__head {
    max-width: 1316px;
}

.expertises--companies .expertises__items {
    padding: 20px 16px;
    box-shadow: 2px -4px 30px 0 rgba(35, 35, 35, 0.13);
}

.expertises__lg__card {
    height: 100%;
    padding: 20px 16px 32px;
    background: linear-gradient(to bottom, #1a4065 0%, #16283b 100%);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15),
        0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

/* ================================== */
/* :: 9.0 companies.html Page CSS End */
/* ================================== */

/* ================================== */
/* :: 10.0 health.html Page CSS End */
/* ================================== */
/* TextBlock Section Start */
.textBlock--section {
    padding: 48px 0;
}

.textBlock__wrapper {
    max-width: 1316px;
}

.textBlock__content--one {
    max-width: 518px;
}

.textBlock__content--two {
    max-width: 560px;
}

/* TextBlock Section End */

/* Benefits Section Start */
.benefits--section {
    padding-bottom: 48px;
}

.benefits__wrapper {
    padding: 24px 16px 32px;
    box-shadow: 2px -4px 30px 0 rgba(35, 35, 35, 0.13);
}

.benefits__ul {
    gap: 16px;
}

.benefits__item {
    width: 100%;
}

.benefits__details {
    max-width: 384px;
}

.benefits__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--primary);
    border: 1px solid #425a73;
}

.benefits__icon svg {
    width: 48%;
}

.benefits__title {
    font-size: 18px;
}

.benefits__para {
    max-width: 332px;
}

/* Benefits Section End */
/* ================================== */
/* :: 10.0 health.html Page CSS End */
/* ================================== */

/* ================================== */
/* :: 11.0 Over Tornare html Page CSS End */
/* ================================== */

.about__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about__content .section__head {
    margin-bottom: 0px;
}

.about__content-text p {
    font-family: var(--gotham);
    font-weight: 300;
}

.about__content-text p.bolder {
    font-weight: 500;
    color: #172839;
    font-size: 16px;
}

.about--area {
    padding: 40px 0px 40px;
}

.about__thumbnail {
    width: 320px;
    height: 320px;
    padding: 20px;
    position: relative;
    margin: 0 auto;
}

.circle-dots {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #8c1d40;
    border-radius: 50%;
    animation: rotateDots 30s linear infinite;
}

.circle-dots span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #8c1d40;
    top: 50%;
    left: -10px;
    position: absolute;
}

.circle-dots span:last-child {
    left: auto;
    right: -10px;
}

.circle-bg {
    background: #8c1d40;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.profile-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

@keyframes rotateDots {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ================================== */
/* :: 11.0 Over Tornare html Page CSS End */
/* ================================== */