@font-face {
    font-family: 'Square721BT';
    src: url('/fonts/SQR721B.TTF') format('TTF'), /* WOFF2 format */
         url('/fonts/SQR721B.ttf') format('woff');   /* WOFF format */
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Square721BTlight';
    src: url('/fonts/square721-bt-roman.ttf') format('tff'),/* WOFF2 format */
    url('/fonts/square721-bt-roman.ttf') format('woff');   /* WOFF format */

    font-weight: normal;
    font-style: normal;
  }
body{
    margin: 0;
    background-color: #11394e;
    color: #00e5fe;
    --color1:#00e5fe;
    --color2:#11394e;
    --color3:#009ec2;
    --color4:#fff;
    --color8:#666;

    /*font-family: Helvetica, arial, sans-serif;*/
    font-family: 'Square721BT', sans-serif;
    font-family: 'Square721BTlight', sans-serif;
    font-family: Helvetica, sans-serif;


}

h1{
    font-family: 'Square721BT', sans-serif;
    font-size: 48px;
    font-weight: bold;
}

h2 { 
    font-family: 'Square721BT', sans-serif;
    font-size: 24px;
    font-weight: bold;
}

h3{
    font-family: 'Square721BTlight', sans-serif;
    font-size: 24px;
    font-weight: lighter;
    font-family: 'Square721BT', sans-serif;

}

h4{
    margin-top: 20px;
    font-family: 'Square721BT', sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
}

h5{
    font-family: 'Square721BT', sans-serif;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}



button{
    
    font-family: 'Square721BT', sans-serif;
    font-size: 24px;
    font-weight: bold;

}
p {
    font-family: 'Square721BTlight', sans-serif;
    font-size: 14px;
}

a{
    font-family: 'Square721BTlight', sans-serif;
    color: var(--color1);
    text-decoration: none;
}
a:hover{
    color: var(--color4);
}

.img_border {
    border: 1px solid;
    border-color: var(--color1);
    margin-bottom: 20px;
}

video {
    max-width: 100%;
    height: auto;
    
  }

/* END of Styles */

.display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}


.current {
    color: red;
}


.inner{
    margin: 20px;
    
}

ul {
    list-style-type: none;
    padding-left: 0;
  }

ul li {
    margin-bottom: 10px;
    margin: 20px;
  }


.content {
    padding-top: 1rem;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 1rem;
}


.layout {
    display: flex;
    flex-direction: column;
    column-gap: 1rem;
    width: 100%;
}

/* Hero */

.hero {
    background-size: cover;
    position: relative;
    text-align: center;
    color: var(--color1);
    height: 500px;
    background:linear-gradient(0deg, rgba(17, 57, 78, 0.8), rgba(17, 57, 78, 0.8)), url('/img/hero.jpeg');

  }
  
.top-left {
padding-top: 200px ;
}  



/* END Hero */



.dropdown_1{
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-bottom: 20px;
    border-color: var(--color1);
}
.dropdown_1 h2{
    text-decoration: none;
    margin: 20px 20px 5px 20px;
    color: var(--color1);
}

.dropdown_1 a{
    text-decoration: none;
    color: var(--color1);
}

.dropdown_1 p {
    text-decoration: none;
    font-size: 18px;
    margin: 0px 20px;
    color: var(--color1);
}


.collapsible {
    background-color: var(--color2);
    color: var(--color1);
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 10px 20px ;
    width: 100%;
    text-align: center;
    outline: none;
    font-size: 18px;
    border-color: var(--color1);

}
  
.active, .collapsible:hover {
    background-color: var(--color2);
    font-weight: bold;
 }
  
.dropdown_2 {
    padding: 10px 20px ;
    display: none;
    overflow: hidden;
    background-color: var(--color2);
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-color: var(--color1);
}

.dropdown_2 p{
    font-family: Helvetica, sans-serif;
    font-size: 18px;
}

.dropdown_3 {
    padding: 10px 20px ;
    display: block;
    background-color: var(--color2);
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-color: var(--color1);

}

.section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 20px;
    max-width: 100%;
    margin: auto;
    column-gap: 32px;
  }

  .column-text {
    flex: 1;
    min-width: 300psx;
    padding: 0px, 20px;
  }

  .column-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .column-text p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .column-text button {
    padding: 10px 20px;
    background-color: var(--color3);
    border: none;
    color: var(--color4);
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
  }


  .column-text button:hover {
    background-color: var(--color2);
    border: 1px;
    border: solid;
    border-color: #00e5fe;
    border-radius: 5px;

  }

  .column-image {
    flex: 1;
    min-width: 300px;
  }

  .column-image img {
    width: 100%;
    height: auto;
  }

  .learn-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color1); /* Customize color and thickness */
    padding-bottom: 30px;      
  }
  
  .learn-more-button {
    padding: 12px 30px;
    background-color: var(--color1);
    border: none;
    color: var(--color2);
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .learn-more-button:hover {
    background-color: var(--color2);
    border: .5px;
    border: solid;
    border-color: var(--color1);
    border-radius: 5px;
    color: var(--color1);
  }

  .card {
    margin-top: 20px;
    background: var(--color2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--color2);
    border: solid 1px var(--color1);
    color: var(--color1);
  }

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0px 16px;
  }

  .tutorial-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .tutorial-section h2 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  
  .tutorial-section p {
    margin-bottom: 30px;
    color: var(--color4);
    font-size: 1.1rem;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


/* Navigation Tabs */
.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
    padding: 12px 20px;
}



.logo a{
    color: var(--color1);
    text-decoration: none;
}

.logo a:hover{
    color: var(--color4);
    transition: 0.5s; 
}


.logo img {
    width: 200px;
    height: auto;
}
.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: left;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    font-family: 'Square721BTlight', sans-serif;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color:var(--color4);
    transition: 0.15s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%) ;
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {
    display: none;
}


@media(max-width: 1076px){
    .menu{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 40%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }
    .menu li{
        margin-top: 40px;
        margin-left: 40px;
        padding-left: 0;
    }
    .menu li a {
        padding: 10px;
    }
    .open-menu , .close-menu{
        display: block;
    }
    #check:checked ~ .menu {
        right: 0;
    }
}

@media(max-width: 676px){
    .menu {
        width: 50%;
    }
    .menu li{
        margin-left: 8px;
    }
}
/* End Navigation Tabs */



@media screen and (min-width: 800px) {
    .inner{
        margin: 20px;
        display: grid;
        justify-content: center;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
    }
}




.copyright__text{
    margin-left: 20px;
    margin-right: 20px;
}


footer p{
    font-size: 14px;
}

#preloader{
    background: #11394e url('/img/loader.gif') no-repeat center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

footer {
    background-color: var(--color2);
    color: var(--color4);
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-right: none;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;

  }

  .footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
  }

  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
  }

  .footer-column p {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--color1);
    font-family: 'Square721BTlight', sans-serif;
  }