/* ============================================================
       GLOBAL || COMMON CSS || CSS Variables
   ============================================================ */

:root {
    /** @Font-Family */
    --jeeno-ff-body: "Raleway", sans-serif;
    --jeeno-ff-heading: 'Raleway', sans-serif;
    --jeeno-ff-fontawesome: "Font Awesome 6 Pro";
    --jeeno-ff-outfit: "Outfit", sans-serif;

    /** @Font-weight */
    --jeeno-fw-normal: normal;
    --jeeno-fw-thin: 100;
    --jeeno-fw-elight: 200;
    --jeeno-fw-light: 300;
    --jeeno-fw-regular: 400;
    --jeeno-fw-medium: 500;
    --jeeno-fw-sbold: 600;
    --jeeno-fw-bold: 700;
    --jeeno-fw-ebold: 800;
    --jeeno-fw-black: 900;

    /** @Font-Size */
    --jeeno-fs-body: 16px;
    --jeeno-fs-p: 16px;
    --jeeno-fs-h1: 60px;
    --jeeno-fs-h2: 48px;
    --jeeno-fs-h3: 32px;
    --jeeno-fs-h4: 24px;
    --jeeno-fs-h5: 20px;
    --jeeno-fs-h6: 18px;

    /**@Color */
    --jeeno-color-common-white: #ffffff;
    --jeeno-color-common-black: #000000;
    --jeeno-color-light-black: #171717;
    --jeeno-color-heading-primary: #ffffff;
    --jeeno-color-text-body: #9692b2;
    --jeeno-color-text-body-2: #524f66;
    --jeeno-color-theme-primary: #052537;
    --jeeno-color-theme-bg: #052537;
    --jeeno-color-theme-dark: #052537;
    --jeeno-color-theme-light: #12435F;
    --jeeno-color-theme-dark-2: #65627a;
    --jeeno-color-white-2: rgba(255, 255, 255, 0.8);
    --jeeno-color-grey-1: #9692b2;
    --jeeno-color-grey-2: #78758f;
    --jeeno-color-grey-3: rgba(150, 146, 178, 0.8);
    --jeeno-color-border-1: #312c52;
    --jeeno-color-theme-green: #1FB680;
    --jeeno-color-header-news: #DDF4EC;
    --jeeno-text-primary: #12435F;
}

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

.site-main,
html {
    position: relative;
}

body {
    font-family: var(--jeeno-ff-body);
    font-size: var(--jeeno-fs-body);
    font-weight: normal;
    color: #000000;
    background-color: var(--jeeno-color-common-white);
    line-height: 1.5;
}

a {
    text-decoration: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--jeeno-ff-heading);
    margin-top: 0px;
    font-weight: var(--jeeno-fw-medium);
    line-height: 1.2;
    letter-spacing: -0.03em;
    transition: all 0.3s ease-in-out 0s;
}

h3.sub-heading {
    line-height: 40px;
    font-size: 30px;
    font-weight: var(--jeeno-fw-bold);
    color: var(--jeeno-color-common-black);
    text-transform: capitalize;
}

h5.small-heading {
    color: var(--jeeno-color-common-black);
    font-weight: var(--jeeno-fw-regular);
    font-family: var(--jeeno-ff-outfit);
    font-size: 22px;
    text-transform: uppercase;
}

h1 {
    font-size: var(--jeeno-fs-h1);
    line-height: 1.053;
}

.z-10 {
    z-index: 10;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    h1 {
        font-size: 40px;
    }

    .ai-services-sec1 .ai-service p {
        font-size: 26px;
        line-height: 1.2;
        text-transform: capitalize;
        margin-bottom: 1em;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h1 {
        font-size: 34px;
    }
}

h2 {
    font-size: var(--jeeno-fs-h2);
    line-height: 1.125;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 30px;
    }
}

h3 {
    font-size: var(--jeeno-fs-h3);
    line-height: 1.188;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h3 {
        font-size: 25px;
    }
}

h4 {
    font-size: var(--jeeno-fs-h4);
    line-height: 1.25;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: var(--jeeno-fs-h5);
    line-height: 1.4;
}

h6 {
    font-size: var(--jeeno-fs-h6);
    line-height: 1.333;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
    transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 0;
}

a:focus,
a:hover {
    /* color: inherit; */
    text-decoration: none;
}

a,
button {
    color: var(--jeeno-color-theme-primary);
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

select,
.nice-select,
input[type=search],
input[type=tel],
input[type=text],
input[type=email],
input[type=url],
textarea {
    outline: none;
    background-color: var(--jeeno-color-common-white);
    height: auto;
    width: 100%;
    font-size: var(--jeeno-fs-body);
    border: 1px solid var(--jeeno-color-border-1);
    color: var(--jeeno-color-text-body);
    padding: 10px 15px;
    box-shadow: 0 0 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

* {
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    height: 4px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--jeeno-color-theme-primary);
    -webkit-border-radius: 1px;
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

*::-moz-selection {
    background: var(--jeeno-color-common-black);
    color: var(--jeeno-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--jeeno-color-common-black);
    color: var(--jeeno-color-common-white);
    text-shadow: none;
}

::selection {
    background: var(--jeeno-color-common-black);
    color: var(--jeeno-color-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--jeeno-color-grey-2);
    font-size: var(--jeeno-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--jeeno-color-grey-2);
    font-size: var(--jeeno-fs-body);
    opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
    max-width: 100%;
}

.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.rg-30 {
    row-gap: 30px;
}

.rg-40 {
    row-gap: 40px;
}

.rg-50 {
    row-gap: 50px;
}

.rg-60 {
    row-gap: 60px;
}

.rg-70 {
    row-gap: 70px;
}

.rg-80 {
    row-gap: 80px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.text-theme {
    color: var(--jeeno-text-primary)
}

.fw-medium {
    font-weight: 500;
}

img {
    max-width: 100%;
}

.w-fit {
    width: fit-content;
}
.object-cover{
    object-fit: cover;
}

.fw-600 {
    font-weight: 600;
}

.theme-title {
    font-size: 30px;
    color: var(--jeeno-text-primary);
    line-height: 36px;
    font-weight: 700;
    letter-spacing: 0%;
}

.section-gap {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-separator {
    border-top: 1px solid var(--jeeno-color-border-1);
}

.highlight {
    color: var(--jeeno-color-theme-green);
    font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-gap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 567px) {
    .theme-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 568px) and (max-width: 768px) {
    .theme-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.section-gap-2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-gap-2 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap-2 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.gap-top {
    padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .gap-top,
    .section-gap-top {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .gap-top,
    .section-gap-top {
        padding-top: 70px;
    }
}

.gap-bottom,
.section-gap-bottom {
    padding-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .gap-bottom,
    .section-gap-bottom {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .gap-bottom,
    .section-gap-bottom {
        padding-bottom: 40px;
    }
}

.section-gap-x {
    margin-left: 60px;
    margin-right: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .section-gap-x {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap-x {
        margin-left: 0;
        margin-right: 0;
    }
}

.section-gap-x2 {
    margin-left: 50px;
    margin-right: 50px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .section-gap-x2 {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap-x2 {
        margin-left: 0;
        margin-right: 0;
    }
}

.section-gap-x3 {
    margin-left: 30px;
    margin-right: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .section-gap-x3 {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap-x3 {
        margin-left: 0;
        margin-right: 0;
    }
}