@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

/* =========================
   RESET & GLOBAL STYLES
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --body-fonts: "Inter", sans-serif;
    --color-primary: #0063A7;
    --color-dark: #000000;
    --color-white: #FFFFFF;
    --color-muted: #B0BAC8;
    --color-text: #000000;
    --badge-bg: #F0F0F0;
    --border-color: rgba(112, 112, 112, 0.2);
    --section-bg: #EBEBEB4D;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    font-size: 18px;
    font-family: var(--body-fonts);
    color: var(--color-text);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

body.mobile__nav-open {
    overflow: hidden;
}

body .web__wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: auto;
}

body .web__wrapper > * {
    width: 100%;
}

body .web__wrapper main {
    flex: 1 0 auto;
}

@media (max-width: 991.98px) {
    body {
        font-size: 16px;
    }
}

/* =========================
   SELECTION
========================= */

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


/* =========================
   MEDIA
========================= */

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

/* =========================
   FORM ELEMENTS
========================= */

input,
button,
textarea,
select {
    font: inherit;
}

textarea {
    resize: vertical;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

/* =========================
   LINKS
========================= */

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* =========================
   LISTS
========================= */

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

/* =========================
   HEADINGS
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    line-height: 1.2;
}

h1 {
    font-size: 50px;
    line-height: 1.3;
}

h2 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.88px;
    line-height: 1.2;
}

h3 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.88px;
    line-height: 1.2;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.48px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

h6 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    h2 {
        font-size: 36px;
    }
}

@media (max-width: 375.98px) {
    h1 {
        font-size: 33px;
    }

    h2 {
        font-size: 30px;
    }
}

/* =========================
   BUTTONS
========================= */
.btn {
    padding: 16px 30px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1;
    transition: 0.5s all ease-in-out;
    min-width: 220px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    filter: brightness(120%);
}

.btn-outline-light {
    border-color: var(--color-white);
    color: var(--color-white);
}

/* =========================
       SECTION TITLE
========================= */

.section__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin: 0 0 50px 0;
    max-width: 1200px;
}

.section__title-center {
    text-align: center !important;
    align-items: center !important;
    margin-left: auto;
    margin-right: auto;
}

.section__title > * {
    margin: 0;
}

.section__title strong,
.section__title b {
    font-weight: 700;
}

.section__title span {
    background-color: var(--badge-bg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 32px;
    position: relative;
    border-radius: 100px;
    line-height: 1.15;
}


.section__title span:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-dark);
}

.section__title p {
    font-size: 20px;
}

.section__title ul {
    padding-left: 25px;
    list-style-type: disc;
}

.section__title li {
    font-weight: 500;
}

.section__title li + li {
    margin-top: 10px;
}

.section__title li strong {
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section__title {
        margin-bottom: 40px;
    }

    .section__title span {
        padding: 10px 20px;
        font-size: 16px;
        gap: 7px;
    }

    .section__title p,
    .section__title li {
        font-size: 16px;
    }
}


/* =========================
   CONTAINERS
========================= */
.container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    max-width: 1360px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1024px) {
    .container-fluid,
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* =========================
   GLOBAL STYLES END
========================= */

/* =========================
   Header Style Start
========================= */
.adg__header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: 0.35s all ease-in-out;
}

.adg__header-top {
    background-color: var(--color-dark);
    padding: 12px 0;
}

.adg__header {
    position: fixed;
    top: 0;
    transition: top 0.3s ease;
}

.adg__header.header-scrolled {
    top: calc(var(--topbar-height) * -1);
}

.adg__header-contact ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.adg__header-contact li:last-child {
    margin-left: auto;
}

.adg__header-contact a,
.adg__header-contact span {
    font-size: 12px;
    color: VAR(--color-white);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.adg__header-contact a i,
.adg__header-contact a svg,
.adg__header-contact span i,
.adg__header-contact span svg {
    font-size: 14px;
}

.adg__header-contact a:hover {
    color: var(--color-primary);
}

.navbar .adg__header-contact {
    padding: 20px;
    margin: 15px;
    background-color: var(--section-bg);
    max-width: 360px;
    width: 100%;
    flex-direction: column;
    border-radius: 7px;
}

.navbar .adg__header-contact ul {
    text-align: left;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
}

.navbar .adg__header-contact ul li {
    margin: 0 !important;
}

.navbar .adg__header-contact a,
.navbar .adg__header-contact span {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
}

/*--- Header Top Style End ---*/

.adg__header .navbar {
    padding: 20px 0;
}

.adg__header .navbar-brand {
    max-width: 160px;
    width: 100%;
}

.adg__header .navbar-brand img {
    width: 100%;
    object-fit: contain;
}

.navbar > .container-fluid {
    gap: 30px;
}

.adg__header .navbar-collapse {
    padding-left: 140px;
}

.adg__header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.adg__header .navbar-nav li:last-child {
    margin-left: auto;
}

.adg__header .navbar-nav a {
    font-size: 16px;
    color: var(--color-text);
    padding: 2px !important;
}

.adg__header .navbar-nav li:last-child a {
    text-decoration: underline;
}


.adg__header .navbar-nav .active a,
.adg__header .navbar-nav a.active,
.adg__header .navbar-nav .current-menu-item a,
.adg__header .navbar-nav a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 700;
}

/* Hamburger Menu Styling */
header .navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
    box-shadow: none !important;
    z-index: 15;
}

header .navbar-toggler span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-dark);
    transition: all 0.4s ease-in-out;
}


/* Hamburger Menu Animation */
header .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

header .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

header .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: 0.35s al ease-in-out;
}

@media (max-width: 1199.98px) {
    .adg__header .navbar-collapse {
        padding-left: 0;
    }

    .adg__header .navbar-nav {
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .adg__header .navbar-collapse {
        position: absolute;
        right: 0;
        top: 30px;
        width: 100%;
        max-width: 768px;
        height: 100vh;
        background-color: var(--color-white);
        padding: 20px 0;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: 0.35s all ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        overflow: auto;
    }

    body.mobile__nav-open .adg__header .navbar-collapse {
        z-index: 10;
        visibility: visible;
        opacity: 1;
        top: 0;
    }

    .adg__header .navbar-nav {
        align-items: flex-start;
    }

    .adg__header .navbar-nav li:last-child {
        margin-left: 0;
    }

    .adg__header .navbar-nav a {
        padding: 10px 15px !important;
    }

    body.mobile__nav-open .nav__overlay {
        opacity: 1;
        z-index: 1;
        visibility: visible;
    }
}


@media (max-width: 767.98px) {
    .adg__header-contact ul {
        flex-direction: column;
        gap: 3px;
    }

    .adg__header-contact li:last-child {
        margin-left: 0;
    }
}

/* =========================
   Header Style End
========================= */


/* =========================
   Hero Style Start
========================= */
.adg__hero {
    padding: 100px 0;
    min-height: 412px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    position: relative;
}

.adg__hero:before {
    content: "";
    background: transparent linear-gradient(90deg, #000C14EB 0%, #000C14EB 50%, #545C6200 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.adg__hero-home:before {
    background: #000C14;
    opacity: 0.2;
}

@media (min-width: 1701px) {
    .adg__hero-home {
        min-height: 759px;
    }
}

.adg__hero > * {
    width: 100%;
}

.adg__hero .adg__hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adg__hero h1 {
    color: var(--color-white);
    margin: 0;
    letter-spacing: -1px;
    font-weight: 400;
}

.adg__hero-home h1 {
    font-weight: 600;
}

.adg__hero-content h1 strong {
    font-weight: 600;
}

.adg__hero p {
    color: var(--color-white);
    letter-spacing: -0.32px;
    margin: 0;
}

.adg__hero .adg__hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}


@media (max-width: 1700.98px) {
    .adg__hero-home {
        min-height: 620px;
    }
}

@media (max-width: 991.98px) {
    .adg__hero {
        min-height: 350px;
    }
    .adg__hero-home {
        min-height: 500px;
    }

    .adg__hero {
        padding: 70px 0;
        background-position: 57%;
    }

    .adg__hero .adg__hero-buttons {
        flex-wrap: wrap;
    }

    .adg__hero p {
        font-size: 16px;
    }

    .adg__hero:before {
        background: rgba(0, 0, 0, 0.7);
        opacity: 1;
    }

    body .adg__hero-home:before {
        background: #000C14 !important;
        opacity: 0.55;
    }
}

/* =========================
   Hero Style End
========================= */


/* =========================
   Quick Links Style Start
========================= */
.quick-links__section {
    padding: 40px 0 60px;
}

.quick-links__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-left: 1px solid var(--border-color);
}

.quick-links__section [class^="col-"]:first-child .quick-links__card {
    border-left: none;
}

.quick-links__card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: 0.35s all ease-in-out;
    transform: scale(1);
}

.quick-links__card:hover {
    color: var(--color-primary);
}

.quick-links__card:hover img {
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .quick-links__section {
        padding: 40px 0;
    }

    .quick-links__section [class^="col-"]:nth-child(2n+1) .quick-links__card {
        border-left: none;
    }
}

@media (max-width: 575.98px) {
    .quick-links__section .quick-links__card {
        border-left: none !important;
        border-top: 1px solid var(--border-color);
        max-width: 300px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .quick-links__section [class^="col-"]:first-child .quick-links__card {
        border-top: none;
        padding-top: 0;
    }

    .quick-links__section [class^="col-"]:last-child .quick-links__card {
        padding-bottom: 0;
    }
}

/* =========================
   Quick Links Style End
========================= */


/* =========================
   Features Flights Style Start
========================= */
.featured__flights-section {
    padding: 60px 0;
}

.featured__flights-section .section__title {
    max-width: 900px;
}

.featured__flights-card {
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 120%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: 0.35s all ease-in-out;
}

.featured__flights-card > div {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.featured__flights-card .featured__flights-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.featured__flights-card .featured__flights-card-badge {
    border-radius: 100px;
    padding: 14px 30px;
    background-color: var(--color-white);
    font-size: 14px;
    line-height: 1.05;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    letter-spacing: -0.28px;
}

.featured__flights-card-badge:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-dark);
}

.featured__flights-card .featured__flights-card-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: 0.35s all ease-in-out;
}

.featured__flights-card-link:hover,
.featured__flights-card:hover .featured__flights-card-link {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.featured__flights-card .featured__flights-card-info {
    border-radius: 12px;
    padding: 16px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: 0.35s all ease-in-out;
    position: relative;
    top: 0;
}

.featured__flights-card-info > * {
    margin: 0;
}

.featured__flights-card-info a {
    color: var(--color-text);
    text-decoration: underline;
}

.featured__flights-card-info a:hover {
    color: var(--color-primary);
}

.featured__flights-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.featured__flights-card:hover .featured__flights-card-info {
    top: -10px;
}

@media (max-width: 991.98px) {
    .featured__flights-card > div {
        padding: 15px;
    }
}

/* =========================
   Features Flights Style End
========================= */

/* =========================
   Text Section Style End
========================= */
.adg__text-section {
    padding: 60px 0;
}

.adg__hero + .adg__text-section {
    padding-top: 102px;
}

.adg__text-section:last-child {
    padding-bottom: 102px;
}

.adg__text-section .adg__text-content {
    max-width: 1240px;
}

.adg__text-section h1,
.adg__text-section h2,
.adg__text-section h3 {
    margin-bottom: 46px;
    font-weight: 400;
}

.adg__text-section h1 strong,
.adg__text-section h2 strong,
.adg__text-section h3 strong,
.adg__text-section h1 b,
.adg__text-section h2 b,
.adg__text-section h3 b {
    font-weight: 700;
}

.adg__text-section p + p {
    margin-top: 25px;
}

.adg__text-section p {
    font-size: 20px;
}

@media (max-width: 991.98px) {
    .adg__text-section {
        padding: 60px 0 !important;
    }

    .adg__text-section h1,
    .adg__text-section h2,
    .adg__text-section h3 {
        margin-bottom: 30px;
    }

    .adg__text-section p + p {
        margin-top: 20px;
    }

    .adg__text-section p {
        font-size: 16px;
    }
}

/* =========================
   Text Section Style Start
========================= */

/* =========================
   Footer Style Start
========================= */

.adg__footer {
    background-color: var(--color-dark);
}

.adg__footer-top {
    padding: 60px 0 38px;
}

.adg__footer h5 {
    color: var(--color-muted);
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #70707066;
}

.adg__footer .adg__footer-info {
    max-width: 320px;
}

.adg__footer-info > div {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.adg__footer-info > div > * {
    margin: 0;
}

.adg__footer-info a {
    max-width: 125px;
    width: 100%;
    display: inline-block;
}

.adg__footer-info a img {
    width: 100%;
    object-fit: contain;
}

.adg__footer-info p {
    font-size: 14px;
    color: var(--color-muted);
    letter-spacing: -0.28px;
}

.social__list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social__list a {
    width: 25px;
    height: 25px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.adg__footer-location > div {
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.adg__footer-location p,
.adg__footer-location a {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-muted);
    line-height: 1.6;
    letter-spacing: -0.28px;
    margin-bottom: 30px;
}

.adg__footer-location p strong {
    font-weight: 700;
}

.adg__footer-location a {
    margin-bottom: 0;
}


.adg__footer-links ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 10px;
}

.adg__footer-links ul li {
    width: calc(50% - 5px);
}

.adg__footer-links a {
    letter-spacing: -0.32px;
    color: var(--color-muted);
}

.adg__footer-location a:hover,
.adg__footer-links a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer__inner-row [class^="col-"] {
    position: relative;
}

.footer__inner-row [class^="col-"]:before {
    content: "";
    width: 1px;
    background-color: #70707066;
    height: calc(100% - 80px);
    position: absolute;
    left: -25%;
    top: auto;
    bottom: 0;
    display: inline-block;
}

.footer__inner-row [class^="col-"]:first-child:before {
    content: none;
}

.adg__footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #70707066;
}

.adg__footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: var(--color-muted);
    letter-spacing: -0.24px;
}

@media (max-width: 1366.98px) {
    .footer__inner-row [class^="col-"]:before {
        left: -10%;
    }
}

@media (max-width: 1199.98px) {
    .adg__footer-links a {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .footer__inner-row [class^="col-"]:before {
        left: -15%;
    }

    .adg__footer .adg__footer-info {
        max-width: 100%;
    }

    .adg__footer .adg__footer-info > div {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .footer__inner-row [class^="col-"]:before {
        content: none;
    }

    .adg__footer h5 {
        margin-bottom: 20px;
    }

    .adg__footer-bottom {
        padding: 20px 0;
    }

    .adg__footer-links a {
        font-size: 14px;
    }

    .adg__footer-links ul {
        row-gap: 15px;
    }

}

/* =========================
   Footer Style End
========================= */

/* =========================
   Aircraft Categories Style Start
========================= */
.aircraft__categories-section {
    padding: 60px 0 102px;
}

.aircraft__category-card {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    max-width: 360px;
    font-weight: 400;
    font-size: 20px;
    height: 100%;
}

.aircraft__category-card img {
    width: 88px;
    object-fit: contain;
}

.aircraft__category-card > * {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .aircraft__category-card {
        gap: 20px;
    }

    .aircraft__category-card {
        font-size: 17px;
    }

    .aircraft__category-card img {
        width: 75px;
        object-fit: contain;
    }
}

@media (max-width: 991.98px) {
    .aircraft__categories-section {
        padding: 60px 0;
    }

    .aircraft__category-card {
        gap: 20px;
        font-size: 16px;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .aircraft__category-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .aircraft__category-card {
        font-size: 15px;
    }

    .aircraft__category-card > img {
        width: 70px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
    }

}

/* =========================
   Aircraft Categories Style End
========================= */

/* =========================
   Support Style Start
========================= */
.adg__support-section {
    background-color: var(--section-bg);
    padding: 60px 0;
}

.adg__support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    position: relative;
}

.adg__support-card:before {
    content: "";
    width: 1px;
    height: 80%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-color: var(--border-color);
    opacity: .35;
}

.adg__support-section [class^="col-"]:first-child .adg__support-card:before {
    content: none;
}

.adg__support-card .adg__support-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px #00000029;
}

.adg__support-icon img {
    width: 50%;
    object-fit: contain;
}

.adg__support-card p {
    font-size: 14px;
    margin: 0;
}

.adg__support-card strong {
    display: block;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 991.98px) {
    .adg__support-card .adg__support-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }

    .adg__support-card strong {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .adg__support-section .adg__support-card:before {
        content: none !important;
    }
}

/* =========================
   Support Style End
========================= */

/* =========================
   Text With IMage Style Start
========================= */
.text__w-image-section {
    padding: 102px 0;
}

.text__w-image-section > .container > .row {
    align-items: center;
}

.text__w-image-left .row {
    flex-direction: row-reverse;
}

.text__w-image-media img {
    width: 100%;
    object-fit: cover;
}

.text__w-image-section .text__w-image-content {
    max-width: 570px;
}

.text__w-image-left .text__w-image-content {
    margin-left: auto;
    margin-right: auto;
}

.text__w-image-section .text__w-image-media {
    max-width: 600px;
    margin: 0 0 0 auto;
}

.text__w-image-section.text__with-map .text__w-image-media {
    max-width: 420px;
    margin: 0 auto;
}

.text__w-image-left .text__w-image-media {
    margin: 0;
}

.text__w-image-content p {
    font-size: 20px;
    margin: 0;
}

.text__w-image-content p + p {
    margin-top: 20px;
}

.text__w-image-section .section__title {
    margin-bottom: 45px;
}

.text__w-image-content h2,
.text__w-image-content h3,
.text__w-image-content h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.text__w-image-content ul {
    padding-left: 25px;
    list-style-type: disc;
}

.text__w-image-content ul {

}

.text__w-image-content li + li {
    margin-top: 10px;
}


@media (max-width: 1199.98px) {
    .text__w-image-left .text__w-image-content,
    .text__w-image-left .text__w-image-media,
    .text__w-image-section .text__w-image-media,
    .text__w-image-section .text__w-image-content {
        margin: 0;
        max-width: 100%;
    }
}
@media (max-width: 991.98px) {
    .text__w-image-section {
        padding: 60px 0;
    }

    .text__w-image-section .section__title {
        margin-bottom: 30px;
    }

    .text__w-image-content p {
        font-size: 16px;
    }
}


/* =========================
   Text With Image Style End
========================= */


/* =========================
   Cards With Icon Style Start
========================= */
.cards__w-icons-section {
    padding: 60px 0;
}

.card__w-icon {
    background-color: var(--color-white);
    padding: 30px 25px;
    box-shadow: 0px 2px 6px #00000029;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 386px;
    height: 100%;
}

.card__w-icon .card__w-icon-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 0 2px 6px #00000029;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.card__w-icon-icon img {
    width: 55%;
    object-fit: contain;
    object-position: center;
}

.no__shadow-icons .card__w-icon .card__w-icon-icon {
    box-shadow: none;
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    margin-bottom: 10px !important;
}

.no__shadow-icons .card__w-icon-icon img {
    width: 100% !important;
}

.card__w-icon h5 {
    font-weight: 700;
    margin: 0;
}

.card__w-icon p,
.card__w-icon li {
    margin: 0;
    font-size: 14px;
}

.card__w-icon ul {
    list-style-type: disc;
    padding-left: 20px;
}

.card__w-icon ul li::marker {
    color: var(--color-primary);
}

.services__sm {
    padding-top: 60px;
}

.services__sm h2,
.services__sm h3,
.services__sm h4,
.services__sm h5 {
    margin-bottom: 15px;
}

.service__sm-card {
    background-color: var(--color-white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service__sm-card > * {
    margin: 0;
}

.service__sm-card li {
    font-size: 14px;
    display: inline-flex;
    gap: 4px;
}

.service__sm-card li:before {
    content: "•";
    display: inline-block;
}


.cards__w-icons-section-sm .card__w-icon .card__w-icon-icon {
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
}

.cards__w-icons-section-sm .card__w-icon h5 {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .cards__w-icons-section {
        padding: 60px 0 !important;
    }

    .card__w-icon {
        max-width: 100%;
    }

    .card__w-icon .card__w-icon-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        margin-bottom: 0;
    }

}

/* =========================
   Cards With Icon Style End
========================= */

/* =========================
   Feature Grid Style Start
========================= */
.feature__grid-section {
    padding: 60px 0;
}

.feature__grid-section:last-child {
    padding: 102px 0;
}


.feature__grid-section .section__title {
    max-width: 1138px;
}

.feature__grid-card {
    position: relative;
    padding-bottom: 76%;
    z-index: 1;
    overflow: hidden;
    transition: 0.35s all ease-in-out;
}

.feature__grid-card img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: 0.35s all ease-in-out;
}

.feature__grid-card:hover img {
    transform: scale(1.1);
}

.feature__grid-card span {
    background-color: #000C14CC;
    padding: 15px;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.4px;
}

@media (max-width: 991.98px) {
    .feature__grid-card span {
        font-size: 16px;
        padding: 12px;
    }
}

/* =========================
   Feature Grid Style End
========================= */

/* =========================
   Info Blocks Style Start
========================= */
.info__blocks-section {
    padding: 60px 0;
}

.info__blocks-section:last-child {
    padding-bottom: 102px;
}

.text__w-image-section + .info__blocks-section {
    padding-top: 0;
}

.info__blocks-section .section__title {
    margin-bottom: 26px;
    max-width: 1243px;
}

.info__blocks-section .section__title p {
    font-weight: 500;
}

.info__blocks-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info__blocks-card .info__blocks-card-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info__blocks-card * {
    margin: 0 !important;
}

.info__blocks-card h3,
.info__blocks-card h4 {
    font-weight: 700;
}

.info__blocks-card-img {
    padding-bottom: 46%;
    position: relative;
}

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

.info__blocks-card ul {
    list-style-type: disc;
    padding-left: 25px;
}

.info__blocks-card li,
.info__blocks-card p {
    font-weight: 500;
}

.info__blocks-card li + li {
    margin-top: 7px !important;
}

@media (max-width: 991.98px) {
    .info__blocks-section {
        padding: 60px 0 !important;
    }

    .info__blocks-section .info__blocks-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .info__blocks-card .info__blocks-card-img {
        width: calc(50% - 10px);
        padding-bottom: 30%;
    }

    .info__blocks-card .info__blocks-card-text {
        width: calc(50% - 10px);
    }
}

@media (max-width: 991.98px) {
    .info__blocks-section {
        padding: 60px 0 !important;
    }

    .info__blocks-section .info__blocks-card {
        flex-direction: column;
    }

    .info__blocks-card .info__blocks-card-img {
        padding-bottom: 56%;
    }

    .info__blocks-card .info__blocks-card-img,
    .info__blocks-card .info__blocks-card-text {
        width: 100%;
    }
}

/* =========================
   Info Blocks Style End
========================= */


/* =========================
   Hover Cards Style Start
========================= */
.hover_cards-section {
    padding: 102px 0;
}

.text__w-image-section + .hover_cards-section,
.avg__text-section + .hover_cards-section {
    padding-top: 0;
}

.hover_cards-block {
    padding: 22px 10px;
    background-color: #F9F9F9;
    border-radius: 4px;
    transition: 0.35s all ease-in-out;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

.hover_cards-block:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .hover_cards-section {
        padding: 60px 0;
    }

    .hover_cards-block {
        font-size: 15px;
    }

}

/* =========================
   Hover Cards Style End
========================= */


/* =========================
   Contact Section Start
========================= */
.adg__contact-section {
    padding: 102px 0;
}

.adg__contact-section h2 {
    font-weight: 600;
}

.adg__contact-section .adg__contact-info {
    max-width: 336px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.adg__contact-section .adg__contact-info > * {
    margin: 0;
}

.adg__contact-section .adg__contact-info > p {
    font-size: 14px;
    font-weight: 500;
}

.adg__contact-section .adg__contact-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.adg__contact-section .contact__add-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.adg__contact-section .adg__contact-title p {
    font-weight: 600;
}

.adg__contact-section .adg__contact-title > * {
    margin: 0 !important;
}

.adg__contact-section .adg__contact-title:after {
    content: "";
    width: 68px;
    height: 4px;
    display: block;
    background-color: var(--color-primary);
    border-radius: 3px;

}

.adg__contact-section .adg__address {
    font-size: 14px;
    color: #7E7E7E;
    max-width: 280px;
}

.adg__contact-section .adg__address strong {
    font-weight: 700;
    color: var(--color-text);
    display: block;
}

.adg__contact-section .adg__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.adg__contact-section .adg__contacts a {
    color: #7E7E7E;
    text-decoration: none;
    font-size: 14px;
}

.adg__contact-section .adg__contacts a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.adg__contact-section .contact__form-group {
    position: relative;
    z-index: 1;
}

.adg__contact-form input:not([type="checkbox"]):not([type="radio"]),
.adg__contact-form textarea {
    border: 1px solid #C2BEBE;
    padding: 19px;
    font-weight: 400;
    box-shadow: none;
    outline: none;
    width: 100%;
    background-color: transparent;
    z-index: 1;
    font-size: 16px;
}

.adg__contact-form input:not([type="checkbox"]):not([type="radio"]) + label,
.adg__contact-form textarea + label,
.adg__contact-form .wpcf7-form-control-wrap + label {
    font-weight: 500;
    position: absolute;
    left: 19px;
    top: 19px;
    transition: 0.35s all ease-in-out;
    z-index: -1;
    font-size: 16px;
}

.adg__contact-form textarea {
    height: 130px;
    resize: none;
}

.adg__contact-form label span {
    color: #FF0000;
}

.adg__contact-form input:focus + label,
.adg__contact-form input.has-value + label,
.adg__contact-form textarea:focus + label,
.adg__contact-form textarea.has-value + label,
.adg__contact-form .focused label,
.adg__contact-form .has-value label {
    top: 0 !important;
    transform: translateY(-50%);
    background-color: var(--color-white);
    padding: 2px 3px;
    font-size: 14px;
    left: 15px !important;
    z-index: 2 !important;
}
.adg__contact-form .focused input,
.adg__contact-form .has-value input,
.adg__contact-form .focused textarea,
.adg__contact-form .has-value textarea {
    border-color: var(--color-primary) !important;
}
body .contact__form-btn,
.adg__contact-form input[type="submit"] {
    font-size: 16px !important;
    color: var(--color-white);
    padding: 16px !important;
    background-color: var(--color-primary) !important;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    width: 222px !important;
    font-weight: 500 !important;
    border-color: var(--color-primary) !important;
}

body .contact__form-btn:hover,
.adg__contact-form input[type="submit"]:hover {
    filter: brightness(120%);
}


.contact__form-group p {
    margin-bottom: 0 !important;
}

body .wpcf7-not-valid-tip {
    font-size: 14px;
}
body .wpcf7-response-output {
    display: none !important;
}
body .adg__contact-form  .wpcf7-not-valid {
    border-color: #dc3232 !important;
}

@media (max-width: 991.98px) {
    .adg__contact-section {
        padding: 60px 0;
    }

    .adg__contact-section .adg__contact-info {
        max-width: 580px;
    }

    .adg__contact-section .contact__add-row {
        display: flex;
        flex-direction: row;
    }
}

@media (max-width: 575.98px) {
    .adg__contact-section .contact__add-row {
        flex-direction: column;
    }

    .adg__contact-form input:not([type="checkbox"]):not([type="radio"]),
    .adg__contact-form textarea {
        padding: 15px;
        font-size: 16px;
    }

    .adg__contact-form input:not([type="checkbox"]):not([type="radio"]) + label,
    .adg__contact-form textarea + label, .adg__contact-form .wpcf7-form-control-wrap + label {
        left: 15px;
        top: 17px;
        font-size: 14px;
    }
}

/* =========================
   Contact Section End
========================= */

/* =========================
   Sales Process Style Start
========================= */
.sales__process-section {
    padding: 102px 0;
    background-color: var(--section-bg);
}

.sales__process-section .section__title {
    max-width: 930px;
}

.sales__process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.sales__process-timeline::before {
    content: "";
    position: absolute;
    top: 98px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: rgba(112, 112, 112, 0.1);
}

.sales__process-step {
    position: relative;
    text-align: center;
}

.process-step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 34px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 2px 4px #00000029;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step__icon img {
    width: 50%;
}

.sales__process-step::before {
    content: "";
    position: absolute;
    top: 92px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #E1E1E1;
    border-radius: 50%;
    transform: translateX(-50%);
}

.process-step__number {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.sales__process-step p {
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .sales__process-section {
        padding: 60px 0;
    }

    .process-step__icon {
        width: 60px;
        height: 60px;
    }

    .sales__process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .sales__process-timeline::before {
        top: 78px;
    }

    .sales__process-step::before {
        top: 72px;
    }

    .sales__process-timeline::before {
        content: none;
    }
}

@media (max-width: 767.98px) {
    .sales__process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   Sales Process Style End
========================= */