* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  --accent-color: #fff;
  --bg-color: #E6EEEB;
  --text-color: #486284;
  --head-color: #4C3A95;
  --button-text-color: var(--bg-color);
  --transition-delay: 0s;
  --accent-text: "omnes-pro", sans-serif;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: var(--transition-delay);
}

body.dark {
  --accent-color: #07374a;
  --bg-color: #0C1D35;
  --text-color: #f5f5f5;
  --button-text-color: var(--bg-color);
  --accent-text: "omnes-pro", sans-serif;
}

@font-face {
  font-family: "var(--fontName)";
  src: url(https://use.typekit.net/ysd8pct.css);
}
h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}
/* color theme styling */
.theme-toggle-button {
  background-color: var(--accent-color);
  color: var(--button-text-color);
  padding-top: 1.4rem;
}

.theme-toggle-button svg {
  color: #E6EEEB;
}

.theme-toggle-button {
  background-color: var(--head-color);
  font-size: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-delay);
  transform: scale(1);
  color: #E6EEEB;
}

nav svg {
  height: 2.5rem;
  width: 1rem;
  margin-left: 15px;
  margin-bottom: 15px;
}

.logotype {
  font-family: var(--accent-text);
  font-weight: 700;
  font-style: normal;
  margin-left: 0.2rem;
  display: inline-flex;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
}

.logo-container img {
  width: 3rem;
}

.icon-container {
  position: absolute;
  height: 200vmin;
  pointer-events: none;
}

.theme-toggle-button:hover, .theme-toggle-button:focus {
  transform: scale(1.1);
}

/* Nav styling */
header {
  width: 100%;
  text-align: center;
  position: fixed;
  z-index: 999;
  padding: 10px;
  background-color: var(--head-color);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

nav {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background: var(--head-color);
  width: 100%;
  display: none;
  transform: scale(1, 0);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  margin-left: 1rem;
  color: #E6EEEB;
  padding: 1.5rem 0;
}

nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #E6EEEB;
}

nav a:hover {
  color: var(--accent-color);
}

.hamburger-toggle:checked ~ nav {
  display: block;
  transform: scale(1, 1);
}

.hamburger-toggle {
  display: none;
}

.hamburger-toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.hamburger-toggle-label span, .hamburger-toggle-label::before,
.hamburger-toggle-label::after {
  display: block;
  background: #E6EEEB;
  height: 2.5px;
  width: 25px;
  border-radius: 2px;
  position: relative;
  padding: 0;
}

.hamburger-toggle-label::before,
.hamburger-toggle-label::after {
  content: " ";
  position: absolute;
}

.hamburger-toggle-label::before {
  bottom: 18px;
}

.hamburger-toggle-label::after {
  top: 18px;
}

@media screen and (min-width: 900px) {
  .hamburger-toggle-label {
    display: none;
  }
  header {
    width: 100%;
    text-align: center;
    position: fixed;
    z-index: 999;
    padding-left: 40px;
    display: flex;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  }
  nav {
    all: unset;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: flex-end;
    align-content: flex-end;
    padding-right: 40px;
  }
  nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    list-style-type: none;
  }
  nav li {
    padding: 0 30px;
  }
  nav a {
    position: relative;
  }
  nav a:visited {
    color: #E6EEEB;
  }
  nav a::before {
    content: " ";
    display: block;
    height: 5px;
    background: #E6EEEB;
    position: absolute;
    top: -0.75em;
    left: 0;
    right: 0;
    transform: scale(0, 1);
    transition: transform ease-in-out 150ms;
  }
  nav a:hover::before {
    transform: scale(1, 1);
  }
}
/* main section styling */
main {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: calc(100vh - 100px);
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
  margin-right: 30px;
  width: 100vw;
  height: 700px;
  background-image: url(../images/illustration.png);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: bottom;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-left {
  width: 100%;
  margin-top: 0;
  padding-left: 30px;
  top: 0;
}

.hero-left h1 {
  font-size: 3rem;
}

.hero-left h3 {
  font-size: 2rem;
}

.hero-left h4 {
  font-size: 1rem;
  font-family: var(--accent-text);
  font-weight: 600;
}

.ab-button {
  display: inline-block;
  margin: 10px 0;
  background-color: #1C6E8C;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 2.5rem;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  align-self: center;
  box-sizing: border-box;
}

.hero-social i {
  color: var(--text-color);
  padding-right: 30px;
}

.hero-social {
  margin-top: 10px;
  font-size: 1.3rem;
  width: 200px;
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  section {
    width: 100%;
    display: flex;
    position: relative;
  }
  .hero-left {
    width: 100%;
    margin-top: 100px;
    padding-left: 50px;
  }
  .hero-container {
    margin: 0;
    width: 100vw;
    height: 900px;
    background-image: url(../images/illustration.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: right;
  }
  .hero-paragraph {
    top: 50%;
    left: 50%;
    width: 500px;
    font-size: 1.22rem;
    line-height: 1.5rem;
  }
  .button-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
  }
  i {
    color: var(--text-color);
    padding-right: 30px;
  }
  .ft-social {
    font-size: 1.3rem;
    width: 200px;
    display: flex;
    justify-content: flex-start;
  }
  .ab-button {
    margin: 10px 0;
    background-color: #1C6E8C;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 2rem;
    box-shadow: 0 5px 10px 0 #131921;
    align-self: center;
    box-sizing: border-box;
  }
}
@media (min-width: 992px) {
  section {
    width: 100%;
    display: flex;
    position: relative;
  }
  .hero-left {
    width: 100%;
    margin-top: 200px;
    padding-left: 100px;
  }
  .hero-container {
    margin: 0;
    width: 100vw;
    height: 800px;
    background-image: url(../images/illustration.svg);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: bottom right;
  }
  .hero-paragraph {
    top: 50%;
    left: 50%;
    width: 500px;
    font-size: 1.22rem;
    line-height: 1.5rem;
  }
  .hero-left h1 {
    font-size: 4rem;
  }
  .hero-left h3 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .hero-left h4 {
    font-size: 1.82rem;
  }
  .button-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
  }
  i {
    color: var(--text-color);
    padding-right: 30px;
  }
  .ft-social {
    font-size: 1.3rem;
    width: 200px;
    display: flex;
    justify-content: flex-start;
  }
  .ab-button {
    margin: 10px 0;
    background-color: #1C6E8C;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 2rem;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    align-self: center;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .portfolio-header {
    width: 100%;
    height: 80px;
    position: relative;
    background-color: var(--accent-color);
  }
  .sc-header {
    font-family: var(--accent-text);
    text-align: left;
    margin-top: 0;
    left: 50px;
    top: 50px;
    position: relative;
  }
  .sc-header::after {
    content: " ";
    display: block;
    height: 5px;
    width: 20px;
    background-color: var(--text-color);
    position: absolute;
    top: 0.9rem;
    left: -30px;
    right: 0;
    position: absolute;
    border-radius: 4px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .portfolio-header {
    width: 100%;
    height: 80px;
    position: relative;
    background-color: var(--accent-color);
  }
  .sc-header {
    font-family: var(--accent-text);
    text-align: left;
    margin-top: 0;
    padding-left: 80px;
    left: 50px;
    top: 50px;
    position: relative;
  }
  .sc-header::after {
    content: " ";
    display: block;
    height: 5px;
    width: 20px;
    background-color: var(--text-color);
    position: absolute;
    top: 0.9rem;
    left: 2.9rem;
    right: 0;
    position: absolute;
    border-radius: 4px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about-header {
    width: 100%;
    height: 80px;
    position: relative;
    background-color: var(--accent-color);
  }
  .sc-header {
    font-family: var(--accent-text);
    text-align: left;
    margin-top: 0;
    padding-left: 10px;
    left: 40px;
    top: 50px;
    position: relative;
  }
  .sc-header::after {
    content: " ";
    display: block;
    height: 5px;
    width: 20px;
    background-color: var(--text-color);
    position: absolute;
    top: 0.9rem;
    left: -1rem;
    right: 0;
    position: absolute;
    border-radius: 4px;
  }
}
@media (min-width: 1024px) {
  .about-header {
    width: 100%;
    height: 80px;
    position: relative;
    background-color: var(--accent-color);
  }
  .sc-header {
    font-family: var(--accent-text);
    text-align: left;
    margin-top: 0;
    padding-left: 80px;
    left: 50px;
    top: 50px;
    position: relative;
  }
  .sc-header::after {
    content: " ";
    display: block;
    height: 5px;
    width: 20px;
    background-color: var(--text-color);
    position: absolute;
    top: 0.9rem;
    left: 2.9rem;
    right: 0;
    position: absolute;
    border-radius: 4px;
  }
}
.portfolio-section {
  width: 100%;
  height: auto;
  padding: 40px;
  background-color: var(--accent-color);
}

.figure-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 200px 200px;
  grid-gap: 10px;
  grid-auto-flow: dense;
}

.portfolio-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.portfolio-item:hover .image img {
  transform: scale(1.2);
}

.portfolio-item .text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #E6EEEB;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  transition: 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}

.text h5 {
  font-size: 1.3rem;
  font-weight: 500;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text i {
  font-size: 1.5rem;
}

.text-position {
  position: absolute;
  top: 63%;
  left: 72%;
  transform: translate(-60%, -60%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.text-position2 {
  color: #E6EEEB;
  position: absolute;
  top: 65%;
  left: 40%;
  transform: translate(-80%, -80%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.center-position {
  color: #E6EEEB;
  position: absolute;
  top: 65%;
  left: 60%;
  transform: translate(-80%, -80%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.portfolio-item:hover .text {
  background: #4C3A95;
  opacity: 1;
}

.w-2 {
  grid-column: span 2;
}

.w-3 {
  grid-column: span 3;
}

.h-2 {
  grid-row: span 2;
}

.big-position2 {
  color: #E6EEEB;
  position: absolute;
  top: 65%;
  left: -20%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.big-position {
  color: #E6EEEB;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.bg-position2 {
  color: #E6EEEB;
  position: absolute;
  top: 62%;
  left: 40%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.bg-position {
  color: #E6EEEB;
  position: absolute;
  top: 62.5%;
  left: 60%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.lucky-position {
  color: #E6EEEB;
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.vic-position {
  color: #E6EEEB;
  position: absolute;
  top: 62.5%;
  left: 70%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.vic-position2 {
  color: #E6EEEB;
  position: absolute;
  top: 62%;
  left: 30%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 1.6rem;
  background-color: #E6EEEB;
  text-decoration: none;
  color: #0C1D35;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .figure-container {
    grid-template-columns: 1fr;
    grid-template-rows: 200px;
    grid-gap: 10px;
  }
  .w-2 {
    grid-column: 1;
  }
  .w-3 {
    grid-column: 1;
  }
  .h-2 {
    grid-row: 1;
  }
  .big-position2 {
    color: #E6EEEB;
    position: absolute;
    top: 65%;
    left: 40%;
    transform: translate(-80%, -80%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .big-position {
    color: #E6EEEB;
    position: absolute;
    top: 65%;
    left: 60%;
    transform: translate(-80%, -80%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .bg-position2 {
    color: #E6EEEB;
    position: absolute;
    top: 62%;
    left: 30%;
    transform: translate(-50%, -50%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .bg-position {
    color: #E6EEEB;
    position: absolute;
    top: 62.5%;
    left: 70%;
    transform: translate(-50%, -50%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .big-position {
    color: #E6EEEB;
    position: absolute;
    top: 65%;
    left: 60%;
    transform: translate(-80%, -80%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .bg-position2 {
    color: #E6EEEB;
    position: absolute;
    top: 62%;
    left: 30%;
    transform: translate(-50%, -50%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .vic-position {
    color: #E6EEEB;
    position: absolute;
    top: 62.5%;
    left: 70%;
    transform: translate(-50%, -50%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
  .vic-position2 {
    color: #E6EEEB;
    position: absolute;
    top: 62%;
    left: 30%;
    transform: translate(-50%, -50%);
    padding: 0.3rem 1.6rem;
    background-color: #E6EEEB;
    text-decoration: none;
    color: #0C1D35;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
}
.skills-header {
  width: 100%;
  height: 80px;
  position: relative;
  background-color: var(--bg-color);
}

@media (max-width: 480px) {
  .skills {
    width: 100%;
    background-color: var(--bg-color);
    margin: 0 auto;
    justify-content: center;
  }
  .skill-container {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 100px;
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 80px;
    row-gap: 0.5rem;
  }
  .icon-class i {
    font-size: 5rem;
    margin: 15px 0;
  }
  .icon-class {
    margin-left: 35px;
    display: flex;
    margin-bottom: 20px;
  }
  .do {
    display: block;
    width: 150px;
    margin-bottom: 25px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .skills {
    width: 100%;
    background-color: var(--bg-color);
    margin: 0 auto;
    justify-content: center;
    display: grid;
  }
  .skill-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(1fr));
    padding-bottom: 80px;
    padding-left: 150px;
    padding-right: 80px;
    padding-top: 60px;
    row-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .icon-class i {
    font-size: 5rem;
  }
  .icon-class p {
    font-size: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 1rem;
    letter-spacing: 0.1rem;
    margin-left: -5px;
  }
  .icon-class {
    display: flex;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .skills {
    width: 100%;
    background-color: var(--bg-color);
    margin: 0 auto;
    justify-content: center;
  }
  .skill-container {
    display: grid;
    padding-top: 80px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 80px;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 1rem;
  }
  .icon-class i {
    font-size: 5rem;
  }
  .icon-class p {
    font-size: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 1rem;
    letter-spacing: 0.1rem;
    margin-left: -5px;
  }
  .icon-class {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .skills {
    width: 100%;
    background-color: var(--bg-color);
    margin: 0 auto;
  }
  .skill-container {
    display: grid;
    width: 100%;
    margin-left: 150px;
    margin-bottom: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 80px 40px;
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    row-gap: 1.2rem;
    justify-content: space-evenly;
  }
  .icon-class i {
    font-size: 5rem;
  }
  .icon-class p {
    font-size: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 1rem;
    letter-spacing: 0.1rem;
    margin-left: -5px;
  }
  .icon-class {
    grid-row: 2/2;
  }
  .do {
    display: block;
    width: 170px;
  }
  .do p {
    font-size: 0.96rem;
    margin-top: 1rem;
  }
}
/* About */
@media (max-width: 768px) {
  .about-block {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-color);
    padding: 100px 60px;
    height: 890px;
    color: #424F61;
    position: relative;
  }
  .skill-header{
    text-align: center;
    font-size: 2rem;
    justify-content: space-between;
    color:#284B63;
    font-weight: 600;
    margin-bottom: 40px;
}
.skills-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    width: min(95%, 70rem);
    margin-inline: auto;
    margin-bottom: 2rem;
}
.skill-card-1{
    display: inline;
    background-color: #FEFFFE;
    font-size: var(--fs-400);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
}
.card-1 img{ 
    width: 100%;
}
.card-1 a{
    display: inline;
}
.programs{
    justify-content: space-between;
    margin: 20px 0;
}
.programs h4{
    font-weight: 500;
    margin-bottom: 20px;
}
  .about-info {
    margin-top: -50px;
    width: 320px;
    height: 480px;
    padding: 20px;
    background-color: #3B4252;
    color: #f5f5f5;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
  }
  .about-text {
    margin-bottom: 20px;
  }
  .about-info h4 {
    font-size: 1.5rem;
  }
  .about-info p {
    margin: 20px 0;
  }
  .about-project img {
    margin-top: 40px;
    width: 320px;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
  }
  .about-btn {
    margin: 30px 0;
    background-color: #1C6E8C;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    align-self: center;
    box-sizing: border-box;
  }
  .langs{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .programs{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .langs i{
    padding: 5px;
    font-size: 1.6rem;
  }
  .lang-icon {
    margin: 40px 0;
  }
  .lang-icon i {
    color: #f1faee;
    font-size: 3rem;
    margin-right: 20px;
  }
  .langs h5{
    padding-bottom: 20px;
  }
  .about-btn-area a{
    margin-right: 30px;
  }
  
}
@media (min-width: 768px) {
  .about-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--bg-color);
    padding: 100px 0;
    height: 600px;
    margin-bottom: 20px;
    color: #424F61;
    position: relative;
  }
  .about-container {
    display: block;
  }
  .project-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 30px;
  }
  .article-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .project {
    display: flex;
  }
  .about-project img {
    width: 370px;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
  }
  .about-btn {
    margin: 40px 0;
    background-color: #1C6E8C;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    align-self: center;
    box-sizing: border-box;
  }
  .about-info {
    width: 470px;
    height: 400px;
    padding: 20px;
    background-color: #3B4252;
    color: #f5f5f5;
    margin-bottom: 20px;
    margin-right: 20px;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
  }
  .about-contact {
    width: 470px;
    height: 400px;
    padding: 20px;
    background-color: #3B4252;
    color: #f5f5f5;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 20px;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
  }
  .about-info h4 {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  .space {
    margin: 30px;
  }
  .about-info p {
    margin: 20px 0;
  }
  .lang-icon i {
    padding-top: 20px;
    
  }
  .langs{
    padding: 30px 0;
  }
  .programs{
    padding-bottom: 20px;
  }
  .langs i{
    color: #f1faee;
    font-size: 1.5rem;
    margin-top: 5px;
  }
  .langs h5{
    padding-bottom: 20px;
  }
  .about-btn-area a{
    margin-right: 30px;
  }
}

/* footer Styling */
@media screen and (max-width: 768px) {
  footer {
    display: flex;
    overflow: hidden;
    background-color: #4C3A95;
    margin-top: 30px;
    overflow: hidden;
    clear: both;
    color: #f1faee;
    position:relative;
    display: flex;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: auto;
  }
  footer p {
    margin-top: 30px;
    font-size: 0.9rem;
  }
  .ft-social {
    text-decoration: none;
    display: inline;
    font-size: 1rem;
    list-style-type: none;
  }
  .ft-social i {
    margin: 30px 0;
    display: inline-block;
    font-size: 1.6rem;
    color: #f1faee;
    margin-right: 1rem;
  }
  .back-btn {
    display: block;
    text-align: center;
    color: #f1faee;
  }
  .back-btn i {
    font-size: 8rem;
    background-color: #1C6E8C;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 768px) {
  footer{
    background-color: var(--head-color);
    margin-top: 60px;
    padding: 0;
    overflow: hidden;
    width: 100%;
    color: #f1faee;
    position:relative;
    bottom: 0;
    display: flex;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer p {
    margin-top: 30px;
  }
  .ft-social {
    text-decoration: none;
    display: inline;
    font-size: 1rem;
    list-style-type: none;
  }
  .ft-social i {
    margin: 30px 0;
    display: inline-block;
    font-size: 1.6rem;
    color: #f1faee;
  }
  .back-btn {
    display: block;
    text-align: center;
    color: #f1faee;
  }
  .back-btn i {
    font-size: 8rem;
    background-color: #1C6E8C;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  }
}/*# sourceMappingURL=style.css.map */