@font-face {
    font-family: "Plain Light";
    src: url(./fonts/plain-regular-webfont.ttf);
}

@font-face {
    font-family: "Plain Light";
    src: url(./fonts/plain-light-webfont.ttf);
}

@font-face {
    font-family: "silk serif";
    src: url(./fonts/silkserif-regularitalic-webfont.ttf);
}

@font-face {
    font-family: "silk serif";
    src: url(./fonts/silkserif-lightitalic-webfont.ttf);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Plain Light";
    color: #000;
    
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    overflow-x: hidden;
}

.mousefollower {
    border: 2px solid #fff;
    background-color: rgb(255, 255, 255);
    scale: 2;
    mix-blend-mode: difference;
}

#loader {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #FFF;
    padding: 25vh 10vw;
}

.line {
    height: fit-content;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3vw;
    color: #000;
  }

  #line1-part1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    color: #000;
  }

  #line1-part1 h5, #line1-part1 h6 {
    font-size: 3vw;
    font-weight: 100;
    font-family: 'silk serif';
    color: #000;
  }

  #line1-part1 h5 {
    width: 5vw;
    text-align: right;
    color: #000;
  }

  .line h2 {
    font-size: 6.5vw;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
  }

  .line h3 {
    font-size: 5vw;
    text-transform: uppercase;
    font-weight: 900;
    opacity: 0;
    animation: loaderAnime 2s infinite;
    color: #000;
  }

  @keyframes loaderAnime {
    0%, 48% {
      font-family: "plain light";
      text-stroke: 1px #000;
      color: #000;
      font-weight: 500;
      opacity: 1;
    }

    50%, 100% {
      font-family: 'silk serif';
      text-stroke: 1px #000;
      color: transparent;
      font-weight: 500;
      opacity: 0;
    }
  }

  #main {
    position: relative;
    z-index: 99;
  }

  #page1 {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 100;
  }

  nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
  }

  #nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
    color: #000;
  }

  .nav-links {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 0 10px;
  }

  .nav-links a:hover {
    color: #f00;
  }

  #mbres {
    visibility: hidden;
  }

  .hero {
    width: 72%;
    margin-left: 27%;
    height: fit-content;
    overflow-y: hidden;
    display: flex;
    align-items: center;
  }

  .hero:nth-child(2) {
    margin-top: 18vh;
  }

  .hero h2 {
    font-size: 7.2vw;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 7.2vw;
    position: relative;
  }

  #hero1::before {
    content: "01";
    position: absolute;
    font-size: 3vw;
    font-weight: 100;
    font-family: "silk serif";
    left: 20%;
    top: 29%;
  }

  .hero h2 {
    font-size: 7.2vw;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 7.2vw;
    border-bottom: 0.5vw solid #fff;
  }

  .hero h2:hover {
    text-stroke: 2px #fff;
    color: transparent;
    font-weight: 500;
    border-bottom: 0.5vw solid transparent;
  }




#main {
    position: relative;
   
    z-index: 99;
}

#page1 {
    height: 22vh;
    width: 100%;
    /* background-color: #151515; */
    position: relative;
    z-index: 100;
}




nav {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    justify-content: space-between;
}
#nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
    color: #000;
}


.nav-links {
    display: flex;
   
}
.nav-links li {
    list-style: none;
}
.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 200;
  
    letter-spacing: 1px;
    padding: 0 10px;
}
.nav-links a:hover {
    color: rgb(255, 0, 0);
}
#mbres {
    visibility: hidden;
}




  
  .container {
   max-width: 1200px;
    margin: 0 auto;
    flex: 2;
    
  }
  
  .blog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .blog {
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 0 calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
  }
  
  .blog-image {
    position: relative;
  }
  
  .blog-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
  }
  
  .blog-image img:hover {
    transform: scale(1.05);
  }
  
  .blog-image .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .blog-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
  }
  
  .blog-content p {
    flex-grow: 1;
    color: #000;
    margin-bottom: 20px;
  }
  
  .blog-content a {
    align-self: flex-start;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .blog-content a:hover {
    background-color: #DEDE;
  }
  
  

#footer {
    height: 85vh;
    width: 100%;
    /* background-color: red; */
    position: relative;
    padding-left: 28vw;
    margin-top: 9vw;
    padding-right: 2vw;
}

#footer h2 {
    font-size: 7.2vw;
    text-transform: uppercase;
    /* background-color: blue; */
    position: relative;
}

#footer-text {
    position: relative;
    /* background-color: red; */
}

#footer-text h2 {
    font-size: 7.2vw;
    text-transform: uppercase;
    position: absolute;
    top: -10%;
    font-weight: 500;
    margin: -10vw;
    left: 9vw;
    font-family: "silk serif";
}

#footer-text h3 span {
    font-family: "silk serif";
    opacity: 0;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

#footer-text::before {
    content: "04";
    position: absolute;
    font-size: 3vw;
    font-weight: 100;
    font-family: "silk serif";
    left: -13%;
    top: 6%;
}

.underline {
    height: 1px;
    width: 100%;
    background-color: #000;
    margin: 3vw 0;
}

#footer-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 15vw;
    padding-top: 4vw;
    margin-bottom: 6vw;
    gap: 2rem;
}

#footer-div h6 {
    font-size: 1.2vw;
    margin-bottom: 1.5vw;
    font-weight: 700;
}

.box {
    width: 12rem;
    height: 100%
    
    

}

.box a{
    text-decoration: none;
}   

#footer-div h5 {
   
    font-weight: 500;
    /* margin: 0.1vh 0; */
}

#footer  h5 {
    font-weight: 500;
    font-size: 20px;
}

._canvas_container {
    z-index: 999999 !important;
    pointer-events: none;
}

#flag {
    height: 10vw;
    position: absolute;
    top: 0;
    opacity: 0;

    left: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

#hero3 {
    /* background-color: red; */
    z-index: 999;
    position: relative;
}


.pagination {
    display: inline-block;
    margin-left: 40rem;
  }
  
  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
   
  }

@media screen and (max-width: 600px){
    .nav {
        background-color: #000;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        height: 500px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px;
        width: 100%;
        overflow: hidden;
    }
    #mbres {
        visibility: visible;
        background-color: transparent;
        border: none;
        margin-left: 70px;
    }
    .nav-links {
        position: absolute;
        top: 12.5rem;
        left: 0;
        right: 0;
        background-color: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.5s ease;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .nav-links a {
        font-size: 24px;
        color: #fff;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        flex: 1;
        margin-bottom: 20VH;
      }
      
      .blog-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
      }
      
      .blog {
        background-color: #FFF;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        flex: 1 0 calc(33.33% - 20px);
        display: flex;
        flex-direction: column;
      }
      
      .blog-image {
        position: relative;
      }
      
      .blog-image img {
        width: 100%;
        height: auto;
        transition: transform 0.3s;
      }
      
      .blog-image img:hover {
        transform: scale(1.05);
      }
      
      .blog-image .date {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 14px;
      }
      
      .blog-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }
      
      .blog-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #000;
      }
      
      .blog-content p {
        flex-grow: 1;
        color: #000;
        margin-bottom: 20px;
      }
      
      .blog-content a {
        align-self: flex-start;
        background-color: #000;
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        transition: background-color 0.3s;
      }
      
      .blog-content a:hover {
        background-color: #DEDE;
      }

    #footer {
        height: 108vh;
        width: 100%;
        /* background-color: red; */
        margin-top: 20vw;
        position: relative;
        padding:    5vw 4vw;
        padding-bottom: 5vw;
    }

    
   


    .underline {
        height: 1px;
        width: 100%;
        background-color: #000;
        margin: 8vw 0;
    }

    #footer-div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-right: 15vw;
        padding-top: 4vw;
        margin-bottom: 6vw;
    }

    #footer-div h6 {
        font-size: 5vw;
        margin-bottom: 3.5vw;
        font-weight: 700;
    }

    .box {
        width: 100%;
        margin-bottom: 5vw;
    }

    #footer-div h5 {
        font-size: 5.4vw;
        margin-bottom: 1.5vw;
        font-weight: 500;
        /* margin: 0.1vh 0; */
    }

    #footer > h5 {
        font-weight: 500;
        margin-bottom: 4vw;
        font-size: 4vw;
    }
}












