

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap");
/* ===================
general css
====================== */

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}
h6{
    font-size: 22px !important;
}
h5{
    font-size: 28px !important;
}
html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #14212B;
    line-height: 1.8;
}

a {
    color: #14212B;
    display: inline-block;
}
p{
    text-align: justify;
}
a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

 .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:120px;
	right:40px;
	/* background-color:#25d366; */
	/* color:#FFF; */
	border-radius:50px;
	text-align:center;
  font-size:30px;
	/* box-shadow: 2px 2px 3px #999; */
  z-index:100;
}

.my-float{
	margin-top:16px;
}

a:hover {
    color: #0049D0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1b1b1b;
    margin: 0px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

p {
    margin: 0px;
}

.img,
img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}


/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background-color: #F5FBFF;
}

.bg-2 {
    background-color: var(--clr-bg-2);
}

.bg-3 {
    background-color: #FF4A17;
}

.bg-heading {
    background-color: #1b1b1b;
}

/* ===================
site heading css
====================== */

.site-heading {
    margin-bottom: 60px;
}

.site-title {
    font-weight: 700;
    font-size: 38px;
    color: #082680;
    margin-top: 10px;
    margin-bottom: 0px;
}

.site-title span {
    color: #23CAEA;
}

.site-title-tagline {
    font-weight: 700;
    font-size: 18px;
    position: relative;
    padding-left: 35px;
    color: #000d35;
}

.site-title-tagline::before {
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(../img/icon/1.png);
    position: absolute;
    left: 0px;
    top: -4px;
    background-size: 25px;
    background-repeat: no-repeat;
}

.site-heading p {
    font-size: 16px;
}

/* heading divider */

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #0431B8;
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading.text-light .devider {
    background: #ffffff;
}

.site-heading.light .devider {
    background: #ffffff;
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 3px;
    width: 10px;
    background: #0431B8;
}

.site-heading.light .devider:before {
    background: #ffffff;
}

/* animated heading divider */

.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #0431B8;
    width: 90px;
    overflow: hidden;
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #ffffff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

/* ===================
margin & padding
====================== */

.pb-140 {
    padding-bottom: 140px;
}

.pd-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mr-300 {
    margin-right: 300px;
}

.ml-300 {
    margin-left: 300px;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

/* ===================
theme button
====================== */

.theme-icon-btn {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 9px 10px 10px 18px;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #0431B8;
    border: none;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.theme-icon-btn i {
    margin-left: 8px;
    background: #fff;
    color: #0431B8;
    padding: 8px 10px;
    border-radius: 8px;
}

.theme-icon-btn:hover {
    background: #082680;
    color: #fff;
}

.theme-btn {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 11px 20px;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #0431B8;
    border: none;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn:hover {
    color: #fff;
    background-color: #082680;
}

.border-btn {
    font-size: 16px;
    color: #0431B8;
    font-weight: 600;
    padding: 9px 20px;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #0431B8;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.border-btn i {
    margin-left: 5px;
}

.border-btn:hover {
    color: #fff;
    border-color: #082680;
    background-color: #082680;
}

/* ===================
container
====================== */

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1185px;
    }
}

/* ===================
grids css
====================== */

.grid-2 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(6, 1fr);
}

.grid-px-2 {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.gap-0 {
    grid-gap: 0;
}

.cs-gap-1 {
    grid-gap: 1rem;
}

.cs-gap-2 {
    grid-gap: 2rem;
}

/* ===================
scroll-top css
====================== */

#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 23px;
    border: none;
    outline: none;
    background-color: #1D42D9;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    transition: all .5s ease-in-out;
}

#scroll-top:hover {
    background-color: #0dc4e0;
}

/* ===================
top header css
====================== */

.top-header {
    background: #02154E;
    padding: 9px 0;
}

.top-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-left p {
    color: #fff;
}

.top-header-left p strong {
    color: #22D3EE;
}

.top-header-right .header-social a {
    color: #22D3EE;
    margin-left: 15px;
    transition: all .5s ease-in-out;
}

.top-header-right .header-social a:hover {
    color: #fff;
}

/* ===================
middle header css
====================== */

.middle-header {
    padding: 10px 0;
}

.middle-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middle-header-left,
.middle-header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.middle-header-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.middle-header-item i {
    font-size: 40px;
    color: #0431B8;
}

.header-item-info span {
    color: #082680;
    font-size: 14px;
}

.header-item-info a {
    display: block;
    font-weight: 700;
    color: #082680;
    font-size: 18px;
}

/* ===================
nav menu css
====================== */

.main {
    margin-top: -40px;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 18px;
        padding: 25px 10px 25px 0;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        text-transform: uppercase;
    }
    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 10px 20px;
        border: none;
        border-radius: 10px;
        width: 270px;
       
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
    }
    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px dashed #051C55;
    }
    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        font-weight: 400;
        padding: 8px 25px;
        color: #051C55;
        position: relative;
        text-transform: capitalize;
        transition: all .5s ease-in-out;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "\f111";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        font-weight: bold;
        font-size: 8px;
        color: #1d42d9;
        top: 15px;
        left: 16px;
        opacity: 0;
        transition: all .5s ease-in-out;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: #1d42d9;
        padding-left: 33px;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1 !important;
    }
    .navbar .nav-item .nav-link {
        position: relative;
    }
    .navbar .nav-item:hover .nav-link {
        color: #fff;
    }
    .navbar .nav-item .nav-link::before {
        content: "\f111";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        font-weight: bold;
        font-size: 6px;
        color: #22D3EE;
        top: 34px;
        left: -12px;
        opacity: 0;
        transition: all .5s ease-in-out;
    }
    .navbar .nav-item:hover .nav-link::before {
        opacity: 1 !important;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }
    .navbar .header-btn {
        margin-left: 30px;
        padding-top: 8px;
    }
    .navbar .header-btn .theme-btn i {
        margin-left: 5px;
    }
}

/*bootstrap menu*/

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
}

.custom-navbar {
    background: #0431B8;
    padding: 0 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.custom-navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 95%;
    height: 5px;
    background-color: #22d3ee;
    border-radius: 10px;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.navbar.fixed-top {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    animation: slide-down 0.7s;
}

.navbar.fixed-top {
    background: #0431B8;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

button.navbar-toggler {
    font-size: 3.5rem;
    padding: 0;
    margin: 0;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand img {
    width: 220px;
}

.header-btn .theme-btn {
    background: #fff;
    color: #0431B8;
}

.header-btn .theme-btn:hover {
    background: #22D3EE;
}

/* dropdown toggler */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: 0;
    font-family: 'Font Awesome 5 Pro';
    content: "\f078";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

@media all and (max-width: 1199px) {
    .navbar .header-btn {
        display: none;
    }
}

@media all and (max-width: 991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        background-color: transparent;
        position: fixed;
    }
    .navbar-brand {
        padding-left: 10px;
    }
    .navbar-brand img {
        width: 190px;
    }
    .navbar-collapse {
        max-height: 290px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: #fff;
    }
    .dropdown-toggle::after {
        float: right;
    }
    .navbar .nav-item .nav-link {
        color: #051C55;
        font-weight: 700;
        transition: all .5s ease-in-out;
    }
    .navbar .nav-item .nav-link:hover {
        color: #1d42d9 !important;
    }
    .navbar-toggler-icon {
        font-size: 32px;
        color: #fff;
        padding-right: 10px;
        margin-bottom: 10px;
    }
    .navbar .dropdown-menu {
        border-radius: 10px;
    }
    .top-header {
        display: none;
    }
    .middle-header {
        display: none;
    }
    .custom-navbar {
        border-radius: 0;
    }
}

/* ======================
multi level dropdown menu
========================= */

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 10px;
    font-weight: normal;
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: transparent;
    color: #1d42d9;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

/* ======================
search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    background-image: url();
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #0060ff;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 70px 10px 30px;
    outline: none;
    border-radius: 15px;
    border: none;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    border: none;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #0049D0;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.mobile-search-btn {
    display: none;
}

@media all and (max-width: 991px) {
    .mobile-search-btn {
        display: block;
        position: absolute;
        right: 15%;
        color: #051C55;
        font-size: 20px;
    }
}

@media all and (max-width: 767px) {
    .mobile-search-btn {
        right: 20%;
    }
}

/* ======================
search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
  /*  background-image: url(../img/shape/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #0431B8;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 70px 10px 30px;
    outline: none;
    border-radius: 15px;
    border: none;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    border: none;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #0049D0;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.mobile-search-btn {
    display: none;
}

@media all and (max-width: 991px) {
    .mobile-search-btn {
        display: block;
        position: absolute;
        right: 15%;
        color: #051C55;
        font-size: 20px;
    }
}

@media all and (max-width: 767px) {
    .mobile-search-btn {
        right: 20%;
    }
}

/* ===================
hero css 
====================== */

.hero-single {
    padding-top: 160px;
    padding-bottom: 160px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.hero-single::before {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: linear-gradient(30deg, rgba(226, 233, 238, 0.9) 0%, rgba(226, 233, 238, 0) 100%);
    top: 0;
    left: 0;
    content: '';
}

.hero-single .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-single .hero-content .hero-title {
    color: #082680;
    font-size: 55px;
    font-weight: 700;
}

.hero-single .hero-content .hero-sub-title {
    color: #0431B8;
    font-size: 20px;
    padding-left: 60px;
    font-weight: 600;
    position: relative;
}

.hero-single .hero-content .hero-sub-title::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #0431B8;
    left: 0;
    top: 9px;
}

.hero-single .hero-content p {
    color: #082680;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
    gap: 2rem;
    display: flex;
    margin-top: 1rem;
    justify-content: start;
}

.hero-title {
    font-weight: 700;
    margin: 20px 0;
}

.hero-sub-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.hero-single .video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-single .video-btn .play-btn i::after {
    animation: ripple-dark-wave 1s linear infinite;
}

.hero-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 18px;
    margin: 0;
    padding: 0;
    background: transparent;
    background: #082680;
    display: inline-block;
    cursor: pointer;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #0431B8;
    color: #fff;
}

.hero-slider.owl-theme .owl-nav .owl-prev {
    left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }
    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 5px !important;
    }
    .hero-slider.owl-theme .owl-nav .owl-next {
        left: 120px;
    }
}

@media all and (max-width: 991px) {
    .hero-single .hero-content .hero-title {
        font-size: 30px;
    }
}

@media all and (max-width: 767px) {
    .hero-slider .video-btn {
        height: 250px;
    }
    .hero-single {
        padding-bottom: 50px;
    }
    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }
}

/* =====================
play btn
===================== */

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: #fff;
    color: #0049D0;
    position: absolute;
    border-radius: 50%;
}

.play-btn i::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 20px;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    animation: ripple-wave 1s linear infinite;
    animation-play-state: running;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@keyframes ripple-wave {
    from {
        box-shadow: 0 0 rgb(255 255 255 / 10%), 0 0 0 15px rgb(255 255 255 / 10%), 0 0 0 30px rgb(255 255 255 / 10%);
    }
    to {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, .1), 0 0 0 30px rgba(255, 255, 255, .1), 0 0 0 45px rgba(255, 255, 255, .02);
    }
}

@keyframes ripple-dark-wave {
    from {
        box-shadow: 0 0 rgba(4, 49, 184, .2), 0 0 0 15px rgba(4, 49, 184, .2), 0 0 0 30px rgba(4, 49, 184, .2);
    }
    to {
        box-shadow: 0 0 0 15px rgba(4, 49, 184, .1), 0 0 0 30px rgba(4, 49, 184, .2), 0 0 0 45px rgba(4, 49, 184, .02);
    }
}

/* ===================
sticker css 
====================== */

.sticker {
    position: absolute;
    padding: 8px;
    z-index: 1;
    text-align: center;
}

.sticker::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    border: 3px dashed #0431B8;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    -webkit-animation: sticker-rotate 20s linear infinite;
    animation: sticker-rotate 20s linear infinite;
}

.sticker-wrapper {
    background: #0431B8;
    border-radius: 50%;
    padding: 10px;
}

.sticker-content {
    width: 150px;
    height: 150px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sticker-content h2 {
    color: #fff;
    font-size: 45px;
    margin-bottom: 5px;
    font-weight: bold;
}

.sticker-content h2 span {
    color: #0dc4e0;
}

.sticker-content p {
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
}

@-webkit-keyframes sticker-rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sticker-rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@media all and (max-width: 767px) {
    .sticker-content {
        width: 100px;
        height: 100px;
    }
    .sticker-content h2 {
        font-size: 25px;
    }
    .sticker-content p {
        font-size: 12px;
    }
}

/* ===================
about css 
====================== */

.about-area {
    position: relative;
    display: block;
    margin-top: 8%;
}

.about-left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.about-left .sticker {
    right: -50px;
    top: -50px;
}

.about-img-box {
    position: relative;
    display: block;
}

.about-img-one {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-img-one::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-img-one:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.about-img-one img {
    width: 100%;
    border-radius: 12px;
    
}

.about-img-two {
    position: absolute;
    bottom: -70px;
    left: -70px;
    z-index: 2;
}

.about-img-two img {
    border-radius: 12px;
}

.about-right {
    position: relative;
    display: block;
}

.about-list-wrapper {
    position: relative;
    display: block;
    margin-top: 32px;
}

.about-list {
    position: relative;
    display: block;
}

.about-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-list li+li {
    margin-top: 6px;
}

.about-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-list li .icon span {
    font-size: 20px;
    color: #082680;
}

.about-list li .text {
    margin-left: 16px;
}

.about-list li .text p {
    color: #000;
    margin: 0;
}

.about-solutions {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #ECF1F4;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 39px;
}

.about-solutions-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-solutions-icon span {
    font-size: 50px;
    color: #2a355e;
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.about-solutions:hover .about-solutions-icon span {
    transform: rotateY(360deg);
}

.about-solutions-text-box {
    margin-left: 20px;
}

.about-solutions-tex {
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 30px;
}

@media all and (max-width: 1199px) {
    .about-img-two {
        position: absolute;
        left: unset;
        right: -50px;
    }
}

@media all and (max-width: 991px) {
    .about-right {
        margin-top: 100px;
    }
}

@media all and (max-width: 767px) {
    .about-img-two {
        width: 200px;
        left: unset;
        right: -70px;
        bottom: -40px;
    }
    .about-title {
        font-size: 30px;
    }
}

/* ===================
services css 
====================== */

.services-area {
    position: relative;
    display: block;
    background-color: #eef3f7;
}

.services-item {
    /*background: #fff;*/
    border-radius: 10px;
    margin: 15px 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.services-item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.services-img {
    position: relative;
}

.services-img::before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 80px;
    width: 105%;
    bottom: -10px;
    left: -5px;
    background: #0431B8;
    -webkit-clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
    clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
}

.services-img::after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 80px;
    width: 105%;
    bottom: -20px;
    left: -5px;
    background: #fff;
    -webkit-clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
    clip-path: polygon(20% 73%, 100% 0, 100% 100%, 0 100%, 0 50%);
}

.services-img img {
    border-radius: 10px 10px 0 0;
}

.services-icon {
    position: absolute;
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 160px;
    right: 10px;
}

.services-icon::before {
    content: "";
    position: absolute;
    border: 2px dashed #0431B8;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    -webkit-animation: sticker-rotate 20s linear infinite;
    animation: sticker-rotate 20s linear infinite;
}

.services-icon img {
    width: 40px;
}

.services-content {
    padding: 25px 20px 10px 20px;
}

.services-title a {
    font-size: 25px;
    color: #082680;
    transition: all .5s ease-in-out;
}

.services-title a:hover {
    color: #0049D0;
}

.services-text {
    margin: 10px 0;
}

.services-arrow .theme-btn {
    margin-top: 10px;
    box-shadow: -5px 5px 0 #22D3EE;
}

@media all and (max-width: 1199px) {
    .services-icon {
        top: 120px;
    }
}

@media all and (max-width: 991px) {
    .services-icon {
        top: 140px;
    }
}

/* services 2 */

.services-item2 {
    position: relative;
    margin-bottom: 90px;
    transition: all .5s ease-in-out;
}

.services-item2:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.services-img2 img {
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.services-content2 {
    position: absolute;
    background: #fff;
    padding: 25px;
    left: 20px;
    right: 20px;
    bottom: -60px;
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.services-icon2 {
    position: absolute;
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 160px;
    right: 10px;
}

.services-icon2::before {
    content: "";
    position: absolute;
    border: 2px dashed #0431B8;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    -webkit-animation: sticker-rotate 20s linear infinite;
    animation: sticker-rotate 20s linear infinite;
}

.services-icon2 img {
    width: 40px;
}

.services-content2 span {
    color: #3CCBF3;
    font-weight: 700;
}

.services-content2 h3 {
    font-size: 23px;
}

.services-content2 h3 a {
    color: #082782;
    transition: all .5s ease-in-out;
}

.services-content2 h3 a:hover {
    color: #0431B8;
}

/* services 3 */

.services-item3 {
    background: #fff;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    transition: all .5s ease-in-out;
}

.services-item3:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.services-img3 img {
    border-radius: 15px;
}

.services-content3 {
    padding: 20px 15px 0px 15px;
}

.services-arrow3 {
    margin-top: 30px;
}

.services-icon3 {
    position: absolute;
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    bottom: 15px;
    right: 15px;
}

.services-icon3::before {
    content: "";
    position: absolute;
    border: 2px dashed #0431B8;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    -webkit-animation: sticker-rotate 20s linear infinite;
    animation: sticker-rotate 20s linear infinite;
}

.services-icon3 img {
    width: 40px;
}

.services-title3 {
    margin-bottom: 10px;
}

.services-title3 a {
    font-size: 25px;
    color: #082680;
    transition: all .5s ease-in-out;
}

.services-title3 a:hover {
    color: #0431B8;
}

/* services 4 */

.services-item4 {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all .5s ease-in-out;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.services-icon4 {
    background: #000055;
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-size: 40px;
    box-shadow: -5px 5px 0 #00BBEF;
}

.services-content4 {
    margin: 25px 0;
}

.services-title4 {
    font-size: 25px;
    margin-bottom: 10px;
}

.services-title4 a {
    color: #082680;
    transition: all .5s ease-in-out;
}

.services-title4 a:hover {
    color: #0049D0;
}

.services-item4:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

/* ====================
service single
==================== */

.service-details img {
    border-radius: 12px;
}

.service-single-list i {
    color: #0049D0;
    margin-right: 10px;
}

.service-download a {
    border: 2px solid #1d42d9;
    padding: 10px 20px;
    color: #1d42d9;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.service-download a i {
    margin-right: 10px;
}

.service-download a:hover {
    background-color: #1d42d9;
    color: #fff;
}

/* ===================
CTA css 
====================== */

.cta-wrapper {
    position: relative;
    padding: 60px;
    border-radius: 20px;
    background: #1631BA;
    z-index: 1;
}

.cta-wrapper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 20px;
    background-image: url(../img/shape/5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cta-title span {
    font-weight: 300;
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
}

.cta-title {
    font-size: 50px;
    color: #fff;
}

.cta-btn {
    text-align: right;
}

.cta-btn .theme-btn {
    background: #fff;
    color: #0049D0;
}

.cta-btn .theme-btn:hover {
    background: #00a7e6;
    color: #fff;
}

@media all and (max-width: 1199px) {
    .cta-btn {
        text-align: left;
        margin-top: 30px;
    }
}

@media all and (max-width: 767px) {
    .cta-wrapper {
        padding: 30px;
    }
}

/* ===================
video css 
====================== */

.video-area {
    position: relative;
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    z-index: 100;
}

.video-wrapper img {
    border-radius: 12px;
}

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===================
choose css 
====================== */

.choose-area {
    position: relative;
    overflow: hidden;
}

.choose-bg-img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 45%;
    height: 105%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-clip-path: polygon(0% 0%, 50% 0, 100% 50%, 50% 99%, 0% 100%);
    clip-path: polygon(0% 0%, 50% 0, 100% 50%, 50% 99%, 0% 100%);
}

.choose-left {
    float: right;
}

.choose-slider-wrapper {
    display: inline-block;
    position: relative;
}

.choose-compare-slider {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.choose-slider-wrapper {
    border: 7px solid #1CA0FA;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    border-right-color: transparent;
}

.choose-right {
    padding-left: 35px;
}

.choose-item {
    margin-bottom: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.choose-item i {
    color: #0049D0;
    font-size: 30px;
}

@media all and (max-width: 1199px) {
    .choose-bg-img {
        display: none;
    }
    .choose-left {
        float: left;
        margin-bottom: 50px;
    }
    .choose-compare-slider {
        height: 100%;
        width: 100%;
    }
}

/* ===================
technology css 
====================== */

.technology-area {
    position: relative;
    padding: 110px 0px 70px;
}

.technology-left {
    position: relative;
}

.technology-left .technology-column {
    position: relative;
    padding-top: 30px;
}

.technology-area:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(20, 29, 56, 0.95);
}

.technology-title-tagline {
    text-transform: capitalize;
    font-size: 18px;
    color: #0049d0;
}

.technology-title {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: capitalize;
}

.technology-blocks-column {
    position: relative;
}

.technology-blocks-column .technology-column {
    position: relative;
}

.technology-blocks-column .technology-column .technology-block:nth-child(4) {
    margin-left: -100px;
}

.technology-block {
    position: relative;
    margin-bottom: 30px;
}

.technology-block .technology-box {
    position: relative;
    padding: 45px 15px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.60);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.technology-block .technology-box .technology-overlay-link {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
    z-index: 1;
}

.technology-block .technology-box .icon-box {
    position: relative;
    color: #0060ff;
    font-size: 64px;
    line-height: 1em;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.technology-block .technology-box:hover .icon-box {
    transform: rotateY(180deg);
}

.technology-block .technology-box h6 {
    position: relative;
    color: #ffffff;
    font-weight: 600;
    margin-top: 18px;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.technology-block .technology-box:hover {
    border-color: #ffffff;
    background-color: #ffffff;
}

.technology-block .technology-box:hover .icon-box {
    color: #0060ff;
}

.technology-block .technology-box:hover h6 {
    color: #000055;
}

.technology-area.style-two .technology-block {
    width: 20%;
    padding: 0px 15px;
}

.technology-area.style-two .technology-block h6 {
    text-transform: capitalize;
}

@media all and (max-width: 991px) {
    .technology-left {
        margin-bottom: 30px;
    }
    .technology-blocks-column .technology-column .technology-block:nth-child(4) {
        margin-left: 0px;
    }
    .technology-title {
        font-size: 30px;
    }
}

/* ===================
skill css 
====================== */

.skill-wrapper.grid-2 {
    grid-gap: 6rem;
}

.skill-img img {
    border-radius: 15px;
}

.progress-box {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.progress-box:last-child {
    margin-bottom: 0;
}

.progress-box h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-box .progress {
    height: 5px;
    background-color: #E9ECFB;
    border-radius: 0;
}

.progress-box .progress .progress-bar {
    background-color: #1d42d9;
}

@media all and (max-width: 991px) {
    .skill-right .site-heading {
        font-size: 30px;
    }
    .skill-img img {
        width: 100%;
    }
}

/* ===================
testimonial css 
====================== */

.testimonial-area {
    background-image: url(../img/testimonial/testimonial.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.testimonial-single {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 5%);
}

.testimonial-content {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
}

.testimonial-author-img {
    margin-right: 20px;
}

.testimonial-author-img img {
    border-radius: 50%;
}

.testimonial-author-info h4 {
    color: #000055;
    font-size: 20px;
}

.testimonial-quote p i {
    font-size: 60px;
    margin-right: 10px;
    color: #0431B7;
}

.testimonial-area .owl-dots .owl-dot span {
    border: 3px solid #caced1;
    margin: 5px;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.testimonial-area .owl-dots .owl-dot.active span {
    background-color: transparent;
    border-color: #0431B7;
}

/* ===================
counter css 
====================== */

.counter-area {
    background: #05103a;
    position: relative;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.counter-box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.counter-box::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url('../img/shape/1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
}

.counter-box .icon {
    height: 75px;
    width: 75px;
    font-size: 30px;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0c59db;
    border-radius: 50%;
    box-shadow: -5px 5px 0 #22D3EE;
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: #051242;
    font-size: 50px;
    font-weight: 600;
}

.counter-box .title {
    color: #051242;
    font-family: "Karla", sans-serif;
    margin-top: 15px;
    font-size: 18px;
    letter-spacing: -1px;
}

@media all and (max-width: 767px) {
    .counter-area .col-lg-3:nth-child(2) .counter-box {
        margin-bottom: 40px !important;
    }
}

/* ========================
work / case studies css 
=========================== */

.cases-item {
    position: relative;
    margin-bottom: 30px;
}

.cases-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border-radius: 15px;
}

.cases-item .cases-images {
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.cases-desc {
    padding: 20px 30px;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.cases-desc h4 a {
    margin-bottom: 0;
    font-size: 22px;
    color: #082680;
}

.cases-desc h4 a:hover {
    color: #0049D0;
}

.cases-desc small {
    background: rgba(34, 211, 238, 0.1);
    font-size: 14px;
    font-weight: 700;
    color: #18abc2;
    padding: 5px 20px;
    margin-bottom: 10px;
    border-radius: 50px;
    display: inline-block;
}

.cases-desc .theme-btn {
    padding: 6px 14px;
}

.cases-images {
    position: relative;
    overflow: hidden;
}

.cases-images img {
    border-radius: 15px;
}

.cases-images:before {
    background: #0049d0;
    opacity: 0.9;
    position: absolute;
    border-radius: 15px;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.50s ease-in-out 0s;
    transition: transform 0.50s ease-in-out 0s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.cases-item:hover .cases-images:before {
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cases-hover {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.70s ease-in-out 0s;
    transition: transform 0.70s ease-in-out 0s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.cases-hover p {
    margin-bottom: 0;
    color: #ffffff
}

.cases-item:hover .cases-hover {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cases-link {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 9;
    -webkit-transition: -webkit-transform 0.70s ease-in-out 0s;
    transition: transform 0.70s ease-in-out 0s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    background: #ffffff;
    color: #0d2c13;
    display: inline-block;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
}

.cases-link:hover {
    background: #22D3EE;
    color: #ffffff;
}

.cases-item:hover .cases-link {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
}

/* case filter */

.filter-btns {
    margin-bottom: 50px;
    text-align: center;
}

.filter-btns li {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    border: 2px solid #0431B7;
    color: #0431B7;
    border-radius: 50px;
    padding: 2px 20px;
    margin: 5px;
    transition: all .5s ease-in-out;
}

.filter-btns li:hover,
.filter-btns li.active {
    background: #0431B7;
    color: #fff;
}

/* case 2 */

.cases-item2 {
    position: relative;
    margin-bottom: 120px;
}

.cases-item2 img {
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.cases-images2 {
    position: relative;
    overflow: hidden;
}

.cases-images2:before {
    background: #0049d0;
    opacity: 0.9;
    position: absolute;
    border-radius: 15px;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.50s ease-in-out 0s;
    transition: transform 0.50s ease-in-out 0s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.cases-item2:hover .cases-images2:before {
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cases-link2 {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 9;
    -webkit-transition: -webkit-transform 0.70s ease-in-out 0s;
    transition: transform 0.70s ease-in-out 0s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    background: #ffffff;
    color: #0d2c13;
    display: inline-block;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
}

.cases-link2:hover {
    background: #22D3EE;
    color: #ffffff;
}

.cases-item2:hover .cases-link2 {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
}

.cases-desc2 {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    left: 20px;
    right: 20px;
    bottom: -80px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.cases-desc2 small {
    font-size: 20px;
    color: #00BBEF;
}

.cases-desc2 .theme-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.cases-desc2 .theme-btn:hover {
    background: #00BBEF;
}

/* case 4 */

.cases-item4 {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
}

.cases-item4 img {
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.cases-images4 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.cases-images4:before {
    background: #0049d0;
    opacity: 0.9;
    position: absolute;
    border-radius: 15px;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.50s ease-in-out 0s;
    transition: transform 0.50s ease-in-out 0s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.cases-item4:hover .cases-images4:before {
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cases-hover4 {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.70s ease-in-out 0s;
    transition: transform 0.70s ease-in-out 0s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.cases-hover4 p {
    margin-bottom: 0;
    color: #ffffff
}

.cases-item4:hover .cases-hover4 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cases-link4 {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 9;
    -webkit-transition: -webkit-transform 0.70s ease-in-out 0s;
    transition: transform 0.70s ease-in-out 0s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    background: #ffffff;
    color: #0d2c13;
    display: inline-block;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
}

.cases-link4:hover {
    background: #22D3EE;
    color: #ffffff;
}

.cases-item4:hover .cases-link4 {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
}

.cases-desc4 {
    position: absolute;
    border-radius: 15px;
    padding: 20px 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.cases-desc4 small {
    font-size: 20px;
    color: #00BBEF;
}

.cases-desc4 h4 a {
    color: #fff;
    transition: all .5s ease-in-out;
}

.cases-desc4 h4 a:hover {
    color: #00BBEF;
}

/* ======================
case single
====================== */

.case-sidebar .case-sidebar-content ul li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 33px;
}

.case-sidebar .case-sidebar-content ul li:last-child {
    border-bottom: none;
}

.case-sidebar-title {
    margin-bottom: 30px;
}

.case-sidebar .case-sidebar-content ul li span {
    display: block;
    font-weight: normal;
    margin: 0;
    text-transform: capitalize;
}

.case-sidebar .case-sidebar-content .rating a {
    color: #1d42d9;
}

.case-new-project {
    background: #1d42d9 !important;
}

.case-new-project h4 {
    color: #fff;
    margin-bottom: 30px;
}

.new-project-btn {
    background: #fff;
    color: #1D42D9;
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
    transition: all .5s ease-in-out;
}

.new-project-btn:hover {
    background: #051C55;
    color: #fff;
}

.new-project-btn i {
    margin-left: 8px;
}

.case-details img {
    border-radius: 12px;
}

.case-single-list i {
    color: #0049D0;
    margin-right: 10px;
}

/* ===================
blog css 
====================== */

.blog-area .blog-single-item {
    margin-bottom: 30px;
}

.blog-area .item {
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    background: #ffffff;
    border-radius: 10px;
}

.blog-area .blog-items .item .thumb {
    position: relative;
    padding: 15px;
}

.blog-area .blog-items .item .thumb .date {
    position: absolute;
    left: 30px;
    bottom: -10px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, .08);
    padding: 15px;
    font-size: 20px;
    color: #1D42D9;
    font-weight: 700;
    border-radius: 5px;
    line-height: 1;
}

.blog-area .blog-items .item .thumb .date i {
    margin-right: 10px;
}

.blog-area .blog-items .info {
    padding: 30px;
}

.blog-area .blog-items .info h2,
.blog-area .blog-items .info h3,
.blog-area .blog-items .info h4 {
    font-weight: 600;
}

.blog-area .blog-items .info h2 a:hover,
.blog-area .blog-items .info h3 a:hover,
.blog-area .blog-items .info h4 a:hover {
    color: #1D42D9;
}

.blog-area.full-blog .blog-items .info {
    padding-top: 15px;
}

.blog-area .blog-items .item .thumb img {
    border-radius: 10px;
}

.blog-area .blog-items .info .meta ul li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    font-weight: 500;
    color: #232323;
    font-size: 13px;
}

.blog-area .blog-items .info .meta ul li i {
    font-weight: 500;
    margin-right: 2px;
    color: #1D42D9;
}

.blog-area .blog-items .info .meta ul li a:hover,
.blog-area .blog-items .info h4 a:hover,
.blog-area .btn-more:hover {
    color: #1D42D9;
}

.blog-area.content-less .btn-more {
    color: #1D42D9;
}

.blog-area .blog-items .info .meta {
    margin-bottom: 15px;
}

.blog-area .blog-items .info .meta a {
    font-weight: 500;
    font-size: 16px;
}

.blog-area .btn-more {
    margin-top: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-area .btn-more i {
    position: relative;
    top: 2px;
    margin-left: 1px;
}

.blog-area .blog-items .info .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    margin-top: 20px;
    padding-top: 30px;
}

.blog-area .blog-items .info .bottom img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 7px;
    border: 1px solid #e7e7e7;
    padding: 3px;
    max-width: 60px;
}

/* ===========================
blog single css
=========================== */

.blog-single-area img {
    border-radius: 12px;
}

.blog-thumb-img {
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-meta a:hover {
    color: #1d42d9;
}

.blog-details-title {
    font-size: 34px;
}

.blockqoute {
    background: #EEF3F7;
    border-left: 3px solid #1d42d9;
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
}

.blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
}

.blockqoute-author::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: #000;
    left: 0;
    top: 10px;
}

.blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-tags ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-tags ul a {
    border: 2px solid #2a355e;
    padding: 2px 10px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.blog-details-tags ul a:hover {
    background: #2a355e;
    color: #fff;
}

.blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin: 50px 0;
    border-radius: 10px;
}

.blog-author img {
    width: 300px;
}

.author-info {
    padding: 20px;
}

.author-name {
    font-size: 25px;
    color: #051C55;
    margin: 8px 0;
}

.author-social {
    margin-top: 10px;
}

.author-social a {
    margin-right: 10px;
    color: #051C55;
    transition: all .5s ease-in-out;
}

.author-social a:hover {
    color: #1d42d9;
}

.blog-comments {
    margin-bottom: 50px;
}

.blog-comments-wrapper {
    margin: 30px 0;
}

.blog-comments-single {
    display: flex;
    justify-content: start;
    align-items: center;
}

.blog-comments-single img {
    border-radius: 50%;
    width: 150px;
}

.blog-comments-content {
    padding: 20px 30px;
}

.blog-comments-content span {
    font-size: 14px;
}

.blog-comments-content a {
    font-weight: 600;
    margin-top: 5px;
}

.blog-comments-content a:hover {
    color: #1d42d9;
}

.blog-comments-reply {
    margin-left: 50px;
}

.blog-comments-form h4 {
    margin-bottom: 20px;
}

.blog-comments-form .form-group {
    margin-bottom: 20px;
}

.blog-comments-form .form-control {
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: none;
    transition: all .5s ease-in-out;
}

.blog-comments-form .form-control:focus {
    border-color: #1d42d9;
}

.comment-btn {
    background: #1d42d9;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
    transition: all .5s ease-in-out;
}

.comment-btn:hover {
    background: #051C55;
    color: #fff;
}

.comment-btn i {
    margin-right: 5px;
}

@media all and (max-width: 767px) {
    .blog-meta {
        flex-direction: column;
        font-size: 15px;
    }
    .blog-meta .blog-meta-left ul {
        gap: 10px;
    }
    .blog-details-tags {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px 0 0 0;
    }
    .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0px;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
        margin-bottom: 30px;
        border-radius: 10px;
    }
    .blog-comments-reply {
        margin-left: 0px;
    }
}

/* =========================
sidebar css
========================= */

.widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.widget .widget-title {
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}

.widget .widget-title::before {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid #1d42d9;
    bottom: 0;
    left: 0;
}

.widget .widget-title::after {
    position: absolute;
    content: '';
    width: 5px;
    border-bottom: 3px solid #1d42d9;
    bottom: 0;
    left: 35px;
}

.widget .search-form .form-control {
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    box-shadow: none;
}

.widget .search-form {
    position: relative;
}

.widget .search-form .form-control:focus {
    border-color: #1d42d9;
}

.widget .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 18px 6px 18px;
    background: transparent;
    border: none;
    color: #6C7C89;
}

.widget .category-list a {
    display: block;
    margin-bottom: 10px;
    transition: all .5s ease-in-out;
}

.widget .category-list a:last-child {
    margin-bottom: 0px;
}

.widget .category-list a:hover {
    padding-left: 10px;
    color: #1d42d9;
}

.widget .category-list a i {
    margin-right: 5px;
}

.widget .category-list a span {
    float: right;
}

.widget .recent-post-single {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}

.widget .recent-post-img {
    margin-right: 20px;
}

.widget .recent-post-img img {
    border-radius: 10px;
    width: 70px;
}

.widget .recent-post-bio h6 {
    font-size: 16px;
}

.widget .recent-post-bio span {
    font-size: 14px;
}

.widget .recent-post-bio span i {
    margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
    color: #1d42d9;
}

.widget .archive-list a {
    display: block;
    margin-bottom: 10px;
    transition: all .5s ease-in-out;
}

.widget .archive-list a:last-child {
    margin-bottom: 0px;
}

.widget .archive-list a:hover {
    padding-left: 10px;
    color: #1d42d9;
}

.widget .archive-list a i {
    margin-right: 5px;
}

.widget .archive-list a span {
    margin-left: 10px;
}

.widget .social-share-link a {
    width: 35px;
    height: 35px;
    line-height: 31px;
    border: 2px solid #2a355e;
    color: #2a355e;
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
    transition: all .5s ease-in-out;
}

.widget .social-share-link a:hover {
    background: #2a355e;
    color: #fff;
}

.widget .tag-list a {
    border: 2px solid #2a355e;
    padding: 3px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 8px;
    transition: all .5s ease-in-out;
}

.widget .tag-list a:hover {
    background-color: #2a355e;
    color: #fff;
}

/* ===================
contact us css 
====================== */

.contact-wrapper {
    background: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border-radius: 15px;
    position: relative;
}

.contact-form {
    padding: 0 40px;
}

.contact-form-header {
    margin-bottom: 30px;
    color: #000055;
}

.contact-form-header h2 {
    color: #000055;
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group .form-control {
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: none;
    transition: all .5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
    border-color: #1d42d9;
}

.contact-map iframe {
    width: 100%;
    border-radius: 15px 0 0 15px;
    height: 560px;
    margin-bottom: -8px;
}

.contact-content {
    margin-bottom: 120px;
}

.contact-btn {
    background: #1d42d9;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    transition: all .5s ease-in-out;
}

.contact-btn:hover {
    color: #fff;
    background: #051C55
}

.contact-btn i {
    margin-right: 5px;
}

.contact-info {
    background: #fff;
    text-align: center;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 1;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(../img/shape/1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    z-index: -1;
}

.contact-info i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 50px;
    background: #0431B8;
    box-shadow: -5px 5px 0 #39B4CB;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.contact-info h5 {
    color: #051C55;
    margin-bottom: 5px;
}

.contact-info p {
    color: #051C55;
}

@media all and (max-width: 991px) {
    .contact-form {
        padding: 50px 20px;
    }
}

/* ===================
quote css 
====================== */

.quote-area {
    background-image: url(../img/quote/quote-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.quote-thum {
    bottom: 0px;
    left: 0px;
    position: absolute;
    width: 47%;
}

.quote-content .quote-header h6 {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
}

.quote-content .quote-header h2 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.quote-content .form-group {
    margin-bottom: 25px;
}

.quote-content .form-group .form-control {
    height: 50px;
    font-size: 16px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    box-shadow: none;
    transition: all .5s ease-in-out;
}

.quote-content .form-group .form-control:focus {
    border-color: #00a7e6;
}

.quote-content textarea {
    height: 120px !important;
}

.quote-content .form-control::placeholder {
    color: #F2F3F5;
    opacity: 1;
}

.quote-content .form-control:-ms-input-placeholder {
    color: #F2F3F5;
}

.quote-content .form-control::-ms-input-placeholder {
    color: #F2F3F5;
}

.quote-content .theme-btn {
    background: #fff;
    font-weight: 600;
    color: #0049D0;
}

.quote-content .theme-btn:hover {
    color: #fff;
    background: #00a7e6;
}

@media all and (max-width: 1199px) {
    .quote-content .quote-header h2 {
        font-size: 25px;
    }
    .quote-thum {
        width: 60%;
        left: -110px;
    }
}

@media all and (max-width: 991px) {
    .quote-thum {
        display: none;
    }
}
@media all and (max-width: 991px) {
    .about-area{
        margin-top: 160px;
    }
}
/* ===================
team css 
====================== */

.team-content {
    display: flex;
    justify-content: space-between;
}

.team-item {
    position: relative;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.team-item-img {
    position: relative;
}

.team-item-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 10px);
    height: 40px;
    -webkit-clip-path: polygon(30% 0%, 0 100%, 100% 100%);
    clip-path: polygon(30% 0%, 0 100%, 100% 100%);
    background-color: #0431b8;
}

.team-item-img::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: calc(100% + 10px);
    height: 40px;
    -webkit-clip-path: polygon(30% 0%, 0 100%, 100% 100%);
    clip-path: polygon(30% 0%, 0 100%, 100% 100%);
    background-color: #ffffff;
}

.team-content {
    padding: 20px;
    position: relative;
}

.team-social-box span {
    width: 50px;
    height: 50px;
    background: #0431B8;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.team-social {
    display: inline-block;
    position: absolute;
    right: 20px;
    bottom: 90px;
    border-radius: 50px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.team-social a {
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0431b8;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.team-social a:last-child {
    border-bottom: none;
}

.team-social a.active,
.team-social a:hover {
    background: #0dc4e0;
    color: #fff;
}

.team-item:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.team-social-box:hover .team-social {
    bottom: 70px;
    opacity: 1;
    visibility: visible;
}

.team-bio h5 a {
    font-size: 22px;
    color: #082680;
    font-weight: 700;
}

/* team 2 */

.team-item2 {
    background: #F7FBFF;
    border-radius: 10px;
    text-align: center;
    padding: 35px 30px;
    margin-bottom: 25px;
    position: relative;
    transition: all .5s ease-in-out;
}

.team-item2:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.team-item-img2 {
    border: 4px solid #00BAEE;
    border-right-color: transparent;
    border-radius: 50%;
    padding: 8px;
    margin-bottom: 20px;
}

.team-item-img2 img {
    border-radius: 50%;
}

.team-bio2 h5 {
    font-size: 22px;
    margin: 6px 0;
}

.team-bio2 h5 a {
    color: #004976;
    transition: all .5s ease-in-out;
}

.team-bio2 h5 a:hover {
    color: #00BAEE;
}

.team-bio2 span {
    color: #00BAEE;
}

.team-social2 {
    margin-top: 20px;
}

.team-social2 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 2px;
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #004976;
    -webkit-box-shadow: 0px 8px 16px 0px rgb(0 73 118 / 10%);
    box-shadow: 0px 8px 16px 0px rgb(0 73 118 / 10%);
    transition: all .5s ease-in-out;
}

.team-social2 a:hover {
    background: #004976;
    color: #fff;
}

/* team 3 */

.team-item3 {
    margin-bottom: 100px;
    position: relative;
    transition: all .5s ease-in-out;
}

.team-item3:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.team-item-img3 img {
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.team-content3 {
    position: absolute;
    bottom: -70px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.team-social3 {
    margin-top: 10px;
}

.team-social3 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 2px;
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    color: #0049d0;
    background: #fff;
    -webkit-box-shadow: 0px 8px 16px 0px rgb(0 73 118 / 10%);
    box-shadow: 0px 8px 16px 0px rgb(0 73 118 / 10%);
    transition: all .5s ease-in-out;
}

.team-social3 a:hover {
    color: #fff;
    background: #0049d0;
}

.team-bio3 h5 {
    font-size: 22px;
}

.team-bio3 h5 a {
    color: #0049d0;
    transition: all .5s ease-in-out;
}

.team-bio3 h5 a:hover {
    color: #00BAEE;
}

/* ===================
team single css 
====================== */

.team-single-img img {
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.team-details {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.team-details-info {
    margin: 20px 0;
}

.team-details-info li {
    margin-bottom: 10px;
}

.team-details-info a:hover {
    color: #1d42d9;
}

.team-details-info a i {
    margin-right: 10px;
    color: #1d42d9;
}

.team-details-social a {
    margin-right: 15px;
    font-size: 20px;
    color: #051C55;
    display: inline-block;
    transition: all .5s ease-in-out;
}

.team-details-social a:hover {
    color: #1d42d9;
}

.biography {
    padding-right: 20px;
    margin-bottom: 30px;
}

/* ===================
feature css 
====================== */

.feature-area {
    position: relative;
    display: block;
}

.feature-wrapper {
    position: relative;
    display: block;
}

.feature-single-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22D3EE;
    box-shadow: -10px 10px 0 #082680;
    border-radius: 10px;
    padding: 20px 20px;
    margin-bottom: 30px;
    z-index: 1;
    transition: all .5s ease-in-out;
}

.feature-single-item::before {
    content: "";
    position: absolute;
    background-image: url(../img/shape/6.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.feature-single-item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.feature-icon i {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: #051C55;
    transform: scale(1);
    transition: transform 500ms linear, color 500ms linear;
}

.feature-single-item:hover .feature-icon span {
    transform: scale(.9);
    color: #1d42d9;
}

.feature-text {
    margin-left: 30px;
}

.feature-text h3 {
    color: #051C55;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
    line-height: 30px;
}

/* ===================
top feature css 
====================== */

.top-feature-left {
    text-align: right;
}

.top-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 10px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 43px 0px rgb(10 10 10 / 14%);
    position: relative;
    z-index: 1;
    transition: all .5s ease-in-out;
}

.top-feature-item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.top-feature-left .top-feature-item {
    flex-direction: row-reverse;
}

.top-feature-icon {
    padding: 8px;
    position: relative;
}

.top-feature-icon::before {
    content: "";
    position: absolute;
    border: 2px dashed #00a7e6;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 50px;
    -webkit-animation: sticker-rotate 20s linear infinite;
    animation: sticker-rotate 20s linear infinite;
}

.top-feature-icon i {
    width: 80px;
    height: 80px;
    background: #082781;
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.top-feature-content a h5 {
    color: #082781;
    font-size: 22px;
    transition: all .5s ease-in-out;
}

.top-feature-content a h5:hover {
    color: #22D3EE;
}

.top-feature-img {
    border: 4px solid #0dc4e0;
    border-left-width: 15px;
    border-radius: 50%;
    padding: 10px;
    background: #014cda;
    padding: 10px 0 10px 15px;
}

.top-feature-img img {
    border-radius: 50%;
}

@media all and (max-width: 991px) {
    .top-feature-img {
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

/* ===================
step/process css 
====================== */

.process-single {
    position: relative;
}

.process-single .icon {
    height: 100px;
    width: 100px;
    display: inline-block;
    position: relative;
    line-height: 100px;
    background: #1D42D9;
    box-shadow: -5px 5px 0 #22D3EE;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.process-single span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: #22D3EE;
    line-height: 35px;
    border-radius: 50%;
    color: #ffffff;
    left: -3px;
    top: -13px;
    font-weight: 600;
}

.process-single h4 {
    margin-bottom: 10px;
    color: #082680;
}

.process-single::before {
    content: url();
    position: absolute;
    right: -153px;
    top: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .process-single::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-single::before {
        display: none;
    }
}

.process-area .col-lg-3:last-child .process-single::before {
    display: none;
}

/* ===================
faq css 
====================== */

.faq-img {
    padding-right: 40px;
}

.faq-img img {
    width: 100%;
}

.faq-area .accordion-item {
    border: none;
    margin-bottom: 30px;
    border-radius: 10px !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.faq-area .accordion-item i {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    background: #1d42d9;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    min-width: 40px;
}

.accordion-button {
    border-radius: 10px !important;
    font-weight: 700;
    box-shadow: none !important;
    border: none !important;
}

@media all and (max-width: 991px) {
    .faq-img {
        margin-bottom: 50px;
    }
}

/* ===================
partner css 
====================== */

.partner-area .partner-wrapper img {
    padding: 20px;
}

.partner-area2 .partner-item {
    padding: 20px;
    margin-bottom: 30px;
    transition: all .5s ease-in-out;
}

.partner-area2 .partner-item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    z-index: 1;
}

.site-breadcrumb::before {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: #02154E;
    opacity: 0.8;
    content: '';
}

.site-breadcrumb .breadcrumb-title {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
    color: #fff;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: #22D3EE;
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 5 Pro';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: #22D3EE;
}

.site-breadcrumb2 {
    padding-top: 250px;
}

@media (max-width: 991px) {
    .site-breadcrumb {
        padding-top: 200px;
    }
    .site-breadcrumb2 {
        padding-top: 320px;
    }
}

/* ===================
pagination css 
====================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pagination .page-link {
    border: none;
    background: #051C55;
    color: #fff;
    margin: 0 10px;
    border-radius: 10px !important;
    padding: 5px 15px;
    transition: all .5s ease-in-out;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: #1d42d9;
}

/* ===================
RTL css
====================== */

body.rtl-mode {
    direction: rtl;
}

body.rtl-mode .item-area {
    direction: ltr;
}

body.rtl-mode .price-wrapper {
    direction: rtl;
}

@media (min-width: 992px) {
    body.rtl-mode .navbar-brand {
        margin-left: 3rem;
    }
    body.rtl-mode .navbar .nav-item .nav-link {
        margin-left: 3rem;
        margin-right: 0;
    }
}

/* ===================
auth css 
====================== */

.login-form {
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form .login-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-form .login-header img {
    width: 200px;
    margin-bottom: 10px;
}

.login-form .login-header h3 {
    color: #1d42d9;
    margin-bottom: 5px;
    font-weight: 800;
}

.login-form .login-header p {
    font-size: 20px;
}

.login-form .login-footer {
    margin-top: 40px;
}

.login-form .login-footer p {
    text-align: center;
}

.login-form .login-footer a {
    color: #1d42d9;
    transition: .5s;
}

.login-form .login-footer a:hover {
    color: #dd4b39;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    color: #000;
}

.login-form .form-group .form-control {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 18px;
    box-shadow: none;
    transition: .5s;
}

.login-form .form-group .form-control:focus {
    border-color: #1d42d9;
}

.login-form .form-check-input {
    box-shadow: none;
}

.login-form .forgot-pass {
    color: #1d42d9;
    transition: .5s;
}

.login-form .forgot-pass:hover {
    color: #dd4b39;
}

.login-form .login-btn {
    width: 100%;
    background: #1d42d9;
    color: #fff;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    transition: .5s;
}

.login-form .login-btn i {
    margin-right: 5px;
}

.login-form .login-btn:hover {
    background: #2a355e;
    color: #fff;
}

.login-form .form-check-input {
    margin-top: 6.3px;
}

.login-form .form-check-label a {
    color: #0364FF;
    transition: .5s;
}

.login-form .form-check-label a:hover {
    color: #dd4b39;
}

@media only screen and (max-width: 991px) {
    .login-form {
        padding: 40px 20px;
    }
}

/* ===================
career css 
====================== */

.career-single-item {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-meta .badge {
    background: #00BBEF;
    border-radius: 50px;
    padding: 10px 20px;
}

.job-time {
    color: #1d42d9;
}

.job-time i {
    margin-right: 5px;
}

.job-info-list {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    color: #051C55;
}

.job-info-list li span {
    margin-right: 8px;
}

.job-content h3 {
    font-size: 25px;
    margin: 10px 0px;
    color: #051C55;
}

.job-btn {
    margin-top: 30px;
    border: 2px solid transparent;
    background: #0431B7;
    color: #fff;
    padding: 6px 25px;
    border-radius: 10px;
    font-weight: bold;
    transition: all .5s ease-in-out;
}

.job-btn:hover {
    background: transparent;
    border-color: #0431B7;
    color: #0431B7;
}

.job-btn i {
    margin-left: 5px;
}

.career-promo-single {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.career-promo-single span {
    color: #1d42d9;
    font-size: 35px;
    margin-bottom: 20px;
}

@media all and (max-width: 767px) {
    .job-meta {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .job-info-list {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-time {
        margin-top: 20px;
    }
}

/* ===================
career single css 
====================== */

.job-single-img img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.job-single-list li {
    margin-bottom: 14px;
    margin-left: 10px;
}

.job-single-list li i {
    margin-right: 5px;
    color: #1d42d9;
}

.job-overview-list li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.job-overview-list li i {
    margin-right: 15px;
    font-size: 22px;
    color: #1d42d9;
}

.overview-item h6 {
    font-size: 18px;
}

/* ===================
gallery css 
====================== */

.gallery-area .popup-img {
    margin-bottom: 30px;
    cursor: zoom-in;
    transition: all .5s ease-in-out;
}

.gallery-area .popup-img:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.gallery-area .popup-img img {
    border-radius: 15px;
}

/* ===================
coming soon css 
====================== */

.coming-soon {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
}

.coming-soon .container {
    position: relative;
}

.coming-soon:before {
    position: absolute;
    content: '';
    background: linear-gradient(75deg, #073482, #014cda);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .8;
}

.coming-soon .newsletter-form {
    position: relative;
    margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
    height: 50px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 25px;
}

.coming-soon .newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    height: auto;
    border: none;
    border-radius: 30px;
    background-color: #1d42d9;
    display: inline-block;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    transition: .5s;
}

.coming-soon .newsletter-form button:hover {
    background-color: #2a355e;
    color: #fff;
}

.coming-social {
    margin-top: 30px;
    text-align: center;
}

.coming-social a {
    color: #fff;
    margin: 5px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border: 2px solid #fff;
    display: inline-block;
    border-radius: 50px;
    transition: .5s;
}

.coming-social a:hover {
    background-color: #1d42d9;
    border-color: #1d42d9;
}

.countdown-wrap {
    margin-top: 30px;
}

.countdown-single {
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.countdown-single h2 {
    color: #0948b3;
}

.countdown-single h5 {
    color: #0948b3;
}

/* ===================
error css 
====================== */

.error-wrapper {
    text-align: center;
}

.error-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.error-wrapper img {
    width: 100%;
}

.error-wrapper .theme-btn {
    margin-top: 30px;
}

/* ===================
terms/privacy css 
====================== */

.terms-content:not(:last-child) {
    margin-bottom: 54px;
}

.terms-content:first-child {
    margin-top: -3px;
}

.terms-content .terms-list {
    margin-top: 37px;
}

.terms-content h3 {
    padding-left: 20px;
    margin-bottom: 23px;
    position: relative;
}

.terms-content h3:after {
    width: 10px;
    height: 10px;
    background: #1d42d9;
    border-radius: 50%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    content: "";
}

.terms-content p:not(:last-child) {
    margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
    margin-bottom: 16px;
}

/* ===================
booking form css 
====================== */

.booking-form {
    background-image: url(../img/bg/count.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding: 30px;
}

.booking-form .form-title span {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.booking-form form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.booking-form .form-control {
    width: 27%;
    padding: 16px 18px;
    border: 0;
    margin-right: 15px;
    border-radius: 10px;
    font-size: 15px;
    box-shadow: none;
}

.booking-form button {
    padding: 14px;
    width: 185px;
    text-align: center;
    background-color: #00BAEE;
    color: #fff;
    font-weight: 700;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.booking-form button:hover {
    background: #fff;
    color: #00BAEE;
}

.booking-form button i {
    margin-right: 5px;
}

@media all and (max-width: 992px) {
    .booking-form form {
        flex-direction: column;
    }
    .booking-form .form-control {
        width: 100%;
        margin: 0;
        margin-bottom: 30px;
    }
    .booking-form button {
        width: 100%;
    }
}

/* ===================
footer css 
====================== */

.footer-area {
    background: #02154F;
    position: relative;
    z-index: 1;
}

.footer-area::before {
    content: "";
    position: absolute;
    background-image: url(../img/shape/2.png);
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    opacity: .5;
    z-index: -1;
}

.footer-widget-box {
    margin-bottom: 20px;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 215px;
    margin-bottom: 30px;
}

.copyright {
    border-top: 1px solid #2a355e;
    padding: 20px 0;
}

.copyright .footer-menu {
    margin: 0;
    padding: 0;
}

.copyright .footer-menu li {
    display: inline-block;
    margin-right: 25px;
    font-size: 16px;
}

.copyright .footer-menu li a {
    color: #f5faff;
    transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
    color: #22D3EE;
}

.copyright .copyright-text {
    text-align: right;
    color: #f5faff;
    margin-bottom: 0px;
    font-size: 16px;
}

.copyright .copyright-text a {
    color: #22D3EE;
    font-weight: 600;
}

.footer-widget-title {
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    z-index: 1;
}

.footer-widget-title::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #22D3EE;
    bottom: 0;
    left: 0;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 2px;
    background-color: #22D3EE;
    bottom: 0;
    left: 45px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list li a {
    color: #fff;
    transition: all .5s ease-in-out;
}

.footer-list li a:hover {
    padding-left: 10px;
    color: #22D3EE;
}

.footer-widget-box p {
    color: #fff;
    padding-right: 18px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.footer-social li a i {
    height: 38px;
    width: 38px;
    font-size: 16px;
    line-height: 33px;
    text-align: center;
    border: 2px solid #15265B;
    color: #22d3ee;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
    border-color: #22d3ee;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.footer-newsletter .subscribe-form .form-control {
    border: 2px solid #e8e8e8;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    box-shadow: none;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.footer-newsletter .subscribe-form .form-control:focus {
    border-color: #22D3EE;
}

.footer-newsletter .subscribe-form .form-control::placeholder {
    color: #C2D5E7;
    opacity: 1;
}

.footer-newsletter .subscribe-form .form-control:-ms-input-placeholder {
    color: #C2D5E7;
}

.footer-newsletter .subscribe-form .form-control::-ms-input-placeholder {
    color: #C2D5E7;
}

.footer-newsletter .subscribe-form .theme-btn {
    margin-top: 20px;
    background: #0dc4e0;
}

.footer-newsletter .subscribe-form .theme-btn:hover {
    background: #0431B7;
}

.footer-newsletter .subscribe-form .theme-btn i {
    margin-right: 5px;
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #f5faff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-contact li a {
    color: #f5faff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-contact li i {
    margin-right: 10px;
    margin-top: 4px;
    font-size: 20px;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #22D3EE;
}

@media all and (max-width: 1199px) {
    .footer-widget-box {
        margin-bottom: 50px;
    }
}

@media all and (max-width: 991px) {
    .copyright .copyright-text {
        margin-top: 30px;
        text-align: left;
    }
}

@media all and (max-width: 767px) {
    .footer-widget-wrapper {
        padding-bottom: 0;
    }
}

/* ============================
home-2 css
============================ */

/* navbar */

.home-2 .navbar {
    background: #0431B8;
}

@media all and (max-width: 767px) {
    .home-2 .hero-single {
        padding-top: 200px;
        padding-bottom: 150px;
    }
}

