:root {
    --dblue: #134A85;
    --lblue: #89D2D5;
    --white: #FFFFFF;
    --black: #161616;
    --brwht: #F0F0FF;
    --grey: #555574;
}

/* @font-face {
    font-family: 'IvyMode';
    src: url('../fonts/IvyMode-Regular.ttf') format('ttf'),
        url('../fonts/IvyMode-Regular.woff2') format('woff2'),
        url('../fonts/IvyMode-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

body {
  font-family: "Plus Jakarta Sans", serif;
  font-size: 16px;
  color: var(--black);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p {
    line-height: 1.5;
}

.pt-40 {
    padding-top: 40px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}

.pr-10 {
    padding-right: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

h1 {
    font-size: 54px;
    font-weight: bold;
}
h2 {
    font-size: 42px;
    font-weight: bold;
}
h3 {
    font-size: 20px;
    font-weight: bold;
}

.txt-dblue {
    color: var(--dblue);
}

.sub-head {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

a.btn-default {
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    padding: 10px 28px;
    background-color: var(--dblue);
    transition: all 0.3s ease-in-out;
}
a.btn-default:hover {
    color: var(--black);
    border: solid 1px var(--black);
    background-color: var(--lblue);
    transition: .3s;
}
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-cta {
    position: relative;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    padding: 19px 60px 19px 30px;
    background-color: var(--dblue);
    transition: all 0.3s ease-in-out;
}
.btn-cta:hover {
    color: var(--black);
    background-color: var(--lblue);
    transition: .3s;
}

.navbar-light {
    background-color: var(--white);
    /* border-bottom: solid 1px var(--black); */
}
.navbar-nav {
    align-items: center;
}
.navbar-nav .cta-btn {
    margin-left: 10px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--black);
}
.navbar-brand img {
    width: 350px;
    height: auto;
}

.hero {
    position: relative;
    padding-bottom: 86px;
}
.hero .hero-section {
    color: var(--white);
    background: url(../images/hero-bg.svg), linear-gradient(90deg, #2C2C66 -10.82%, #0B0B38 56.59%) no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0 82px;
}
.hero-content .section-title {
    margin-bottom: 40px;
}
.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
}
.hero-content-body {
    border-top: 1px solid var(--brwht);
    border-bottom: 1px solid var(--brwht);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: center; */
    gap: 60px;
    padding: 25px 0;
    margin-bottom: 40px;
}
.hero-counter-box {
    width: calc(33.33% - 40px);
}
.hero-content-footer .btn-default {
    padding: 16px 28px;
    margin-right: 30px;
    text-transform: capitalize;
}
.hero-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 40px;
}
.our-cta-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 15px;
    z-index: 2;
}
.cta-content-box {
    background-color: var(--white);
    border: 1px solid var(--brwht);
    box-shadow: 0px 10px 30px 0px #00000008;
    border-radius: 40px;
    padding: 50px;
}
.cta-item {
    border-right: 1px solid var(--brwht);
    display: flex;
    align-items: center;
    padding-right: 15px;
}
.cta-item .icon-box {
    position: relative;
    background-color: var(--dblue);
    border-radius: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 15px;
    transition: all 0.5s ease-in-out;
}
.cta-item-content {
    width: calc(100% - 85px);
}
.cta-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.cta-item-content p {
    margin: 0;
}
.cta-btn {
    text-align: center;
}

hr.hr-grey {
    height: 1px;
    background-color: var(--brwht);
}

.about-img {
    text-align: center;
}
.about-img img {
    max-width: 400px;
    height: auto;
}

.mission-sec {
    color: var(--white);
    background: linear-gradient(180deg, var(--dblue) 70%, var(--white) 30%);
    padding: 100px 0 100px;
}

.vision-div {
    color: var(--black);
    background-color: var(--white);
    box-shadow: 0px 12px 37.1px 0px #0000000D;
    border-radius: 40px;
    height: calc(100% - 5px);
    padding: 20px;
    text-align: center;
}
.vision-div h3 {
    margin-bottom: 20px;
}
.vision-icon {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.value-sec {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.core-values {
    display: flex;
    text-align: center;
    align-items: center;
    box-shadow: 0px 12px 37.1px 0px #0000000D;
    padding: 10px;
    border-radius: 10px;
}
.core-values img {
    width: 50px;
    height: 50px;
    background-color: var(--dblue);
    border-radius: 10px;
    padding: 5px;
    justify-content: center;
    overflow: hidden;
    margin-right: 16px;
}
.core-values p {
    font-weight: bold;
    margin: 0;
}

.ser-sec {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F8F8FF 70%, var(--white) 30%);
}
.ser-card {
    background-color: var(--white);
    box-shadow: 0px 12px 37.1px 0px #0000000D;
    border: 1px solid var(--brwht);
    border-radius: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
}
.ser-card a {
    text-decoration: none;
}
.ser-card p {
    color: var(--black);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--brwht);
}

.anime-img {
    position: relative;
    overflow: hidden;
}
.anime-img::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.ser-img img {
    /* aspect-ratio: 1 / 0.67; */
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    /* border-radius: 40px; */
    transition: all 0.5s ease-out;
    width: 100%;
}


/* Testimonials */

.section-row {
    margin-bottom: 80px;
}
.section-btn {
    text-align: end;
}

.our-testimonials{
	background: url('../images/testimonial-bg.png'), linear-gradient(180deg, var(--lblue) 60%, var(--white) 40%);
	background-position: center center;
	background-size: auto;
	padding: 100px 0 50px;
}

.our-testimonials .section-title h2{
	color: var(--black);
}

.testimonial-slider{
	background-color: var(--white);
	box-shadow: 0px 12px 37.1px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 100px;
}

.testimonial-header{
	margin-bottom: 50px;
}

.testimonial-quote{
	margin-bottom: 30px;
}

.testimonial-quote img{
	max-width: 50px;
}

.testimonial-content p{
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.testimonial-body{
    display: inline-flex;
    align-items: center;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 45px;
	height: 45px;
	background-color: var(--lblue);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background-color: var(--dblue);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}


.page-header {
    color: var(--white);
    background: url(../images/hero-bg.svg), linear-gradient(90deg, var(--lblue) -10.82%, var(--dblue) 56.59%);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 140px 0;
}
.page-header-box {
    text-align: center;
}
.page-header-box a {
    text-decoration: none;
}
.page-header-box a:hover {
    text-decoration: underline;
}
.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}
.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-transform: capitalize;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0px 0px 0px 8px;
}
.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}
.page-qut {
    font-size: 20px;
}

.des-sec {
    border: 1px solid var(--brwht);
    box-shadow: 0px 10px 30px 0px #00000008;
    border-radius: 20px;
}
.des-div {
    padding: 40px;
}
.des-div .des-head {
    display: flex;
}
.des-div .des-head img {
    padding: 6px;
    border-radius: 10px;
    background-color: var(--dblue);
    width: 54px;
    height: 54px;
    margin-right: 20px;
}
.des-div h3 {
    font-size: 26px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey);
}
.des-div h3 {
    margin-bottom: 20px;
}
.des-div p {
    margin: 0;
}
.des-img img {
    border-radius: 30px;
    width: 100%;
    min-height: 400px;
}

.row-div {
    margin-top: 40px;
    margin-bottom: 40px;
}

.sym-col {
    color: var(--white);
    text-align: center;
    background-color: var(--dblue);
    border-radius: 20px;
    height: calc(100% - 10px);
    padding: 10px;
}
.sym-col img {
    margin: 10px 0;
}


.dis-page .ser-card {
    padding: 10px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.dis-page p {
    margin-bottom: 10px;
    height: calc(20% - 10px);
}
.dis-page .ser-card img:hover {
    filter: grayscale();
}
.ser-card .cont-over {
    position: absolute;
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    bottom: 10px;
    height: calc(20% - 10px);
    z-index: 1;
}
.ser-card .cont-over p {
    line-height: 1.2;
    margin: 0;
    border-bottom: 0;
}


.abt-img {
    border-radius: 20px;
}
.abt-sec .abt-p a {
    color: var(--dblue);
    text-decoration: none;
}
.abt-sec .abt-p a:hover {
    color: var(--black);
    text-decoration: underline;
}
.awards {
    background-color: transparent;
    background-image: linear-gradient(360deg, var(--lblue) 50%, var(--white) 30%);
}
.awards-div {
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
    border: 1px solid var(--lblue);
    background-color: var(--white);
    box-shadow: 0px 12px 37.1px 0px #0000000D;
}
.awards-div h3 {
    margin: 0;
}
.awards-div img {
    margin-bottom: 10px;
}



.insu-div {
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--brwht);
    padding: 20px;
    height: calc(100% - 20px);
    box-shadow: 0px 12px 37.1px 0px #0000000D;
    margin: 10px 0;
}
.insu-div h3 {
    margin: 0;
}

.blog-div {
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 4px 40px 0px #0000000F;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}
.blog-div a {
    color: inherit;
    text-decoration: none;
}
.blog-div img {
    border-radius: 20px;
    width: 100%;
}
.blog-div h3 {
    padding-top: 10px;
}


.left-menu {
    border-radius: 10px;
    padding: 30px 20px;
    background-color: var(--dblue);
}
.left-menu h3 {
    color: var(--white);
    margin-bottom: 20px;
}
.left-menu ul {
    list-style: none;
    padding: 0;
}


.left-menu ul li {
    padding: 5px;
    background-color: var(--white);
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
}
.left-menu ul li:hover {
    background-color: var(--lblue);
    transition: 6ms;
}

.left-menu ul li a{
    color: inherit;
    text-decoration: none;
}

.dis-right img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-us-item {
    position: relative;
    border: 1px solid var(--brwht);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0px 4px 40px 0px #0000000F;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}
.contact-us-item .icon-box {
    position: relative;
    margin-bottom: 20px;
    z-index: 2;
}
.contact-us-item .icon-box img {
    max-width: 60px;
    transition: all 0.4s ease-in-out;
}
.contact-us-item .contact-info-content {
    position: relative;
    z-index: 2;
} 
.contact-us-item .contact-info-content h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.contact-us-item .contact-info-content p {
    width: 100%;
    max-width: 250px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}  

.contact-us-form .form-group label {
    color: var(--dblue);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.contact-us-form .form-control {
    padding: 15px;
    font-size: 16px;
    background-color: var(--white);
    border-color: var(--brwht);
    border-radius: 14px;
    color: var(--dblue);
    box-shadow: none;
    outline: none;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe iframe,
.google-map-iframe{
	width: 100%;
	height: 650px;
}

.google-map-iframe iframe{
	filter: grayscale(100%);
	transition: all 0.3s ease-in-out;
}

.google-map-iframe:hover iframe{
	filter: grayscale(0%);
}


footer {
    background-color: var(--dblue);
    color: var(--white);
    padding-top: 60px;
}
.mem-icons {
    margin-top: 20px;
}
.mem-icons p {
    font-size: 14px;
    margin-bottom: 5px;
}
.mem-icons img {
    width: 90px;
    border-radius: 8px;
    background-color: var(--white);
    margin-right: 5px;
}
.socials {
    margin-top: 10px;
}
.socials img {
    width: 30px;
    height: 30px;
}
.socials img:nth-child() {
    margin-right: 5px;
}
.f-head {
    font-size: 20px;
    font-weight: bold;
}
footer ul {
    list-style: none;
    padding-left: 0;
}
footer ul li {
    list-style: none;
    display: flex;
}
footer ul li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
footer ul li a {
    color: inherit;
    text-decoration: none;
}
footer ul li a:hover {
    color: inherit;
    text-decoration: underline;
    transition: 0.2ms;
}
footer iframe {
    text-align: center;
    height: 230px;
    width: 230px;
    background-color: transparent !important;
}
footer iframe body {
    background-color: transparent !important;
}
.f-bottom {
    font-size: 14px;
    border-top: 1px solid var(--white);
    margin-top: 40px;
    padding: 20px 0;
}


@media (max-width: 991px) {
    .pt-100 {
        padding-top: 40px;
    }
    .pb-100 {
        padding-bottom: 40px;
    }
    .navbar-brand img {
        width: 300px;
        height: auto;
    }
    .navbar-nav {
        text-align: right;
    }
    .navbar-nav .nav-item {
        padding-right: 20px;
        border-bottom: 1px solid var(--grey);
    }

    .cta-content-box {
        padding: 20px 10px;
    }
    .cta-item {
        margin-bottom: 20px;
    }

    .abt-sec .sub-head {
        margin-top: 40px;
    }
    .abt-img {
        width: 100%;
    }

    .awards-div {
        margin-bottom: 10px;
    }

    .des-img img {
        width: 100%;
    }
    .des-div {
        padding: 20px;
    }

    .value-sec {
        display: block;
    }
    .testimonial-btn {
        position: relative;
        justify-content: center;
    }
    .testimonial-slider {
        padding: 20px;
    }
    .f-head {
        margin-top: 20px;
    }


    .f-bottom {
        margin-top: 0;
    }
}