/* ----------------- Contents ----------------------
01. Font family
02. Root
03. Focus
04. Basic style
05. Typography
06. Helper style
07. Backgrounds
08. Buttons
09. Header
10. Footer
11. Card designs
12. Tabs
13. Horizontal scroll
14. Carousel
14. Service page style
15. Team page style
16. Contact page style
17. Home page
------------------------------------------------- */

/* ----------------- Font family --------------------- */
@font-face {
    font-family: 'syne';
    src: url('../fonts/Syne-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'rubik';
    src: url('../fonts/Rubik-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'dm-sans';
    src: url('../fonts/DMSans-VariableFont_opsz\,wght.ttf');
}

@font-face {
    font-family: 'work-sans';
    src: url('../fonts/WorkSans-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf');
}

/* ----------------- Root --------------------- */
:root {
    --font-white: #ffffff;
    --font-black: #000000;
    --half-white-color: rgba(255, 255, 255, 0.5);
    --color-white: #ffffff;
    --color-black: #000000;
    --main-heading: 40px;
    --fs-xsmall: 12px;
    --fs-small: 14px;
    --fs-normal: 16px;
    --fs-medium: 18px;
    --fw-bold: 600;
    --fw-bolder: 700;
    --font-syne: 'syne';
    --font-rubik: 'rubik';
    --font-work-sans: 'work-sans';
    --font-dm-sans: 'dm-sans';
    --font-poppins: 'poppins';
    --br-30: 30px;
    --br-40: 40px;
}

/* ------------------- Focus --------------------- */
.form-control:focus {
    box-shadow: none;
}

/* ----------------- Basic style --------------------- */
body {
    font-family: var(--font-syne);
    overflow-x: hidden;
}

.banner-section {
    padding-top: 105px;
    padding-bottom: 60px;
}

.banner-section-t160 {
    padding-top: 160px;
    padding-bottom: 60px;
    position: relative;
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-box-section {
    padding-top: 90px;
    padding-bottom: 60px;
}

hr.divider {
    height: 3px;
    color: #E9E9E9;
    background-color: #E9E9E9;
    margin-top: 60px;
    margin-bottom: 30px;
}

.max-w-380 {
    max-width: 380px;
}

.fs-35 {
    font-size: 35px;
}

.fw-600 {
    font-weight: var(--fw-bold);
}

.fw-700 {
    font-weight: var(--fw-bolder);
}

/* ----------------- Typography ------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-syne);
}

p {
    font-family: var(--font-work-sans);
    font-size: var(--fs-normal);
}

p.fs-20 {
    font-size: 20px;
    font-weight: var(--fw-bolder);
}

h2 {
    font-size: var(--main-heading);
    font-weight: var(--fw-bolder);
}

h3 {
    font-size: var(--main-heading);
    font-weight: var(--fw-bolder);
}

h5 {
    font-size: 25px;
    font-weight: var(--fw-bolder);
}

h6.sub-heading {
    font-size: 18px;
    font-family: var(--font-rubik);
    font-weight: var(--fw-bolder);
}

/* ----------------- Helper style ------------------ */
.mb-25 {
    margin-bottom: 25px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-n175 {
    margin-bottom: -175px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-160 {
    padding-top: 160px;
}

.pb-95 {
    padding-bottom: 95px;
}

/* ----------------- Backgrounds ------------------ */
.bg-violet {
    background-color: #ECEBFF;
}

.bg-img-one {
    background-image: url('../img/background/1.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -300px;
    padding-top: 330px;
}

/* ----------------- Buttons --------------------- */
.btn-main {
    color: var(--font-white);
    background-color: var(--font-black);
    text-transform: uppercase;
    font-family: var(--font-syne);
    font-size: var(--fs-small);
    padding: 8px 12px 8px 12px;
    font-weight: var(--fw-bolder);
    border: 2px solid var(--color-black);
    border-radius: 14px;
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
    color: var(--font-white) !important;
    background-color: var(--font-black) !important;
    border: 2px solid var(--color-black) !important;
}

.btn-outline {
    color: var(--font-black);
    background-color: transparent;
    text-transform: uppercase;
    font-family: var(--font-syne);
    font-size: var(--fs-small);
    padding: 8px 12px 8px 12px;
    font-weight: var(--fw-bolder);
    border: 2px solid var(--color-black);
    border-radius: 14px;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    color: var(--font-black) !important;
    background-color: transparent !important;
    border: 2px solid var(--color-black) !important;
}

.btn-white {
    color: var(--font-black);
    border: 2px solid var(--color-white);
    background-color: var(--color-white);
    border-radius: 14px;
    font-weight: var(--fw-bolder);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    color: var(--font-black) !important;
    border: 2px solid var(--color-white) !important;
    background-color: var(--color-white) !important;
}

a.link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: var(--fw-bolder);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----------------- Header ----------------------- */
.header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    position: absolute;
    top: 0;
    background: transparent;
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header.scrolled {
    position: fixed;
    background: rgba(238, 237, 255, 0.3);
}

.header .nav-link {
    margin-right: 10px;
    text-transform: uppercase;
    font-family: var(--font-syne);
    font-weight: var(--fw-bolder);
    font-size: var(--fs-small);
}

.logo {
    width: auto;
    height: 40px;
}

/* ------------------ Footer ------------------ */
.footer {
    padding-top: 60px;
    padding-bottom: 60px;
    color: var(--font-white);
    background-color: #282660;
}

.footer-title {
    color: var(--font-white);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-list {
    list-style: none;
    padding-left: 0px;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    font-size: var(--fs-small);
    color: var(--half-white-color);
    text-decoration: none;
    font-family: var(--font-dm-sans);
}

.footer-list li a:hover {
    color: var(--font-white);
}

.footer-addr {
    font-size: var(--fs-small);
    color: var(--font-white);
    margin-bottom: 25px;
}

.footer-form {
    position: relative;
}

.footer-form .form-control {
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid var(--half-white-color);
    border-radius: 0px;
    color: var(--font-white);
    padding-right: 40px
}

.footer-form .form-control::placeholder {
    color: var(--half-white-color);
}

.footer-form button {
    background-color: transparent;
    border: 0px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.footer-bottom {
    justify-content: center;
    margin-top: 25px;
}

.footer-bottom a {
    font-family: var(--font-dm-sans);
    text-decoration: none;
    color: var(--font-white);
}

.footer-bottom a::after {
    content: '';
    display: block;
    background-color: var(--color-white);
    width: 80%;
    height: 1px;
    position: relative;
    top: 5px;
}

.footer-bottom span {
    color: var(--half-white-color);
    font-size: var(--fs-xsmall);
    font-family: var(--font-poppins);
}

/* ------------------ Card designs ---------------- */
/* ----------- card one -------------- */
.card-one {
    border-radius: var(--br-30);
    height: 100%;
}

.card-one .img-box {
    text-align: end;
}

.card-one h4 {
    font-weight: var(--fw-bolder);
}

/* ----------- card two --------------- */
.card-two {
    border: 0px;
    border-radius: var(--br-30);
}

.card-two .img-box {
    margin-bottom: 25px;
}

.card-two h4 {
    font-weight: var(--fw-bolder);
    margin-bottom: 25px;
}

/* -------------------- blog card ---------------- */
.blog-card {
    border: 1px solid #C1C1C1;
    border-radius: var(--br-40);
}

.blog-card .card-body {
    padding: 0px;
}

.blog-card img {
    width: 100%;
    border-radius: var(--br-40) var(--br-40) 0px 0px;
}

.blog-card .content-box {
    padding: 20px;
}

.blog-card .content-box span {
    font-size: var(--fs-xsmall);
    font-family: var(--font-rubik);
    font-weight: var(--fw-bolder);
    color: #C1C1C1;
    text-transform: uppercase;
}

.blog-card .content-box p {
    margin-top: 20px;
    font-weight: var(--fw-bolder);
}

/* ------------------ contact green card ---------------*/
.contact-card {
    border: 0px;
    color: var(--font-white);
    border-radius: var(--br-40);
    background-color: #67D7CF;
    padding: 10px 25px;
    position: relative;
}

.contact-card .rocket-img {
    position: absolute;
    top: -100px;
    right: 0px;
}

/* ---------------- success stories card --------- */
.success-stories-card {
    position: relative;
    border-radius: var(--br-30);
}

.success-stories-card .img-box {
    position: relative;
    width: 100%;
}

.success-stories-card .img-box::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: var(--br-30);
}

.success-stories-card img {
    border-radius: var(--br-30);
    overflow: hidden;
    width: 100%;
}

.success-stories-card .content-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 80%;
}

.success-stories-card .content-box h4 {
    font-size: 32px;
    color: var(--font-white);
}

.success-stories-card .content-box p {
    font-size: 18px;
    color: var(--font-white);
}

.success-stories-card .content-box hr {
    height: 2px;
    opacity: 1;
    margin: 1.5rem 0rem;
    color: var(--font-white);
    background-color: var(--font-white);
}

.success-stories-card .content-box .btn-white {
    font-size: var(--fs-xsmall);
    font-family: var(--font-dm-sans);
    font-weight: var(--fw-bolder);
    border-radius: 20px;
    padding: 6px 15px 6px 15px;
    margin-bottom: 3px;
}

/* ------------------- Tabs -------------------- */

.tab-left-side {
    background-color: #4088C5;
    padding: 20px;
    border-radius: 40px 0px 0px 40px;
}

.tab-right-side {
    background: #ECEBFF;
    padding: 40px 40px 20px 60px;
    margin-left: -70px;
    border-radius: 40px;
}

.tab-box .nav-pills .nav-link {
    color: var(--font-white);
    text-align: start;
    min-width: 120px;
    min-height: 50px;
    font-size: 22px;
    font-weight: var(--fw-bold);
    margin-bottom: 12px;
}

.tab-right-side p {
    font-size: 18px;
    font-weight: var(--fw-bold);
}

.tab-box .nav-pills .nav-link img {
    background-color: black;
    border-radius: 50%;
    padding: 3px;
    margin-left: 5px;
    display: none;
}

.tab-box .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #67D7CF;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
}

.tab-box .nav-pills .nav-link.active img,
.nav-pills .show>.nav-link img {
    display: block;
}

/* ----------------- Horizontal scroll ------------ */
.data_preview_area {
    margin: 0.5rem 0;
    overflow-x: auto;
    white-space: nowrap;
    word-break: break-all;
}

.data_preview_frame {
    width: calc(100% / 3);
    display: inline-block;
    white-space: normal;
    vertical-align: middle;
    margin: 5px 5px 30px 5px;
    cursor: grab;
}

.data_preview_frame:active {
    cursor: grabbing;
}

/* Control Area */

/* .preview_control_area {
    position: relative;
}

.previous_button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

}

.next_button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.control_button {
    background: white;
    border: solid 0.1rem black;
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin: 0 0.25rem;
    cursor: pointer;
    opacity: 0.25;
    transition: 0.2s;
}

.control_button:hover {
    background: black;
    color: white;
    opacity: 0.8;
    transition: 0.2s;
} */
/* For WebKit browsers (Chrome, Safari, Edge) */
.preview_control_area ::-webkit-scrollbar {
    height: 7px;
}

.preview_control_area ::-webkit-scrollbar-track {
    background: #EEEEEE;
    border-radius: 8px;
}

.preview_control_area ::-webkit-scrollbar-thumb {
    background: #67D7CF;
    border-radius: 8px;
}

/* For Firefox */
.preview_control_area {
    scrollbar-width: thin;
    scrollbar-color: #67D7CF #EEEEEE;
}

.preview_control_area::-moz-scrollbar-thumb {
    background-color: #67D7CF;
}

.preview_control_area::-moz-scrollbar-track {
    background-color: #EEEEEE;
}

/* --------------- Carousel ------------------ */
.brands-carousel .img-box {
    padding: 0px 10px;
    border-radius: 15px;
    border: 1px solid var(--color-black);
}

/* -------------------- Service page style ------------------- */
.service-card {
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 15px;
    background: #FFFFFF;
    height: 100%;
}

.service-card .content-box h5 {
    font-size: 24px;
    font-weight: var(--fw-bolder);
    line-height: 26px;
    margin: 10px 0px;
}

.contact-card .blue-box {
    background: #57B7EF;
    border-radius: var(--br-40);
    text-align: center;
    padding: 60px 20px;
}

.contact-card .circle {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.contact-card .circle::before {
    content: "";
    width: 130px;
    height: 130px;
    position: absolute;
    left: 50%;
    border: 1px solid #4088C5;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* -------------------- Team page style ---------------- */
.team-green-card {
    background: #67D7CF;
    color: var(--color-black);
    border: 0px;
    border-radius: var(--br-40);
    background-color: #67D7CF;
    padding: 30px;
}

.team-green-card .img-box {
    background: #61cdc5;
    border-radius: 40px;
    width: 85%;
}

.team-green-card h4 {
    font-size: 35px;
    font-weight: 600;
    margin-top: 25px;
}

.team-green-card .font-xsmall {
    font-size: var(--fs-xsmall);
    font-weight: var(--fw-bolder);
}

.team-single-card {
    border: none;
    text-align: center;
}

.team-single-card .img-box {
    padding: 10px 25px;
    border-radius: var(--br-30);
    background: #67D7CF;
    padding-bottom: 0px;
}

.team-single-card h5 {
    color: var(--color-black);
    font-size: 20px;
    font-weight: var(--fw-bolder);
}

.team-single-card p {
    font-size: var(--fs-xsmall);
    color: #4088C5;
}

.team-section h4 {
    font-size: 35px;
}

.team-section .left-white-card {
    border-radius: var(--br-30);
    background: #FFFFFF;
    padding: 10px 20px;
    border: none;
    margin-bottom: 30px;
}

.team-section .left-white-card .content-box {
    padding-top: 10px;
}

.team-section .left-white-card .content-box h5 {
    font-size: 24px;
    font-weight: var(--fw-bolder);
    line-height: 26px;
    margin: 10px 0px;
}

.team-section .right-white-card {
    border-radius: var(--br-40);
    background: #FFFFFF;
    padding: 10px 20px;
    border: none;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.team-section .right-white-card h5 {
    font-size: 20px;
    font-weight: var(--fw-bolder);
}

.team-section .right-white-card p {
    font-size: var(--fs-small);
    line-height: 18.2px;
}

.team-section .right-white-card a {
    border-radius: 14px;
}

.team-section .right-white-card .info-box p {
    font-size: var(--fs-small);
    margin-bottom: 0px;
    line-height: 18px;
}

.team-section h6.fs-medium {
    font-size: var(--fs-medium);
    color: #18205A;
    font-weight: var(--fw-bolder);
}

.team-section h6.fs-medium a {
    color: #006FFF;
    text-decoration: none;
}

.icon-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
}

.top-left {
    top: 0;
    left: 6%;
}

.top-right {
    top: 0;
    right: 6%;
}

/* --------------------- Contact page style -------------------- */
.contact-box {
    background: #EEEEEE;
    padding: 10px 20px;
    border-radius: 35px;
    margin-bottom: 16px;
}

.contact-white-box {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 20px 30px 20px;
    margin-bottom: 16px;
}

.contact-white-box p {
    font-size: var(--fs-medium);
    font-weight: var(--fw-bolder);
    margin-bottom: 4px !important;
}

.contact-white-box h4 {
    font-size: 35px;
    font-weight: 600;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
    color: #b2b2b4;
    font-family: var(--font-dm-sans);
    font-size: var(--fs-xsmall);
}

.contact-form label {
    color: #23242A;
    font-size: var(--fs-xsmall);
    font-family: var(--font-dm-sans);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    background: #EFEFEF;
    border-radius: 15px;
    border: none;
    padding: 10px;
}

.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    box-shadow: none;
    background: #EFEFEF;
}

.contact-form textarea {
    height: 100px;
}

/* ----------------- Home page ----------------- */
.home-banner-img {
    margin-bottom: -60px;
}

.bg-left-img {
    position: absolute;
    left: 0px;
    top: 75px;
}

.bg-right-img {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.blog-card a{
    text-decoration: none;
    color: var(--bs-body-color);
}