/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Agrandir';
    color: #393939;
    overflow-x: hidden;
}

body::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    background-color: #3b6886;
}

:root {
    --gradient: linear-gradient(90deg, rgba(59, 104, 134, 1) 0%, rgba(74, 177, 206, 1) 100%);
    --light-text: #f1f2f4;
    --dark-text: #3b6886;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}

/***** Fonts *****/

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/Agrandir-Regular.woff2') format('woff2'),
        url('../fonts/Agrandir-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/Agrandir-TextBold.woff2') format('woff2'),
        url('../fonts/Agrandir-TextBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Agrandir';
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 20px;
}

h2 {
    font-family: 'Agrandir';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Agrandir';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Agrandir';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Agrandir';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Agrandir';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css start */

header .header_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    gap: 10px;
    background: linear-gradient(270deg, rgba(59, 104, 134, 1) 0%, rgba(74, 177, 206, 1) 100%);
    color: #fff;
    padding: 10px 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

header .header_top a>img {
    width: 60px;
    height: 60px;
}

header .header_top a>p {
    margin: 0;
    font-size: 25px;
}

header .header_top a>p>span {
    font-weight: bold;
}

.container-fluid {
    padding-left: 2%;
    padding-right: 2%;
    max-width: 1920px;
}

header .header_bottom .logo_here {
    display: block;
    width: 100%;
}

header .header_bottom ul {
    margin: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
}

header .header_bottom .row {
    align-items: end;
}

header {
    padding-bottom: 10px;
    background: #f1f2f4;
}

header .header_bottom ul>li>a {
    font-size: 24px;
    color: var(--dark-text);
    transition: 0.3s ease-in-out;
    position: relative;
}

header .header_bottom ul>li>a:after {
    position: absolute;
    content: "";
    background: var(--gradient);
    width: 0;
    height: 2px;
    left: 0;
    bottom: -7px;
    transition: 0.3s ease-in-out;
    right: 0;
    margin: 0 auto;
}

header .header_bottom ul>li>a:hover:after {
    width: 100%;
}

.banner_sec .banner_wrpr {
    position: relative;
    padding: 70px 0px;
    z-index: 1;
    height: 700px;
    display: flex;
    align-items: center;
}

.banner_sec .banner_wrpr>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: top;
}

header .header_bottom {
    margin-top: -20px;
}

.banner_sec .banner_wrpr .banner_textt>h1>span {
    font-weight: bold;
}

.banner_sec .banner_wrpr .banner_textt>p {
    color: #fff;
    line-height: 1.6;
    font-size: 22px;
    width: 80%;
}

.banner_sec .banner_wrpr .banner_textt>p>span {
    font-weight: bold;
}

.banner_sec .banner_wrpr .banner_textt>ul {
    margin: 0;
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

.banner_sec .banner_wrpr .banner_textt>ul>li>a {
    color: #fff;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.banner_sec .banner_wrpr .banner_textt>ul>li>a:hover {
    color: var(--dark-text);
}

.banner_sec .slick-slide {
    margin: 0;
}

.banner_sec .slick-dots {
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.banner_slider.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0;
}

.banner_sec .slick-dots>li {
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
}

.banner_sec .slick-dots>li>button {
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
}

.banner_sec .slick-dots>li>button:before {
    position: absolute;
    content: "";
    background: var(--dark-text);
    opacity: 1;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.banner_sec .slick-dots>li.slick-active {
    opacity: 1;
    width: 30px;
}

.banner_sec .slick-dots>li.slick-active>button:before {
    background: var(--dark-text);
}

.all_sec {
    padding: 70px 0px;
}

.our_solution {
    background: var(--gradient);
    padding-bottom: 0;
}

.theme_heading {
    text-align: center;
}

.theme_heading>h2 {
    color: #fff;
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.theme_heading>h2>span {
    font-weight: bold;
}

.theme_heading>p {
    color: #fff;
    font-size: 25px;
    line-height: 1.3;
    width: 90%;
    margin: 0 auto;
}

.theme_heading>p>span {
    font-weight: bold;
}

.our_solution .theme_heading {
    margin-bottom: 20px;
}

.our_solution .solution_box {
    border: 1px solid var(--light-text);
    background: #f1f2f4;
    border-bottom: 0;
    border-top: 0;
}

.our_solution .solution_box>h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 25px;
    padding: 7px 0px;
    line-height: 1;
    border-left: 1px solid #000620;
    border-right: 1px solid #000620;
}

.our_solution .solution_box>h3>span {
    font-weight: 300;
}

.our_solution .solution_box>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.our_solution .slick-slide {
    opacity: 1;
    margin: 0;
}

.strenthen_sec .strenthen_textt>h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.strenthen_sec .strenthen_textt>p {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.strenthen_sec .strenthen_textt>p>span {
    font-weight: bold;
}

.strenthen_sec .strenthen_textt>h2>span {
    font-weight: bold;
}

.strenthen_sec .row {
    align-items: center;
}

.btn1 {
    background: var(--gradient);
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    transition: 0.3s ease-in-out;
}

.btn1:hover {
    color: #fff;
    box-shadow: 0 0 0px 4px #3c6b8966;
    transition: 0.3s ease-in-out;
}

.btn1>span {
    font-weight: bold;
}

.strenthen_sec .strenthen_imgg {
    position: relative;
}

.strenthen_sec .strenthen_imgg>img {
    width: 100%;
    height: 100%;
}

.strenthen_sec .strenthen_imgg>span {
    width: 10px;
    height: 10px;
    display: block;
    background: #27caf9c9;
    border-radius: 50%;
    box-shadow: 0 0 3px 3px #1386cf;
    position: absolute;
    cursor: pointer;
}

.strenthen_sec .strenthen_imgg>span.dot1 {
    top: 4%;
    left: 23%;
}

.strenthen_sec .strenthen_imgg>span.dot2 {
    top: 8%;
    left: 27%;
}

.strenthen_sec .strenthen_imgg>span.dot3 {
    top: 7%;
    left: 21.5%;
}

.strenthen_sec .strenthen_imgg>span.dot4 {
    top: 13%;
    left: 23%;
}

.strenthen_sec .strenthen_imgg>span.dot5 {
    top: 16%;
    left: 23%;
}

.strenthen_sec .strenthen_imgg>span.dot6 {
    top: 24%;
    left: 20%;
}

.strenthen_sec .strenthen_imgg>span.dot7 {
    top: 29%;
    left: 26%;
}

.strenthen_sec .strenthen_imgg>span.dot8 {
    top: 34%;
    left: 23%;
}

.strenthen_sec .strenthen_imgg>span.dot9 {
    left: 23%;
    top: 40%;
}

.strenthen_sec .strenthen_imgg>span.dot10 {
    top: 45%;
    left: 28%;
}

.strenthen_sec .strenthen_imgg>span.dot11 {
    top: 48%;
    left: 20%;
}

.strenthen_sec .strenthen_imgg>span.dot12 {
    top: 58%;
    left: 18%;
}

.strenthen_sec .strenthen_imgg>span.dot13 {
    top: 58%;
    left: 28%;
}

.strenthen_sec .strenthen_imgg>span.dot14 {
    top: 69%;
    left: 27.5%;
}

.strenthen_sec .strenthen_imgg>span.dot15 {
    top: 91%;
    left: 28%;
}

.strenthen_sec .strenthen_imgg>span.dot16 {
    top: 4%;
    right: 25%;
}

.strenthen_sec .strenthen_imgg>span.dot17 {
    top: 5%;
    right: 23%;
}

.strenthen_sec .strenthen_imgg>span.dot18 {
    top: 4%;
    right: 20.5%;
}

.strenthen_sec .strenthen_imgg>span.dot19 {
    top: 8%;
    right: 21%;
}

.strenthen_sec .strenthen_imgg>span.dot20 {
    top: 21%;
    right: 31%;
}

.strenthen_sec .strenthen_imgg>span.dot21 {
    top: 28%;
    right: 32%;
}

.strenthen_sec .strenthen_imgg>span.dot22 {
    top: 35%;
    right: 34%;
}

.strenthen_sec .strenthen_imgg>span.dot23 {
    top: 41%;
    right: 36%;
}

.strenthen_sec .strenthen_imgg>span.dot24 {
    top: 21%;
    right: 23%;
}

.strenthen_sec .strenthen_imgg>span.dot25 {
    top: 33%;
    right: 25%;
}

.strenthen_sec .strenthen_imgg>span.dot26 {
    top: 39%;
    right: 22.8%;
}

/*  */

.tooltip-box {
    max-width: 300px;
    text-align: center;
}

.tooltip-box span {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.tooltip-box p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

.explore_featured_secc .theme_heading>h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 90px;
    line-height: 1;
    margin-bottom: 0px;
}

.explore_featured_secc .theme_heading>p {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
}

.explore_featured_secc .theme_heading {
    margin-top: 30px;
}

.explore_featured_secc .explore_featured_wrpr {
    position: relative;
    background: var(--gradient);
    padding: 170px 0px 50px;
}

.explore_featured_secc .explore_featured_wrpr>svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.explore_featured_secc .explore_featured_wrpr .col {
    flex: 1 0 20%;
}

.explore_featured_secc .explore_featured_wrpr .row {
    justify-content: center;
}

.explore_featured_secc .explore_featured_wrpr .explore_featured_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.explore_featured_secc .explore_featured_wrpr .explore_featured_box>img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.explore_featured_secc .explore_featured_wrpr .explore_featured_box>span {
    color: #fff;
    border: 2px solid #fff;
    line-height: 1;
    font-size: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.explore_featured_secc .explore_featured_wrpr .explore_featured_box:hover>span {
    background: #fff;
    color: var(--dark-text);
}

.client_says {
    background: linear-gradient(270deg, rgba(59, 104, 134, 1) 0%, rgba(74, 177, 206, 1) 100%);
}

.client_says .theme_heading {
    margin-bottom: 30px;
}

.client_says .theme_heading>h2 {
    font-size: 90px;
}

.client_says .client_says_box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.client_says .client_says_box .rev_icn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.client_says .client_says_box .rev_icn>i {
    font-size: 100px;
    color: #99d3e3;
}

.client_says .client_says_box .rev_icn>ul {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 10px;
}

.client_says .client_says_box .rev_icn>ul>li>i {
    font-size: 40px;
    color: #4bb1ce;
}

.client_says .client_says_box>p {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.client_says .client_says_box>span {
    text-align: right;
    display: block;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client_says .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.client_says .slick-dots {
    margin: 0;
    bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client_says .slick-dots>li {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
}

.client_says .slick-dots>li>button {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
}

.client_says .slick-dots>li>button:before {
    position: absolute;
    content: "";
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    opacity: .5;
}

.client_says .slick-dots>li.slick-active {
    opacity: 1;
}

.client_says .slick-dots>li.slick-active>button:before {
    opacity: 1;
}

.insights_sec .theme_heading>h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
}

.insights_sec .insights_textt_wrpr {
    background: var(--gradient);
    padding: 30px 0px;
    margin-bottom: 30px;
}

.insights_sec .blog_box>img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.insights_sec .blog_box>h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.insights_sec .blog_box>p {
    color: var(--dark-text);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.insights_sec .blog_box>.btn1 {
    font-size: 17px;
}

.insights_sec .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.insights_sec .slick-dots {
    bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.insights_sec .slick-dots>li {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
}

.insights_sec .slick-dots>li>button {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
}

.insights_sec .slick-dots>li>button:before {
    position: absolute;
    content: "";
    background: var(--gradient);
    border-radius: 50%;
    opacity: .5;
}

.insights_sec .slick-dots>li.slick-active {
    opacity: 1;
}

.insights_sec .slick-dots>li.slick-active button:before {
    opacity: 1;
}

.your_center_sec {
    position: relative;
}

.your_center_sec .container-fluid {
    padding: 0;
}

.your_center_sec .your_center_imgg>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -2;
    object-position: top;
    filter: brightness(.7);
}

.your_center_sec .your_center_imgg {
    position: relative;
    height: 800px;
}

.your_center_sec:after {
    position: absolute;
    content: "";
    width: 70%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(74, 177, 206, 1) 6%, rgba(59, 104, 134, 1) 100%);
    z-index: -1;
}

.your_center_sec .your_center_imgg>.center_circle {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 1;
    background: #fff;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.your_center_sec .your_center_imgg>.center_circle>p {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-size: 33px;
    line-height: 1.1;
    text-align: center;
    font-weight: 600;
}

.your_center_sec .your_center_imgg>.center_circle>p>span {
    display: block;
    font-weight: bold;
    font-size: 80px;
}

.your_center_sec .your_center_textt {
    padding: 50px 0px 30px;
}

.your_center_sec .your_center_textt>h2 {
    color: #fff;
    text-align: center;
    font-size: 50px;
    padding-right: 2%;
    margin-bottom: 20px;
}

.your_center_sec .your_center_textt>h3 {
    background: #fff;
    padding: 20px 20px;
    margin: 0;
    line-height: 1;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 30px;
    font-size: 33px;
    font-weight: 500;
    color: #469dba;
}

.your_center_sec .your_center_textt>h3>span {
    font-weight: bold;
}

.your_center_sec .your_center_textt>h2>span {
    font-weight: bold;
}

.your_center_sec .your_center_textt>p {
    color: #fff;
    font-size: 24px;
    padding-right: 2%;
    line-height: 1.2;
    margin-bottom: 20px;
}

.your_center_sec .your_center_textt.accordion-item {
    background: transparent;
}

.your_center_sec .your_center_textt .accordion-item {
    background: transparent;
    margin-bottom: 10px;
    border: 0;
}

.your_center_sec .your_center_textt .accordion.accordion-flush {
    padding-right: 4%;
}

.your_center_sec .your_center_textt .accordion-item .accordion-button {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 40px;
    box-shadow: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 17px;
    padding-right: 10px;
}

.accordion-button::after {
    background: none;
    content: "+";
    font-size: 20px;
    transform: none;
}

.accordion-button:not(.collapsed)::after {
    background: none;
    content: "-";
    transform: none;
}

.your_center_sec .your_center_textt .accordion-item .accordion-body {
    padding: 20px;
}

.your_center_sec .your_center_textt .accordion-item .accordion-body>p {
    color: #fff;
    margin: 0;
    line-height: 1.2;
    font-size: 15px;
    text-align: center;
}

.get_in_touch .theme_heading>h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    line-height: 1.2;
    font-weight: 300;
}

.get_in_touch .theme_heading>h3>span {
    font-weight: bold;
}

.get_in_touch form {
    width: 60%;
    margin: 0 auto;
}

.get_in_touch form .grp_inp {
    margin-bottom: 10px;
    position: relative;
}

.get_in_touch form .grp_inp>input {
    height: 50px;
    background: #fff;
    padding: 10px;
    width: 100%;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: var(--gradient);
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1;
}

.get_in_touch form .grp_inp:after {
    background: var(--gradient);
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    transform: scaleX(1.013) scaleY(1.09);
    border-radius: 10px;
}

.get_in_touch form .grp_inp>textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding: 10px;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: var(--gradient);
    font-size: 16px;
    color: var(--dark-text);
}

.get_in_touch form button {
    border: 0;
    margin: 0 auto;
}

footer .newsletter_wrpr .row {
    align-items: center;
}

footer .newsletter_wrpr .theme_heading {
    text-align: left;
}

footer .newsletter_wrpr .theme_heading>h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0;
}

footer .newsletter_wrpr form {
    display: flex;
    align-items: center;
}

footer .newsletter_wrpr form>input {
    width: 70%;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: var(--gradient);
    font-size: 16px;
    color: var(--dark-text);
    padding: 0px 10px;
    height: 50px;
    border-right: 0;
}

footer .newsletter_wrpr form>button {
    width: 30%;
    border: 0;
}

footer .newsletter_wrpr {
    margin-bottom: 60px;
}

footer .newsletter_wrpr form>input::placeholder {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #49afcc;
    opacity: .2;
}

.get_in_touch form .grp_inp>textarea::placeholder {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #49afcc;
    opacity: .2;
}

.get_in_touch form .grp_inp>input::placeholder {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #49afcc;
    opacity: .2;
}

footer .footer_wrpr {
    background: var(--gradient);
    padding-top: 60px;
    padding-bottom: 20px;
}

footer .footer_wrpr .ftr_info>img {
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 20px;
}

footer .footer_wrpr .ftr_info>p {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 30px;
}

footer .footer_wrpr .ftr_info>ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

footer .footer_wrpr .ftr_info>ul>li>a>i {
    font-size: 50px;
    color: #fff;
}

footer .footer_wrpr .ftr_links>h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    color: #fff;
    font-size: 40px;
}

footer .footer_wrpr .ftr_links>h4>span {
    font-weight: bold;
}

footer .footer_wrpr .ftr_links>h4>i {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer_wrpr .ftr_links {
    padding-left: 70px;
    padding-top: 30px;
}

footer .footer_wrpr .ftr_links>ul {
    margin: 0;
}

footer .footer_wrpr .ftr_links>ul>li>a {
    font-size: 24px;
    color: #fff;
    line-height: 1;
    padding-left: 20px;
    margin-bottom: 30px;
    display: block;
    position: relative;
}

footer .footer_wrpr .ftr_links>ul>li>a:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 10px;
    height: 10px;
    left: 0;
    top: 5px;
    border-radius: 50%;
}

footer .footer_wrpr .ftr_opens {
    padding-top: 30px;
}

footer .footer_wrpr .ftr_opens>h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    color: #fff;
    font-size: 40px;
}

footer .footer_wrpr .ftr_opens>h4>i {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer_wrpr .ftr_opens>h4>span {
    font-weight: bold;
}

footer .footer_wrpr .ftr_opens>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer_wrpr .ftr_opens>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #fff;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    padding: 10px 10px;
    border-radius: 15px;
}

footer .footer_wrpr .ftr_opens>ul>li>p {
    margin: 0;
    font-weight: bold;
}

/* inner pages */

.inner_banner {
    position: relative;
    z-index: 1;
    padding: 70px 0px;
    height: 600px;
}

.inner_banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.inner_banner>.inner_ban_textt>span {
    color: #fff;
}

.inner_banner .inner_ban_textt>span {
    font-size: 30px;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 100px;
}

.inner_banner .inner_ban_textt>h1 {
    color: #fff;
    font-size: 70px;
    margin: 0;
    line-height: 1.2;
}

.inner_banner .inner_ban_textt>h1>span {
    font-weight: bold;
}

.our_mission {
    background: #f1f2f4;
}

.our_mission>.container-fluid {
    padding-left: 0;
}

.our_mission .mission_imgg>img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.our_mission .mission_textt {
    padding: 50px 0px;
}

.our_mission .mission_textt>h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 90px;
    line-height: 1;
    margin-bottom: 20px;
}

.our_mission .mission_textt>h2>span {
    font-weight: bold;
}

.our_mission .mission_textt>p {
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.our_mission .mission_textt>p>span {
    font-weight: bold;
}

.our_mission .row {
    align-items: center;
}

.our_mission .mission_textt>p:last-child {
    margin: 0;
}

.our_values {
    background: var(--gradient);
}

.our_values .values_wrpr>ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.our_values .values_wrpr>ul>li {
    max-width: 33.3333333%;
    width: 300px;
    height: 300px;
    text-align: center;
    border: 1px solid #f1f2f4;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin-bottom: 20px;
    margin-left: -10px;
    transition: 0.3s ease-in-out;
}

.our_values .values_wrpr {
    margin-left: 20px;
}

.our_values .values_wrpr>ul>li>h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
}

.our_values .values_wrpr>ul>li>h3>span {
    display: block;
    font-weight: bold;
}

.our_values .values_wrpr>ul>li>p {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.our_values .values_wrpr>ul>li:nth-child(even) {
    background: #f1f2f4;
}

.our_values .values_wrpr>ul>li:nth-child(even)>h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our_values .values_wrpr>ul>li:nth-child(even)>p {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our_values .values_wrpr>ul>li:hover {
    box-shadow: inset 0 0 14px 0 #48a8c5;
}

.our_values .row {
    align-items: center;
}

.our_values h2 {
    color: var(--light-text);
    font-size: 130px;
    line-height: 1.1;
    margin: 0;
}

.our_values h2>span {
    font-weight: bold;
    display: block;
}

.our_mission.approach_secc>.container-fluid {
    padding-left: 2%;
    padding-right: 0;
}

.our_team_sec .theme_heading>h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 90px;
    line-height: 1;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
}

.our_team_sec .theme_heading>h3 {
    background: var(--gradient);
    color: #fff;
    letter-spacing: 4px;
    font-weight: 300;
    padding: 20px 0px;
    font-size: 40px;
    line-height: 1;
}

.our_team_sec .theme_heading>h3>span {
    font-weight: bold;
}

.our_team_sec {
    background: #f1f2f4;
}

.our_team_sec ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.our_team_sec ul>li {
    width: 13.72%;
}

.our_team_sec ul>li>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.our_team_sec p {
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.our_team_sec p:last-child {
    margin: 0;
}

.our_team_sec p>span {
    font-weight: bold;
}

.who_we_help {
    background: var(--gradient);
}

.who_we_help .theme_heading {
    text-align: left;
}

.who_we_help .theme_heading>p {
    width: 100%;
    margin-bottom: 20px;
}

.who_we_help .theme_heading>p:last-child {
    margin: 0;
}

.who_we_help .det-vidoe {
    width: 100%;
}

.who_we_help .det-vidoe div#my-video {
    width: 100%;
}

.who_we_help .theme_heading>h2 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 20px;
}