body {
    overflow: hidden;
    overflow-y: scroll;
    margin: 0;
    font-family: var(--font-default);
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* font css */
@font-face {
    font-family: "Yellix-Regular";
    src: url(../fonts/Yellix/Yellix-Regular.ttf);
}

@font-face {
    font-family: "Yellix-Medium";
    src: url(../fonts/Yellix/Yellix-Medium.ttf);
}

@font-face {
    font-family: "Yellix-MediumItalic";
    src: url(../fonts/Yellix/Yellix-MediumItalic.ttf);
}

@font-face {
    font-family: "Yellix-SemiBold";
    src: url(../fonts/Yellix/Yellix-SemiBold.ttf);
}

@font-face {
    font-family: "Yellix-Bold";
    src: url(../fonts/Yellix/Yellix-Bold.ttf);
}

@font-face {
    font-family: "Yellix-ExtraBold";
    src: url(../fonts/Yellix/Yellix-ExtraBold.ttf);
}

/* font css end */
:root {
    --font-default: "Yellix-Regular";
    --font-medium: "Yellix-Medium";
    --font-semibold: "Yellix-SemiBold";
    --font-bold: "Yellix-Bold";

    --color-default: #000000;
    --color-primary: #161616;
    --color-box: #1d1d1d;

    --color-orange: #ff7630;
    --color-green: #00dc46;
    --color-violet: #7f63e3;
    --color-white: #fff;

    --background-people: #fffbe9;
    --background-footer: #00373a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    margin: 0px;
}

a {
    color: var(--color-default);
}

a:hover {
    color: var(--color-default);
    text-decoration: none;
}

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

.custom-container {
    max-width: 1920px;
    width: 85%;
    margin: auto;
    padding: 10px 60px;
}

.custom-container-fluid {
    max-width: 1920px;
    margin: auto;
}

.full-height {
    height: 20vh;
}

.pd-top-90 {
    padding-top: 50px;
}

.pd-bottom-120 {
    padding-bottom: 120px;
}

/* ============= header ============= */
header {
    background-color: var(--color-white);
}

.top-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0px 1px 8px #d3d3d3;
}

.nav-master {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {}

.logo-icon {
    width: 140px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right ul {
    display: flex;
    align-items: center;
}

.nav-right ul li a.arrow {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.nav-right ul li a {
    padding: 22px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-right ul li a:hover {
    color: var(--color-violet);
}

.nav-link-c {
    opacity: 1;
    color: #000000;
    font-family: "Yellix-Medium";
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
}

.nav-link-c.active {
    color: var(--color-violet);
    border-bottom: 3px solid var(--color-violet);
}

.togglebtn {
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 9999;
    background-color: transparent;
    border-radius: 50%;
    display: none;
}

.mobile-nav-toggle {
    height: 3px;
    width: 25px;
    position: absolute;
    background-color: #000;
}

.mobile-nav-toggle:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #000;
    top: 14px;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mobile-nav-toggle::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #000;
    top: 7px;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-mobile span {
    background-color: transparent;
}

.navbar-mobile span::after {
    top: 8px;
    transform: rotate(-45deg);
    left: 0;
    background-color: #fff;
}

.navbar-mobile span::before {
    top: 8px;
    transform: rotate(45deg);
    left: 0;
    background-color: #fff;
}

/* nav mobile */
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #00373a;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile ul {
    display: block !important;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile .togglebtn {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* ============= header end ============= */

/* ============= Footer end ============= */
footer {
    background-color: var(--background-footer);
    padding: 60px 0px 0px;
}

.ft-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
}

.ft-items:not(:last-child) {
    padding-right: 20px;
    width: 25%;
}

/* .ft-main .ft-items:nth-child(2) {
    width: 30%;
}

.ft-main .ft-items:nth-child(3) {
    width: 30%;
} */
.ft-icons-list {
    padding: 30px 0 10px;
    width: 100%;
}

.dt-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.ft-items h2 {
    opacity: 1;
    color: rgba(255, 255, 255, 1);
    font: 18px/22px var(--font-semibold);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
}

.ft-items ul {}

.ft-items ul li {
    padding: 12px 0px;
}

.ft-items ul li p {
    opacity: 0.7;
    color: rgba(255, 255, 255, 1);
    font: 16px/20px var(--font-default);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
    padding-bottom: 5px;
}

.ft-items ul li a {
    opacity: 1;
    color: rgba(255, 255, 255, 0.7);
    font: 16px/20px var(--font-default);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-align: left;
    padding-bottom: 5px;
    text-decoration: none;
}

.ft-items ul li a:not(.ft-cont-name) {
    /* cursor: pointer; */
    cursor: not-allowed;
}

.ft-items ul li a:not(:last-child) {
    margin-bottom: 5px;
}

.ft-items ul li a:not(.ft-cont-name):hover {
    color: var(--color-green);
    font-weight: 500;
}

.ft-cont-name {
    cursor: default;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-box li {
    width: 100%;
    padding-right: 10px;
}

.social-box {
    display: flex;
    align-items: center;
}

.social-box li:not(:last-child) {
    margin-right: 20px;
}

.ft-social-med-icon {
    width: 34px;
    height: auto;
    object-fit: contain;
    transform: scale(1);
}

.ft-social-med-icon:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.ft-bottom {
    border-top: 1px solid rgba(219, 219, 219, 0.159446);
    padding: 20px 60px;
}

.copyright {}

.copyright p {
    text-align: center;
    opacity: 1;
    color: rgba(255, 255, 255, 1);
    font: 14px/16px var(--font-default);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
}

/* ============= Footer end ============= */

/* ========= Custom buttom ========= */
.nav-btn {
    font: 15px/20px var(--font-bold);
    color: var(--color-white) !important;
    background-color: var(--color-violet);
    border-radius: 8px;
    padding: 12px 20px !important;
    margin-left: 30px;
    text-align: center;
    min-width: 170px;
    display: inline-block;
    text-transform: capitalize;
}

.nav-btn:hover {
    color: var(--color-white);
    transition: 0.3s;
    box-shadow: 0 0 0 4px #cfcae3;
}

.watsapp-icon {
    width: 26px;
    margin-left: 5px;
}

.exp-btn {
    font: 16px/20px var(--font-bold);
    color: var(--color-white);
    background-color: var(--color-red);
    border-radius: 25px;
    padding: 18px 20px !important;
    text-align: center;
    min-width: 250px;
    display: inline-block;
    text-transform: uppercase;
}

.exp-btn:hover {
    color: var(--color-white);
    transition: 0.3s;
    box-shadow: 0 0 0 4px rgba(255, 131, 116, 0.44);
}

.btn-icon {
    display: inline-flex;
}

.btn-icon>img {
    width: 20px !important;
    margin-left: 5px;
}

/* ============= end ============= */

/* ============= Loader ============= */
.loader {
    display: none;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    z-index: 999;
    background-color: rgba(41, 97, 100, 0.97);
}

.loader.loading {
    display: block;
    opacity: 1;
}

#svg-spinner {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1.2s;
    -webkit-animation-name: rotate;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-transition-property: -moz-transform;
    -moz-animation-name: rotate;
    -moz-animation-duration: 1.2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    transition-property: transform;
    animation-name: rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: relative;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

/* ============= end ============= */

/* ============= nav media query ============= */
@media screen and (max-width: 1600px) {
    .custom-container {
        width: 90%;
    }
}

@media screen and (max-width: 1440px) {
    .custom-container {
        width: 95%;
    }
}

@media screen and (max-width: 1300px) {
    .custom-container {
        width: 98%;
    }

    .custom-container {
        padding: 10px 30px;
    }

    .ft-main {
        padding-bottom: 50px !important;
    }
}

@media screen and (max-width: 1100px) {
    .nav-right ul li a {
        padding-left: 25px;
    }
}

@media screen and (max-width: 1024px) {
    .custom-container {
        padding: 10px 20px;
    }

    .ft-items h2 {
        padding-bottom: 10px;
    }

    footer {
        padding: 40px 0px 0px;
    }

    .ft-items {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }

    .ft-items ul li {
        width: 100%;
        padding: 6px 0px;
    }

    .social-box li:not(:last-child) {
        margin-right: 20px;
        width: auto;
    }

    .ft-main {
        padding-bottom: 20px !important;
    }

    .ft-items {
        width: 100% !important;
    }
}

@media screen and (max-width: 991px) {
    .top-fixed {
        min-height: 60px;
        padding: 20px;
    }

    .nav-link-c {
        text-align: center;
    }

    .navbar-mobile {
        background: transparent;
    }

    .navbar-mobile ul {
        position: absolute;
        top: 70px;
        right: 0;
        bottom: 15px;
        left: 0;
        box-shadow: 0px 13px 16px 2px #d3d3d3;
    }

    .navbar-mobile span::before {
        background-color: #000;
    }

    .navbar-mobile span::after {
        background-color: #000;
    }

    .togglebtn {
        display: block;
    }

    .nav-right ul {
        display: none;
    }

    .nav-right ul li a {
        padding: 10px 20px;
    }

    .nav-btn {
        margin: 10px 20px;
        text-align: left;
    }

    .nav-btn {
        justify-content: center;
    }
}

@media screen and (max-width: 667px) {
    .logo-icon {
        width: 190px;
    }

    .pd-top-90 {
        padding-top: 60px;
    }

    .nav-left {
        width: 100%;
        text-align: left;
    }

    .nav-master {
        width: 100%;
    }

    .logo-icon {
        margin-left: 20px;
    }
}

@media screen and (max-width: 500px) {
    .banner-sec {
        background-size: cover;
        min-height: 760px;
    }

}

@media screen and (max-width: 420px) {
    .custom-container {
        width: 100%;
    }

    .logo-icon {
        width: 150px;
        margin: 0;
    }

    .dt-logo {
        width: 200px;
    }
}

/*============= end =============*/