* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo', Helvetica, sans-serif;
  background: #000;
  color: #0fffef;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

header {
 display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 550px;
  background-image: url('../images/banner-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0px 0px;
}

.cs-video{
  display: flex;
}
header.home-page .header-top{
  position: absolute;
  margin: 30px 7%;
  width: 86%;
}

header.home-page .header-content{
position: absolute;
  margin: 17% 7% 0px 7%;
  width: 86%;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2rem;
}

.logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

header.adj{

  padding: 30px 7%;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

nav a {
color: #10fff0;
  text-decoration: none;
  cursor: pointer;
  transition: text-decoration 0.3s ease;
  font-size: 16px;
  text-shadow: 2px 2px 0px rgb(0, 0, 0);
}

nav a:hover {
  text-decoration: underline;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 2rem 0;
}

h1 {
  /*font-weight: 600;  
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 80%;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right,  rgba(11,69,254,1) 0%,rgba(61,240,229,1) 48%,rgba(11,69,254,1) 100%);; 
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
  background-clip: text;  */
    font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 80%;

  background: linear-gradient(
    to right,
    rgba(11, 69, 254, 1) 0%,
    rgba(61, 240, 229, 1) 48%,
    rgba(11, 69, 254, 1) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3rem 7%;
}

.section-about {
  /*background-image: url('../images/about-us-img.png');*/
  background: #124398;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  justify-content: center;
  padding: 0rem 7%;
}

.section-about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.section-about-content::before {
position: absolute;
  right: 0;
  width: 37%;
  background-image: url('../images/about-us-img.png');
  content: '';
  z-index: 1;
  height: 100%;
  top: 0;
  bottom: 0;
  background-size: cover;
}

.ds{
  display: none;
}

.header-content .cs-img{
  width: 65%;
}

.section-about-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 60%;
  padding: 60px 0px;
}

.section-about h2 {
  font-weight: 600;
  color: #0fffef;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.about-text {
  font-weight: 300;
  color: #0fffef;
  font-size: 16px;
  line-height: 1.6;
}

.about-image {
  width: 40%;
  height: 100vh;
  background-image: url('../images/about-us-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.section-classes {  
  background: rgba(0,0,0,0.5);
  min-height: auto;
  justify-content: center;
}

.section-classes-content {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.section-classes h2 {
  font-weight: 600;
  color: #0fffef;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.classes-text {
  font-weight: 300;
  color: #0fffef;
  font-size: 1rem;
  line-height: 1.6;
}

.section-contact {  
  min-height: auto;
  justify-content: center;
  position: relative;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.section-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  z-index: 2;
  position: relative;
}

.section-contact h2 {
  font-weight: 600;
  color: #0fffef;
  /*font-size: clamp(1.5rem, 4vw, 2rem);*/
  font-size: 32px;
}

.contact-company {
  font-weight: 300;
  color: #0fffef;
  font-size: 20px;
}

.contact-address {
  font-weight: 300;
  color: #0fffef;
  font-size: 16px;
  line-height: 1.6;
  font-style: normal;
}

footer {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 80px;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 7%;
  text-align: left;
}

.footer-text {
  opacity: 0.77;
  font-weight: 300;
  color: #0fffef;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cls-bs-bg{
  
  background: #0f71fd;
  
  background-repeat: no-repeat;
  display: flex;
  padding: 0;
  margin: 0;
  position: relative;
}

.cls-bs-bg::before{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../images/classes-of-business-bg.jpg');
  opacity: 0.1;
  z-index: 1;
}



header.adj{
  min-height: 350px;
}

.section-about.adj .section-about-content::before{
  display: none;  
}
.section-about.adj .section-about-content .section-about-text{
  width:100%;
}

.about-text ul{
  margin-left: 10px;
}
.main-menu{
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
}
.main-menu li a{
  text-decoration: none;
  color: #10fff0;
  text-decoration: none;
  cursor: pointer;
  transition: text-decoration 0.3s ease;
  font-size: 16px;
  text-shadow: 2px 2px 0px rgb(0, 0, 0);
}
.sub-menu{
position: absolute;
  background: #000;
  padding: 10px 30px;
  list-style: none;
  margin: 0;
  }

  .main-menu .sub-menu{
    display: none;
    padding: 10px 20px;
  }

  .main-menu  li:hover .sub-menu{
    display: flex;
  }

.hamburger-icon i{
  font-size: 20px;
  background: #000;
  padding: 5px 15px;
  }

  .hamburger-icon{
    display: none;
  }

/* ------ */

@media (max-width: 1024px) {
  header {
    min-height: 350px;
    padding: 1.5rem;
  }

  .header-top {
    flex-direction: row;
    gap: 1rem;
  }

  nav {
    flex-direction: row;
    gap: 0.5rem;
  }

  h1 {
    max-width: 100%;
  }

  section {
    padding: 2rem 1.5rem;
  }

  .section-about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    width: 100%;
    max-width: 350px;
    height: 300px;
  }

  .section-classes {
    min-height: auto;
  }

  .section-contact {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  header {
    min-height: 300px;
    padding: 1rem;
  }

  .header-top {
    gap: 1rem;
  }

  .logo {
    width: 80px;
  }

  nav {
    font-size: 0.9rem;
    gap: 1rem;
  }

  h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }

  section {
    padding: 1.5rem 1rem;
  }

  .section-about-text {
    max-width: 100%;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-image {
    max-width: 100%;
    height: 250px;
  }

  .section-about h2,
  .section-classes h2,
  .section-contact h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
  }

  .classes-text,
  .contact-address {
    font-size: 0.95rem;
  }

  .contact-company {
    font-size: 1.1rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }
}



@media (min-width: 320px) and (max-width:767px) {

  .main-menu {
      display: none;
      flex-direction: column;
      gap: 10px;
      list-style: none;
      text-align: left;      
      background: #092349;
      padding: 30px 30px;
      position: absolute;
      width: 350px;
      border: 1px solid #000;
      top: 60px;
      z-index: 1000;
    }
    .main-menu.open {
      display: flex;
    }

    .main-menu .sub-menu {
      display: flex;
      padding: 10px 20px;
      position: inherit;
      margin: 5px 20px 0px 0px;
    }

      .hamburger-icon{
    display: block;
  }
  .hamburger-icon .ion-navicon-round,.hamburger-icon.active .ion-close-round{
    display: block;    
  }
  .hamburger-icon .ion-close-round,.hamburger-icon.active .ion-navicon-round{
    display: none;    
  }


  header {
    min-height: 250px;
    padding: 0px 0px;
  }

  header.adj {
    min-height: 250px;
    padding: 20px 20px;
  }

  .header-top {
    gap: 0.5rem;
    font-size: 14px;
    align-items: center;
  }

  .section-about{
    padding: 0rem 20px;
    min-height: auto;
  }

  .section-about-text {
    width: 100%;
    padding: 30px 0px;
  }

  .section-about-content::before{
    display: none;
  }

  .logo {
    width: 100px;
  }

  .header-content .cs-img {
    width: 85%;
  }

  nav {
font-size: 0.8rem;
    flex-wrap: wrap;
    column-gap: 13px;
    text-align: right;
    justify-content: flex-end;
    row-gap: 5px;
  }

  nav a{
        font-size: 13px;
  }

  h1 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
  }

  section {
    padding: 1rem;
  }

  .section-about-content {
    gap: 1rem;
  }

  .about-image {
    height: 200px;
  }

  .about-text {
    font-size: 14px;
  }

  .section-about h2,
  .section-classes h2,
  .section-contact h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .section-contact-content {
    gap: 0;
  }

  .classes-text,
  .contact-address {
    font-size: 14px;
  }

  .contact-company {
    font-size: 1rem;
    margin-bottom: 10px;

  }

  .footer-text {
    font-size: 14px;
  }

  .section-contact {
    min-height: 200px;
  }
}


.sc-uw-flex{
display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap:wrap;
}

.sc-uw-flex .sc-uw-list{
display: flex;
  flex-direction: row;
  width: calc(50% - 20px);
}

.sc-uw-flex .sc-uw-list ul li{
	position: relative;
  list-style: none;
  padding-left: 30px;
  margin-bottom: 7px;
}

.sc-uw-flex .sc-uw-list ul li::before{
content: "\f120";
  font-family: "Ionicons";
  font-size: 20px;
  left: 0;
  top: -2px;
  z-index: 1;
  width: auto;
  height: auto;
  position: absolute;
}




@media (min-width:320px) and (max-width:767px){
	
	.sc-uw-flex {
	  display: flex;
	  flex-direction: column;
	  gap: 5px;
	  flex-wrap: wrap;
	}

	.sc-uw-flex .sc-uw-list {
	  display: flex;
	  flex-direction: row;
	  width: 100%;
	}
	.about-text ul {
		margin-left: 10px;
	}
	
	header.home-page .header-content {		
		margin: 17% 20px 0px 20px;
	}
	
	header.home-page .header-top {  
		margin: 30px 20px;
		width: calc(100% - 40px);
	}
	
	
	
}