/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.source-sans {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: auto;
  font-style: normal;
}

.source-serif {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: auto;
  font-style: normal;
}

body {
  font: 'Source Sans 3', sans-serif;  color: #444444;
}

a {
  text-decoration: none;
  color: #4b2379;
}

a:hover {
  color: #4b237967;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 { 
  font-family: 'Source Sans 3', sans-serif;
}

#main {
  margin-top: 98px;
}

.container {
  width: 98%;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5px;
  bottom: 15px;
  z-index: 998;
  background: #7238b4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #8f5cc9;
  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 {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0 0 0px;
  background: #ffffffcc;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: url("../img/hero-bg.webp") center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  letter-spacing: 2px;
  font: "Source Sans 3", sans-serif;
}

#header .logo h1 a { 
color: #fff;
text-decoration: none;
}

#header .logo h1 i { 
  color: #fff;
  text-decoration: none;
  font: "Source serif 3";
  font-style: normal;
  }

#header .logo h1 a:hover {
  color: #00000092;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0px 0px 0px 0px;
  position: static;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 10px;
  margin-left: 1px;
  font: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 10px;
  margin-left: 1px;
  font: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar .active,
.navbar .active:focus {
  background: #ffffff66;
}

.navbar a:hover,
.navbar li:hover>a {
  background: #ffffff4e;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin: 0;
  padding: 5px;
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li strong {
  padding: 0px 0px 0px 0px;
  display: block;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
  padding: 0px 0px 0px 0px;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #4b2379;
  opacity: 1;
}

.navbar .megamenu:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    overflow-y: auto;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #2b6f8ee6;
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 5px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #6f43a0;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4b2379;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px #7f89a140;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4b2379;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.navbar-mobile .megamenu ul li a,
.navbar-mobile .megamenu ul li:hover>a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
}

.navbar-mobile .megamenu ul li a:hover,
.navbar-mobile .megamenu ul li .active,
.navbar-mobile .megamenu ul li .active:hover {
  color: #4b2379;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 76vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 100px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
  text-align: left;
}

#hero h1 {
  margin: 0px 0px 0px 0px;
  font-size:  120px;
  font-weight: 600;
  color: #fff;
  text-shadow: -1px 0 2px #4b2379;
  padding: 16px 16px;
  letter-spacing: 2px;
}

#hero h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 10%;
}

#hero h3 {
  color: #ffffff;
  margin-top: 5%;
  margin-bottom: 32px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
}

#hero h4 {
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 30px;
  text-transform: lowercase;
  font-weight: 400;
  letter-spacing: 3px;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 0px solid #ffffff;
  color: #ffffff;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: #ffffff26;
}

@media (min-width: 800px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}


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

.section-bg {
  background-color: #f4f9fc;
}

.section-bg2 {
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  padding: 60px 50px 50px 30px;
}

.section-title h2 {
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 8px 20px;
  margin-bottom: 20px;
  color: #612a9f;
  display: inline-block;
  border-radius: 0px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 60px;
  z-index: -1;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f8fbfd;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding: 0 10px 0 0;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding: 0 0 10px 0;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ffffffbf;
  z-index: 9;
}

.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  margin-bottom: 20px;
}

.about .content h3 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: center;
  padding: 8px 20px;
  margin-bottom: 20px;
  color: #000000;
  display: inline-block;
  border-radius: 0px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  display: inline-block;
  background: #4b2379;
  padding: 6px 44px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
}

.about .content .about-btn i {
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 9px;
}

.about .content .about-btn:hover {
  background: #4b2379;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #4b2379;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding: 0 0 0px 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 #4458901f;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #4b2379;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .container {
  position: relative;
  z-index: 10;
}

.services .content {
  margin-bottom: 20px;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 #4458901f;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #4b2379;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #4b2379;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #ffffff;
}

.services .icon-box:hover .icon i {
  color: #ffffff;
}

.services h5 {
  font-size: 1.25rem;
  margin-bottom: 50px;
  display: inline-block;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(#ffffff00, #6f1d8300), url("../img/hero-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 30px 0 0 0;
}

.cta h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  font-size: 20px;
  color: #ffffff;
}

.cta .cta-btn {
  font: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ffffff80;
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #ffffff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 80px 0 0 0;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px #d6d7d899;
  padding: 20px 0 10px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #4b2379;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f0f7fa;
}

.contact .info-box h3 {
  font-size: 18px;
  color: #777777;
  font-weight: 500;
  margin: 12px 12px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# upload
--------------------------------------------------------------*/
.ratio-if {
  @include media-breakpoint-up(md) {
    --bs-aspect-ratio: 50%; // 1x1
  }
}


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

#footer .copyright {
  text-align: center;
  padding: 0px 0px 0px 10px;
}

#footer h3 {
  padding: 40px 0px 0px 20px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}