.ns {
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}
* {
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}
/* waves */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect.waves-red .waves-ripple {
  background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
  background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
  background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
  background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
  background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
  background-color: rgba(0, 150, 136, 0.7);
}

.waves-effect input[type="button"],
.waves-effect input[type="reset"],
.waves-effect input[type="submit"] {
  border: 0;
  font-style: normal;
  font-size: inherit;
  text-transform: inherit;
  background: none;
}

.waves-effect img {
  position: relative;
  z-index: -1;
}

.waves-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

.waves-circle {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none;
}

.waves-block {
  display: block;
}
.button_fill {
  display: block;
  width: 100% !important;
}
/* Firefox Bug: link not triggered */
.waves-effect .waves-ripple {
  z-index: -1;
}
.btn,
.btn-large,
.btn-small,
.btn-flat {
  user-select: none;
  border: none;
  display: inline-block;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}
form {
  width: 100%;
  margin: 45px auto;
}

form hr.sep {
  background: var(--lightblue);
  box-shadow: none;
  border: none;
  height: 2px;
  width: 25%;
  margin: 0px auto 45px auto;
}

.group {
  position: relative;
  margin: 45px 0;
}
textarea {
  resize: none;
}
input,
textarea {
  background: none;
  color: #212121;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #212121;
}
input:focus,
textarea:focus {
  outline: none;
}
input:focus ~ label,
textarea:focus ~ label,
input:valid ~ label,
textarea:valid ~ label {
  top: -14px;
  font-size: 12px;
  color: var(--lightblue);
}
input:focus ~ .bar:before,
textarea:focus ~ .bar:before {
  width: 100%;
}
input[type="password"] {
  letter-spacing: 0.3em;
}
label {
  color: #212121;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}
.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: var(--lightblue);
  transition: 300ms ease all;
  left: 0%;
}

/* Gloabl Styles */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}
body {
  padding: 0px;
  margin: 0px;
}
:root {
  --blue: #315097;
  --lightblue: #1a8fdd;
  --offwite: #e0f6ff;
  --gray: #eee;

  --headingBig: 40px;
  --heading: 35px;
  --p1: 20px;
  --p2: 18px;

  --Shadow: 0px 100px 80px rgba(0, 0, 0, 0.07),
    0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.Primary_button {
  padding: 20px 50px;
  background-color: var(--blue);
  font-size: 20px;
}
.Secondary_button {
  text-transform: capitalize;
  background-color: var(--lightblue);
  font-size: 15px;
  padding: 15px 30px;
}

.Container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
img {
  user-select: none;
  -moz-user-select: none;
  -moz-user-focus: none;
  user-zoom: none;
  -moz-window-dragging: none;
  -webkit-user-drag: none;
}

.heading {
  font-size: var(--heading);
  color: #212121;
}
.p {
  font-size: var(--p1);
  color: #212121;
  text-transform: capitalize;
}

.p2 {
  font-size: var(--p2);
  color: #000;
  text-transform: capitalize;
}

/* -------------------- Hero_Section ----------------------*/
.Hero_section {
  padding-bottom: 100px;
  width: 100%;
  background-color: var(--offwite);
  box-shadow: var(--Shadow);
}
nav {
  width: 100%;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main_section {
  padding-bottom: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_left {
  background-image: url("/assets/blobWite.svg");
  background-repeat: no-repeat;
  height: 500px;
  width: 500px;
}
.main_left > h1,
.main_left > p {
  padding: 0px;
  margin-bottom: 25px;
  margin-top: 75px;
  margin-left: 75px;
}
.main_left > p {
  max-width: 375px;
  margin-top: 50px;
  margin-right: 0px;
}
.main_left > a {
  margin-top: 30px;
  margin-left: 25px;
}

.main_right {
  background-image: url("/assets/BlogBLue.svg");
  background-repeat: no-repeat;
  height: 600px;
  width: 560px;
}

/* -------------------- OverView_Section ----------------------*/
.OverView_section {
  background-image: url("/assets/bigBlogWite.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.headingSection {
  font-size: var(--headingBig);
  display: flex;
  margin: 0px;
  padding-top: 50px;
  justify-content: center;
  letter-spacing: 2px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.flex div {
  padding: 25px;
}
.flex-center {
  justify-content: center !important;
}
.OverView_Courses_section {
  margin-top: 50px;
}
a {
  text-decoration: none;
}
/* -------------------- Brands_section ----------------------*/
.Brands_section {
  box-shadow: 15px 0px 15px hsl(0, 0%, 13%, 0.3);
  background-color: white;
  padding-bottom: 50px;
}
/* swiper */
.swiper {
  margin-top: 50px;
  width: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-wrapper {
  margin-bottom: 50px;
}

.Slide_image {
  background-image: url("");
  background-color: #d9d9d9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 450px;
  height: 725px;
}

/* -------------------- Courses_section ----------------------*/
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: flex-start;
  gap: 75px;
  margin-top: 50px;
}

.card {
  width: 100%;
  text-align: center;
  background: white;
  padding: 25px;
  box-shadow: var(--Shadow);
}
.c2 {
  margin-right: 60px;
}

.apply_section .button {
  margin-top: 25px;
  margin-bottom: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------- Contact_us_section ----------------------*/
.beside {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
}

/* -------------------- footer ----------------------*/
footer {
  position: relative;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: var(--lightblue);
}
footer .Quite_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
}
footer .Contact_Info_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.info_box {
  text-decoration: none;
  display: flex;
  padding: 15px;
  justify-content: space-between;
  align-items: center;
}
.info_box img {
  margin-right: 10px;
}
.info_box p {
  color: white;
}

@media only screen and (max-width: 1150px) {
  .main_section {
    flex-direction: column-reverse;
  }
  .flex {
    justify-content: space-around;
  }
  :root {
    --headingBig: 35px;
  }
  .slide_box {
    flex-direction: column-reverse;
  }
  .slide_right {
    width: 100%;
  }
  .Slide_image {
    padding: 25px;
    width: 100%;
    height: 300px;
  }
  .slide_left img {
    margin-top: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .beside {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media only screen and (max-width: 780px) {
  .grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .main_left {
    width: 100%;
  }
  .main_right {
    width: 100%;
  }
  :root {
    --headingBig: 22px;
  }
}
@media only screen and (max-width: 600px) {
  .main_right {
    background-size: 350px;
    height: 350px;
  }
  .main_left {
    background-size: 350px;
    height: 350px;
  }
}

.cs {
  background-image: url("/assets/Rectangle\ 16.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

iframe {
  background-image: url("/assets/location.svg");
  background-position: center;
  background-repeat: no-repeat;
}
