/**
Theme Name: Educut
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: educut
Template: astra
*/

:root {
    --primary-color: #FFC105; /* Primary color for the theme */
    --text-color-white: #ffffff;
    --background-color-black: #000000;
    --hero-image-max-width-large: 80%;
    --hero-image-max-width-small: 60%;
}

@keyframes colorChange {
    0%, 100% { color: var(--text-color-white); }
    50% { color: var(--primary-color); }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulsingGlow {
    0% {
        box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white, 0 0 20px #ffffff, 0 0 35px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 75px #ffffff;
    }
    50% {
        box-shadow: 0 0 2px white, 0 0 4px white, 0 0 6px white, 0 0 10px #ffffff, 0 0 14px #ffffff, 0 0 15px #ffffff, 0 0 20px #ffffff, 0 0 35px #ffffff;
    }
    100% {
        box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white, 0 0 20px #ffffff, 0 0 35px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 75px #ffffff;
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

#loaderText {
    animation: colorChange 2s linear infinite;
}

.site-header {
    z-index: 9999;
    position: relative;
    background-color: transparent !important;
    display: none;
}

#hero-section {
    background-image: url('media/black-painted-wall-textured-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    position: relative;
}

.hero-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
}

.yellow-line {
    position: absolute;
    background-color: var(--primary-color);
    height: 10px;
    width: 50%;
    top: 50%;
    left: 50%;
    border-radius: 10px;
}

.yellow-square {
    position: absolute;
    background-color: var(--primary-color);
    padding-top: 5%;
    bottom: 0%;
    z-index: 50;
}

.left-square {
    left: 0%;
    width: 10%;
    height: 10%;
}

.right-square {
    right: 0%;
    width: 25%;
    height: 50%;
}

.hero-left-content, 
.hero-right-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromBottom 1s ease-out forwards;
    animation-delay: 3.5s;
    z-index: 1000;
}

.hero-left-content h1 {
    font-size: 100px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--text-color-white);
}

.hero-left-content .hero-subheading {
    font-size: 26px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    color: var(--text-color-white);
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-right-content {
    justify-content: flex-end;
}

.hero-left-content .hero-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color-black);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.hero-right-content .hero-image {
    max-width: var(--hero-image-max-width-large);
    border: 10px solid var(--text-color-white);
    border-radius: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    animation: floating 3s ease-in-out infinite, pulsingGlow 3s ease-in-out infinite;
}

/* .svg-frame {
    display: none;
}

#frame-1 {
    display: block;
} */

/* #video-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
}

#video-loader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

#video-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-out;
    opacity: 1;
}

#video-loader video {
    height: 100%;
    width: auto; /* Adjust the width automatically to maintain aspect ratio */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
}


@media (max-width: 1120px) {
    .hero-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-left-content, 
    .hero-right-content {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-left-content .hero-subheading {
        text-align: center;
    }

    .hero-right-content .hero-image {
        width: var(--hero-image-max-width-small);
        height: auto;
        position: static;
        transform: translateY(100px);
    }
}

/* Custom Gallery ------------------- */

.container-custom {
    background: #0C0C0C;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    padding: 50px;
}

.custom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
  
.card {
    position: relative;
    border-radius: 15px;
    height: 300px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    filter: grayscale(100%);
    margin: 15px;
    transition: filter 0.5s ease-in-out; /* Add transition for the filter */
}
  
.img-card {
    width: 100% !important;
    height: 100% !important;
    border-radius: 15px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.55s all ease-in-out;
}
  
.card:hover {
    filter: grayscale(0%); /* Remove grayscale on hover */
}

.card:hover .img-card {
    transform: scale(1.5);
}

@media only screen and (max-width: 719px) {
    .custom-row {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (min-width: 720px) and (max-width: 982px) {
    .card {
        position: relative;
        border-radius: 15px;
        height: 200px;
        width: 150px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        filter: grayscale(100%);
        margin: 15px;
    }
}


/* Misiune Viziune Valori ----------------------- */


.container-custom-mission {
    background: black;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    display: flex;
    padding: 80px;
}

.image-container {
    height: 80px;
    width: 80px;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 30px;
    top: 30px;
    transition: transform 1s ease;
    border-radius: 50%
}
.section-card:hover .image-container {
    /* transform: translate(0, 30px); */
    transform: scale(1.2);
}

.section-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.section-card{
    background-color: hsl(220, 6%, 10%);
    padding: 120px 30px 30px;
    position: relative;
    z-index: 1;
}
.section-card:nth-child(1){
    --color: #FFC105;
}
.section-card:nth-child(2){
    --color: #FFC105;
}
.section-card:nth-child(3){
    --color: #FFC105;
}
.section-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color);
    z-index: -1;
    clip-path: circle(40px at 70px 70px);
    transition: clip-path 1s ease;
}
.section-card:hover::before{
    clip-path: circle(100%);
    background-color: #FFC105;
}
.section-card h2{
    font-size: 26px;
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    line-height: 1.3;
}
.section-card p{
    color: hsl(0, 0%, 85%);
    line-height: 1.5;
}
.section-card a{
    display: inline-block;
    text-transform: capitalize;
    color: hsl(0, 0%, 100%);
    margin-top: 20px;
    font-weight: 500;
}
.section-card a,
.section-card h2,
.section-card p{
    transition: color 1s ease;
}
.section-card:hover a,
.section-card:hover h2,
.section-card:hover p{
    color: hsl(0, 0%, 0%);
}
@media(max-width:991px){
    .section-cards{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:575px){
    .section-cards{
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Meet director ------------------ */

.container-meet {
    background-color: rgba(0, 0, 0, 0.3);

    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    display: flex;
}

.card-meet {
    display: flex;
    align-items: center;
    max-width: 1100px;
    padding: 50px 30px 50px 20px;
    background: hsl(220, 6%, 10%);
    border-radius: 24px;
    margin: 100px;
  }
  
  .card-meet img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    margin-left: -80px;
    margin-right: 30px;
    box-shadow: 0 60px 40px rgba(0, 0, 0 / 8%);
  }
  
  .card-meet h3 {
    color: hsl(0, 0%, 100%);
  }

  .card-meet h2 {
    color: hsl(0, 0%, 100%);
  }
  
  .card-meet p {
    color: hsl(0, 0%, 100%);
  }
/* ------ */
  .card-meet button {
    border: 0;
    background: #FFC105;
    color: black;
    font-family: inherit;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
  }

  .card-meet button:hover {
    background: black;
    color: white;
  }
  
  @media (max-width: 740px) {
    .container-meet {
        padding: 50px;
    }
    .card-meet {
      flex-direction: column;
      text-align: center;
      margin: 0;
      padding-left: 30px;
      padding-right: 30px;
      width: 100%;
    }
  
    .card-meet img {
      margin: 0px 0 30px 0;
      width: 100%;
      max-width: 400px;
    }
  }

  @media (max-width: 480px) {
    .container-meet {
        padding: 30px;
    }
    .card-meet {
      flex-direction: column;
      text-align: center;
      margin: 0;
      padding-left: 15px;
      padding-right: 15px;
      width: 100%;
    }
  
    .card-meet img {
      margin: 0px 0 30px 0;
      width: 100%;
      max-width: 400px;
    }
  }

  /* Custom Dropdown ------------------ */

  .container-dropdown {
    background-color: #0C0C0C;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
    display: flex;
    padding: 80px;
    
}

.tabs-container {
    width: 900px;
    display: flex;
    padding: 10px;
    border-radius: 50px;
    background-color: #FFC105;
}

.tab-content-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
    transition: all 0.25s ease-in-out;
    padding: 0 50px;
    
}

.tab-content h2 {
    color: black;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.tab-content {
    color: black;
    padding: 50px;
    overflow-x: auto;
    transition: all 0.25s ease-in-out;
}

.tab-content img {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-right: 50px;
    gap: 0px;
    width: 600px;
}

.tabs a {
    position: relative;
    display: flex;
    text-decoration: none !important;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    border-radius: 20px;
    justify-content: start;
    padding: 5px 20px;
    align-items: center;
    gap: 0px;
    color: #000;
    user-select: none;
    border: 1px solid transparent;
    transition: all 0.25s ease-in-out;
}

.tabs a img {
    height: 200px;
    width: 200px;
}

.tabs .active,
.tabs a:hover {
    outline: none;
    background-color: #000;
    color: #fff;
    border: 1px solid #FFC105;
}

.tabs a svg {
    stroke: #000;
}

.tabs .active svg {
    stroke: #fff;
}

.tabs a:hover svg {
    stroke: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media screen and (min-width: 720px) and (max-width: 920px) {
    .container-dropdown {
        padding: 30px;
    }
    .tabs {
        width: 50%;
    }
}

@media screen and (max-width: 720px) {
    .container-dropdown {
        padding: 5%;
    }
    .tabs-container {
        padding: 5px;  
        flex-wrap: wrap;
        width: 100%;
    }
    .tabs-content {
        padding: 5px;
    }
    .tab-content-wrapper {
        padding: 0 10px;
    }
}