/* 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;
}

/* 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;
}

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;
}
  
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 {
  display: none;
}

nav.solid-nav .logo img.white-logo {
  display: none; 
}

nav.solid-nav .logo img.color-logo {
  display: none; 
}

nav.solid-nav ul li a {
  display: none;
}

nav.solid-nav ul li a:hover {
  display: none;
}

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:0px;
}

.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;
}

.normal-text{
  color:#085D7B;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.1);
}

.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;
}

.choices-button{
  padding: 10px 30px;
}

.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: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; 
  }

  .action-button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@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; 
  }

  .action-button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}
/* Button (END) -------------------------------------------------------------- */

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  
  .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) {

  body{
    margin-left: 0;
  }
  .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 - Learning Station --------------------------------------------------------------------------------------------------------- */
.section1-learning-station {
min-height: 100vh;
background-image: url('graphics-learning/background-divider.svg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.learning-title {
padding-bottom:15px;
font-size: 65px;
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%;
}

.learning-description{
color:rgba(255, 255, 255, 0.85);
padding-bottom:30px;
}

.learning-photo {
max-width: 100%;
height: auto;
display: block;
padding-top: 150px;
}

.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:240px;
}

.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-top {
    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-learning-station {
    padding: 15px;
  }

  .learning-title {
    padding-top:150px;
    padding-bottom:15px;
    font-size: 55px;
    max-width: 100%;
    text-align: center;
  }

  .learning-description{
    font-size: 30px;
    padding-bottom:10px;
    text-align: center;
  }

  .beginning-button{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
  }

  .learning-photo {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 576px) {
  .section1-learning-station {
    padding: 15px;
  }

  .learning-title {
    padding-top:90px;
    padding-bottom:15px;
    font-size: 45px;
    max-width: 100%;
    text-align: center;
  }

  .learning-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:200px;
  }

  .btn-description-top {
    font-size: 15px;
  }

  .learning-photo {
    padding-top: 10px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 1 - Home section (END) ------------------------------------------------------------------------------------------------------- */





/* Section 1-1 - Navigation ---------------------------------------------------------------------------------------------------------------------- */
.section1-1-navigation{
  max-height: 250px;
}

.section-navigation {
  padding-top: 90px;;
  background-color: transparent;
  color: #085D7B;
  text-align: center;
}

.section-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-navigation ul li {
  position: relative;
}

.section-navigation ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #085D7B;
}

.section-navigation ul li a {
  text-decoration: none;
  color: #085D7B;
  transition: color 0.3s;
}

.section-navigation ul li a:hover {
  color: #F6A800;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section1-1-navigation{
    padding: 15px;
    margin-bottom: 350px;
  }

  .section-navigation {
    padding-top: 30px;
  }

  .section-navigation ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-navigation ul li:not(:last-child)::after {
    display: none;
  }

  .section-navigation ul li {
    margin-bottom: 10px;
    padding-left: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 576px) {
  .section1-1-navigation{
    padding: 15px;
    margin-bottom: 200px;
  }

  .section-navigation {
    padding-top: 15px;
  }

  .section-navigation ul li {
    margin-bottom: 8px;
    text-align: center;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 1.1 - Navigation (END) ---------------------------------------------------------------------------------------------------------------- */












/* Section 2 - Brief Introduction ---------------------------------------------------------------------------------------------------------------- */
.section2-brief-introduction{
  min-height: 100vh;
  background-color: transparent;
}

.section2-brief-introduction{
  padding-top: 80px;
}

.introduction-photo {
  max-width: 100%; 
  height: auto; 
  display: block;
  margin: 0 auto; 
}

.introduction{
  white-space: normal;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .learning-introduction-image{
    order: 2;
  }

  .learning-introduction-text{
    order: 1;
  }

  .section2-brief-introduction {
    padding: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .section2-brief-introduction {
    padding: 15px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 2 - Brief Introduction (END)----------------------------------------------------------------------------------------------------------- */









/* Section 3 - Courses --------------------------------------------------------------------------------------------------------------------------- */
.courses-grid {
  background: #fcfcfc;
}

.course-icon {
  position: relative;
}

.about-info-text h2 {
  margin-bottom: 23px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: .9;
}

.about-info-text p {
  padding: 0 100px;
  font-size: 18px;
  margin-bottom: 26px;
  position: relative;
}

.about-content p {
  margin-bottom: 0;
}

.about-info-text a {
  margin-bottom: 20px;
  position: relative;
}

.course-icon i {
  font-size: 40px;
  color: #e8bc00;
  margin-bottom: 20px;
  display: inline-block;
}

.course-wrap {
  border: 1px solid #e6e6e6;
  padding: 50px 30px;
  position: relative;
  border-radius: 20px;
  color:#fff;
  padding: 30px; 
  text-align: center;
  background: linear-gradient(to top, #085D7B, #81DAA0);
  min-height: 310px;
}

.course-wrap h4{
  color:#fff;
}

.course-wrap p{
  position: relative;
}

.solar1:hover {
  background-image: url(graphics-learning/solar-course-1.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all .5s;
  transform: scale(1.1); 
}

.wind2:hover {
  background-image: url(graphics-learning/wind-course-2.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all .5s;
  transform: scale(1.1); 
}

.hydro3:hover {
  background-image: url(graphics-learning/hydro-course-3.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all .5s;
  transform: scale(1.1); 
}

.geothermal4:hover {
  background-image: url(graphics-learning/geothermal-course-4.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all .5s;
  transform: scale(1.1); 
}

.biomass5:hover {
  background-image: url(graphics-learning/biomass-course-5.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all .5s;
  transform: scale(1.1); 
}

.bioenergy6:hover {
  background-image: url(graphics-learning/bioenergy-course-6.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: local;
  transition: all .5s;
  transform: scale(1.1); 
}

.course-wrap:hover:before {
  background: rgba(0, 0, 0, 0.8);
  /* background: rgba(129, 218, 160, 0.6); */
  border-radius: 20px;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  content: "";
  top: 0;
  opacity: 1;
}

.course-wrap h4 {
  font-weight: 600;
  color: #085D7B;
  margin-bottom: 17px;
  font-size: 18px;
  text-transform: capitalize;
  position: relative;
}

.course-wrap a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.scroll-down.arrows span {
  position: absolute;
  display: inline-block;
  top: 20px;
  height: 25px;
  width: 2px;
  left: calc(50% - 1px);
  animation: animateArrows 1.25s infinite linear;
}

@keyframes animateArrows {
  0%, 40%, 100% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

.scroll-down.arrows span:first-child {
  top: 35px;
  animation-delay: 0s;
}

.scroll-down.arrows span:nth-child(2) {
  top: 35px;
  animation-delay: .33s;
}

.scroll-down.arrows span:last-child {
  top:  50px;
  animation-delay: .66s;
}

.scroll-down.arrows span::before,
.scroll-down.arrows span::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 3px;
}

.scroll-down.arrows span::before {
  transform-origin: bottom;
}

.scroll-down.arrows span::after {
  transform-origin: bottom;
  margin-left: -1px;
}

.course-icons {
  width: 80px; 
  height: 80px; 
  object-fit: contain; 
  margin-bottom: 10px; 
}

.link-continue{
  text-decoration: none;
  color:#F6A800;
}

.link-continue:hover{
  color: #FEDE00;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .course-icons {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }

  .course-wrap {
    padding: 30px; 
    border-radius: 20px;
    min-height: 200px;
  }

  .section3-courses {
    padding: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .course-icons {
    width: 50px;
    height: 50px;
  }

  .service-wrap {
    padding: 10px; 
  }

  .course-wrap{
    border-radius: 15px;
  }

  .section3-courses {
    padding: 15px;
  }
}
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 3 - Courses (END)----------------------------------------------------------------------------------------------------------------------- */









/* Section 4 - Video Course ----------------------------------------------------------------------------------------------------------------------- */
.section4-video-course{
  padding-bottom: 100px;
}

h1.course-text{
  padding-left: 70px;
  padding-right: 70px;
}

.carousel-inner{
  position: relative; 
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots button {
  background: #ccc;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active {
  background: #085D7B;
  border: 2px solid #085D7B;
  width: 12px;
  height: 12px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-item iframe{
  border-radius: 20px;
}

.custom-carousel-button {
    background-color: #085D7B;
    border: none;
    color: #F6A800;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.custom-carousel-button:hover {
    opacity: 1;
}

.custom-carousel-button .carousel-control-prev-icon,
.custom-carousel-button .carousel-control-next-icon {
    filter: invert(100%);
}

.glow {
  z-index: 1;
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none; 
  animation: glowAnimation 2s infinite alternate;
}

@keyframes glowAnimation {
  0% {
      opacity: 0;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  100% {
      opacity: 1;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
  }
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section4-video-course {
    padding: 30px;
    padding-bottom: 0px;
  }

  .carouselExampleInterval{
    justify-content: center;
    margin-bottom: 50px;
  }

  #carouselExampleInterval{
    margin-left: 20px;
    margin-right: 20px;
    width: 85%;
  }

  .carousel-item iframe {
    width: 100%;
    height: 250px;
  }

  .carousel-item iframe{
    border-radius: 10px;
  }

  @keyframes glowAnimation {
  0% {
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  }
  }
}

@media only screen and (max-width: 576px) {
  .section4-video-course {
    padding: 15px;
  }

  h1.course-text{
    padding-left: 0px;
    padding-right: 0px;
  }

  .carouselExampleInterval{
    border-radius: 10px;
  }

  .carousel-item iframe {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .carousel-dots {
    margin-top: 2px;
  }
  
  .carousel-dots button {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }
  
  .carousel-dots button.active {
    width: 10px;
    height: 10px;
  }
  
  .custom-carousel-button {
    width: 30px;
    height: 30px; 
  }

  .carousel-item iframe{
    border-radius: 10px;
  }

  @keyframes glowAnimation {
    0% {
      opacity: 0;
      box-shadow: 0 0 0px rgba(0, 0, 0, 0.5);
    }
    100% {
      opacity: 1;
      box-shadow: 0 0 0px rgba(0, 0, 0, 0.7);
    }
    }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 4 - Video Course (END) ----------------------------------------------------------------------------------------------------------------- */









/* Section 5 - Footprint Calculator --------------------------------------------------------------------------------------------------------------- */
.section5-footprint-calculator{
  padding-top:250px;
}

.footprint-image {
  width: 100%; 
  height: auto;
  object-fit: contain; 
  padding-top:30px;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section5-footprint-calculator {
    padding: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .section5-footprint-calculator {
    padding: 15px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 5 - Footprint Calculator (END) --------------------------------------------------------------------------------------------------------- */









/* Section 6 - Virtual Visits --------------------------------------------------------------------------------------------------------------------- */
.virtual-description{
  padding-top: 80px;
}
.virtual-visits-image {
  width: 100%; 
  height: auto;
  object-fit: contain; 
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section6-virtual-visits {
    padding: 15px;
  }

  .virtual-photo {
    order: 2;
  }

  .virtual-description {
    order: 1;
  }

  .virtual-visits-image{
    margin-top: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .section6-virtual-visits {
    padding: 15px;
  }

  .virtual-photo {
    order: 2;
  }

  .virtual-description {
    order: 1;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 6 - Virtual Visits (END) --------------------------------------------------------------------------------------------------------------- */









/* Section 7 - Additional Resources --------------------------------------------------------------------------------------------------------------- */
.section7-additional-resources{
  padding-top: 200px;
}

.top-choices-text{
  text-align: center;
}

.top-choices {
  padding: 50px;
  text-align: center;
}

.choice-card {
  padding: 20px;
  background: #085D7B;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 5px 10px;
}

.choice-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.choice-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bolder;
}

.choice-description {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media (min-width: 1024px) {
  .top-choices {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
} 

@media only screen and (max-width: 768px) {
  .section7-additional-resources {
    padding: 15px;
  }

  .top-choices{
    padding:0px;
  }

  .top-choices-text{
    text-align: justify;
  }

  .choice-card{
    margin: 10px 0px;
  }
}

@media only screen and (max-width: 576px) {
  .section7-additional-resources {
    padding: 15px;
  }

  .top-choices{
    padding:0px;
  }

  .top-choices-text{
    text-align: justify;
  }

  .choice-card{
    margin: 10px 0px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 7 - Additional Resources (END) --------------------------------------------------------------------------------------------------------- */





/* Section 8 - Quiz --------------------------------------------------------------------------------------------------------------------- */
.quiz-description{
  padding-top: 100px;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .quiz-description{
    padding-top: 40px;
  }
}

@media only screen and (max-width: 576px) {
  .quiz-description{
    padding-top: 0px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 8 - Quiz (END) --------------------------------------------------------------------------------------------------------------- */







/* Section 9- Action Button - Blog --------------------------------------------------------------------------------------------------------------- */
.section8-action-button {
  min-height: 100vh;
  background-color:transparent;
  padding-top:150px;
}

.explore-the-blog-description h2 {
  color:#085D7B;
}

.section-titles.action-title{
    text-align: left;
}

.blog-image {
  width: 100%; 
  height: auto;
  object-fit: contain; 
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section8-action-button {
    padding: 15px;
  }
  .section-titles.action-title{
    text-align: center;
  }

  .blog-image{
    margin-top: 0px;
  }
}

@media only screen and (max-width: 576px) {
  .section8-action-button {
    padding: 15px;
  }
  .section-titles.action-title{
    text-align: center;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 8 - Action Button - Blog (END) --------------------------------------------------------------------------------------------------------- */









/* Footer -----------------------------------------------------------------------------------------------------------------------------------------  */
footer {
  width: 100%;
  color: #F2F4F0;
  padding: 20px;
  text-align: center;
  background-image: url(graphics-learning/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)--------------------------------------------------------------------------------------------------------------------------------------- */









/* Back to top Button ----------------------------------------------------------------------------- */
#backToTopBtn {
  display: none;
}

.back-to-top-btn {
  position: relative;
  background: #fff;
  color: #F6A800;
  border: none;
  outline: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease; 
  align-content: center;
  border-radius: 15px 5px;
  width:220px;
  transform: skewX(0deg);
}

.back-to-top-btn i {
  margin-right: 5px;
  align-items: center;
}

.back-to-top-btn:hover {
  background: transparent;
  color: #FEDE00;
  transform: scale(1.05); 
}

.btn-description-bottom {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  align-content: center;
  font-weight: bold;
}

.back-to-top-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.back-to-top-button a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bolder;
  padding: 10px;
  background-color: transparent;
  color: #FEDE00;
  border-radius: 5px;
  transition: background-color 0.3s;
}

@media screen and (max-width: 768px) {
  .back-to-top-btn {
    padding: 8px 0px;
    border-radius: 10px 5px;
    width:160px;
  }
  
  .btn-description-bottom {
    font-size: 12px;
  }
  
  .back-to-top-button {
    bottom: 20px;
    right: 20px;
  }
  
  .back-to-top-button a {
    padding: 5px;
    border-radius: 5px;
  }
}

@media screen and (max-width: 576px) {
  .back-to-top-btn {
    padding: 8px 0px;
    border-radius: 10px 5px;
    width:160px;
  }
  
  .btn-description-bottom {
    font-size: 12px;
  }
  
  .back-to-top-button {
    bottom: 10px;
    right: 10px;
  }
  
  .back-to-top-button a {
    padding: 5px;
    border-radius: 5px;
  }
}
/* Back to top Button (END)------------------------------------------------------------------------ */