:root {
  --primary: #213D5C;
  --secondary: #D52626;
  --light-bg: #F0F3F8;
  --para:#6D839A;
  --greys: #476291;
  --outline: #97b0cb;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 80px; /* adjust to your navbar height */
}

.module-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-top: 28px;
}
.module-cta a {
  margin-left: 0;
}
.module-cta a span {
  display: inline-block;
}
.module-cta span {
  color: var(--para);
  display: block;
}
.module-cta span strong {
  display: block;
  margin-top: 6px;
  color: var(--light-bg);
}

header {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  padding-left: 40px;
  padding-right: 80px;
  position: fixed;
  top: 0;
  transition: 0.2s ease-in-out;
  z-index: 5;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul {
  display: flex;
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  align-items: center;
}
header nav ul li {
  font-size: 16px;
  transition: 0.25s ease-in-out;
}
header nav ul li a {
  color: var(--para);
  font-weight: 600;
  transition: 0.25s ease-in-out;
}
header nav ul li:hover {
  transform: scale(1.1);
}
header nav ul li:hover a {
  color: var(--primary);
}

.nav-active {
  background-color: rgba(255, 255, 255, 0.87);
  -webkit-backdrop-filter: blur(10px) brightness(110%);
          backdrop-filter: blur(10px) brightness(110%);
  border-bottom: solid 1px white;
  box-shadow: 0px 2px 10px rgb(236, 241, 255);
}

.nav-logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-logo svg {
  width: 32px;
}
.nav-logo span {
  font-size: 24px;
  color: var(--primary);
}

.nav-contact-btn {
  color: var(--light-bg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 40px;
}
.nav-contact-btn a {
  color: var(--light-bg);
  background-color: var(--primary);
  padding: 12px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 40px;
}
.nav-contact-btn:hover a {
  color: var(--light-bg);
  background-color: rgb(97, 167, 233);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle svg {
  fill: var(--primary);
  width: 30px;
  height: auto;
}

.active {
  display: block;
}

.home {
  background: #EAF4FF;
  background: linear-gradient(150deg, rgb(234, 244, 255) 0%, #7cc9ff 100%);
  box-sizing: border-box;
  margin: 12px;
  margin-top: 70px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  padding: 60px;
  padding-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.home-info h1 {
  font-size: 38px;
  margin: 0;
  line-height: 50px;
  color: var(--primary);
}
.home-info p {
  font-size: 16px;
  margin-bottom: 30px;
  box-sizing: border-box;
  line-height: 24px;
  color: #476291;
  font-weight: 500;
}

.landing-tag-graphics {
  position: relative;
  right: 0;
  bottom: -80px;
}
.landing-tag-graphics img:nth-of-type(1) {
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 430px;
  height: auto;
  z-index: 2;
}
.landing-tag-graphics img:nth-of-type(2) {
  position: absolute;
  left: 38%;
  bottom: 230px;
  width: 100px;
  height: auto;
  z-index: 0;
}
.landing-tag-graphics span {
  color: var(--primary);
  background-color: var(--light-bg);
  border: solid 1px white;
  border-radius: 6px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
}
.landing-tag-graphics span:nth-of-type(1) {
  left: 20%;
  bottom: 250px;
  animation-delay: 0.2s;
}
.landing-tag-graphics span:nth-of-type(2) {
  left: 10%;
  bottom: 100px;
  animation-delay: 0s;
}
.landing-tag-graphics span:nth-of-type(3) {
  left: 40%;
  bottom: 400px;
  animation-delay: 0.6s;
}
.landing-tag-graphics span:nth-of-type(4) {
  right: 10%;
  bottom: 100px;
  animation-delay: 0.8s;
  z-index: 3;
}
.landing-tag-graphics span:nth-of-type(5) {
  right: 10%;
  bottom: 420px;
  animation-delay: 1s;
}
.landing-tag-graphics span:nth-of-type(6) {
  right: 0;
  bottom: 300px;
  animation-delay: 1.2s;
}

.button {
  font-size: 18px;
  padding: 20px;
  padding-left: 36px;
  padding-right: 36px;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 100px;
  transition: 0.2s ease-in-out;
}
.button:hover {
  transform: scale(1.05);
}
.button:active {
  transform: scale(0.9);
}

.col1 {
  background: #3141a8;
  background: linear-gradient(0deg, rgb(49, 65, 168) 0%, rgb(70, 118, 214) 100%);
  color: white;
  border: solid 1px rgb(79, 161, 255);
}
.col1:hover {
  background: linear-gradient(0deg, #3b4dc1 0%, rgb(91, 146, 255) 100%);
  box-shadow: 5px 10px 15px rgba(17, 96, 255, 0.292);
}

.col2 {
  background: #a9b7c4;
  background: linear-gradient(0deg, rgb(225, 233, 239) 0%, rgb(255, 255, 255) 100%);
  border: solid 1px rgb(230, 242, 255);
  color: black;
  margin-left: 16px;
}
.col2:hover {
  box-shadow: 5px 10px 30px rgba(128, 170, 255, 0.259);
}
.col2 svg {
  width: 16px;
  height: auto;
  margin-right: 10px;
  fill: var(--primary);
}

.courses-section {
  padding: 90px;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 60px;
}
.courses-section h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 36px;
  color: var(--primary);
  text-align: center;
}
.courses-section h2 span {
  color: var(--secondary);
}
.courses-section p {
  margin: 0;
  color: var(--greys);
  margin-bottom: 60px;
  width: 60%;
  line-height: 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.big {
  --scale:1.5;
}

.course-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.course-link {
  display: block;
}

.card-button {
  display: block;
  font-size: 16px;
  padding: 20px;
  margin-top: 20px;
  color: var(--primary);
  text-align: center;
  transition: 0.2s ease-in-out;
  border-top: solid 1px #e6e9f7;
}
.card-button:hover {
  color: var(--outline);
}

.internship-section {
  padding-bottom: 60px;
  padding-top: 60px;
  padding-left: 100px;
  padding-right: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  background-color: var(--light-bg);
  margin: 12px;
  border-radius: 12px;
  border: solid 1px #d3d7e0;
}
.internship-section h2 {
  font-size: 36px;
  margin: 0;
  color: var(--primary);
}
.internship-section h2 span {
  color: var(--secondary);
}
.internship-section p {
  color: var(--para);
  margin-right: 30px;
  line-height: 24px;
}

.card {
  border-radius: 12px;
  background-color: rgb(252, 252, 252);
  border: solid 1px rgb(233, 233, 233);
  box-shadow: 5px 5px 30px rgba(17, 86, 155, 0.115);
  padding: 6px;
  transition: 0.25s ease-in-out;
}
.card img {
  display: block;
  width: 100%;
  border-radius: 6px;
  height: auto;
}
.card h3 {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
}
.card p {
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #79797c;
  width: auto;
  text-align: left;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0px 15px 30px rgba(84, 147, 219, 0.19);
}

.card-tags {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  display: flex;
  gap: 6px;
  color: var(--primary);
}
.card-tags span {
  font-size: 12px;
  padding: 6px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 4px;
}
.card-tags span:nth-child(1) {
  color: var(--primary);
  background-color: var(--light-bg);
  border: solid 1px #d2d2f1;
}

footer {
  background-color: var(--light-bg);
  border-radius: 12px;
  margin: 12px;
  padding: 60px;
  padding-bottom: 10px;
}

.footer-content {
  display: flex;
  gap: 80px;
}

.footer-logo svg {
  width: 80px;
}

.footer-name {
  width: 400px;
}
.footer-name span {
  color: var(--primary);
  font-size: 36px;
}
.footer-name p {
  color: var(--greys);
}

.footer-nav {
  margin-left: auto;
}
.footer-nav h3 {
  color: var(--primary);
  margin: 0;
  font-weight: 600;
  font-size: 17px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav ul li {
  transition: 0.25s ease-in-out;
}
.footer-nav ul li a {
  transition: 0.25s ease-in-out;
  color: var(--para);
  font-size: 14px;
}
.footer-nav ul li:hover a {
  color: var(--secondary);
}

.footer-contact {
  margin-left: auto;
  margin-right: 100px;
}
.footer-contact h3 {
  color: var(--primary);
  margin: 0;
  font-weight: 600;
  font-size: 17px;
}
.footer-contact p {
  color: var(--para);
  font-size: 14px;
  width: 250px;
  line-height: 20px;
}
.footer-contact p strong {
  display: block;
  margin-bottom: 4px;
}
.footer-contact p a {
  color: rgb(54, 96, 182);
  transition: 0.2s ease-in-out;
}
.footer-contact p a:hover {
  color: blue;
}

.footer-copy-socials {
  border-top: solid 1px var(--para);
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
}
.footer-copy-socials p {
  margin: 0;
  font-size: 14px;
  color: var(--para);
}

.social-icons {
  display: flex;
  gap: 12px;
  vertical-align: bottom;
}
.social-icons svg {
  width: 28px;
  height: auto;
  fill: var(--primary);
  margin-top: auto;
  transition: 0.25s ease-in-out;
}
.social-icons svg:hover {
  fill: var(--secondary);
}

.about-section {
  background: #EAF4FF;
  background: linear-gradient(150deg, rgb(234, 244, 255) 0%, #7cc9ff 100%);
  margin: 12px;
  border-radius: 12px;
  padding: 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.about-section h2 {
  color: var(--primary);
  margin: 0;
  font-size: 36px;
}
.about-section h2 span {
  color: var(--secondary);
}
.about-section p {
  color: var(--greys);
  font-size: 16px;
  line-height: 24px;
}
.about-section .button {
  margin-left: 0;
  margin-top: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.about-feature-box {
  display: flex;
  gap: 20px;
  align-items: start;
  background-color: var(--light-bg);
  border: solid 1px white;
  border-radius: 12px;
  padding: 12px;
  padding-bottom: 20px;
  box-shadow: 10px 10px 10px rgba(32, 101, 192, 0.262);
}
.about-feature-box h3 {
  color: var(--primary);
  margin: 0;
  font-size: 14px;
}
.about-feature-box p {
  font-size: 12px;
  margin: 0;
  line-height: 18px;
  margin-top: 4px;
  color: var(--greys);
}
.about-feature-box svg {
  height: auto;
  width: 50px;
  margin-top: 6px;
  margin-left: 4px;
}

.svg-col1 {
  fill: #d7683b;
}

.svg-col2 {
  fill: #e0b227;
}

.svg-col3 {
  fill: #e1635c;
}

.svg-col4 {
  fill: #1c61d0;
}

.gallery-section {
  margin: 12px;
  padding: 90px;
}
.gallery-section h2 {
  font-size: 36px;
  color: var(--primary);
  margin: 0;
}
.gallery-section h2 span {
  color: var(--secondary);
}
.gallery-section p {
  margin-top: 8px;
  color: var(--greys);
  width: 800px;
}

.gallery-image-wrapper {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 50px;
}
.gallery-image-wrapper img {
  width: 430px;
  height: auto;
  border-radius: 6px;
}

.testimonial-section {
  background-color: var(--light-bg);
  border-radius: 12px;
  margin: 12px;
  padding: 60px;
  text-align: center;
}
.testimonial-section h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: var(--greys);
}
.testimonial-section p {
  font-weight: 600;
  font-size: 36px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary);
  width: 550px;
  margin-bottom: 60px;
}

.test-card {
  display: flex;
  overflow: hidden;
  background-color: white;
  display: flex;
  min-width: 600px;
  box-sizing: border-box;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
}
.test-card figure {
  margin: 0;
  box-sizing: border-box;
}
.test-card figure img {
  width: 200px;
  height: 100%;
}
.test-card blockquote {
  margin: 0;
  width: auto;
  margin-top: 10px;
  color: var(--greys);
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 20px;
}

.test-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: inherit;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 8px;
}

.test-meta {
  margin: 0 !important;
  box-sizing: border-box;
  width: auto !important;
  margin-top: auto !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.test-meta span {
  font-size: 12px;
}

.test-rating {
  text-align: right;
  font-size: 24px;
  color: var(--secondary);
}

.tag {
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: var(--light-bg);
  border-radius: 4px;
  border: solid 1px var(--outline);
}

.reviewer {
  margin-left: auto;
  font-style: italic;
}

.testimonial-carousel {
  display: flex;
  position: relative;
  justify-content: center;
  transition: 0.25s ease-in-out;
}

.carousel-track {
  transition: 0.25s ease-in-out;
  overflow: hidden;
  width: 600px;
  position: relative;
}

button.prev,
button.next {
  border: none;
  background: none;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  color: var(--outline);
  position: relative;
  z-index: 1;
  transition: 0.25s ease-in-out;
  margin-left: 60px;
  margin-right: 60px;
}
button.prev:hover,
button.next:hover {
  color: var(--secondary);
}

.car-grp {
  display: flex;
  gap: 20px;
  transition: 0.25s ease-in-out;
}

.contact-section {
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 80px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 200px;
  align-items: center;
}
.contact-section h2 {
  font-weight: normal;
  font-size: 16px;
  color: var(--para);
  margin: 0;
  margin-bottom: 10px;
}
.contact-section p {
  color: var(--primary);
  font-size: 42px;
  margin: 0;
  margin-bottom: 20px;
}
.contact-section p span {
  color: var(--secondary);
}
.contact-section p:nth-of-type(2) {
  font-weight: normal;
  color: var(--para);
  font-size: 16px;
  margin-top: 10px;
}

.map-holder {
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  border-radius: 12px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  margin-left: 10px;
}

.contact-info-tab {
  display: flex;
  gap: 20px;
  align-items: start;
}
.contact-info-tab svg {
  height: auto;
  width: 36px;
  fill: rgb(71, 145, 223);
  margin-top: 6px;
}

.address-info h3 {
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--outline);
}
.address-info a {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 500;
}
.address-info p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: var(--primary);
}
.address-info p span {
  color: var(--primary);
}

.para {
  line-height: 24px;
}

.float-scale {
  transition: 0.3s ease-in-out;
  animation: floatScale 4s ease-in-out infinite;
  display: inline-block;
}

.module-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin: 12px;
  border-radius: 12px;
  margin-top: 70px;
  height: 400px;
  background-color: #060606;
}

.module-info {
  margin-right: 90px;
  margin-top: auto;
  margin-bottom: auto;
}
.module-info h1 {
  color: var(--light-bg);
  font-weight: 500;
  font-size: 48px;
  margin: 0;
}
.module-info p {
  color: var(--para);
}

.module-image {
  height: inherit;
  text-align: left;
}
.module-image img {
  height: inherit;
  border-radius: 12px 0px 0px 12px;
}

.course-contents {
  padding: 20px;
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
  margin-top: 70px;
}
.course-contents h2 {
  text-align: center;
  margin: 0;
  color: var(--primary);
}
.course-contents p {
  text-align: center;
  margin: 0;
  margin-top: 4px;
  color: var(--para);
}

.course-inner-content {
  margin-top: 40px;
}
.course-inner-content h3 {
  margin: 0;
  padding: 20px;
  background-color: var(--light-bg);
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
}
.course-inner-content h3:nth-of-type(1) {
  border-top: none;
}
.course-inner-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--para);
  list-style: lower-alpha;
  margin-bottom: 20px;
}

.about-image {
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 38%;
}
.about-image img {
  width: 100%;
}

@keyframes floatScale {
  0% {
    transform: translateY(0) rotate(5deg) scale(var(--scale, 1));
  }
  50% {
    transform: translateY(-14px) rotate(0deg) scale(var(--scale, 1));
  }
  100% {
    transform: translateY(0) rotate(5deg) scale(var(--scale, 1));
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .home {
    padding: 90px;
    padding-bottom: 80px;
  }
  .home-info {
    grid-template-columns: 1.1fr 1fr;
  }
  .home-info h1 {
    line-height: 45px;
  }
  .courses-section {
    padding-left: 50px;
    padding-right: 50px;
  }
  .course-wrapper {
    gap: 10px;
  }
  .internship-section {
    padding-left: 40px;
    padding-right: 40px;
    gap: 10px;
    grid-template-columns: 0.9fr 1fr 1fr;
  }
  .gallery-section {
    padding-left: 80px;
    padding-right: 80px;
  }
  .gallery-image-wrapper img {
    width: 360px;
  }
  .contact-section {
    padding-left: 100px;
    padding-right: 100px;
    gap: 100px;
  }
  .footer-content {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .about-image {
    width: 70%;
  }
  .home {
    grid-template-columns: 1fr;
    min-height: 950px;
    padding-top: 70px;
  }
  header {
    padding-right: 40px;
  }
  header nav ul {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .active {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 70px;
    display: flex;
    flex-direction: column;
    background-color: rgb(14, 14, 31);
    width: 100%;
    padding: 50px;
    gap: 20px;
    box-sizing: border-box;
    border-top: solid 1px var(--outline);
  }
  .active li {
    margin-right: auto;
    font-size: 24px;
  }
  .active li a:hover {
    color: var(--light-bg);
    background: none;
  }
  .nav-contact-btn {
    margin-left: 0;
  }
  .nav-contact-btn a {
    padding: 0;
    background: none;
    color: var(--para);
  }
  .landing-tag-graphics img:nth-of-type(1) {
    right: 18%;
  }
  .landing-tag-graphics img:nth-of-type(2) {
    left: 25%;
  }
  .landing-tag-graphics span:nth-of-type(1) {
    left: 5%;
  }
  .landing-tag-graphics span:nth-of-type(2) {
    z-index: 3;
    left: 0%;
  }
  .landing-tag-graphics span:nth-of-type(3) {
    left: 28%;
  }
  .home-info {
    grid-template-columns: 1.1fr 1fr;
    text-align: center;
  }
  .home-info h1 {
    line-height: 45px;
  }
  .courses-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .courses-section p {
    width: 90%;
  }
  .course-wrapper {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .card-tags {
    display: inline-block;
  }
  .card-tags span:nth-child(3) {
    display: block;
    margin-top: 20px;
  }
  .internship-section {
    padding-left: 40px;
    padding-right: 40px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .internship-section div {
    grid-column: span 2;
  }
  .about-section {
    grid-template-columns: 1fr;
    padding-left: 80px;
    padding-right: 80px;
    height: 900px;
  }
  .testimonial-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  button.prev, button.next {
    margin-left: 10px;
    margin-right: 10px;
  }
  .test-card {
    min-width: 590px;
  }
  .gallery-section {
    padding-left: 50px;
    padding-right: 50px;
  }
  .gallery-section p {
    width: 100%;
  }
  .gallery-image-wrapper {
    flex-direction: column;
  }
  .gallery-image-wrapper img {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section {
    padding-left: 100px;
    padding-right: 100px;
    gap: 100px;
    grid-template-columns: 1fr;
  }
  .footer-content {
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav {
    margin-right: auto;
    margin-left: 0;
    justify-content: left;
  }
  .footer-contact {
    margin-left: 0;
  }
  .module-header {
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
  }
  .module-image {
    height: auto;
    width: 100%;
  }
  .module-image img {
    height: auto;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
  }
  .module-info {
    padding: 30px;
  }
  .module-info h1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .about-image {
    width: 90%;
  }
  .big {
    --scale:0.8;
  }
  .home {
    grid-template-columns: 1fr;
    min-height: 950px;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .home-info {
    grid-template-columns: 1.1fr 1fr;
    text-align: center;
  }
  .home-info h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .col2 {
    margin: auto;
    margin-top: 10px;
  }
  header {
    padding-right: 40px;
  }
  header nav ul {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .active {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 70px;
    display: flex;
    flex-direction: column;
    background-color: rgb(14, 14, 31);
    width: 100%;
    padding: 50px;
    gap: 20px;
    box-sizing: border-box;
    border-top: solid 1px var(--outline);
  }
  .active li {
    margin-right: auto;
    font-size: 24px;
  }
  .active li a:hover {
    color: var(--light-bg);
    background: none;
  }
  .nav-contact-btn {
    margin-left: 0;
  }
  .nav-contact-btn a {
    padding: 0;
    background: none;
    color: var(--para);
  }
  .landing-tag-graphics img:nth-of-type(1) {
    right: 0;
    width: 400px;
  }
  .landing-tag-graphics img:nth-of-type(2) {
    left: 25%;
  }
  .landing-tag-graphics span:nth-of-type(1) {
    left: 5%;
  }
  .landing-tag-graphics span:nth-of-type(2) {
    z-index: 3;
    left: 10%;
    bottom: 20%;
  }
  .landing-tag-graphics span:nth-of-type(3) {
    left: 20%;
    bottom: 180%;
    opacity: 0.9;
  }
  .landing-tag-graphics span:nth-of-type(5) {
    bottom: 200%;
    right: 0;
    opacity: 0.8;
  }
  .courses-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .courses-section p {
    width: 90%;
  }
  .course-wrapper {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .card-tags {
    display: inline-block;
  }
  .card-tags span:nth-child(3) {
    display: inline-block;
  }
  .internship-section {
    padding-left: 40px;
    padding-right: 40px;
    gap: 30px;
    grid-template-columns: 1fr;
    border: none;
    margin: 0;
    border-radius: 0;
  }
  .about-section {
    grid-template-columns: 1fr;
    padding-left: 80px;
    padding-right: 80px;
    height: 1100px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .testimonial-section p {
    width: auto;
    font-size: 32px;
    margin-top: 10px;
  }
  button.prev, button.next {
    margin-left: 10px;
    margin-right: 10px;
  }
  .test-card {
    min-width: 300px;
    flex-direction: column;
  }
  .test-card figure img {
    width: 100%;
  }
  .test-rating {
    text-align: left;
  }
  .test-content {
    gap: 20px;
    padding-top: 20px;
  }
  .gallery-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
  }
  .gallery-section p {
    width: 100%;
  }
  .gallery-image-wrapper {
    flex-direction: column;
  }
  .gallery-image-wrapper img {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 60px;
    gap: 60px;
    grid-template-columns: 1fr;
  }
  .map-holder {
    width: 100%;
  }
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .footer-content {
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-name {
    width: 260px;
  }
  .footer-name span {
    font-size: 28px;
  }
  .footer-name p {
    font-size: 12px;
  }
  .footer-nav {
    margin-right: auto;
    margin-left: 0;
    justify-content: center;
    grid-column: span 2;
  }
  .footer-contact {
    margin-left: 0;
    grid-column: span 2;
  }
  .footer-copy-socials {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .module-header {
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
  }
  .module-image {
    height: auto;
    width: 100%;
  }
  .module-image img {
    height: auto;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
  }
  .module-info {
    padding: 30px;
    margin: auto;
  }
  .module-info h1 {
    font-size: 24px;
  }
  .module-info p {
    font-size: 14px;
  }
  .course-contents {
    margin-top: 30px;
    width: auto;
  }
  .course-contents p {
    margin-top: 10px;
  }
  .module-cta {
    gap: 20px;
  }
  .module-cta span {
    text-align: left;
    font-size: 12px !important;
  }
  .module-cta span strong {
    font-size: 16px;
  }
  .module-cta a {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cta-span {
    width: 150px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .about-image {
    width: 90%;
  }
  .big {
    --scale:0.8;
  }
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
  header nav ul {
    display: none;
  }
  .home {
    grid-template-columns: 1fr;
    min-height: 900px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .home-info {
    grid-template-columns: 1.1fr 1fr;
    text-align: center;
  }
  .home-info h1 {
    font-size: 21px;
    line-height: 30px;
  }
  .home-info p {
    font-size: 12px;
    line-height: 18px;
  }
  .button {
    font-size: 14px;
  }
  .col2 {
    margin: auto;
    margin-top: 10px;
  }
  .nav-toggle {
    display: block;
  }
  .active {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 60px;
    display: flex;
    flex-direction: column;
    background-color: rgb(14, 14, 31);
    width: 100%;
    padding: 50px;
    padding-top: 30px;
    gap: 20px;
    box-sizing: border-box;
    border-top: solid 1px var(--outline);
  }
  .active li {
    margin-right: auto;
    font-size: 18px;
  }
  .active li a:hover {
    color: var(--light-bg);
    background: none;
  }
  .nav-contact-btn {
    margin-left: 0;
  }
  .nav-contact-btn a {
    padding: 0;
    background: none;
    color: var(--para);
  }
  .nav-logo span {
    font-size: 20px;
  }
  .nav-logo svg {
    width: 26px;
  }
  .landing-tag-graphics img:nth-of-type(1) {
    right: -8%;
    width: 380px;
  }
  .landing-tag-graphics img:nth-of-type(2) {
    left: 10%;
    width: 80px;
    bottom: 130%;
  }
  .landing-tag-graphics span:nth-of-type(1) {
    left: 0%;
    bottom: 100%;
  }
  .landing-tag-graphics span:nth-of-type(2) {
    z-index: 3;
    left: 10%;
    bottom: 20%;
  }
  .landing-tag-graphics span:nth-of-type(3) {
    left: 10%;
    bottom: 180%;
    opacity: 0.9;
  }
  .landing-tag-graphics span:nth-of-type(5) {
    bottom: 200%;
    right: 0;
    opacity: 0.8;
  }
  .courses-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .courses-section p {
    width: 90%;
    font-size: 14px;
    line-height: 20px;
  }
  .course-wrapper {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .card-tags {
    display: inline-block;
  }
  .card-tags span:nth-child(3) {
    display: inline-block;
    margin-top: 20px;
  }
  .internship-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    gap: 30px;
    grid-template-columns: 1fr;
    border: none;
    margin: 0;
    border-radius: 0;
  }
  .internship-section h2 {
    text-align: center;
  }
  .int-p {
    font-size: 14px;
    text-align: center;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .about-section {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    height: 1060px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .about-section .abt-para {
    font-size: 14px;
    line-height: 20px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .testimonial-section h2 {
    font-size: 12px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-section p {
    width: auto;
    font-size: 21px;
    margin-top: 10px;
  }
  button.prev {
    margin-left: 0;
    margin-right: 10px;
    padding: 0;
  }
  button.next {
    margin-right: 0;
    margin-left: 10px;
    padding: 0;
  }
  .test-card {
    min-width: 250px;
    flex-direction: column;
  }
  .test-card figure img {
    width: 100%;
  }
  .test-card blockquote {
    margin: 0;
  }
  .test-rating {
    text-align: left;
  }
  .test-content {
    gap: 10px;
    padding-top: 20px;
  }
  .gallery-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .gallery-section p {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .gallery-image-wrapper {
    flex-direction: column;
  }
  .gallery-image-wrapper img {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 60px;
    padding-top: 30px;
    gap: 60px;
    grid-template-columns: 1fr;
  }
  .contact-section p:nth-of-type(2) {
    font-size: 14px;
  }
  .map-holder {
    width: 100%;
  }
  footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
  }
  .footer-logo svg {
    width: 40px;
  }
  .footer-content {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-name {
    width: 230px;
  }
  .footer-name span {
    font-size: 24px;
  }
  .footer-name p {
    font-size: 12px;
  }
  .footer-nav {
    margin-right: auto;
    margin-left: auto;
    grid-column: span 2;
    text-align: center;
  }
  .footer-contact {
    margin-left: auto;
    margin-right: auto;
    grid-column: span 2;
    text-align: center;
  }
  .footer-copy-socials {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .footer-copy-socials p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .module-header {
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    margin-left: 8px;
    margin-right: 8px;
  }
  .module-image {
    height: auto;
    width: 100%;
  }
  .module-image img {
    height: auto;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
  }
  .module-info {
    padding: 30px;
    margin: auto;
  }
  .module-info h1 {
    font-size: 24px;
  }
  .module-info p {
    font-size: 14px;
  }
  .course-contents {
    margin-top: 30px;
    width: auto;
  }
  .course-contents p {
    margin-top: 10px;
  }
  .module-cta {
    gap: 10px;
  }
  .module-cta span {
    text-align: left;
    font-size: 11px !important;
  }
  .module-cta span strong {
    font-size: 14px;
  }
  .module-cta a {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cta-span {
    width: 130px;
  }
}/*# sourceMappingURL=style.css.map */