
:root {
    --white-color: #ffffff;
    --active-color: #1f69e2;
    --text-color: #606060;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    list-style: none;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Titillium Web", "sans-serif";
    overflow-x: hidden;
}

/* ================================
General css
===================================*/
h1 {
    font-family: "Titillium Web", "sans-serif";
}

p,
a,
span,
table th,
table td {
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.font-lg {
    font-size: 44px;
}

.tersiary-heading {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #7a4700;
    text-transform: uppercase;
}

.background {
    background-color: #e9e5ff;
}

.footer-bg {
    background-color: #0C131A;
}

.footer-text {
    color: #F2F2F2cc;
}

.mb-8 {
    margin-bottom: 48px;
}

.p-8 {
    padding: 48px;
}

.py-8 {
    padding: 48px 0;
}

.border-color {
    border: 1px solid rgb(255 255 255 / 0.1);
}

.border-tops {
    border-top: 1px solid rgb(130 130 130 / 0.2);
}

.cursor-pointer {
    cursor: pointer;
}

.sectionPadding {
    padding: 96px 0;
}

img {
    max-width: 100%;
}

section {
    padding: 72px 0;
}

.primaryBtn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 0.75rem;
    padding-left: 24px;
    background-color: #1f69e2;
    padding-right: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
    transition-duration: 300ms;
    text-decoration: none;
    color: var(--white-color);
    font-size: 18px;
}

.table-btn {
    background: linear-gradient(180deg,
            rgba(255, 69, 3, 1) 0%,
            rgba(255, 162, 1, 1) 100%);
    color: var(--white-color) !important;
}

#pricing .primaryBtn:hover{
    color: var(--white-color) !important;
}

.primaryBtn::before,
.blog-hover-btn::before {
    position: absolute;
    top: 50%;
    left: -100%;
    height: calc(100% + 20px);
    width: 20px;
    background-color: rgb(255 255 255 / 0.3);
    transition-duration: 500ms;
    content: "";
    transform: translateY(-50%) rotate(15deg);
}

.primaryBtn:hover,
.blog-hover-btn:hover,
.table-btn {
    background: linear-gradient(180deg,
            rgba(255, 69, 3, 1) 0%,
            rgba(255, 162, 1, 1) 100%);
    color: var(--white-color) !important;
}

.primaryBtn:hover::before,
.blog-hover-btn:hover::before {
    left: 105%;
}

/* ================================
  Navbar
  ================================== */
.navbar {
    z-index: 9999;
}

.nav-bg {
    background-color: #E7F1FE;
}

.logo-box a img{
    max-width: 85%;
}

.navbar-nav li a {
    font-size: 18px;
    color: var(--text-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--active-color);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--active-color);
}

.dropdown-menu {
    transition: all 0.5s linear;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item:hover{
    background-color: #1f69e2;
    color: var(--white-color);
}

.sticky {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #E6F0FD;
  } 

/* ===========================
hero section
============================== */
.hero-section,
.about-section,
.contact-section {
    background-image: linear-gradient(180deg,
            rgba(44, 130, 239, 0.12) 0%,
            rgba(217, 217, 217, 0) 100%);
    padding-top: 180px;
    margin-top: -95px;
    padding-bottom: 48px;
}


.hero-img-mask {
    position: relative;
}

.inner-element {
    position: absolute;
    z-index: 1;
    background-color: #b0b1ff;
}

.hero-video-mask {
    position: relative;
}

.inner-video-mask-element {
    position: relative;
    background-image: url("../img/hero-image.webp");
    background-repeat: no-repeat;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
}

.hero-text {
    font-size: 24px;
    color: var(--text-color);
    padding: 0 120px;
    line-height: 1.8;
}

.img-mask-shape {
    z-index: 2;
    left: 0;
    top: -32px;
}

.video-mask-shape {
    max-width: 210px;
    height: 242px;
    background-color: #e9e5ff;
    border-radius: 48px;
    top: -4px;
    right: 6%;
}

.video-mask-shape img {
    margin-top: -40px;
}

.start-box {
    width: 380px;
    background-color: #1f69e2;
    bottom: 0;
    left: -25%;
    border-radius: 50px;
    z-index: 2;
}

.start-box p {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
}

.animate-up-down {
    animation: up-down 5s linear infinite;
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================
work-container
=============================== */
.work-container {
    padding: 32px 0;
}

.bottom-shape,
.cta-bottom-shape,
.bottom-shape2 {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.bottom-shape::after,
.cta-bottom-shape::after,
.bottom-shape2::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
    width: 100%;
    height: 48px;
    background-size: contain;
    background-position: bottom;
    content: "";
    background-repeat: no-repeat;
}

.bottom-shape::after {
    background-image: url("../img/border-shape.png");
}

.cta-bottom-shape::after {
    background-image: url("../img/cta-border-shape.png");
}

.bottom-shape2::after {
    background-image: url("../img/border-shape-left.png");
}

.expert-team-box img:not(:first-child) {
    margin-left: -10px;
}

.work-right-shape {
    position: relative;
}

.work-right-shape::after,
.work-right-shape::before {
    position: absolute;
    content: "";
    background-image: url("../img/line-shape.png");
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.work-right-shape::after {
    left: -17%;
}

.work-right-shape::before {
    left: 110%;
}

/* ===================================
services-link-box slide
====================================== */

.services-box-slide {
    transition: all 0.5s linear;
}

.services-box-slide svg {
    transition: all 0.1s linear;
}

.services-box-slide:hover {
    transform: translateY(-10px);
}

.services-box-slide:hover h3,
.services-box-slide:hover a {
    color: #1f69e2;
}

.services-box-slide:hover svg {
    transform: translateX(-1px);
}

/* ============================
what-we-do
=============================== */

.what-we-do::after {
    position: absolute;
    content: "";
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    top: 320px;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg,
            #f5f0ff 0%,
            rgba(217, 217, 217, 0) 100%);
    z-index: -1;
}

.what-we-do-card {
    transition: all 0.3s linear;
}

.what-we-do-card:hover {
    transform: translateY(-10px);
}

.what-we-do-card:hover h5 {
    color: #1f69e2;
}

/* ==========================
choose-section
============================= */

.nav-tabs .nav-link {
    color: var(--text-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #e9e5ff;
    color: var(--text-color);
}

.transparency-nav {
    background-color: #F4F4F4;
}

.nav-tabs .transparency-nav.active {
    background-color: var(--active-color);
    color: var(--white-color);
}

/* =========================
Proof Card
============================ */
.proof-card1::after,
.proof-card2::after,
.proof-card3::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.proof-card1::after {
    border: 1px solid #1f69e2;
}

.proof-card2::after {
    border: 1px solid #0acb58;
}

.proof-card3::after {
    border: 1px solid #eb5757;
}

.proof-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    height: 74px;
    width: 48px;
    background-image: url("../img/line-shape.png");
    transform: translateX(calc(50% + 10px));
}

/* ==========================
testimonial
============================= */
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    background-image: url("../img/review-line-arrow.png");
    background-repeat: no-repeat;
    height: 100%;
    transform: scaleY(1.3);
    width: 354px;
    right: 10rem;
    top: -6px;
}

/* ================================
Footer
================================== */
.footer-social-icon-box a {
    transition: all .3s linear;
}

.footer-social-icon-box a:hover {
    transform: translateY(-5px);
}

.temporary-block a:hover {
    color: #1f69e2;
    transition: all .2s linear;
}

footer ul li {
    transition: all .2s linear;
}

footer ul li:hover a {
    color: #1f69e2;
}

/* ==========================
transparency-box
============================= */

.transparency-box1::before {
    left: 0;
}

.transparency-box1::before,
.transparency-box1::after,
.transparency-box2::after,
.transparency-box3::after,
.transparency-box4::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #FF6B02;
    bottom: -30%;
    transform: translateY(-50%);
}

.transparency-box1::after,
.transparency-box2::after,
.transparency-box3::after,
.transparency-box4::after {
    right: 0;
}

/* ==========================
Contact 
============================= */

.contact-address-box {
    transition: all .5s linear;
}

.contact-address-box:hover {
    transform: translateY(-10px);
}

.contact-address-box:hover .contact-address-icon-bg {
    background-color: #1f69e2 !important;
    transition: all .3s linear;
}

.contact-address-box:hover svg {
    color: var(--white-color);
}

/* ===========================
blog section
============================== */

.blog-box {
    transition: all .3s linear;
}

.blog-box:hover {
    background-color: #EFF5FF;
}

.blog-box img {
    transition: all .3s linear;
}

.blog-box:hover img {
    transform: scale(1.03);
}

.blog-box:hover .card-title {
    color: #1f69e2;
}

.blog-box:hover .blog-hover-btn {
    background-color: #1f69e2;
    color: var(--white-color);
}

.blog-hover-btn {
    position: relative;
}

/* ===========================
services
============================== */
.service-container {
    position: relative;
    height: 100%;
}

.service-text-box {
    position: absolute;
    height: 100%;
    width: 58%;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    z-index: 1;
    overflow: hidden;
}

/* =========================
Frequently asked question
============================= */
.accordion {
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-bg: --white-color;
}

.accordion-item {
    border: 1px solid #D9D9D9 !important;
    border-radius: 15px !important;
}

/* table css */

.page-link {
    padding: 5px 24px !important;
    border-radius: 8px !important;
    font-size: 20px !important;
}

div.dt-container div.dt-paging ul.pagination {
    gap: 8px;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
    text-align: center;
}

div.dt-container div.dt-length label {
 display: none;
}

div.dt-container div.dt-length select {
    width: 100px;
}

div.dt-container div.dt-length select.form-select-sm {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
}

div.dt-container div.dt-search label{
    font-size: 18px;
}

div.dt-container div.dt-search input {
    max-width: 250px;
    font-size: 18px;
    padding: 8px;
}