@media screen and (min-width: 769px) and (max-width: 1024px) {
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }

  /*Header-Section-Start*/
  header{
    position: relative;
    background-color: black;
    width: 100%;
    height: 35px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow-x: hidden;
  }

  header span{
    font-size: 1.5vw;
  }
  /*Header-Section-End*/

  /*Navigation-Section-Start*/
  nav{
    background-color: rgb(0, 0, 43);
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    position: sticky;
    top: 0px;
    z-index: 1;
  }

  .line1{
    display: none;
  }

  nav a{
    text-decoration: none;
    color: rgb(219, 219, 219);
  }

  nav ul{
    list-style: none;
  }

  .logo-ctn{
    margin-left: 2vw;
  }

  .logo-ctn a{
    display: flex;
    align-items: center;
  }

  .logo-img-ctn{
    background-color: white;
    border-radius: 7px;
  }

  .logo-img{
    background-image: url(/assets/logos/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 40px;
    height: 40px;
    display: block;
  }

  .name-ctn{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-left: 5px;
  }

  .name-ctn h1{
    line-height: 90%;
    font-size: larger;
  }

  .name-ctn span{
    font-size: 6px;
    font-weight: 5;
  }

  .sidebar-toggler{
    display: none;
  }

  .menu-ctn{
    display: block;
    background-color: unset;
    padding: 0;
    margin-right: 2vw;
    overflow: unset;
    position: static;
    width: unset;
    height: unset;
  }

  .menu-items{
    display: flex;
    flex-direction: row;
    gap: 1vw;
  }

  .menu-items > :first-child{
    margin: 0;
  }

  .menu-items > li{
    position: relative;
  }

  .menu-items > li > a{
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    height: 70px;
    align-items: center;
    font-weight: bold;
    font-size: 1.5vw;
  }

  .active-line{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(28, 28, 255);
    display: none;
  }

  .menu-items > li > a:hover{
    color: rgb(31, 31, 255);
  }

  .dd-ctn{
    width: max-content;
    background-color: rgb(0, 0, 43);
    display: none;
    position: absolute;
    overflow-x: hidden;
    justify-self: center;
    margin: -2px 0 0;
    z-index: 1;
  }

  #dd-2{
    justify-self: unset;
    margin: -2px 0 0;
  }

  #dd-5{
    justify-self: center;
    margin: -2px 200px 0 0;
  }

  .dd-items{
    padding: 40px;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
  }

  .sub-item1{
    width: 300px;
  }

  .dd-items img{
    width: 250px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .sub-item h4{
    color: blue;
    margin-bottom: 10px;
  }

  .sub-item2{
    text-align: center;
  }

  .dd-ctn a{
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }

  .dd-ctn a:hover{
    background-color: rgb(31, 31, 255);
    color: white;
  }

  .dd-line-desk{
    background-color: rgb(255, 255, 255);
    height: 2px;
    width: 100%;
    display: block;
  }

  .search{
    width: unset;
  }

  .search > a{
    display: flex !important;
  }

  .search-dd{
    position: absolute;
    right: 0;
    margin-right: 0;
    width: max-content;
    display: none;
  }

  .search-dd form{
    padding: 20px;
  }

  .search-dd div{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
  }

  .search-dd p{
    margin-bottom: 5px;
  }

  .search-dd svg{
    position: absolute;
    left: 5px;
  }

  .search-dd input{
    width: 100%;
    height: 40px;
    border-radius: 5px 0 0 5px;
    padding: 5px 5px 5px 30px;
    border: none;
    outline: none;
    font-size: 16px;
  }

  .search-dd button{
    height: 40px;
    background-color: blue;
    color: white;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
  }
  /*Navigation-Section-End*/


  /***Main-Section-start***/

    /*** /style/home/desk-small.css ***/
    
  /***Main-Section-End***/


  /*Footer-Section-Start*/
  footer{
    width: 100%;
    padding: 40px 0 0;
    background-color: rgb(43, 43, 43);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: hidden;
  }

  /*Main-Footer-Section-Start*/
  .main-foot{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    padding: 0 20px 0;
  }

  .foot-ident{
    width: 430px;
  }

  .foot-ident a{
    text-decoration: none;
    color: white;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .foot-logo-ctn{
    background-color: white;
    border-radius: 7px;
    width: 60px;
    height: 60px;
  }

  .foot-logo-img{
    background-image: url(/assets/logos/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
    display: block;
  }

  .foot-name-ctn{
    margin-left: 5px;
  }

  .foot-name-ctn .name{
    line-height: 90%;
    font-size: 30px;
    font-weight: bold;
  }

  .foot-name-ctn span{
    font-size: 9.5px;
  }

  .foot-ident p{
    margin-top: 10px;
    color: white;
  }

  .social{
    margin: 20px 0 0;
  }

  .social ul{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    list-style: none;
    margin-top: 10px;
  }

  .social a{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    border-radius: 100%;
    display: block;
  }

  .facebook{
    background-image: url(/assets/logos/social/facebook.png);
  }

  .instagram{
    background-image: url(/assets/logos/social/instagram.JPG);
  }

  .threads{
    background-image: url(/assets/logos/social/threads.JPG);
  }

  .youtube{
    background-image: url(/assets/logos/social/youtube.PNG);
  }

  .tiktok{
    background-image: url(/assets/logos/social/tiktok.JPG);
  }

  .x{
    background-image: url(/assets/logos/social/x.JPG);
  }

  .linkedin{
    background-image: url(/assets/logos/social/linkedin.PNG);
  }

  .snapchat{
    background-image: url(/assets/logos/social/snapchat.JPG);
  }

  .whatsapp{
    background-image: url(/assets/logos/social/whatsapp.jpg);
  }

  .telegram{
    background-image: url(/assets/logos/social/telegram.JPG);
  }

  .github{
    background-image: url(/assets/logos/social/github.PNG);
    background-color: black;
  }

  .hr1{
    background-color: rgba(110, 110, 110, 0.815);
    height: 1px;
    width: 100%;
    align-self: center;
  }

  .flex2{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 16vw;
  }

  .foot-item-ctn a{
    text-decoration: none;
    color: rgb(216, 216, 216);
  }

  .foot-item-ctn a:hover{
    text-decoration: blue underline;
    color: white;
  }

  .foot-item-ctn h3, .social h3{
    margin-bottom: 10px;
    color: rgb(0, 0, 212);
  }

  .foot-item-ctn li{
    list-style: none;
    margin: 10px 0;
  }
  /*Main-Footer-Section-End*/


  /*News-Letter-Setion-Start*/
  .hr2{
    background-color: rgba(110, 110, 110, 0.815);
    height: 1px;
    width: calc(100% - 40px);
    align-self: center;
    position: relative;
  }

  .news-letter{
    padding: 0 20px 0px;
    position: relative;
    align-self: center;
    color: rgb(216, 216, 216);
  }

  .news-letter a:hover{
    text-decoration: underline;
  }

  .news-letter h3{
    color: blue;
    margin-bottom: unset !important;
  }

  .news-letter p{
    margin-bottom: 20px;
    color: white !important;
  }

  .input-ctn{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
  }

  .input-ctn input{
    color: black;
    border-radius: 5px 0 0 5px;
    padding: 10px;
    outline-style: none;
    border-style: none;
    width: 100%;
    font-size: 16px;
  }

  /*.grecaptcha-badge {*/
  /*  visibility: hidden;*/
  /*}*/

  .news-letter button{
    border-radius: 0 5px 5px 0;
    border: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding: 15px;
  }

  .message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    text-align: center;
  }
  .newslettersuccess {
    background: #e6f4ea;
    color: #0d652d;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: block !important;
  }
  .newslettererror {
    background: #fce8e6;
    color: #c5221f;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: block !important;
  }

  .consent{
    font-size: small;
    display: block;
  }

  .consent a{
    text-decoration: none;
    color: blue;
  }
  /*News-Letter-Section-End*/


  /*legal-Section-Start*/
  .legal{
    background-color: black;
    color: rgb(216, 216, 216);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px 0;
    padding: 1vw 2vw 2vw;
    width: 100vw;
  }

  .legal > ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 0.7vw;
    list-style: none;
  }

  .legal li > a, .division{
    color: rgb(216, 216, 216);
    font-size: 1vw;
    display: block;
    text-decoration: none;
  }

  .legal a:hover{
    color: white;
    text-decoration: underline;
  }

  .copyright, .copyright > a{
    font-size: 1vw;
    color: rgb(216, 216, 216);
    text-decoration: none;
  }
  /*legal-Section-End*/
  /*Footer-Section-End*/

  #scroll-top {
    width: 50px;
    height: 50px; 
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    border: 2px solid white;
    outline: none;
    background-color: rgb(11, 11, 131);
    border-radius: 100%;
  }
  
  #scroll-top:hover {
    background-color: rgba(0, 0, 255, 0.521);
  }

  .wechat-modal{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    
  }

  .wechat-modal div{
    padding: 20px;
    border-radius: 20px;
    background-color: rgb(60, 60, 138);
  }

  .active{
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
}