:root{
  ---nexa: 'Nexa', sans-serif;
  ---gilroy: 'Gilroy-Medium', sans-serif;
  ---lemon: 'Lemon Milk', sans-serif;
  ---main-color: #1E75BC;
  ---title-color-second: #FF6600;
  --main-font-size: 45px;
  --font-size: 18px; 
  ---title-font: 35px;
  ---title-color: #1A202C;
  ---bg-color: #EAF5FE;
}
#about{
  background-color: var(---bg-color);
}
.about_title h2{
  font-family: var(---nexa);
  font-size: var(---title-font);
  color: var(---title-color);
}
.about_title h2 span{
  color: var(---title-color-second);
}
.about_content{
  /* border: 3px solid green; */
  display: flex;
  /* padding: 65px 0; */
}
.about_image{
  flex: 1;
}
.about_text{
  flex: 1;
}
.line {
  width: 70px;
  height: 5px;
  margin-bottom: 20px;
  background: linear-gradient(60deg, #00447B, #FF6600);
}
.about_para{
  /* margin-top: 30px; */
}
.about_para p{
  font-size: var(--font-size);
  font-family: var(---gilroy);
  text-align: justify;
  line-height: 1.8;
}
.about_para p span{
  color: var(---main-color);
}
.about-li li{
  /* border: 3px solid red; */
  display: flex;
  align-items: center;
  margin-top: 50px;
  list-style: none; 
  text-decoration: none;
  font-family: var(---gilroy);
  color: var(---main-color);
  font-size: var(--font-size);
  font-weight: bold;
  position: relative;
  bottom: 0;
}
.about-li li::after {
  content: '→'; 
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;
  margin-left: 15px; 
  font-weight: bold;
  font-size: 24px;
}
.splide__arrow--prev{
  display: none;
}
.splide__arrow--next{
  display: none;
}
/* Smaller Screen (max-width: 479px) */
@media (max-width: 479px) {
  .container{
    /* border: 3px solid red; */
    max-width: 479px;
    margin: 0 auto;
  }
  .about_content {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0;
  }
  .about_image,
  .about_text {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .about_image{
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
  }
  .about_title h2 {
    font-size: calc(var(---title-font) * 0.8);
    text-align: center;
  }
  .about_para p {
    font-size: calc(var(--font-size) * 0.8);
  }
  .line {
    width: 50px;
    height: 4px;
  }
  .about-li li {
    font-size: calc(var(--font-size) * 0.8);
  }
  .about-li li::after {
    font-size: 18px;
  }
}

/* Medium Screen (min-width: 480px and max-width: 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .about_content {
    flex-direction: column-reverse;
  }

  .about_image,
  .about_text {
    flex: none;
    width: 100%;
    margin-bottom: 25px;
  }
  .about_text{
    text-align: start;
  }

  .about_title h2 {
    font-size: calc(var(---title-font) * 0.85);
    text-align: center;
  }

  .about_para p {
    font-size: calc(var(--font-size) * 0.85);
  }

  .line {
    width: 55px;
    height: 4px;
  }

  .about-li li {
    font-size: calc(var(--font-size) * 0.85);
  }

  .about-li li::after {
    font-size: 20px;
  }
}

/* Smaller Laptop and Tablet (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .about_content {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: row;
    padding: 0;
  }
  .about_image{
    /* border: 3px soild rebeccapurple; */
    flex: 1;
    width: 50%;
  }
  .about_image img{
    /* border: 3px solid green; */
    overflow: hidden;
    width: 95%;
  }
  .about_text{
  flex: 1;
  }
  .about_title h2 {
    font-size: calc(var(---title-font) * 0.9);
  }
  .about_para p {
    font-size: calc(var(--font-size) * 0.9);
  }
  .line {
    width: 60px;
    height: 5px;
  }
  .about-li li {
    font-size: calc(var(--font-size) * 0.9);
  }
  .about-li li::after {
    font-size: 22px;
  }
}

/* Small Desktops (min-width: 1024px and max-width: 1280px) */
@media (min-width: 1024px) and (max-width: 1280px) {
  .about_content {
    /* border: 3px solid red; */
    flex-direction: row;
    /* padding: 50px 0; */
  }

  .about_image,
  .about_text {
    flex: 1;
  }
  .about_image img{
    width: 95%;
  }

  .about_title h2 {
    font-size: var(---title-font);
  }

  .about_para p {
    font-size: var(--font-size);
  }

  .line {
    width: 65px;
    height: 5px;
  }

  .about-li li {
    font-size: var(--font-size);
  }

  .about-li li::after {
    font-size: 24px;
  }
}

/* Larger Desktop (min-width: 1280px) */
@media (min-width: 1280px) {
  .about_content {
    flex-direction: row;
    /* padding: 65px 0; */
  }

  .about_image,
  .about_text {
    flex: 1;
  }

  .about_title h2 {
    font-size: var(---title-font);
  }

  .about_para p {
    font-size: var(--font-size);
  }

  .line {
    width: 70px;
    height: 5px;
  }

  .about-li li {
    font-size: var(--font-size);
  }

  .about-li li::after {
    /* font-size: 24px; */
  }
}

Smaller Screen
@media (max-width: 479px) {}

Medium Screen
@media (min-width: 480px) and (max-width: 767px) {}

Smaller Laptop and Tablet
@media (min-width: 768px) and (max-width: 1024px) {}

Small Desktops
@media (min-width: 1024px) and (max-width: 1280px) {}

Larger Desktop
@media (min-width: 1280px) {}