/* Typo Import */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
        url('../fonts/Satoshi-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
        url('../fonts/Satoshi-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



/*Common css*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --dark-blue: #202A5B;
	--blue: #3953A3;
	--medium-blue: #CAE4FF;
	--light-blue: #eaf3fe;
	--black: #222222;
	--white:#f4f4f4;
    --light:300;
	--normal:400;
    --semi-bold:500;
    --bold:700;
	--extra-bold:900;
    --transition: 0.5s all ease-in-out;
	--font: 'Satoshi', sans-serif;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: var(--light-black);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    margin: 0;
    font-size: 1rem;
    font-weight: var(--normal);
    line-height: 1.5;
    color: var(--black);
    font-style: normal;
    text-align: left;
	background-color: var(--light-blue);
    /*overflow-x: clip;*/
}

img {
    max-width: 100%;
    width: 100%;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    background-color: transparent;
	transition: var(--transition);
}

a:hover {
	color: var(--dark-blue);
    text-underline-offset: .2em;
	transition: var(--transition);
}

h1,
h2,
h3{
    font-weight: var(--semi-bold);
	font-family: var(--font) !important;
}

h4 {
    font-weight: var(--bold);
	font-family: var(--font) !important;
}
h5,h6{
	font-family: var(--font) !important;
}

h1 {
	font-size: 3.4em;
	line-height: 1.2em;
}

h2 {
    font-size: 3.2rem;
    line-height: 1.2em;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.2em;
}

h4 {
    font-size: 1.3rem;
}


/* Font Classes */
.font-weight-light{
	font-weight: var(--light);
}
.font-weight-normal{
	font-weight: var(--normal);
}
.font-weight-semi_bold{
	font-weight: var(--semi-bold);
}
.font-weight-bold{
	font-weight: var(--bold);
}
.font-weight-extra-bold{
	font-weight: var(--extra-bold);
}


/* Color Classes */
.white-text {
    color: var(--white) !important;
}
.white-bg {
    background-color: var(--white);
}
.medium-blue-bg {
    background-color: var(--medium-blue);
}
.medium-blue-text {
    color: var(--medium-blue);
}
.grey-bg {
    background-color: var(--grey);
}
.grey-text {
	color: #a29a9a;
}
.light-blue-bg{
	background-color: var(--light-blue);
}
.light-blue-text{
	color: var(--light-blue);
}
.blue-text{
	color: var(--blue);
}
.blue-bg{
	background-color: var(--blue);
}
.dark-blue-text{
	color: var(--dark-blue);
}




/* Buttons */
.custom-button {
	color: var(--white);
	text-decoration: none;
	padding: 0.8em 1.2em;
	line-height: 1em;
	display: inline-flex;
	letter-spacing: 1px;
	background-color: var(--orange);
	transition: var(--transition);
	font-size: 1.4em;
	margin-top: 1em;
	border-radius: 3px;
	background-color: var(--dark-blue);
}
.custom-button:hover{
	color: var(--white);
	background-color: var(--blue);
}

/* Presets Classes */
.container {
    max-width: 1300px;
}

.p-top {
    padding-top: 6em;
}
.p-bottom {
    padding-bottom: 6em;
}
.p-right {
	padding-right: 5em;
}


/* Common Blocks */


/*Header CSS*/
/* Logo */
.custom-logo {
	width: auto;
	height: auto;
	position: relative;
	bottom: 0em;
	max-width: 250px;
}
/* Header */
.header-style {
	padding: 0em 0em;
	position: absolute;
	width: 100%;
	margin: 0px auto;
	z-index: 1;
}
.header-style .navbar {
	padding: 0em;
	flex-wrap: wrap;
	justify-content: space-between;
}
.header-style .navbar #navbar-list {
	display: flex;
	position: fixed;
	height: 100vh;
	left: 0;
	top: 0;
	align-items: center;
	background-color: #E8F3FF;
	justify-content: end;
	width: 100%;
	background-image: url('../../../../wp-content/uploads/2023/07/menu_bg.jpg');
	transform: translateX(100%);
	transition: 1s all ease-in-out;
	background-size: cover;
	background-position: bottom;
}
.header-style .navbar #navbar-list.show {
	transform: translateX(0);
	transition: var(--transition);
}
.navbar-brand {
	padding: 1em 0em 1em 3em;
	flex: 0 1 20%;
	position: relative;
	margin-bottom: 0em;
	z-index: 1;
}
.navbar-toggler {
	border: 0px !important;
	flex: 0 1 12%;
	padding-right: 0;
	padding-top: 0.4em;
	margin-right: 0.5em;
	position: relative;
	z-index: 1;
	background-color: transparent !important;
}
.navbar-toggler:focus,
.navbar-toggler-icon:focus {
	outline: none !important;
	box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
	transform: rotate(0deg);
	transform-origin: center;
	transition: 0.5s all ease-in-out;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	transform: rotate(90deg);
	transform-origin: center;
	transition: 0.5s all ease-in-out;
}
.custom-logo-link {
	position: relative;
}
.menu_ul li {
	list-style-type: none;
	width: 100%;
}
.menu_ul li a {
	color: var(--black);
	font-size: 2.8rem;
	font-weight: var(--bold);
	transition: var(--transition);
	position: relative;
	padding: 0.1em 1.7em;
	width: 100%;
	display: block;
	text-align: right;
}
.menu_ul li a::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: var(--blue);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin-left: -0.4em;
	opacity: 0;
	transition: var(--transition);
}

.header-style .menu_ul li.current_page_item a {
	color: var(--blue);
}

.header-style .menu_ul li a:hover {
    transition: var(--transition);
	color: var(--blue);
}
.header-style .menu_ul li.current_page_item a:before {
	opacity: 1;
	transition: var(--transition);
}

.header-style .menu_ul li a:hover:before {
    opacity: 1;
	transition: var(--transition);
}
.page:not(.home) .header-style .navbar-brand {
	filter: brightness(0) invert(1);
}
.page:not(.home) .header-style .navbar-toggler {
	filter: brightness(0) invert(1);
}
.page:not(.home) .header-style .navbar-toggler[aria-expanded="true"] {
	filter: none;
}
.header-style .navbar-brand.toggled {
	filter: none !important;
}



/*Footer CSS*/
.footer {
	background-image: url('../../../../wp-content/uploads/2023/07/footer-bg.png');
	background-size: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.footer-top {
	padding: 9vh 0em 56vh;
}
#menu-footer-menu {
	padding: 0em 0em 0em 0em;
	display: flex;
	gap: 2em;
	flex-wrap: wrap;
	align-items: center;
	justify-content: right;
	margin-bottom: 0em;
}
#menu-footer-menu li {
	width: auto;
	display: inline-block;
	padding-left: 2em;
}
.footer-menu .menu_ul {
	padding: 0em;
}
.footer-menu .footer-menu-title {
	font-size: 1.3em;
	color: var(--dark-blue);
	font-weight: var(--bold);
	margin-bottom: 0.8em;
}
.footer-menu .menu_ul li{
	margin-bottom: 0.5em;
}
.footer-menu .menu_ul li a {
	padding: 0em;
	color: var(--dark-blue);
	font-weight: 400;
	text-underline-offset: 0.1em;
	font-size: 1.1em;
	background-color: transparent;
	text-align: left;
	border: 0px;
}
.footer-menu .menu_ul li.current_page_item a {
	color: var(--dark-blue);
}

.footer-menu .menu_ul li a:hover{
	color: var(--dark-blue);
}
.footer-bottom {
	font-size: 1.1rem;
	padding: 1em 0em 1em;
	background-color: var(--light-blue);
	opacity: 0.5;
	margin-top: 7em;
}
.footer-logo img {
	max-width: 230px;
}
.footer-bottom_content {
	font-size: 0.9em;
}


/* Home Page */
/* intro */
/* contactus */
.form-container label {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.3em;
	font-size: 1.2em;
	font-weight: var(--semi-bold);
	gap: 0.4em;
}
.form-container label input, .form-container label textarea {
	width: 100%;
	padding: 0.5em 1em;
	border-radius: 1em;
	background-color: transparent;
	border: 1px solid var(--black);
	box-shadow: none;
}
.form-container label textarea {
	height: 11em;
}
.form-container .wpcf7-submit {
	padding: 0.7em 2em;
	width: 100%;
	font-size: 1.2em;
}

/* About Us */
.founder-details .elementor-widget-container {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 3em;
	color: var(--white);
	background: transparent;
	padding: 0.5em 4em;
	transition: var(--transition);
	border-radius: 60px;
}
.founder-details:hover .elementor-widget-container {
	color: var(--dark-blue);
	transition: var(--transition);
	background: linear-gradient(180deg, rgba(232, 243, 255, 0.8) 0%, rgba(210, 232, 255, 0.8) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}
.founder-details .elementor-widget-container h4 {
	margin-bottom: 0em;
}
.founder-details .elementor-widget-container p {
	margin-bottom: 0em;
	font-size: 0.8em;
}

/* Our services */
.e-con-full.e-flex.e-con.e-active {
	display: flex !important;
}


/*Responsive code*/
@media only screen and (min-width:1600px) and (max-width:1920px) {
}

@media only screen and (max-width:1400px) {
}

@media only screen and (min-width:1024px) and (max-width:1200px) {}

@media only screen and (max-width:1000px) {}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
}

@media only screen and (max-width:1023px) {

    /* Typography */
    h2 {
        font-size: 2.3rem;
    }

    h1 {
		font-size: 2.5rem;
	}

    /* Presets */
    .p-top {
        padding-top: 2em;
    }

    .p-bottom {
        padding-bottom: 4em;
    }

    /*Header*/
	.header-style {
		padding: 1em 0em 0em;
		z-index: 2;
		overflow: visible;
	}
	.custom-logo {
		max-width: 200px;
	}
	.navbar-brand {
		padding: 1em 0em 1em 1em;
	}
	.menu_ul li a {
		font-size: 2.6rem;
	}
	#menu-footer-menu li {
		padding-left: 1em;
	}
	.header-style .navbar #navbar-list {
		background-position: 58%;
	}



	/* Footer */
	.footer-bottom_content {
		text-align: center;
	}

	/* Home */
	.intro_sec {
		height: 100vh;
	}
	.intro_sec .elementor-html5-video {
		height: 100vh !important;
	}



}

@media only screen and (max-width:767px) {

	/* Home */
	.header-style {
		padding: 1em 0em 1em;
		overflow-x: clip;
	}
	.header-style .navbar {
		flex-wrap: nowrap;
	}
	.navbar-brand {
		flex: 0 1 40%;
		padding: 0em 0.5em;
		margin: 0em;
	}
	.custom-logo {
		max-width: 170px;
	}
	.header-style .navbar #navbar-list ul {
		flex-wrap: wrap;
	}

    /* Footer */
    #menu-footer-menu {
        gap: 1em;
        flex-direction: column;
        text-align: center;
    }
	.footer-top {
		text-align: center;
		padding: 5em 0em 1em;
	}
	.footer-logo {
		margin-bottom: 1em;
	}
	.footer-bottom {
		font-size: 1rem;
		padding: 1em 0em 1em;
	}
	.footer-menu {
		margin-top: 1em;
	}
	.footer-menu .menu_ul li a {
		text-align: center;
	}
	.footer-top .custom-logo {
		max-width: 200px;
	}





}

@media (min-width: 320px) and (max-width: 415px) {}