/* 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;
}

a { text-decoration: 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;
}

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:0px;
}

.section-titles{
  font-weight: bold;
  color: #085D7B;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.1);
  white-space: wrap;
  margin-bottom: 20px;
  font-weight:900;
}

.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);
}

.about-titles .section-titles{
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* 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; 
  }
}

@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) {
  .container{
    overflow: hidden;
  }

  .container{
    min-height: 30vh;
    padding-top:50px;
  }

  .section-titles{
    text-align: center;
    white-space: wrap;
  }

  .normal-text{
    text-align: justify;
  }

  .about-titles .section-titles{
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

@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 {
padding-top: 70px;
min-height: 100vh;
background-image: url('graphics-about/background-divider.svg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.about-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%;
  overflow: wrap;
  white-space: wrap;
}

.about-description{
  color:rgba(255, 255, 255, 0.85);
  padding-bottom:30px;
}

.section1-home img {
max-width: 100%;
height: auto;
display: block;
margin-top: 100px;
}

/* 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;
  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:210px;
}

.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;
  }

  .about-title {
    padding-top:150px;
    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: 30px;
  }

  .section1-home img {
    margin-top: 40px;
    }
}

@media only screen and (max-width: 576px) {
  .section1-home {
    padding: 15px;
  }

  .about-title {
    padding-top:90px;
    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:170px;
  }

  .btn-description {
    font-size: 15px;
  }

  .section1-home img {
    margin-top: 20px;
    }
} 
/* Responsive Media Queries (END)--------------------------------------------------------------------- */

/* Section 1 - Home section (END) ------------------------------------------------------------------------------------------------------- */













/* Section 2 - Hero section ------------------------------------------------------------------------------------------------------------- */
.section2-hero{ 
padding-top:90px;
padding-bottom:60px;
min-height: 100vh;
background-color: transparent;
color:#085D7B;
}

.welcome-text{
font-weight: bold;
color: #FBC638;
text-align: center;
text-shadow: 2px 2px 4px rgba(30, 29, 29, 0.2);
}

.features-responsive{
  display: none;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section2-hero {
    min-height: 30vh;
    padding: 15px;
  }

  .about-column2 {
    order: 1;
  }

  .about-column1 {
    order: 2;
  }

  .features-responsive{
    display: block;
    text-align: left;
  }
}

@media only screen and (max-width: 576px) {
  .section2-hero {
    padding: 15px;
  }

  .blog-column2 {
    order: 1;
  }

  .blog-column1 {
    order: 2;
  }

  .features-responsive{
    display: block;
    text-align: left;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 2 - Hero section (END)----------------------------------------- ------------------------------------------------------------- */





/* Section 4 - Education Phylosophy ----------------------------------------------------------------------------------------------------- */
.section4-approach{
  min-height: 100vh;
}
.quotes{
  padding-top: 200px;
}

.quotes h3{
  font-weight: bolder;
  font-size: 25px;
  background-image: linear-gradient(to bottom, #4D9F69, #81DAA0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section4-approach {
    min-height: 30vh;
    padding: 15px;
  }

  .quotes{
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  .section4-approach {
    padding: 15px;
  }

  .quotes{
    display: none;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 4 - Education Phylosophy (END)------------------------------------------------------------------------------------------------ */










/* Section 5 - FAQ --------------------------------------------------------------------------------------------------------------------- */
.section5-faq{
  min-height: 100vh;
}

.accordions {
  width: 80%;
  margin: 100px auto;
  }
  
  .accordions h3 {
  text-align: left;
  font-weight: bold;
  }

  .accordion-item{
    margin: 20px;
  }
  
  .accordion-title {
  background: linear-gradient(to left, #81DAA0, #085D7B);
  border-radius: 20px;
  color: #ffffff;
  }

  .accordion-item .accordion-title {
  cursor: pointer;
  padding: 20px;
  transition: transform 0.4s ease-in-out;
  }
  
  .accordion-item .accordion-title.active-title {
  background: #100e34;
  color: #ffffff;
  border-radius: 20px 20px 0 0;
  }
  
  .accordion-item .accordion-title h3 {
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  }
  
  .accordion-item .accordion-title i.fa-chevron-down {
  transform: rotate(0);
  transition: 0.4s;
  }
  
  .accordion-item .accordion-title i.fa-chevron-down.chevron-top {
  transform: rotate(-180deg);
  color: #81DAA0;
  }
  
  .accordion-item .accordion-content {
    display: none;
    line-height: 1.7;
    padding: 20px;
    background: linear-gradient(to left, #81DAA0, #085D7B);
    border-radius: 0 0 20px 20px;
    color: #081E3B;
  }
  
  .accordion-item .accordion-content.active {
  display: block;
  }
  
  .accordion-item .accordion-content p {
  margin: 0;
  font-size: 16px;
  color: #081E3B;
  }
  
  .details {
  background: #dce1f2;
  }
  
  .details .detailed_info {
  margin: 50px auto;
  }
  
  .details img {
  margin: 0 auto;
  display: block;
  }
  
  .details h3 {
  font-weight: bold;
  font-size: 20px;
  }
  
  .details p {
  font-size: 16px;
  line-height: 1.5em;
  }
  
  .details ul li {
  font-size: 16px;
  line-height: 1.7em;
  }

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section5-faq {
    min-height: 20vh;
    padding: 15px;
  }

  .accordions1 {
    margin-bottom: 0px;
  }

  .accordion-item{
    margin: 15px;
  }

  .question4{
    margin-top: 0px;
  }
}

@media only screen and (max-width: 576px) {
  .section5-faq {
    padding: 15px;
  }

  .accordions1 {
    margin-bottom: 0px;
  }

  .accordion-item{
    margin: 10px;
  }

  .question4{
    margin-top: 0px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 5 - FAQ (END) -------------------------------------------------------------------------------------------------------------- */









/* Section 6 - Action Button --------------------------------------------------------------------------------------------------------------- */
.section6-action-button{
  min-height: 100vh;
  background-color:transparent;
}

.action-image {
  width: 100%; 
  height: auto;
  object-fit: contain; 
}

.action-content{
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Responsive Media Queries ------------------------------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .section6-action-button {
    min-height: 30vh;
    padding-top: 0px;
    padding: 15px;
  }

  .section6-action-button .container{
    padding-top: 0px;
  }

  .blog-text{
    text-align: center;
  }

  .blog-button{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .action-content{
    padding-top: 0px;
  }
}

@media only screen and (max-width: 576px) {
  .section6-action-button {
    padding: 15px;
    padding-top: 0px;
  }

  .section6-action-button .container{
    padding-top: 0px;
  }

  .blog-text{
    text-align: center;
  }

  .blog-button{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .action-content{
    padding-top: 0px;
  }
} 
/* Responsive Media Queries (END)------------------------------------------------------------------- */

/* Section 6 - Action Button (END) ---------------------------------------------------------------------------------------------------------- */








/* Footer -----------------------------------------------------------------------------------------------------------------------------------------  */
footer {
  width: 100%;
  color: #F2F4F0;
  padding: 20px;
  text-align: center;
  background-image: url(graphics-about/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)--------------------------------------------------------------------------------------------------------------------------------------- */
