@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*============= Reset ======== */
*{
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	font-size: 100%;
	line-height: inherit;
}
/* ======= Global Settings ==== */
html {
	scroll-behavior: smooth;
}
body {	
	font-size:16px;
	color:#25283a;
	line-height:22px;
	font-weight:300;
	background:#ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: "Outfit", sans-serif;
}
:root {
    --white: #ffffff;
    --black: #000;
    --primaryColor: #0580D4;
    --secondaryColor: #090B3D;
    --orangeColor: #FC8209;
}
a{
	text-decoration:none;
	cursor:pointer;
}
a:hover,
a:focus,
a:visited{
	text-decoration:none;
	outline:none;
}
h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.25em;
	font-family: "Playfair", serif;
}
button{
	outline: none !important;
	cursor: pointer;
}
p{
    margin:0;
    padding: 0;
}
ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}
figure{
	margin-bottom: 0;
}
img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}
.btn-primary{
	background-color: var(--primaryColor);
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 300;
	padding: 8px 30px 10px;
	transition: .5s;
}
.btn-primary:hover{
	background-color: var(--orangeColor);
}
.btn-know-more{
	display: inline-block;
	color: var(--orangeColor);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
	transition: .5s ease-in-out;
}
.btn-know-more:hover{
	background: none;
}
.section-padding{
	padding: 50px 0;
}
.heading-section h2{
	font-size: 50px;
    font-weight: 900;
    line-height: 50px;
}
.form-control {
    height: 45px;
    box-shadow: 0 2px 15px -3px rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 10px 20px -2px rgba(var(--mdb-box-shadow-color-rgb), 0.04);
    font-size: 16px;
    font-weight: 300;
}
.form-outline .form-control~.form-label {
    padding-top: 10px;
}
textarea {
    height: 120px !important;
}
@media(max-width:992px){
	.heading-section h2 {
		font-size: 40px;
	}
}
@media(max-width:767px){
	.section-padding {
		padding: 30px 0;
	}
}
@media(max-width:575px){
	.heading-section h2 {
		font-size: 40px;
	}
}
@media(max-width:480px){
	.heading-section h2 {
		font-size: 30px;
		line-height: 30px;
	}
}
@media(max-width:320px){
	.heading-section h2 {
		font-size: 26px;
	}
}
/***=================================
            Header Section
==================================***/
.main-nav{
    padding: 5px 0;
    background-color: #fff !important;
    z-index: 11;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}
.main-nav .navbar-brand{
    margin: 0;
    padding: 0;
}
.main-nav .navbar-brand img{
    width: 150px;
}
.main-nav .nav-link{
	text-transform: uppercase;
    font-size: 14px;
	color: var(--black);
    padding: 5px 20px !important;
	transition: .5s ease-in-out;
}
.main-nav .nav-link:hover{
	color: var(--orangeColor);
    padding: 5px 20px !important;
	transition: .5s ease-in-out;
}
.main-nav .navbar-nav .nav-link.show{
	color: var(--orangeColor);
}
.main-nav .dropdown-menu .dropdown-item{
	color: var(--black);
	font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
	transition: .5s;
}
.main-nav .dropdown-menu .dropdown-item:hover{
	color: var(--orangeColor);
}
.main-nav .dropdown-menu>li{
	border-bottom: 1px solid #ebebeb;
}
.main-nav .dropdown-menu>li:last-child{
	border:none;
}
.main-nav .navbar-toggler{
	color: var(--white);
    background: #fc8209;
    padding: 6px 12px;
	margin-left:20px;
}
.login-btn{
	background: var(--primaryColor);
    color: var(--white) !important;
    display: inline-block;
    padding: 7px 30px;
    border-radius: 5px;
	transition: .5s;
}
.login-btn:hover{
	background: var(--primaryColor);
	color: var(--white) !important;
}
.offcanvas.offcanvas-start{
	width: 270px;
    font-family: "Saira Semi Condensed", sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.offcanvas-header{
	background:var(--white);
	padding: 5px 15px;
    box-shadow: 0 4px 12px 0 rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 2px 4px rgba(var(--mdb-box-shadow-color-rgb), 0.05);
}
.offcanvas-title img{
	width:140px;
}
.offcanvas-start .btn-close{
	border: 2px solid #ff0000;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}
.offcanvas-body{
	padding-right:0;
	padding-left:0;
}
.offcanvas-body .nav-item{
	border-bottom: 1px solid #ebebeb;
    padding: 0 20px;
}
.offcanvas-body .nav-link:hover{
	color: var(--orangeColor);
}
.offcanvas-body .dropdown-menu{
	position: static !important;
	transform: none !important;
	box-shadow: none;
	border-top: 1px solid #ebebeb;
	border-radius: 0;
}
.offcanvas-body .dropdown-menu .dropdown-item{
	font-size: 16px;
	font-weight: 500;
}
.offcanvas-body .dropdown-menu .dropdown-item:hover{
	background: none;
	color: var(--orangeColor);
}
.offcanvas-body .dropdown-menu>li:first-child .dropdown-item, .offcanvas-body .dropdown-menu>li:last-child .dropdown-item{
	border-radius: 0 !important;
}
.offcanvas-body .dropdown-menu>li{
	border-bottom: 1px solid #ebebeb;
}
@media(max-width:480px){
	.main-nav .navbar-brand img {
		width: 120px;
	}
	.main-nav .nav-link{
		padding:5px 15px !important;
	}
	.login-btn{
		font-size: 13px;
		line-height: 20px;
	}
}
@media(max-width:320px){
	.main-nav .navbar-brand img {
		width: 100px;
	}
	.main-nav .nav-link{
		padding:5px 15px !important;
	}
	.login-btn{
		font-size: 13px;
		line-height: 20px;
	}
}
/*======================================
		Banner Section
=======================================*/
.main-hero{
	position: relative;
	padding: 20px;
}
.main-hero .carousel-inner{
	border-radius: 10px;
}
.main-hero .carousel-item video{
	height: 100vh;
	width:100%;
	object-fit: cover;
}
.main-hero .carousel-item::before{
	background: linear-gradient(90deg, #000000bd, #33086700);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
.main-hero .carousel-caption{
	bottom: 20%;
	left: 10%;
    text-align: left;
    width: 40%;
}
.main-hero .carousel-caption h1{
	font-size: 50px;
	font-weight: 800;
}
.main-hero .carousel-caption p{
	font-size: 16px;
    font-weight: 300;
    line-height: 22px;
	margin-top: 10px;
}
.mouse-indicator{
	position: absolute;
    z-index: 1111;
    display: inline-block;
    bottom: 5%;
    width: 60px;
    left: 47%;
}
@media(max-width:991px){
.main-hero .carousel-caption{
	width: 78%;
	bottom: 20%;
}
}
@media(max-width:767px){
	.main-hero .carousel-caption{
		bottom: 22%;
	}
}
@media(max-width:575px){
	.main-hero .carousel-caption{
		bottom: 18%;
	}
	.main-hero .carousel-caption h1 {
		font-size: 44px;
        line-height: 50px;
	}
	.main-hero .carousel-caption p {
		font-size: 14px;
		line-height: 20px;
	}
	.mouse-indicator{
		left: 45%;
	}
}
@media(max-width:480px){
	.main-hero .carousel-caption{
		bottom: 20%;
	}
	.main-hero .carousel-caption h1 {
		font-size: 34px;
	}
	.main-hero .carousel-caption p {
		font-size: 14px;
		line-height: 20px;
	}
	.mouse-indicator{
		left: 43%;
	}
}
@media(max-width:320px){
	.main-hero .carousel-caption{
		bottom: 18%;
	}
	.main-hero .carousel-caption h1 {
		font-size: 26px;
		line-height: 30px;
	}
	.main-hero .carousel-caption p {
		font-size: 13px;
		line-height: 16px;
	}
	.mouse-indicator{
		left: 38%;
		bottom: 3%;
	}
}

/*=========================
	Showcase Section
=========================*/
.showcase-section{
	padding: 30px 0 0;
}
.showcase-item{
	display: grid;
	grid-template-columns: 1fr 3fr;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
	background: #ffffffeb;
	border-radius: 10px;
	padding:20px;
	align-items: center;
}
.showcase-item .icon-section img{
	width: 100px
}
.showcase-item .icon-section{
	border-right:1px solid #000;
	padding-right: 15px;
}
.showcase-item .description-section h1{
	font-size: 26px;
    line-height: 26px;
    margin-left: 20px;
}
@media(max-width:767px){
	.showcase-section{
		padding: 30px 0 0;
	}
}
@media(max-width:480px){
	.showcase-item .description-section h1 {
		font-size: 20px;
		line-height: 22px;
		margin-left: 15px;
	}
}
@media(max-width:320px){
	.showcase-item{
		padding: 10px;
	}
	.showcase-item .icon-section {
		padding-right: 10px;
	}
	.showcase-item .description-section h1 {
		font-size: 16px;
        line-height: 18px;
        margin-left: 15px;
	}
}
/*===================================
		Classes List Section
====================================*/
.class-list-section{
	background: url('../img/shape17.png');
	background-position: top center;
    background-repeat: no-repeat;
    /* background-size: cover; */
}
.for-class-icon{
	position: absolute;
    width: 200px;
    top: -15%;
    right: 0%;
}
.for-class-icon2{
	position: absolute;
    width: 200px;
    top: -25%;
    left: 0%;
}
.class-list-section-inner .card{
	transition: .5s ease;
	border-radius: 30px 0;
}
.class-list-section-inner .card .card-body{
	padding: 15px;
}
.class-list-section-inner .card img{
	width:100%;
}
.class-list-section-inner .card:hover{
	box-shadow: 0 2px 25px -5px rgb(0 0 0 / 27%), 0 25px 21px -5px rgb(0 0 0 / 4%) !important;
}
.card-title{
	font-size: 24px;
    font-weight: 700;
}
.class-list-section-inner .card:hover a{
	background-color: transparent;
	color: #0680d5;
}
@media(max-width:991px){
	.class-list-section-inner .card p{
		min-height: 100px;
	}
}
@media(max-width:767px){
	.class-list-section {
		background-position: bottom center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.for-class-icon {
		position: absolute;
		width: 190px;
		top: -4%;
	}
	.for-class-icon2 {
		width: 130px;
		top: 2%;
	}
	.class-list-section-inner .card p {
        min-height: 140px;
    }
}
@media(max-width:575px){
	.for-class-icon {
		position: absolute;
		width: 150px;
		top: -4%;
		opacity: .4 !important;
	}
	.for-class-icon2{
		display: none;
	}
	.class-list-section-inner .card p {
        min-height: auto;
    }
}
@media(max-width:480px){
	.for-class-icon {
		position: absolute;
		width: 150px;
		top: -5%;
		right: 0%;
	}
}
@media(max-width:320px){
.for-class-icon {
	width: 130px;
	top: 0%;
	right: 0%;
	opacity: .5 !important;
}
.class-list-section-inner .card p {
	min-height: 120px;
}
}
/*=====================================
		About Us Section
=====================================*/
.about-section{
	/* background-color: linear-gradient(0deg, #6a11cb00, #f1f9fc); */
	background-image: url('../img/about-bg.png');
	background-color: #f1f9fc;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	position: relative;
}
/* .about-section::before{
    background: linear-gradient(180deg, #ffffff45, #0000004d);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
} */
.about-right-description p{
	margin-bottom: 10px;
}
.about-improtant-note h4{
	font-size: 18px;
    color: #db0c0c;
    line-height: 20px;
}

/*========================================
		Certificate Showcase Section
========================================*/
.certificate-showcase-section{
	background: url('../img/shape4.png');
	background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
}
.certificate-item{
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 10px;
    padding: 15px;
    align-items: center;
}
.certificate-item img{
	border-radius: 10px;
}
@media(max-width:767px){
	.certificate-item{
		margin-bottom:25px;
		padding: 10px;
	}
}
/*=============================================
			Book Your Events
=============================================*/
.book-your-events{
	background: url('../img/shape5.png');
	background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
}
.book-your-events .card-title{
	font-size: 22px;
}
.book-your-events .card p {
	min-height: 60px;
}
@media(max-width:1199px){
	.book-your-events .card p {
		min-height: 80px;
	}
}
@media(max-width:991px){
	.book-your-events .card-title {
		font-size: 25px;
		line-height: 25px;
	}
	.book-your-events .card p {
		min-height: auto;
	}
}
@media(max-width:767px){
	.book-your-events .card-title {
		font-size: 22px;
		line-height: 22px;
	}
	.book-your-events .card p {
		min-height: 100px;
	}
}
@media(max-width:767px){
	.book-your-events .card p {
		min-height: 40px;
	}
}
@media(max-width:320px){
	.book-your-events .card p {
		min-height: 80px;
	}
}
/*============================================
		Enroll Section
===============================================*/
.enroll-section{
	background-color: #ffe5ca;
	background-image: url('../img/shape16.png');
	background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
.enroll-left-desc{
	padding-left:100px;
}
@media(max-width:1024px){
	.enroll-left-desc {
		padding: 20px 0;
	}
}
@media(max-width:767px){
	.enroll-left-desc {
        padding: 30px 0;
    }
}
/*==================================================
			Gallery Section
===================================================*/
.video-gallery .card{
	overflow: hidden;
}
.video-gallery .card-body{
	padding:10px 20px;
	min-height:90px;
}
.video-gallery .card-title{
	font-size: 20px;
    margin: 0;
    color: var(--primaryColor);
}
.video-gallery .card-title{
	font-size: 20px;
    margin: 0;
    color: var(--primaryColor);
}
.video-gallery .card-text{
	color: var(--black);
	font-size: 14px;
}
/*=========================================
			Footer
=========================================*/
.main-footer {
    position: relative;
    background-color: #0E0E0E;
    color: #bebebe;
	padding-top:80px;
}
.footer-logo-section{
	width: 230px;
	margin-bottom: 25px;
}
.main-footer .contact-info li{
	position: relative;
    padding: 10px 0px 4px 30px;
    line-height: 24px;
}
.main-footer .contact-info li .icon{
	position:absolute;
	left:0px;
	top:10px;
	line-height:24px;
	font-size:16px;
	color: var(--orangeColor);
}
.main-footer .contact-info li a{
	color: var(--white);
}
.footer-title h4{
	color:var(--white);
	font-size: 26px;
    font-weight: 600;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 29px;
}
.footer-title h4 span {
    display: inline-block;
    margin-right: 20px;
}
.footer-title h4 i {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(233, 234, 238, .45);
    display: inline-block;
}
.main-footer .links-widget ul li{
	margin-bottom: 10px;
	display: inline-block;
	width:49%;
}
.main-footer .links-widget ul li i{
	margin-right:5px;
}
.main-footer .links-widget ul li a {
    position: relative;
    color: #fff;
    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;
}
.main-footer .links-widget ul li a:hover{
	color: var(--orangeColor);
	margin-left:5px;
}
.newsletter-form p{
	font-size: 13px;
	color: var(--white);
	margin-bottom:10px;
}
.newsletter-form .form-control{
	border: 2px solid var(--white);
    border-radius: 0;
    color: var(--white);
}
.newsletter-form .btn-info{
	width: 100%;
	padding:8px 25px;
	line-height: 24px;
}
.social-link a{
	border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 0;
    font-size: 16px;
    line-height: 40px;
}
.main-footer .footer-bottom {
    position: relative;
    padding: 20px 0px;
    background: #242323;
    color: #fff;
	margin-top: 40px;
}
@media(max-width:991px){
	.footer-link-block{
		margin-top: 25px;
	}
}

/*=========================================
			Login Page
=========================================*/
.authincation-area{
	background: url('../img/log-bg.jpg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
    display: flex;
	height: 100vh;
}
.authincation-content{
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 10px;
	overflow: hidden;    
}
.auth-form-header{
	padding:10px 20px 10px;
	position: relative;
	z-index: 1;
}
.auth-form-header img{
	width: 130px;
}
.auth-form-header h2{
	font-family: "Saira Semi Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
	margin-top: 5px;
}
.auth-form{
	padding:10px 20px 20px;
	position: relative;
	z-index: 1;
}
.auth-form .form-control{
	height: 45px;
	box-shadow: 0 2px 15px -3px rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 10px 20px -2px rgba(var(--mdb-box-shadow-color-rgb), 0.04);
	font-size: 16px;
    font-weight: 300;
}
.auth-form .form-outline .form-control~.form-label {
    padding-top: 10px;
}
.auth-form .form-outline .form-control:focus~.form-label {
    color: var(--primaryColor);
}
.auth-form .form-control:focus~.form-notch .form-notch-leading {
    border-color: var(--primaryColor);
    box-shadow: -1px 0 0 0 var(--primaryColor), 0 1px 0 0 #0a0000, 0 -1px 0 0 var(--primaryColor);
}
.auth-form .remember-block,
.authincation-area p{
	font-weight: 400;
    font-size: 15px;
	line-height: 24px;
}
.remember-block .form-check-label, .remember-block a{
	font-size: 15px;
}
#togglePassword {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 2;
    border: none;
    padding: 0;
    background: none;
}
.auth-icon{
	position: absolute;
    bottom: 0;
    right: 10%;
    width: 270px;
	opacity: .5;
}
.auth-form textarea{
	height: 120px !important;
}
.registration-form .row:first-child{
	height:50vh;
}
.auth-form .form-select{
	height: 45px;
    box-shadow: 0 2px 15px -3px rgba(var(--mdb-box-shadow-color-rgb), 0.07), 0 10px 20px -2px rgba(var(--mdb-box-shadow-color-rgb), 0.04);
    font-size: 15px;
    font-weight: 300;
}
@media(max-width:991px){
	.auth-icon{
		opacity: .1;
	}
	.registration-form .row:first-child{
		height: 38vh;
	}
}
@media(max-width:575px){
	.authincation-area{
		padding:40px 0;
	}
	.auth-icon{
		opacity: .1;
	}
	.registration-form .row:first-child{
		height: auto;
	}
	.remember-block .form-check-label, .remember-block a{
		font-size: 13px;
	}
}
@media(max-width:480px){
	.authincation-area{
		padding: 0;
	}
	.auth-form .remember-block, .authincation-area p {
		font-weight: 400;
		font-size: 14px;
		line-height: 20px;
	}
}

/*=========Inner Page Header ========*/
.inner-page-outer{
	padding: 20px;
}
.inner-page-banner {
    width: 100%;
    height:300px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 1;
	padding-top: 30px;
	border-radius: 10px;
    overflow: hidden;
}
.inner-page-banner::before {
    background-color: rgba(0, 0, 0, 0.35);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}
.inner-page-banner .row {
	height: 270px;
    margin: 0;
}
.page-title-heading h2 {
    display: inline-block;
    text-transform: capitalize;
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
    color: #fff;
}
.page-title-heading h2:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--primaryColor);
}
.breadcrumb-wrapper {
    z-index: 99;
    display: inline-block;
}
.breadcrumb-wrapper span {
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    position: relative;
}
.breadcrumb-wrapper span a{
	color: var(--orangeColor);
}
.breadcrumb-wrapper span:first-child {
    padding-right: 20px;
}
.breadcrumb-wrapper span:first-child:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 2px;
    right: 6px;
    top: 12px;
    display: inline-block;
    font-style: normal;
    background-color: currentColor;
}
.breadcrumb-wrapper span:nth-child(2):after {
    display: none;
}
.breadcrumb-wrapper span {
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    position: relative;
    color: var(--white);
}
@media(max-width:991px){
	.page-title-heading h2{
		font-size: 40px;
	}
}
@media(max-width:575px){
	.inner-page-banner{
		height: 250px;
	}
	.inner-page-banner .row{
		height: 220px;
	}
	.page-title-heading h2{
		font-size: 30px;
	}
}
@media(max-width:320px){
	.inner-page-banner{
		height: 230px;
		padding-top: 40px;
	}
	.inner-page-banner .row{
		height: 200px;
	}
	.page-title-heading h2 {
        font-size: 24px;
    }
	.breadcrumb-wrapper span {
		font-size: 14px;
	}
}
/*=========//Inner Page Header ========*/

/*========= About Us Page ======*/
.about-page-area{
	padding:50px 0;
}
.about-content-section .img-right{
	max-width: 500px;
	float: right;
	margin: 0px 0 50px 50px;
}
.about-content-section p{
	margin-bottom: 15px;
	text-align: justify;
}
.about-content-section p:last-child{
	margin-bottom: 0;
}

/*========= Contact Us Page ======*/
.contact-page-outer{
	padding:100px 0 50px;
}
.contact-box1 {
    text-align: center;
    padding: 45px 40px 35px 40px;
    box-shadow: 0 0 72px -10px rgb(0 0 0 / 22%);
    border-radius: 30px;
    position: relative;
    min-height: 162px;
}
.contact-box1 .heading-title {
	font-size: 24px;
    font-weight: 600;
    color: var(--primaryColor);
    margin-bottom: 0;
}
.contact-list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    margin-top:15px;
}
.contact-list li{
	padding-left: 0 !important;
    font-size: 16px !important;
    font-weight: 300;
}
.contact-list li a{
	color: #6f6f6f;
	transition: .5s;
}
.contact-list li a:hover{
	color: var(--orangeColor);
}
.contact-list li:before{
	display: none;
}
.contact-icon {
    position: absolute;
    top: -13px;
    right: 46%;
}
.contact-icon {
  position: absolute;
  top: -13px;
  right: 46%;
}
.contact-icon i {
  font-size: 24px;
  color: #fff;
  position: relative;
  z-index: 5;
}
.contact-icon i:after {
    content: "";
    width: 62px;
    height: 62px;
    background: var(--primaryColor);
    border-radius: 15px;
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: -5;
    transform: rotate(-135deg);
}
.right-con-form{
	padding: 25px;
    box-shadow: 0 0 72px -10px rgb(0 0 0 / 22%);
    background: #fff;
    border-radius: 30px;
}
.left-map-area {
    padding: 25px;
    box-shadow: 0 0 72px -10px rgb(0 0 0 / 22%);
    background: #fff;
    border-radius: 30px;
}
@media(max-width:991px){
	.contact-box1{
		margin-bottom: 60px;
	}
}

/*======== Term & Conditions =========*/
.term-conditions-area{
	padding: 50px 0;
}
.term-conditions-area .heading-section h2{
	font-size: 40px;
}
.terrm-cont-block h3{
	font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.terrm-cont-block h5{
	font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.terrm-cont-block p{
	margin-bottom: 15px;
}
.terrm-cont-block ul li{
	margin-bottom: 5px;
}