
/*--------------------------------------------------------------
	# collegeGo #########################################################################################################################
--------------------------------------------------------------*/
:root {
	--font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	--font-primary: Montserrat, sans-serif;
	--font-secondary: Raleway, sans-serif;
}

/* Colors */
:root {
	
	
	/* Colors */
	/* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
	
	/* Default text color 
		--color-default: #333333;
		--color-default-light: #666666;
		
		/* Primay colors 
		--color-primary: #0058ab;
		--color-primary-light:#0058ab1a;
		--color-primary-dark: #003566;
		
		--color-primary-rgb: 14, 162, 189;
		--color-primary-light-rgb: 30, 195, 224;
		--color-primary-dark-rgb: 1, 137, 161;
		
		/* Secondary colors *
	--color-secondary: #f4831a; */
	
	/* General colors */
	--color-blue: #0d6efd;
	--color-blue-rgb: 13, 110, 253;
	
	--color-indigo: #6610f2;
	--color-indigo-rgb: 102, 16, 242;
	
	--color-purple: #6f42c1;
	--color-purple-rgb: 111, 66, 193;
	
	--color-pink: #f3268c;
	--color-pink-rgb: 243, 38, 140;
	
	--color-red: #df1529;
	--color-red-rgb: 223, 21, 4;
	
	--color-orange: #fd7e14;
	--color-orange-rgb: 253, 126, 20;
	
	--color-yellow: #ffc107;
	--color-yellow-rgb: 255, 193, 7;
	
	--color-green: #059652;
	--color-green-rgb: 5, 150, 82;
	
	--color-teal: #20c997;
	--color-teal-rgb: 32, 201, 151;
	
	--color-cyan: #0dcaf0;
	--color-cyan-rgb: 13, 202, 240;
	
	--color-white: #ffffff;
	--color-white-rgb: 255, 255, 255;
	
	--color-gray: #666666;
	--color-gray-rgb: 108, 117, 125;
	
	--color-black: #000000;
	--color-black-rgb: 0, 0, 0;
}

/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: var(--color-secondary);
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
	# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 1rem;
	
}

#header.header-scrolled {
	padding: 1rem 1.5rem;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}

#header .logo a {
	color: #111111;
}

#header .logo a span {
	color: var(--color-primary);;
}

#header .logo img {
	max-height: 3rem;
}


/*--------------------------------------------------------------
	# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
	margin-left: 30px;
	background: var(--color-primary);;
	color: #fff;
	border-radius: 4px;
	padding: 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
}

.get-started-btn:hover {
	background: var(--color-secondary);;
	color: #fff;
}

@media (max-width: 992px) {
	.get-started-btn {
		margin: 0 5px 0 0;
		padding: 6px 18px;
	}
}

/*--------------------------------------------------------------
	# Sections General
--------------------------------------------------------------*/
section {
	padding: 40px 0;
	overflow: hidden;
}

.section-bg {
	background-color: var(var(--color-default));;
}

.section-title {
	padding-bottom: 30px;
}
.section-title h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
}
.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 70px;
	height: 3px;
	background: var(--color-primary);
	bottom: 0;
	left: 0;
}
.section-title p {
	margin-bottom: 0;
	color: #777777;
	font-size: 15px;
}



/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/
.footer {
	color: #fff;
	/*background: url("../img/footer-bg.jpg") top center no-repeat; */
	background-size: cover;
	font-size: 14px;
	padding: 40px 0 40px 0;
	position: relative;
	
}

.footer:before {
	content: "";
	background: #1b1b1b;
	position: absolute;
	inset: 0;
}

.footer .footer-content .footer-info {
	margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
	font-size: 28px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
	color: var(--color-primary);
}

.footer .footer-content .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: #fff;
}

.footer .footer-content .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	line-height: 1;
	margin-right: 8px;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
	background: var(--color-primary);
	text-decoration: none;
}

.footer .footer-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-content .footer-links {
	margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-content .footer-links ul li {
	padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-content .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
	color: #fff;
}

.footer .footer-legal .container {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .copyright {
	padding-top: 20px;
	
}

.footer .footer-legal .credits {
	padding-top: 4px;
	font-size: 13px;
	color: #fff;
}

.footer .footer-legal .credits a {
	color: var(--color-primary);
}


/*--------------------------------------------------------------
# Floating WhatsApp button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  left: 15px;
  bottom: 30px;
  z-index: 996;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 1.1s;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 575px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 66px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
