html {
    scroll-behavior: smooth;
}

:root {
    --yellow: #2a95db;
    --white: #ffffff;
    --white2: #fefefe;
    --grey: #222222;
    --darkred: #212121;
    --darkred2: #919191;
    --black1: #000;
    --skyblue: #1e73be;
    --skyblue2: #42aeb6;
    --htext: #171820;
    --htext1: #111111;
    --pcolor: #232323;
    --lightfont: "TitilliumWeb-Light";
    --boldfont: "TitilliumWeb-Bold";
    --regularfont: "TitilliumWeb-Regular";
    --semiboldfont: "TitilliumWeb-SemiBold";
    --louisfont: "Louis George Cafe Bold";
    --louisfontregular: "Louis George Cafe";
}

@font-face {
    font-family: "TitilliumWeb-Light";
    src: url("../fonts/TitilliumWeb-Light.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "TitilliumWeb-Bold";
    src: url("../fonts/TitilliumWeb-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "TitilliumWeb-SemiBold";
    src: url("../fonts/TitilliumWeb-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Louis George Cafe Bold";
    src: url("../fonts/Louis George Cafe Bold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Louis George Cafe";
    src: url("../fonts/Louis George Cafe.ttf");
    font-weight: regular;
    font-style: normal;
}

body {
    overflow-x: hidden;
    background: url(../images/bg-1.jpg);
    background-position: center;
    background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

button,
input {
    outline: none !important;
}

::-webkit-scrollbar {
    width: 4px;
    background: #000;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
}

.container-relative {
    position: relative;
    z-index: 3;
}

.margin-right {
    margin: 0px 200px 0px 0px;
}

.navbar-menu {
    display: none;
}


/* HEADER_WRAPPER_START_CSS_HERE */

.header-main-wrapper {
    width: 100%;
    position: absolute;
    z-index: 999;
}

.header-wrap-top {
    padding: 20px 0px;
    position: relative;
    z-index: 3;
}

.header-wrap-top-flex ul {
    display: flex;
    gap: 26px;
}

.header-wrap-top-flex ul li {
    position: relative;
}

.header-wrap-top-flex ul li::before {
    content: '';
    position: absolute;
    background-color: var(--white);
    width: 2px;
    height: 100%;
    right: -14px;
}

.header-wrap-top-flex ul li:last-child::before {
    display: none;
}

.header-wrap-top-flex ul li a {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
}

.header-wrap-top-flex ul li a span {
    color: var(--yellow);
    font-family: var(--boldfont);
}

.header-wrap-top-icon ul li span {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
}

.header-wrap-top-icon ul {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.header-wrap-top-icon ul li span {
    padding: 0px 10px 0px 0px;
}

.header-wrap-top-icon ul li a {
    height: 26px;
    width: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--black1);
    font-size: 15px;
    transition: 0.5s;
    transform: rotate(0deg);
}

.header-wrap-top-icon ul li a:hover {
    background-color: var(--yellow);
    color: var(--white);
    transform: rotate(360deg);
}

.header-wrap-nav {
    padding: 14px 0px;
}

.header-navbar-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-navbar ul {
    display: flex;
    gap: 25px;
}

.header-navbar ul li a {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    position: relative;
}

.header-navbar ul li a::before {
    content: '';
    position: absolute;
    background-color: var(--yellow);
    width: 100%;
    height: 2px;
    bottom: -4px;
    transform: scale(0);
    transform-origin: left;
    transition: 0.5s;
}

.header-navbar ul li a:hover::before {
    transform: scale(1);
}

.header-navbar ul li a.nav-active {
    color: var(--yellow);
    font-family: var(--boldfont);
}

.header-navbar-btn {
    margin: 0px 0px 0px 25px;
}

.header-navbar-btn a {
    font-size: 16px;
    font-family: var(--boldfont);
    color: #222222;
    width: 149px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f59116;
    background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%);
    border: 1px solid #f59116;
    transition: 0.5s;
}

.header-navbar-btn a:hover {
    background: transparent;
    background: linear-gradient(none);
    color: var(--white);
    box-shadow: 0px 0px 0px 0px #f59116;
}


/* HEADER_WRAPPER_CSS_END_HERE */


/* INDEX_BANNER_WRAPPER_CSS_START_HERE */

.index-banner-wrapper {
    position: relative;
    background-image: url(../images/banner-overlay.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    min-height: 900px;
}

.banner-video {
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
}

.index-banner-wrap-img {
    position: absolute;
    z-index: 2;
    width: 100%;
    right: 0;
    top: 142px;
}

.index-banner-wrapper .item {
    background-position: center;
    background-size: cover;
    height: calc(81vh - 0px);
    display: flex;
    align-items: center;
    position: relative;
}

.index-banner-text {
    text-align: left;
}

.index-banner-text h6 {
    font-size: 25px;
    font-family: var(--lightfont);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}

.index-banner-text h5 {
    font-size: 51px;
    font-weight: 700;
    font-family: var(--louisfont);
    background: -webkit-linear-gradient(#4eb6fa, #4eb6fa, #0066a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px 0px 10px 0px;
}

.index-banner-text p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    line-height: 26px;
    margin: 0px 0px 20px 0px;
}

.index-banner-img-11 {
    position: absolute;
    top: 8%;
    text-align: center;
}

.index-banner-img-11 img {
    width: auto !important;
    text-align: center;
    margin: 0 auto;
}

.index-banner-img-1 {
    position: absolute;
    left: 8%;
    z-index: 2;
    bottom: 12%;
}

.index-banner-img-11 p {
    font-size: 14px;
    font-family: var(--louisfontregular);
    color: var(--white);
}

.index-banner-img-11 a {
    font-size: 16px;
    font-family: var(--louisfontregular);
    color: var(--white);
}

.index-banner-img-11 a img {
    width: auto !important;
    margin: 10px auto 10px;
}

.index-banner-img-2 {
    position: relative;
    z-index: 1;
    left: -15%;
    -webkit-animation-name: rotate-1;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

.index-banner-img {
    position: relative;
}

.index-banner-img-11 h6 {
    font-size: 34px;
    color: var(--white);
    font-family: var(--louisfont);
    margin: 30px auto 20px;
}

.index-banner-img-11 h6 {
    font-size: 22px;
    color: var(--white);
    font-family: var(--louisfont);
}

.index-banner-img-11 h6 span {
    color: var(--yellow);
}

.index-banner-flex {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.index-banner-btn-1 a {
    font-size: 16px;
    font-family: var(--boldfont);
    color: #ffffff;
    width: 149px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f59116;
    /* background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%); */
    /* border: 1px solid #f59116; */
    transition: 0.5s;
    background: linear-gradient(180deg, #006eb6 0%, #4eb6fa 50%, #4eb6fa 100%);
    border: 1px solid #4eb6fa;
}

.index-banner-btn-1 a:hover {
    box-shadow: 0px 0px 0px 0px #f59116;
    background: transparent;
    background: linear-gradient(none);
    color: var(--white);
}

.index-banner-btn-2 a {
    font-size: 16px;
    font-family: var(--boldfont);
    color: var(--white);
    width: 149px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: linear-gradient(none);
    border-radius: 50px;
    box-shadow: 0px 0px 0px 0px #e5d074;
    transition: 0.5s;
    border: 1px solid #bc9a3d;
}

.index-banner-btn-2 a:hover {
    background: rgb(192, 159, 66);
    background: linear-gradient(180deg, rgba(192, 159, 66, 1) 0%, rgba(229, 208, 117, 1) 50%, rgba(169, 132, 49, 1) 100%);
    box-shadow: 0px 0px 10px 0px #e5d074;
    color: var(--black1);
}

.index-banner-wrapper .owl-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 22%;
    right: 16%;
}

.index-banner-wrapper .owl-carousel button.owl-dot {
    width: 84px;
    height: 2px;
    background-color: var(--white);
    background: linear-gradient(none);
    box-shadow: 0px 0px 10px 0px transparent;
    transition: 0.5s;
}

.index-banner-wrapper .owl-carousel button.owl-dot:hover {
    background: #f59116;
    background: linear-gradient(180deg, #f59116 0%, #f59116 50%, #f59116 100%);
}

.index-banner-wrapper button.owl-dot.active {
    background: rgb(192, 159, 66);
    background: linear-gradient(180deg, #f59116 0%, #f59116 50%, #f59116 100%);
}


/* INDEX_BANNER_WRAPPER_CSS_END_HERE */


/* INDEX_FIRST_WRAPPER_CSS_START_HERE */

.index-first-wrapper {
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
}

.index-first-wrap-bg {
    position: absolute;
    right: 9%;
    height: 100%;
}

.index-first-wrap-about {
    position: relative;
    padding: 10px 0px 0px 0px;
}

.about-logo {
    margin: 0px 0px 40px 0px;
}

.index-about-slider-text h6 {
    font-size: 18px;
    font-family: var(--louisfontregular);
    color: #2d9fe9;
    margin: 0px 0px 5px 0px;
}

.index-about-slider-text h5 {
    font-size: 30px;
    font-family: var(--louisfont);
    color: var(--white);
    margin: 0px 0px 15px 0px;
}

.index-about-slider-text h5 span {
    color: #38a6ee;
}

.index-about-slider-text p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    line-height: 2;
    margin: 0px 0px 15px 0px;
}

.about-btn a {
    width: 150px;
    height: 45px;
    background: #006eb6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #006eb6 0%, #4eb6fa 50%, #4eb6fa 100%);
    font-size: 18px;
    font-family: var(--louisfont);
    color: var(--white);
    border-radius: 0px 10px 0px 0px;
}
/* INDEX_FIRST_WRAPPER_CSS_END_HERE */

.index-second-wrapper {
    padding: 20px 0px 100px;
}

.index-sec-text {
    text-align: center;
    margin: 0px 0px 65px 0px;
}

.index-sec-text h6 {
    font-size: 18px;
    font-family: var(--louisfont);
    background: -webkit-linear-gradient(#137fc6, #4bb3f7, #4eb6fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px 0px 5px 0px;
}

.index-sec-text h5 {
    font-size: 30px;
    font-family: var(--louisfont);
    color: var(--white);
    margin: 0px 0px 5px 0px;
}

.index-sec-text p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    width: 50%;
    margin: 0 auto;
}

.index-second-wrap-flex {
    display: flex;
    margin: 0px 0px 30px 0px;
    opacity: 0;
}

.second-wrap-flex-text {
    padding: 0px 0px 0px 15px;
}

.index-second-wrap-span h6 {
    font-size: 30px;
    font-family: var(--louisfont);
    color: #4a4a4a;
    height: 75px;
    width: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: #222121;
}

.second-wrap-flex-text h6 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--louisfont);
    background: -webkit-linear-gradient(#f59116, #f87a1d, #fe542a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0px 10px 0px;
}

.second-wrap-flex-text p {
    font-size: 14px;
    font-family: var(--lightfont);
    color: var(--white);
}

.about-img {
    position: relative;
    left: -10%;
}

.index-third-wrapper {
    padding: 100px 0px;
}

.index-third-wrap-bg {
    background: #107dc4;
    background: linear-gradient(180deg, #1783ca 0%, #4eb6fa 50%, #4eb6fa 100%);
    padding: 100px 100px;
    border-radius: 10px;
}

.index-third-wrap-text {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.index-third-wrap-text h6 {
    font-size: 30px;
    font-family: var(--louisfontregular);
    color: var(--white);
}

.index-third-wrap-text h5 {
    font-size: 45px;
    font-family: var(--louisfont);
    color: var(--white);
}

.index-third-wrap-text p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    width: 80%;
    margin: 0 auto;
}

.index-third-wrap-feild input {
    width: 100%;
    height: 50px;
    border: none;
    background-color: transparent;
    padding: 0px 10px 0px 10px;
    border-bottom: 2px solid var(--white);
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
}

.index-third-wrap-feild input::placeholder {
    color: var(--white);
}

.index-third-wrap-feild {
    margin: 0px 0px 30px 0px;
}

.index-third-wrap-feild textarea {
    width: 100%;
    height: 100px;
    border: none;
    background-color: transparent;
    padding: 0px 10px 0px 10px;
    border-bottom: 2px solid var(--white);
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    outline: none;
}

.index-third-wrap-feild textarea::placeholder {
    color: var(--white);
}

.index-third-wrapbtn {
    text-align: center;
}

.index-third-wrapbtn button {
    width: 35%;
    height: 45px;
    background-color: #FFF;
    border: none;
    font-size: 16px;
    font-family: var(--louisfont);
    color: #2d97dd;
    box-shadow: 5px 5px 7px 0px rgb(0 0 0 / 35%);
    transition: 0.5s;
}

.index-third-wrapbtn button:hover {
    box-shadow: -5px -5px 7px 0px rgb(0 0 0 / 35%);
}

.index-fourth-wrapper {
    padding: 100px 0px;
    background-position: left;
    background-size: cover;
}

.index-fourth-wrapper .accordion-item {
    border: none;
    margin: 0px 0px 20px 0px;
    background: #222121;
    background: linear-gradient(180deg, #222121 0%, #222121 50%, #222121 100%);
    transition: 0.5s;
}

.index-fourth-wrapper .accordion-item h2 {
    font-size: 16px;
    font-family: var(--semiboldfont);
    color: #494949;
    padding: 20px 20px;
    transition: 0.5s;
}

.index-fourth-wrapper .accordion-item h2 img {
    padding: 0px 15px 0px 0px;
    transition: 0.5;
}

.index-fourth-wrapper .accordion-body {
    padding: 0px 20px 20px 20px;
}

.index-fourth-wrapper .accordion-body p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: #494949;
    transition: 0.5;
}

.index-fourth-wrapper .accordion-item:hover h2 {
    color: var(--white);
}

.index-fourth-wrapper .accordion-item:hover h2 img {
    filter: brightness(0) invert(1);
}

.index-fourth-wrapper .accordion-item:hover p {
    color: var(--white);
}

.index-fourth-wrapper .accordion-item:hover {
    background: #f59116;
    /* background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%); */
    background: linear-gradient(180deg, #1783ca 0%, #4eb6fa 50%, #4eb6fa 100%);
}

.index-fifth-wrapper {
    padding: 100px 0px;
    background: #f59116;
    /* background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%); */
    position: relative;
    background: linear-gradient(180deg, #1783ca 0%, #4eb6fa 50%, #4eb6fa 100%);
}

.index-fifth-wrap-bg {
    position: absolute;
    right: 20%;
    bottom: 0%;
}

.index-fifth-wrap-text h6 {
    font-size: 45px;
    font-family: var(--louisfontregular);
    color: var(--black1);
}

.index-fifth-wrap-text h4 {
    font-size: 44.5px;
    font-family: var(--louisfont);
    color: var(--black1);
    margin: 0px 0px 10px 0px;
}

.index-fifth-wrap-text p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--black1);
    margin: 0px 0px 20px 0px;
}


/* FOOTER_MAIN_WRAPPER_CSS_START_HERE */

.footer-main-wrapper {
    /* background-color: #151515; */
    padding: 75px 0px 0px 0px;
}

.footer-main-wrap-logo {
    text-align: center;
    margin: 0px 0px 20px 0px;
}

.footer-main-wrap-text {
    margin: 0px 0px 20px 0px;
}

.footer-main-wrap-text p {
    text-align: center;
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    width: 85%;
    margin: 0px auto 0px;
}

.footer-main-wrap-icon {
    margin: 40px 0px 0px 0px;
}

.footer-main-wrap-icon ul {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.footer-main-wrap-icon ul li span {
    color: var(--white);
    font-size: 16px;
    font-family: var(--lightfont);
    padding: 0px 10px 0px 0px;
}

.footer-main-wrap-icon ul li a {
    height: 26px;
    width: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--black1);
    font-size: 15px;
    transition: 0.5s;
}

.footer-main-wrap-icon ul li a:hover {
    color: var(--white);
    background-color: var(--yellow);
}

.footer-main-wrap-nav {
    margin: 30px 0px 0px 0px;
}

.footer-main-wrap-nav ul {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.footer-main-wrap-nav ul li a {
    font-size: 16px;
    font-family: var(--lightfont);
    color: var(--white);
    position: relative;
}

.copyright {
    background: #f59116;
    /* background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%); */
    padding: 10px;
    box-shadow: 0px 0px 14px 0px rgb(78 182 250 / 66%);
    margin: 50px 0px 0px 0px;
    background: linear-gradient(180deg, #1783ca 0%, #4eb6fa 50%, #4eb6fa 100%);
}

.copyright-flex {
    display: flex;
    justify-content: center;
}

.copyright-text p {
    font-size: 14px;
    font-family: var(--lightfont);
    color: #ffffff;
    text-align: center;
}

.copyright-media ul {
    display: flex;
    gap: 15px;
}

.copyright-media ul li {
    position: relative;
}

.copyright-media ul li::before {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 1px;
    height: 100%;
    right: -7.5px;
}

.copyright-media ul li a {
    font-size: 14px;
    font-family: var(--lightfont);
    color: #fff;
}


/* FOOTER_MAIN_WRAPPER_CSS_END_HERE */

.footer-main-wrap-logo img {
    width: 12%;
}

.about-logo {
    animation: mover 0.8s infinite alternate;
}


/* .logo-gif-size {
    width: 23% !important;
    margin-top: -30px;
} */

.feature-images {
    position: relative;
    height: 100%;
    left: 0;
    padding: 30px;
}

.feature-images .app-feature {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: calc(100% - 40px);
    left: 20px;
}

.sticky {
    position: fixed;
    background: #212121;
    transition: 0.8s all ease;
    padding: 0px;
    width: 100%;
    top: 0;
}

.sticky .logo-gif-size {
    margin-top: 0px !important;
}

.sticky #nav-container {
    top: 0;
}

.banner-modal-video {
    width: 100%;
    height: 100%;
}

.modal-header {
    margin-bottom: unset !important;
    background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%);
    border-bottom: unset !important;
}

.modal-body {
    background: #212121;
    padding: unset !important;
}

.inner-banner-heading h5 {
    font-size: 50px;
    background: -webkit-linear-gradient(#f59116, #f87a1d, #fe542a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--louisfont);
}

.index-banner-wrapper-inner {
    background-image: url(../images/inner-banner.jpg);
    background-position: center;
    background-size: cover;
    padding: 180px 0px 180px 0px;
}

.about-pg-second-wrapper p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: white;
}

.about-pg-third-wrapper .accordion-item {
    border: none;
    margin: 0px 0px 20px 0px;
    background: #222121;
    background: linear-gradient(180deg, #222121 0%, #222121 50%, #222121 100%);
    transition: 0.5s;
}

.about-pg-third-wrapper .accordion-item h2 {
    font-size: 16px;
    font-family: var(--semiboldfont);
    color: #494949;
    padding: 20px 20px;
    transition: 0.5s;
}

.about-pg-third-wrapper .accordion-item h2 img {
    padding: 0px 15px 0px 0px;
    transition: 0.5;
}

.about-pg-third-wrapper .accordion-body {
    padding: 0px 20px 20px 20px;
}

.about-pg-third-wrapper .accordion-body p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: #494949;
    transition: 0.5;
}

.about-pg-third-wrapper .accordion-item:hover h2 {
    color: var(--white);
}

.about-pg-third-wrapper .accordion-item:hover h2 img {
    filter: brightness(0) invert(1);
}

.about-pg-third-wrapper .accordion-item:hover p {
    color: var(--white);
}

.about-pg-third-wrapper .accordion-item:hover {
    background: #f59116;
    background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%);
}

.border-about-bottom {
    border-bottom: 2px solid #404040;
}

.about-pg-third-wrapper::before {
    content: url("../images/about-backdrop.png");
    position: absolute;
    left: -10%;
    top: 7%;
    opacity: 15%;
}

.inner-banner-heading a {
    color: white;
    font-size: 20px;
    font-family: var(--louisfont);
    transition: 0.4s linear;
}

.inner-banner-heading a:hover {
    color: #f59116;
}

.about-page-wrapper-one-text img {
    width: 6%;
}

.about-page-wrapper-one-text h4 {
    font-size: 30px;
    font-family: var(--louisfont);
    color: white;
}

.about-page-wrapper-one-text span {
    color: #f9751f;
}

.about-page-wrapper-one-text-two p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: white;
    line-height: 26px;
}

.about-page-wrapper-one-text-two span {
    color: #f9751f;
    font-size: 18px;
    font-family: var(--boldfont);
}

.about-sec-img {
    width: 610px;
    height: 365px;
    position: relative;
}

.about-sec-img::before {
    content: url("../images/about-sec-before.png");
    position: absolute;
    top: -7%;
    right: -5%;
    z-index: 99;
}

.about-sec-img::after {
    content: url("../images/about-sec-after.png");
    position: absolute;
    top: -61%;
    right: -29%;
    z-index: 99;
    opacity: 15%;
}

.about-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sec-two-box-text h4 {
    font-size: 40px;
    color: #f4721e;
    font-family: var(--boldfont);
}

.about-sec-two-box-text p {
    font-size: 16px;
    color: rgb(12, 12, 12);
    line-height: 26px;
}

.about-sec-two-box-text a {
    font-size: 16px;
    font-family: var(--boldfont);
    color: #222222;
    width: 149px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f59116;
    background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%);
    border: 1px solid #f59116;
    transition: 0.5s;
}

.about-sec-two-box-text a:hover {
    background: transparent;
    background: linear-gradient(none);
    color: #f59116;
    box-shadow: 0px 0px 0px 0px #f59116;
}

.about-sec-two-box {
    background: white;
    padding: 86px 79px;
    transition: 0.4s linear;
}

.about-sec-two-box:hover {
    background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%);
}

.about-sec-two-box:hover .about-sec-two-box-text p {
    color: white;
}

.about-sec-two-box:hover .about-sec-two-box-text h4 {
    color: white;
}

.about-sec-two-box:hover .about-sec-two-box-text a {
    background: white;
}

.index-second-wrap-span-2 h6 {
    font-size: 30px;
    font-family: var(--louisfont);
    color: #4a4a4a;
    height: 75px;
    width: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: #222121;
    transition: 0.3s linear;
}

.second-wrap-flex-text-2 h6 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--louisfont);
    margin: 20px 0px 10px 0px;
    color: #494949;
    transition: 0.3s linear;
}

.second-wrap-flex-text-2 p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: #494949;
    line-height: 26px;
    transition: 0.3s linear;
}

.main-feature-col-page:hover .second-wrap-flex-text-2 p {
    color: white;
}

.main-feature-col-page:hover .second-wrap-flex-text-2 h6 {
    color: white;
}

.main-feature-col-page:hover .index-second-wrap-span-2 h6 {
    color: white;
    background: linear-gradient(180deg, #f59116 0%, #f9761f 50%, #fe532a 100%);
}

.feature-img-change {
    width: 100%;
    height: 850px;
    overflow: hidden;
}

.feature-img-change img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-page-wrapper-four {
    background: url("../images/about-page-third-bg.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.about-fourth-sec-text p {
    color: white;
    font-size: 16px;
    font-family: var(--lightfont);
    line-height: 26px;
}

.fourth-wrapper-p {
    font-size: 16px;
    font-family: var(--lightfont);
    color: white;
    line-height: 26px;
}

@keyframes rotate-1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes mover {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-30px);
    }
}

.header-btn {
    font-size: 16px;
    font-family: var(--boldfont);
    color: #ffffff;
    width: 149px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f59116;
    background: linear-gradient(180deg, #006eb6 0%, #4eb6fa 50%, #4eb6fa 100%);
    border: 1px solid #4eb6fa;
    transition: 0.5s;
}

.header-btn:hover {
    color: #ffffff;
}

.header-btn-white {
    font-size: 16px;
    font-family: var(--boldfont);
    color: #4eb6fa;
    width: 230px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: unset;
    transition: 0.5s;
}

.header-btn-white:hover {
    font-size: 16px;
    font-family: var(--boldfont);
    color: #4eb6fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: unset;
    transition: 0.5s;
}
.milestone-firstw-rapper {
    padding: 50px 0px;
}
.milestone-firstw-rap-text {
    margin: 0px 0px 50px 0px;
    text-align: center;
}
.milestone-firstw-rap-text h6 {
    font-size: 50px;
    font-family: var(--louisfont);
    color: var(--white);
}
.milestone-box-wrap {
    position: relative;
    overflow: hidden;
}
.milestone-box-wrap-img img {
    opacity: 0.8;
    transform: scale(1);
    transition: 0.5s;
}
.milestone-box-wrap-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0%;
}
.milestone-box-wrap-text h6 {
    font-size: 25px;
    font-family: var(--louisfont);
    color: var(--white);
}
.milestone-box-wrap:hover .milestone-box-wrap-img img {
    transform: scale(1.1);
}
.what-first-wrapper {
    padding: 100px 0px;
}
.what-first-wrap-text {
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.what-first-wrap-text h6 {
    font-size: 50px;
    font-family: var(--louisfont);
    color: var(--white);
}
.tv-first-wrapper {
    padding: 100px 0px;
}
.tv-first-wrap-text {
    text-align: center;
    margin: 0px 0px 50px 0px;
}
.tv-first-wrap-text h6 {
    font-size: 50px;
    font-family: var(--louisfont);
    color: var(--white);
}
.what-first-wrap-box {
    border: 3px solid #359fe4;
    padding: 5px 5px;
    margin: 0px 0px 30px 0px;
}
.tv-first-wrap-box {
    background: #f59116;
    background: linear-gradient(180deg, #006eb6 0%, #4eb6fa 50%, #4eb6fa 100%);
    border: 1px solid #4eb6fa;
    padding: 30px 30px;
}
.tv-first-wrap-box-text {
    margin: 0px 0px 15px 0px;
}
.tv-first-wrap-box-text h6 {
    font-size: 25px;
    font-family: var(--louisfont);
    color: var(--white);
    position: relative;
}
.tv-first-wrap-box-text h6::before {
    content: '';
    position: absolute;
    background-color: #FFF;
    width: 20%;
    height: 2px;
    bottom: -5px;
}
.tv-first-wrap-box-list ul li {
    font-size: 16px;
    font-family: var(--louisfontregular);
    color: var(--white);
    list-style: disc;
    padding: 0px 0px 0px 5px;
    margin: 0px 0px 0px 20px;
    line-height: 1.8;
}