@font-face
{
	font-family: "LeagueSpartan";
	src: url(LeagueSpartan-Bold.otf) ;
}

@font-face
{
	font-family: "Josefin";
	src: url(JosefinSans-VariableFont_wght.ttf) ;
}

*
{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}

/*=========================================================================================*/

/*ScrollBar Start*/

/* width */
/*::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}*/

/* Track */
/*::-webkit-scrollbar-track { 
  background: transparent;
  border-radius: 0;
}*/
 
/* Handle */
/*::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
}*/

/* Handle on hover */
/*::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.5); 
}
*/
/*ScrollBar End*/

/*=========================================================================================*/

/*Loader Start*/

.loader{
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	background: #dff9fb;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.loader.hidden{
	animation: fadeOut 0.3s;
	animation-fill-mode: forwards;
}
@keyframes fadeOut{
	100%{
		opacity: 0;
		visibility: hidden;
	}
}

/*Loader End*/

/*=========================================================================================*/

/*Topbar Start*/

.topbar
{
	width: 100%;
	height: 20px;
	background-color: #74C9F1;
}

.topbar marquee p
{
	margin: 2px 0px;
	color: #130f40;
	font-family: Josefin;  
}

/*Topbar End*/

/*=========================================================================================*/

/*Header Nav Start*/

.header
{
	position: sticky;
	top: 0px;
	width: 100%;
	height: 100px;
	background-color: #fff;
	transition: 0.3s;
	box-shadow: 0px 5px 3px rgba(0,0,0,0.5);
	z-index: 1000;
}

.logo img
{
	float: left;
	width: 200px;
	height: auto;
	margin-top: 15px;
	margin-left: 10px;
	
}
.nav{
	position: relative;
}
.nav ul
{
	list-style-type: none;
	line-height: 100px;
	float: right;
}

.nav ul li
{
	display: inline-block;
	margin-top: 0px;
	margin-right: 30px;
}

.nav ul li a
{
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	font-family: Raleway;
	font-size: 15px;
	letter-spacing: 1px;
	border: none;
	padding: 10px 10px;
	color: black;
	border-radius: 3px;
	font-weight: bold;
	transition: 0.3s;
	background: transparent;
}

.nav ul li a:hover,
.nav ul li a.active
{
	/*background-color: #3d3d3d;*/
	color: #74c9f1;
}

.menu-toggle{
	display: none;
}

/*@media (max-width: 1200px){
	.menu-toggle{
		display: block;
		width: 40px;
	    height: 40px;
	    position: absolute;
	    right: 20px;
	    line-height: 100px;
	    background: transparent;
	}
	.menu-toggle::before{
	content: '\f0c9';
	font-size: 40px;
	color: #74C9F1;
	font-family: fontAwesome;
	position: absolute;
	top: 0;
	left: 0;
    }
    .menu-toggle.active{
    	display: block;
		width: 40px;
	    height: 40px;
	    position: absolute;
	    right: 20px;
	    line-height: 100px;
	    background: transparent;
    }
    .menu-toggle.active::before{
	content: '\f00d';
	font-size: 40px;
	color: #74C9F1;
	font-family: fontAwesome;
	position: absolute;
	top: 0;
	left: 0;
    }
    .nav{
    	position: absolute;
    	top: 220px;
    	left: 50%;
    	transform: translate(-50%,-120px);
    	width: 100%;
    	height: 63vh;
    	background: #74C9F1;
    	display: none;
    }
    .nav ul{
    	display: flex;
    	flex-direction: column;
    }
    .nav ul li{
    	text-align: center;
    }

    .nav ul li a{
    	display: block;
    	width: 100%;
    	height: 25px;
    	margin: 5px;
    	background: transparent;
    }
    .nav ul li a.active,.nav ul li a:hover{
    	background: transparent;
    	color: #fff;
    }
    .nav.active{
    	display: block;
    	background: #74C9F1;
    	animation-name: fade;
    	animation-duration: .8s;
    }
    @keyframes fade{
    	0%{opacity: 0;}
    	100%{opacity: 1;}
    }
}*/

/*Header Nav End*/

/*=================================================================================*/

/*Login*/

.login1 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11000;
  display: none;
}
.login1 .close {
  position: absolute;
  top: 2px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  z-index: 111000;
  text-decoration: none;
  color: #3d3d3d;
  cursor: pointer;
}
.login1 .close:hover {
  color: #000;
}
.login1 h1 {
	font-weight: bold;
	margin-bottom: 20px;
}
.login1 h2 {
	text-align: center;
}

.login1 p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

.login1 span {
	font-size: 12px;
}

.login1 a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

.login1 button {
	border-radius: 20px;
	border: 1px solid #fff;
	background-color: #74C9F1;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.login1 button:active {
	transform: scale(0.95);
}

.login1 button:focus {
	outline: none;
}

.login1 button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

.login1 form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

.login1 input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}

.login1 .login-container {
	background-color: #fff;
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
			0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
	height: auto;
}

.login1 .form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.login1 .sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.login1 .login-container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.login1 .sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.login1 .login-container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.login1 .overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.login1 .login-container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.login1 .overlay {
	background: #74C9F1;
	background: -webkit-linear-gradient(to right, #74C9F1, #0093dd);
	background: linear-gradient(to right, #74C9F1, #0093dd);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.login1 .login-container.right-panel-active .overlay {
  	transform: translateX(50%);
}

.login1 .overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.login1 .overlay-left {
	transform: translateX(-20%);
}

.login1 .login-container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.login1 .overlay-right {
	right: 0;
	transform: translateX(0);
}

.login1 .login-container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

#login1.active{
	    background: rgba(0,0,0,0.7);
    	display: block;
    	animation-name: fade;
    	animation-duration: .8s;
}
.login1 .loginpop{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	min-height: 480px;
	height: auto;
}

@keyframes fade{
    0%{opacity: 0;}
    100%{opacity: 1;}
}


/*Login End*/

/*=========================================================================================*/

/*News Box*/

.news_box{
	position: fixed;
	right: -400px;
	width: 400px;
	height: 450px;
	background: #F8F8FF;
	top: 80%;
	transform: translateY(-80%);
	z-index: 10000;
	transition: 0.5s;
	border: 3px solid #F18917;
	border-left: none;
	border-right: none; 
}
.news_box .news_heading{
	font-family: Josefin;
	position: absolute;
	top: 20px;
	left: 20px;
}
.news_box .notiscroll{
	overflow-y: scroll;
	width: 95%;
	height: 370px;
	top: 70px;
	left: 10px;
	position: relative;
}
.news_box .noti{
	position: relative;
	left: 10px;
	margin: 10px;
	width: 90%;
	border-bottom: 2px solid #ddd; 
}
.news_box .noti a{
	text-decoration: none;
}
.news_box .noti p{
	font-family: Josefin;
	font-size: 17px;
	color: #3d3d3d;
	line-height: 25px;
	transition: .25s; 
}
.news_box .noti img{
	width: 40px;
	height: auto;
}
.news_box .noti p:hover{
	color: #74C9F1;
}
.news_box #nwsbtn2{
	display: none;
}

.news_box .nwsbtn{
	position: absolute;
	left: -105px;
	top: 45%;
	transform: translateY(-45%);
	border-radius: 50px 50px 0 0;
	width: 160px;
	height: 50px;
	text-align: center;
	transform: rotate(-90deg);
	cursor: pointer;
	background: -webkit-linear-gradient(to left, #74C9F1, #0093dd);
	background: linear-gradient(to left, #74C9F1, #0093dd);
}
.news_box .nwsbtn p{
	position: absolute;
	left: 50%;
	line-height: 15px;
	margin-bottom: 5px;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 15px;
	font-weight: bold;
	font-family: 'Roboto',sans-serif;
	letter-spacing: 1px;
	color: #F8F8FF;
}

/*
@keyframes bgchange{
	0%{background-color: #74C9F1;}
	25%{background-color: #FDC504;}
	50%{background-color: #F18917;}
	75%{background-color: #0093dd;}
	100%{background-color: #74C9F1;}
}*/


/*News Box End*/

/*=========================================================================================*/

/*Landing Page*/

.leftcol
{
	display: flex;
	padding: 0;
	position: relative;
	width: 100%;
	height: 547px;
}

.leftcol img
{
	width: 100%;
	height: 100%;
}


.title
{
	position: absolute;
	top: 35%;
	left: 7%;
}

.title h4
{
	font-family: Josefin;
	font-size: 40px;
	margin-bottom: 10px;

}

.title h1
{
	font-family: LeagueSpartan;
	font-size: 80px;
	font-weight: bold;
}

.title h1 span
{
	color: #74C9F1;
	font-family: LeagueSpartan;
	font-size: 80px;
	font-weight: bold;

}

.title p
{
	font-family: Josefin;
	font-size: 30px;
	font-weight: bold;
}

.title button
{
	position: relative;
	padding: 10px;
	background-color: #130f40;
	font-family: Josefin;
	font-size: 25px;
	margin-top: 20px;
	text-align: center;
	color: #fff;
	border: 3px solid #130f40;
	border-radius: 50px;
	transition: 0.4s;
	animation-name: rsize;
	animation-duration: 1000ms;
	animation-iteration-count: infinite;
	outline: none;
}

@keyframes rsize
{
	0% {transform: scale(1.0)}
	50% {transform: scale(1.2)}
	100% {transform: scale(1.0)}
}
@keyframes rot
{
	0% {transform: rotate(0deg)}
	25% {transform: rotate(10deg)}
	50% {transform: rotate(0deg)}
	75% {transform: rotate(-10deg)}
	100% {transform: rotate(0deg)}
}  

.title button:hover
{
	border: 3px solid #130f40;
	background-color: #fff;
	box-shadow: none;
	color: #130f40;
	animation-name: rot;
	animation-duration: 500ms;
	animation-iteration-count: infinite;
	cursor: pointer;
}

/*Landing Page End*/

/*=========================================================================================*/

/*About Section Start*/

.about
{
	position: relative;
	height: 250px;
    margin-top: 5px;
    margin-bottom: 5px;
	background-color: #dff9fb;
	overflow: hidden; 
}
.about h1{
	position: absolute;
	font-family: LeagueSpartan;
	font-weight: bolder;
	font-size: 150px;
	top: 30px;
	left: -20px;
	color: #d5f1f2;
}

.about .abt 
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	width: 98%;
	height: 220px;
	background-color: transparent;
	align-items: center;
	justify-content: center;
}

.about .abt .b1
{
	position: relative;
	width: 40%;
	height: 98%;
	margin: 10px;
	text-align: center;
	background-color: transparent;
}

.about .abt .b1 span
{
	position: relative;
	top: 40px;
	font-family: Josefin;
	font-size: 30px;
	font-weight: bold;
	transition: 0.3s;

}

.about .abt div span:hover
{
	color: #74C9F1;
}

.about .abt div p
{
	position: relative;
	top: 45px;
	font-family: raleway;
	font-size: 20px;
	font-weight: lighter;
}

/*About Section End*/

/*=========================================================================================*/

/*Resources Section Start*/

.resources
{
	position: relative;
	height: 600px;
    margin-bottom: 5px;
	background-color: #dff9fb;
	 
}
.resources h1
{
	position: relative;
	top: 30px;
	font-family: Josefin;
	font-size: 50px;
	background-color: none;
	text-align: center;
	font-variant: small-caps;
}

.resources .res 
{
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%,-25%);
	display: flex;
	width: 98%;
	height: 50px;
	background-color: transparent;
	align-items: center;
	justify-content: center;
}


.resources .res .b2
{
	position: relative;
	width: 40%;
	height: 100%;
	margin: 10px;
	text-align: center;
	background-color: transparent;
}

.resources .res .b2 span
{
	position: relative;
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	font-weight: bold;
	transition: 0.2s;
	letter-spacing: 2px;
	color: #777;
}
.resources .res .b2 span::after{
	content: '';
	width: 100px;
	display: block;
	height: 3px;
	background-color: #0093dd;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 5px;
}

.resources .res_section{
	background-color: transparent;
	display: flex;
	position: absolute;
	top: 73%;
	left: 50%;
	transform: translate(-50%,-73%);
	width: 98%;
	height: 300px;
}
.resources .res_section .res_section_col{
	display: block;
	background-color: transparent;
	width: 33.33%;
	height: 300px;
}
.resources .res_section .res_section_col .res_section_col_box{
	display: block;
	background-color: transparent;
	width: 100%;
	height: 100px;
	overflow: hidden;
	cursor: pointer;
	pointer-events: none;
}
.resources .res_section .res_section_col .res_section_col_box a{
	text-decoration: none;
	cursor: pointer;
}
.resources .res_section .res_section_col .res_section_col_box img{
	position: absolute;
	float: left;
	width: 50px;
	height: auto;
	margin-top: 15px;
	pointer-events: all;
	margin-left: 60px;
}
.resources .res_section .res_section_col .res_section_col_box h3{
	position: relative;
	left: 150px;
	top: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #666;
	pointer-events: all;

}
.resources .res_section .res_section_col .res_section_col_box p{
	position: relative;
	top: 18px;
	left: 150px;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
	pointer-events: all;
    color: #8c8c8c;
}
.resources .all_res{
	position: absolute;
	display: block;
	width: 20%;
	height: auto;
	top: 93%;
	left: 50%;
	transform: translate(-50%,-93%);
}
.resources .all_res a{
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 2px;
	color: #0093dd; 
}
.resources .all_res i{
	transition: 0.3s;
}
.resources .all_res a:hover i{
	transform: translateX(10px);
}

/*Resources Section End*/

/*=========================================================================================*/

/*Youtube Section Start*/

.second
{
	position: relative;
	width: 100%;
	height: 100vh;
    margin-bottom: 5px;
	padding: 0;
	background-color: #dff9fb;
}
.second h1
{
	position: relative;
	top: 30px;
	font-family: Josefin;
	font-size: 50px;
	background-color: none;
	text-align: center;
	font-variant: small-caps;
}
.second h1 span{
	color: red;
	font-family: Josefin;
	font-size: 50px;
}

.second iframe
{
	position: absolute;
	top: 65%;
	left: 10%;
	transform: translate(-10%,-65%);
	margin-top: 10px;
	width: 70%;
	height: 75vh;
	/*border: 5px solid #74C9F1;*/
	border-radius: 5px;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.3), -5px -5px 5px rgba(0,0,0,0.3);
}

.second .videos{
	float: right;
	display: block;
	margin-top: 42px;
}
.second .videos .video{
	width: 270px;
	height: 150px;
	border-radius: 5px;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.3), -5px -5px 5px rgba(0,0,0,0.3);
	margin-right:45px;
	margin-top: 25px;
	transition: 0.25s;

}

.second .videos .video:hover{
	transform: scale(1.1);
}

.second .videos .video iframe{
	position: relative;
	top: 0px;
	left: 50%;
	transform: translate(-50%,0px);
	width: 270px;
	height: 130px;
	border: none;
	margin: 0px 0px;
    box-shadow: none;
    border-radius: 5px 5px 0px 0px;
}

.second .videos .video h5{
	position: relative;
	text-align: center;
	font-size: 15px;
	font-family: 'Roboto',sans-serif;
	padding: 0px;
	margin: 0px;
	top: -3px;

}

/*Youtube Section End*/

/*=========================================================================================*/

/*Topper Slide Show*/

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin-bottom: 5px;
  height: 485px;
  background-color: #dff9fb;
  
}

/*Heading Style*/
.slideshow-container h1{
	position: relative;
	text-align: center;
	font-family: Josefin;
	font-size: 50px;
	font-variant: small-caps;
	padding-top: 30px;
	transition: 0.2s;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -35px;
  color: #AFD8DB;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #3d3d3d;
}

/* The dots/bullets/indicators */
.dot {
  
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.slide {
  -webkit-animation-name: slide;
  -webkit-animation-duration: 1.5s;
  animation-name: slide;
  animation-duration: 1.5s;
}

@-webkit-keyframes slide {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes slide {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/*Topper Slide Show End*/

/*=========================================================================================*/

/*Image Gallery Start*/

.image_gallery{
	position: relative;
	display: flex;
	width: 100%;
	height: 200px;
	background-color: #dff9fb;
    margin-bottom: 5px;
}
.image_gallery .image_box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 98.5%;
	height: 180px;
	background: transparent;
	overflow: hidden;
}
.image_gallery .image_box .img_con{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-decoration: none;
	width: 98.5%;
	height: 90%;
	background-image: url(https://picsum.photos/1000/200);
	background-size: 100%;
	background-repeat: no-repeat;
	object-fit: cover;
	filter: brightness(50%);
}

.image_gallery .image_box span:nth-child(1){
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, transparent, #0093dd);
	animation: animate1 2s linear infinite; 
}

.image_gallery .image_box span:nth-child(2){
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	animation: animate2 2s linear infinite;	
	background: linear-gradient(to bottom, transparent, #0093dd);
	animation-delay: 1s;	
}
.image_gallery .image_box span:nth-child(3){
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	animation: animate3 2s linear infinite;	
	background: linear-gradient(to left, transparent, #0093dd);	
}
.image_gallery .image_box span:nth-child(4){
	position: absolute;
	bottom: 0;
	left: 0;
	width: 4px;
	height: 100%;
	animation: animate4 2s linear infinite;	
	animation-delay: 1s;	
	background: linear-gradient(to top, transparent, #0093dd);	
}
@keyframes animate1{
	0%{transform: translateX(-100%);}
	100%{transform: translateX(100%);}
}
@keyframes animate2{
	0%{transform: translateY(-100%);}
	100%{transform: translateY(100%);}
}
@keyframes animate3{
	0%{transform: translateX(100%);}
	100%{transform: translateX(-100%);}
}
@keyframes animate4{
	0%{transform: translateY(100%);}
	100%{transform: translateY(-100%);}
}

.image_gallery h1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.3s;
}
.image_gallery h1 a{
	text-decoration: none;
	color: white;
	font-size: 50px;
	font-family: Josefin;
}
.image_gallery h1::before, .image_gallery h1::after{
	content: '';
	display: block;
	width: 0%;
	height: 4px;
	background-color: white;
	margin: 10px 0px;
    transition: 0.4s ease-in-out;
}
.image_gallery h1::after{
	content: '';
	position: absolute;
	display: block;
	width: 0%;
	height: 4px;
	background-color: white;
	margin: 10px 0px;
    transition: 0.4s ease-in-out;
    right: 0;
}
.image_gallery h1:hover::before,.image_gallery h1:hover::after{
	width: 100%;
}

/*Image Gallery End*/

/*=========================================================================================*/

/*Quote Start*/

.quote{
	position: relative;
	display: flex;
	width: 100%;
	height: 200px;
	background-image: linear-gradient(160deg, #dff9fb, #ffffff);
    margin-bottom: 5px;
}
.quote img{
	position: absolute;
	top: 8px;
	right: 50px;
	width: 240px;
	height: auto;
}
.quote h1{
	position: absolute;
	top: 50%;
	left: 20%;
	transform: translate(-20%,-50%);
	font-family: 'Raleway', sans-serif;
	font-size: 40px;
	letter-spacing: 1px;
	background: linear-gradient(-90deg, #74C9F1, #0093dd);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 50px;
}
.quote h1::after{
	content: '';
	display: block;
	position: absolute;
	background-image: linear-gradient(-90deg, #74C9F1, #0093dd);
	width: 0%;
	height: 3px;
	margin-top: 5px;
	left: 25px;
	transition: 0.6s;
}
.quote h1:hover::after{
	width: 57%;
}

/*Quote End*/

/*=========================================================================================*/

/*Connect With Us*/

.connect{
    position: relative;
	height: 400px;
    margin-bottom: 5px;
	background-image: linear-gradient(50deg, #dff9fb, #ffffff);
}
.connect h1{
	position: relative;
	top: 30px;
	font-family: Josefin;
	font-size: 50px;
	background-color: none;
	text-align: center;
	font-variant: small-caps;
}
.connect h1 span{
	color: #74C9F1;
	font-family: Josefin;
	font-size: 50px;
}
.connect .hand_icn{
	position: absolute;
	display: flex;
	margin-top: 40px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 20px; 
}
.connect .hand_icn::before,.connect .hand_icn::after{
	content: '';
	display: block;
	margin: 10px 8px;
	width: 50px;
	height: 2px;
	background: #74C9F1; 
}
.connect .connect_cards{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	width: 90%;
	height: 250px;
	justify-content: space-between;

}
.connect .connect_cards .connect_card{
	width: 32%;
	background-color: #d5f1f2;
	position: relative;
	border-radius: 20px;
}
.connect .connect_cards .connect_card:hover{
	transition: .3s;
	background-color: #F8F8FF;
	box-shadow: 5px 5px 20px #d5f1f2, -5px -5px 20px #d5f1f2;
}
.connect .connect_cards .connect_card:hover i{
	top: 30%;
	left: 50%;
	transform: translate(-50%,-30%);
	font-size: 40px;
}
.connect .connect_cards .connect_card:hover h4{
	opacity: 1;
	visibility: visible;
	top: 70%;
	left: 50%;
	transform: translate(-50%,-70%);
}
.connect .connect_cards .connect_card i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 70px;
	color: #74C9F1;
	transition: 0.3s;
}
.connect .connect_cards .connect_card h4{
	position: absolute;
	top: 90%;
	left: 50%;
	transform: translate(-50%,-90%);
	display: block;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	font-size: 20px;
	color: #545454;
	font-family: 'Roboto',sans-serif;
	transition: 0.3s;
	line-height: 25px;
}

@media (max-width: 800px){
	.connect .connect_cards{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 10px;
	}
	.connect .connect_cards .connect_card{
		margin: 20px;
	}
	.connect{
		height: 500px;
	}
}

/*Connect With Us End*/


/*=========================================================================================*/


/*Footer Start*/

.footer{
	position: relative;
	display: block;
	background-color: #3d3d3d;
	width: 100%;
	height: 250px;
	/*box-shadow: 0 -5px 15px rgba(0,0,0,0.3);*/
}
.footer .links{
	float: right;
	margin-top: 55px;
	margin-right: 130px;
}
.footer .links h4{
	color: white;
	font-size: 15px;
	font-family: Josefin;
	margin-bottom: 10px;
}
.footer .links ul{
	list-style-type: none;
}
.footer .links ul li{
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border: 1px solid #545454;
	transition: 0.3s ease-in-out;
	border-radius: 50%;
	
}
.footer .links ul li i{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #545454;
	transition: 0.3s ease-in-out;
}
.footer .links ul li:hover{
	border-color: white;
}
.footer .links ul li:hover i{
	color: white;
}
.footer .links a{
	text-decoration: none;
}
.footer .links p{
	position: relative;
	color: #545454;
	font-size: 18px;
	font-family: Josefin;
	transition: 0.3s;
	top: 8px;

}
 .footer .links i{
	position: relative;
 	color: #545454;
 	transition: 0.25s;
 	top: 3px;
 }
 .footer .links p:hover{
 	color: #fff;
 }
 .footer .links i:hover{
 	color: #fff;
 }
 .footer .links p:hover i{
 	color: #fff;
 }
 .footer .links i:hover p{
 	color: #fff;
 }
 .footer .line{
 	position: absolute;
 	display: block;
 	top: 85%;
 	left: 50%;
 	transform: translate(-50%,-85%);
 	width: 80%;
 	height: 1px;
 	background-color: #545454;
 	border-radius: 5px; 
 }

.footer .rights{
	position: absolute;
	top: 97%;
	left: 50%;
	transform: translate(-50%,-97%);
	color: #545454;
		
}

.rights h5{
	font-size: 18px;
	font-family: Josefin;
}
.footer .f_logo img{
	position: absolute;
	width: 170px;
	height: auto;
	left: 50px;
	top: 50px; 
}
.footer .f_logo a{
	text-decoration: none;
}
.footer .f_logo a .btt{
	position: absolute;
	width: 120px;
	height: 30px;
	left: 80px;
	top: 130px;
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	outline: none;
	color: #545454;
	border-radius: 30px; 
	transition: 0.3s ease-in-out;
	font-weight: bold;

}
.footer .f_logo a .btt:hover{
	background-color: #545454;
	color: #3d3d3d;
	box-shadow: 2px 2px 10px #3d3d3d, -2px -2px 10px #3d3d3d;
}


.footer .links_nav{
	float: right;
	margin-top: 55px;
	margin-right: 190px;
}
.footer .links_nav h4{
	color: white;
	font-size: 15px;
	font-family: Josefin;
	margin-bottom: 15px;
}
.footer .links_nav ul{
	display: flex;
	list-style-type: none;
	flex-direction: column;
	height: 150px;
	flex-wrap: wrap;
}
.footer .links_nav ul li{
	position: relative;
	margin: 5px 7px;
	width: 100px;
	height: auto;
	transition: 0.3s ease-in-out;
	margin-bottom: 8px;	
}
.footer .links_nav ul li a{
	color: #545454;
	text-decoration: none;
	transition: 0.3s;
	font-family: Josefin;
	font-size: 18px;
}
.footer .links_nav ul li a:hover{
	color: white;
}
html{
	scroll-behavior: smooth;
}

/*Footer End*/

/*=========================================================================================*/













