/* Standardni margini i padding -----------------------------------------------------------------------------------------------------------  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    }

html, body { 
  scroll-behavior: smooth;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

a { text-decoration: none; }
li { list-style: none; }
img, button { display: block; }
a, span { display: inline-block; }

/* Standardni margini i padding (END) ------------------------------------------------------------------------------------------------------  */









/* Navigation bar --------------------------------------------------------------------------------------------------------------------------- */
nav {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 110px 10px 110px;
  white-space: nowrap;
}
  
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  text-align: center;
  font-weight: 700;

}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.2);
  text-decoration: none;
  font-weight: 600;
  padding: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  font-size:18px;
  font-weight: 700;
}
  
nav ul li a:hover {
  color: #81DAA0;
  transform: scale(1.1);
  font-weight: 800;
}

.logo img {
  width: 130px;
  height: auto;
}

nav .logo img.white-logo {
  display: block; 
}

nav .logo img.color-logo {
  display: none; 
}

.menu-icon {
  display: none;
}

nav.solid-nav {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(47, 46, 46, 0.2);
}

nav.solid-nav .logo img.white-logo {
  display: none; 
}

nav.solid-nav .logo img.color-logo {
  display: block; 
}

nav.solid-nav ul li a {
  color: #085D7B;
  font-weight: 700;
}

nav.solid-nav ul li a:hover {
  color: #81DAA0;
  transform: scale(1.1);
  font-weight: 800;
}

nav input[type="checkbox"] {
  display: none;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  nav {
    padding: 5px 50px;
    background-color: rgba(255, 255, 255, 0.95);
  }

  nav .logo img.white-logo {
    display: none; 
  }
  
  nav .logo img.color-logo {
    display: block; 
  }

  ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 4px rgba(47, 46, 46, 0.2);
    padding-left:0;
  }
  
  ul li {
    padding-top:10px;
    padding-bottom:10px;
    border-top: 1px solid rgba(8, 93, 123, 0.2); 
    width: 100%; 
    text-align: left;
  }

  ul li:hover {
    background-color: #fff; 
    cursor: pointer;
  }

   nav ul li {
    width: 100%; 
    text-align: left; 
  }

  nav ul li a{
    font-size:26px;
    padding:10px;
    color:#085D7B;
  }

  input[type="checkbox"]:checked ~ ul {
    display: flex;
  }

  .menu-icon {
      display: block;
      color:#085D7B
  }
}

@media only screen and (max-width: 576px) {
  nav {
    padding: 5px 30px;
    background-color: rgba(255, 255, 255, 0.95);
  }

  nav .logo img.white-logo {
    display: none; 
  }
  
  nav .logo img.color-logo {
    display: block; 
    height: 40px;
    width: auto;
  }

  ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 4px rgba(47, 46, 46, 0.2);
    padding-left:0;
  }
  
  ul li {
    padding-top:10px;
    padding-bottom:10px;
    border-top: 1px solid rgba(8, 93, 123, 0.2); 
    width: 100%; 
    text-align: left;
  }

  ul li:hover {
    background-color: #fff; 
    cursor: pointer;
  }

   nav ul li {
    width: 100%; 
    text-align: left; 
  }

  nav ul li a{
    font-size:16px;
    padding:0px;
    color:#085D7B;
  }

  input[type="checkbox"]:checked ~ ul {
    display: flex;
  }

  .menu-icon {
      display: block;
      color:#085D7B
  } 
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Nabigation bar (END) ------------------------------------------------------------------------------------------------------------------------*/
 








/* All Sections ---------------------------------------------------------------------------------------------------------------------- */
.container{
  min-height: 100vh;
  padding-top:50px;
}

.section-titles{
  font-weight:900;
  color: #085D7B;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.1);
  white-space: wrap;
  margin-bottom: 20px;
}

h1.section-titles {
  white-space: wrap;
}

.normal-text{
  color:#085D7B;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.1);
  font-weight: 600;
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Button -------------------------------------------------------------------- */
.wrapper {
  display: flex;
  justify-content: left;
}

.cta {
    display: flex;
    padding: 10px 45px;
    margin-top:20px;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 24px;
    color: white;
    background: linear-gradient(to right, #F6A800, #FEDE00);
    transition: 1s;
    box-shadow: 6px 6px 0 rgba(246, 168, 0, 0.9); 
    transform: skewX(0deg);
    border-radius: 20px 5px;
    padding-bottom: 20px;
}

.cta:focus {
   outline: none; 
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 rgba(8, 93, 123, 0.9);
    color:#085D7B;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

/* span {
  transform: skewX(15deg) 
} */

span:nth-child(2) {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 12%;
}
  
/**************SVG****************/
svg{
  width: 50px;
  height:auto; 
}

path.one,
path.two,
path.three {
  width: 3px;
  height: 3px;
}

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: #fff;
    }
    50% {
        fill: #085D7B;
    }
    100% {
        fill: #fff;
    }
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 8px 25px;
    font-size: 20px;
    border-radius: 15px 5px;
    margin-top:5px;
  }

  svg{
    width: 30px;
    height:auto; 
  }
}

@media screen and (max-width: 576px) {
  .cta {
    padding: 6px 15px;
    font-size: 18px;
    padding-bottom:10px;
    border-radius: 15px 5px;
    margin-top:3px;
  }

  svg{
    width: 40px;
    height:auto; 
  }
}
/* Button (END) -------------------------------------------------------------- */

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  
  #section{
    height:min-content;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .container{
    overflow: hidden;
}

.container{
  min-height: 30vh;
  padding-top:50px;
}

  .section-titles{
    text-align: center;
    white-space: wrap;
  }

  .normal-text{
    text-align: justify;
  }
}

@media only screen and (max-width: 576px) {
  .container{
    overflow: hidden;
}

.section-titles{
  text-align: center;
  white-space: wrap;
}

.normal-text{
  text-align: justify;
}
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* All Sections (END) ---------------------------------------------------------------------------------------------------------------- */







 

/* Section 1 - Home section --------------------------------------------------------------------------------------------------------- */
.section1-home {
  min-height: 100vh;
  background-image: url('graphics-home/background-divider.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top:50px;
}

.home-title {
  padding-top:90px;
  padding-bottom:15px;
  font-size: 60px;
  font-weight: 750;
  font-style: normal;
  background-image: linear-gradient(to bottom, #F6A800, #FEDE00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 100%;
}

.about-description{
  color:rgba(255, 255, 255, 0.85);
  padding-bottom:30px;
}

.section1-home img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

/* Scroll down button ------------------------------------------------------------------------------ */
.explore-btn {
  position: relative;
  background: linear-gradient(to top, #FEDE00, #F6A800);
  color: white;
  border: none;
  outline: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease; 
  animation: pulse 1.5s infinite; 
  align-content: center;
  border-radius: 15px 5px;
  width:200px;
}

.shape{
  transform: skewX(0deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.explore-btn a{
  color:#fff;
  text-decoration: none;
}

.explore-btn:hover a{
  color:#F6A800;
}

.explore-btn:hover {
  background: transparent;
  color: #F6A800;
  transform: scale(1.05); 
}

.btn-description {
  display: block;
  font-size: 18px;
  white-space: nowrap;
  align-content: center;
  font-weight: bolder;
  text-decoration: none;
}
/* Scroll down button (END) ------------------------------------------------------------------------ */

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section1-home {
    padding: 15px;
    padding-top: 100px;
  }

  .home-title {
    padding-top:60px;
    padding-bottom:15px;
    font-size: 55px;
    max-width: 100%;
    text-align: center;
  }

  .about-description{
    font-size: 30px;
    padding-bottom:10px;
    text-align: center;
  }

  .beginning-button{
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .section1-home {
    padding: 15px;
  }

  .home-title {
    padding-top:40px;
    padding-bottom:15px;
    font-size: 45px;
    max-width: 100%;
    text-align: center;
  }

  .about-description{
    font-size: 20px;
    padding-bottom:10px;
    text-align: center;
  }

  .beginning-button{
    display: flex;
    justify-content: center;
  }

  .explore-btn {
    padding: 8px 16px;
    border-radius: 12px 5px;
    width:160px;
  }

  .btn-description {
    font-size: 15px;
  }
} 
/* Responsive Media Queries (END)--------------------------------------------------------------------- */

/* Section 1 - Home section (END) ------------------------------------------------------------------------------------------------------- */

  







/* Section 1-1 - Video introduction ------------------------------------------------------------------------------------------------------------- */
.section1-1-video-introduction{
  min-height: 100vh;
  background-color: transparent;
  padding-top: 170px;
}

.i-frame iframe {
  border-radius: 30px 30px; 
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.zoom-in {
  animation: zoomInAnimation 1s ease forwards;
  transform-origin: center center;
}

@keyframes zoomInAnimation {
  from {
      transform: scale(0);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}


/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section1-1-video-introduction{
    min-height: 50vh;
    padding-top: 0px;
  }

  .i-frame iframe {
    border-radius: 20px 20px; 
    height: 350px;
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .section1-1-video-introduction{
    min-height: 40vh;
    padding-top: 0px;
  }

  .i-frame iframe {
    border-radius: 15px 15px; 
    height: 200px;
    width: 100%;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 1-1 - Video introduction (END)----------------------------------------- ------------------------------------------------------------- */










/* Section 2 - Hero section ------------------------------------------------------------------------------------------------------------- */
.section2-hero{
  min-height: 100vh;
  background-color: transparent;
}

.hero-section{
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
}

.hero-right .section-titles{
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

@media (max-width: 767px) {
  .col-lg-5 {
    order: 2;
  }

  .col-lg-7 {
    order: 1;
  }
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section2-hero {
    min-height: 30vh;
    padding: 15px;
    padding-top: -20px;
  }

  .hero-right .section-titles{
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (max-width: 576px) {
  .section2-hero {
    padding: 15px;
    padding-top: -20px;
  }

  .hero-right .section-titles{
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 2 - Hero section (END)----------------------------------------- ------------------------------------------------------------- */









/* Section 2.1 - Testemonials section ------------------------------------------------------------------------------------------------------------- */
.section2-1-testemonials{
  min-height: 100vh;
  background-color: transparent;
}

.section2-1-testemonials{
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
}

figure.snip1157 {
  position: relative;
  overflow: hidden;
  margin: 5px;
  min-width: 220px;
  max-width: 400px;
  width: 100%;
  color: #F2F4F0;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1157 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1157 img {
  max-width: 100%;
  vertical-align: middle;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  margin: 40px 10px 10px 10px;
}
figure.snip1157 blockquote {
  display: block;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(to left, #81DAA0, #085D7B);
  padding: 25px 50px 30px 50px;
  font-size: 0.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.6em;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  font-weight: 200;
}
figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1157 blockquote:before {
  top: 25px;
  left: 20px;
}
figure.snip1157 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 0;
}
figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid;
  border-right: 25px solid transparent;
  border-top: 25px solid #085D7B;
  border-radius: 0px 0px 0px 5px;
  margin-bottom: 20px;
  position: absolute;
}
figure.snip1157 .author {
  position: absolute;
  bottom: 45px;
  padding: 0 10px 0 120px;
  margin: 0;
  text-transform: uppercase;
  color: #081E3B;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
figure.snip1157 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
  text-transform:none;
  padding-left: 20px;
}
figure.snip1157 .author h5 span {
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
  padding-left: 0px;
  padding-bottom:50px;
}

.snip1157 {
  opacity: 0;
  transform: translateY(20px); 
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.snip1157.show {
  opacity: 1; 
  transform: translateY(0);
}


/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section2-1-testemonials {
    min-height: 30vh;
    padding: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .section2-1-testemonials {
    padding: 15px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 2.1 - Testemonials section (END)----------------------------------------- ------------------------------------------------------------- */










/* Section 3 - Did you know ------------------------------------------------------------------------------------------------------------ */
.section3-did-you-know{
  min-height: 100vh;
  background-color:transparent;
  text-align: center;
}

.carousel-inner {
  border-radius: 30px 30px; 
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.carousel-item {
  border-radius: 40px 40px; 
}

.carousel-caption p {
  text-align: justify;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .boy-left img{
    display: none;
  }
  .girl-right img{
    display: none;
  }
  .section3-did-you-know{
    min-height: 30vh;
    padding: 15px;
  }
  #carouselExampleInterval{
    margin:0px
  }
  .carousel-inner {
    border-radius: 25px;
  }
  .carousel-caption h5 {
    font-size: 20px; 
  }
  .carousel-caption p {
    font-size: 15px;
    margin-bottom: -15px;
  }
}

@media only screen and (max-width: 576px) {
  .boy-left img{
    display: none;
  }
  .girl-right img{
    display: none;
  }
  #carouselExampleInterval{
    margin:0px
  }
  .carousel-inner {
    border-radius: 15px; 
  }
  .carousel-caption{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%; 
    padding-bottom:0px;
  }
  .carousel-caption h5 {
    font-size: 15px; 
    align-items: end;
    margin-bottom: -15px;
  }
  .carousel-caption p {
    font-size: 9px;
    align-items: end;
    margin-bottom: -20px;
  }
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 3 - Did you know (END) ------------------------------------------------------------------------------------------------------ */









/* Section 4 - Courses ----------------------------------------------------------------------------------------------------------------- */
.section4-courses{
  min-height: 100vh;
  background-color: transparent;
}

.card {
  box-sizing: border-box;
  box-shadow: 12px 17px 51px rgba(8, 30, 59, 0.22);
  border-radius: 18px !important;
  backdrop-filter: blur(6px);
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  background: linear-gradient(to top, #085D7B, #81DAA0);
}

.cards-link:hover{
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.cards-link:active{
  transform: scale(0.95) rotateZ(1.5deg);
}

.card-image {
  width: 100%;
  height: auto;
  padding:30px 30px 0px 30px;
}

.card-content {
  background-color: transparent;
  padding:0px 20px 20px 20px;
  color: #081E3B;
}

.card-title {
  font-size: 18px;
  padding-bottom: 10px;
  font-weight: 800;
}

.card-description {
  font-weight: 300;
  color:white;
}

.card-content .card-title .card-description {
  overflow: hidden;
  white-space: wrap;
}

.cards-link{
  text-decoration: none;
}

/* Animation for the cards -------------------------------------------------- */
.card {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.card.show {
  opacity: 1;
  transform: translateX(0);
}
/* Animation for the cards (END) -------------------------------------------- */

.link-continue{
  padding: 0;
  margin: 0;
  border: none;
  color: #F6A800;
  position: relative;
  display: flex;
  font-weight: 600;
  font-size: 20px;
  gap: 0.5rem;
  align-items: center;
  text-decoration: none;
}

.link-continue:hover{
  transition: transform 0.3s ease;
  color: #FEDE00;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section4-courses{
      min-height: 30vh;
      padding: 20px;
      padding-right:10px;
      padding-left:10px;
  }
  .card {
    margin: 15px 2px 2px 2px;
    box-shadow: none;
    border-radius: 12px !important;
  }
  .card-image {
    padding: 10px;
  }
  .card-content {
    padding: 15px;
  }
  .card-title {
    font-size: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .section4-courses{
    padding: 40px;
}
.card {
  margin: 5px;
  margin-top:10px;
  margin-right: 7px;
  margin-left: 7px;
  box-shadow: none;
}
.card-image {
  padding: 10px;
  height:150px;
  width:auto;
}
.card-content {
  padding: 0px 30px 20px 30px;
}
.card-title {
  font-size: 20px;
}

.card-description {
  font-weight: 200;
  font-size: 13px;
  color:white;
}

.link-continue{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
}
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 4 - Courses (END) ----------------------------------------------------------------------------------------------------------- */












/* Section 5 - Blog -------------------------------------------------------------------------------------------------------------------- */
.section5-blog{
  min-height: 100vh;
  background-color:transparent;
}

h1#learn{
  display: flex;
  flex-direction: column;
  text-align: left;
}

.explore-the-blog-description h2 {
  color:#085D7B;
}

.blogs-carousel{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  margin-top:55px;
}

.blog-title{
  color: #F6A800;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding-right: 30px;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.blog-details{
  color:rgba(8, 93, 123, 0.5);
}

.blog-details.featured{
padding-top:5px;
color:rgba(255, 255, 255, 0.4);
}

.blogs-carousel .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 30, 59, 0.6);
}

.blogs-carousel .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 40px;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section5-blog{
    min-height: 30vh;
    padding: 15px;
  }

  .blog-column.col-lg-5 {
    order: 1;
  }

  .blog-column.col-lg-7 {
    order: 2;
  } 

  .blog-title{
    padding-right: 0;
    text-align: center;
  }

  h1#learn {
    display: flex;
    flex-direction: column;
    text-align: center;
}

  .blogs-carousel{
    padding-top:20px;
  }
}

@media only screen and (max-width: 576px) {
  .section5-blog .container{
    padding: 10vh 15px 15px 15px;
  }
  
  .blogs-button{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-title{
    font-weight: 500;
    padding-right: 0;
  }

  .blog-details.featured{
    font-size: 7px;
    text-align: start;
  }
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 5 - Blog (END) -------------------------------------------------------------------------------------------------------------- */











/* Section 6 - Community --------------------------------------------------------------------------------------------------------------- */
.section6-community {
  min-height: 100vh;
  position: relative;
  padding-top:100px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.community-description {
  text-align: center;
  margin-bottom: 40px;
}

.community-members {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-member {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 7px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member1{
  display: flex;
  justify-content: center;
  align-items: center;
}

.member2{
  display: flex;
  justify-content: center;
  align-items: center;
}

.member3{
  display: flex;
  justify-content: center;
  align-items: center;
}

.member4{
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-member img {
  width: 100%;
  height: 100%;
}

.community-button{
  margin-top: 20px;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section6-community {
    min-height: 30vh;
  }
  .section6-community .container{
    padding: 0px 15px 15px 15px;
  }
  .community-description {
    text-align: justify;
  }
  .community-member img {
    max-width: 100%;
    height: auto;
  }
  .community-member {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  .community-members {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 576px) {
  .section6-community{
    padding: 15px;
  }
  .section6-community .container{
    padding: 10ch 15px 15px 15px;
  }
  .community-description {
    text-align: justify;
    margin-bottom: 5px;
  }
  .community-member img {
    max-width: 100%;
    height: auto;
  }
  .member1{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .member2{
    display: none;
  }
  .member3{
    display: none;
  }
  .member4{
    display: none;
  }
  .community-members {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .community-member {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
  }
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 6 - Community (END) ---------------------------------------------------------------------------------------------------------- */







/* Footer ----------------------------------------------------------------------------------------------------------------------------  */
footer {
  width: 100%;
  color: #F2F4F0;
  padding: 20px;
  text-align: center;
  background-image: url(graphics-home/footer1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  }
  
  .social-media {
  margin-top: 400px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .social-media a {
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
  }
  
  .social-media a:hover {
  color: #81DAA0;
  transform: scale(1.9);
  }
  
  .social-media a {
  display: inline-block;
  }

  .mail-address a{
    text-decoration: none; 
    color: rgba(129, 218, 160, 0.8); 
    padding-bottom:3px;
  }

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  footer {
    height: 45%;
    padding: 10px;
  }
}

@media only screen and (max-width: 576px) {
  
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Footer (END)------------------------------------------------------------------------------------------------------------------------ */