* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
}

@font-face {
    font-family: 'Work Sans', sans-serif;
    src: url("../fonts/Raleway-Medium.ttf");
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--colory-primary);
    color: var(--colory-white);
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

:root {
    --colory-primary: #181818;
    --colory-yellow:#FFEC00;
    --colory-white:#FFFFFF;
    --transition: all 400ms ease;

    --container-width-lg: 1200px;
    --container-width-md: 86%;
    --container-width-sm: 92%;
}
h1{
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
}
h2{
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}
h3{
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
}
h4{
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--colory-white);
  }
  
  img {
    display: block;
    width: 100%;
    object-fit: cover;
  }

.containers{
    max-width: var(--container-width-lg);
    width: 100%;
    margin:0px auto;
}
.general-container h3{
    padding:2.5rem 0rem;
    text-align: center;
}

nav{
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    background:var(--colory-primary);
}

.nav__container{
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__menu{
    display: flex;
    align-items: center;
    gap:3rem;
}
.nav__menu .ul_li{
    position: relative;
    padding: 20px 0px;
}
.nav__menu li a{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--colory-white);
    display: inline-block;
} 
.nav__menu li a:hover{
    color: var(--colory-yellow);
    transition: var(--transition);
} 
.nav__right{
    display: flex;
    align-items: center;
    gap:1.5rem !important;
}
.nav__container button{
    background: transparent;
    border: none;
    color: var(--colory-white);
    font-size: 1.3rem;
    cursor: pointer;
}
#open_menu{
    display: none;
}
#close_menu{
    display: none;
}
.mobil-logo{
    display: none;
}
.right_language {
    position: relative;
}
 .right_language a{
    color: var(--colory-white);
    font-size: 0.75rem;
    cursor: pointer;
}
.lang {
    border: 1px solid var(--colory-white);
    border-radius: 3px;
    padding: 12px 6px ;
}
.lang span {
    padding: 0px 3px;
}
.right_language .dropdown-language {
    position: absolute;
    top: 50px;
    right: 0px;
    z-index: 999;
    padding: 10px 8px;
    border-radius: 3px;
    box-shadow: 0px 3px 5px 0px #0000000D;
    background: var(--colory-white);
    display: none;
    flex-direction: column;
}
.right_language .dropdown-language a {
    padding: 6px 6px;
    border: none;
    color: var(--colory-primary);
}
.right_language .dropdown-language a:hover {
    background: var(--colory-primary);
    padding: 6px 6px;
    color: var(--colory-white);
    border-radius: 3px;
    transition: var(--transition);
}
.active_link{
    color:var(--colory-yellow) !important;
}

.nav__menu .ul_li a span{
    margin-left:2px;
}
.dropdown{
    width:240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0.4rem !important;
    position: absolute;
    top:60px;
    left:0px;
    padding: 1rem 0rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.dropdown li{
    width: 100%;
}
.dropdown li a{
    width: 100%;
    color:var(--colory-primary) !important;
    padding: 5px 15px;
    font-size: 15px;
    line-height: 20px;
}
.dropdown li a:hover{
    background: var(--colory-primary);
    color: var(--colory-white) !important;
    transition: var(--transition);
}

.nav__menu .ul_li:hover .dropdown{
    opacity: 1;
    visibility: visible;
}

 /* ----btn---- */
 .btn {
    padding: 10px 35px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    transition: var(--transition);
    display: inline-block;
    color: var(--colory-primary);
    border: 2px solid var(--colory-yellow);
    border-radius: 30px;
    cursor: pointer;
  }
  .btn span{
    margin:0rem 0.5rem;
  }
  .btn__primary {
    background: var(--colory-yellow);
  }
  .btn__primary2 {
    border: 2px solid var(--colory-yellow);
    background: var(--colory-primary);
    color: var(--colory-white);
  }
  .btn__primary:hover {
    border: 2px solid var(--colory-yellow);
    background: var(--colory-primary);
    color: var(--colory-white);
  }
  .btn__primary2:hover {
    background: var(--colory-yellow);
    color: var(--colory-primary);
  }
  .more{
    padding:2rem 0rem ;
    text-align: center;
  }
 

  /* ---footer--- */
footer{
    margin-top: 4rem;
    border-top: 1px solid var(--colory-yellow);
}
footer .foot{
    padding:3.5rem 0rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    align-items:center;
}
 .social_icons{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:10px
  }
   .social_icons a{
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border:1px solid var(--colory-yellow);
    color:#fff;
}
.social_icons a:hover{
   background: var(--colory-yellow);
   color:var(--colory-primary);
   transition: var(--transition);
}
.foot .middle_copyright {
    text-align: center;
}
.foot .middle_copyright a{
    color:var(--colory-white);
}
.foot .foot-call{
    display: flex;
    justify-content: flex-end;
}
.foot-call .btn{
    display: flex;
    align-items: center;
    justify-content: center;
}


@media only screen and (max-width: 1440px) {
    .containers {
      max-width: var(--container-width-md);
    }
    .nav__container ul{
        gap:3rem;
    }
  }


  @media only screen and (max-width: 1280px) {
    h1{
        font-size: 36px;
        line-height: 44px;
    }
    .nav__container ul{
        gap:2.5rem;
    }
    .nav__container ul li a{
        font-size: 15px;
    } 
    .right_language .lang {
        font-size: 0.7rem;
    }
   
  }


  
  @media only screen and (max-width: 1024px) {
    .nav__container{
       height: 80px;
    }
    .nav__container ul{
        gap:2rem;
    }
    .general-container h3{
        padding:1.5rem 0rem;
    }
    #open_menu {
        display: block;
    }
    .liLogo{
        display: none;
    }
    .mobil-logo{
        display: block;
        width: 130px;
    }
    #close_menu{
      display: block;
      font-size: 25px;
      position: absolute;
      top: 30px;
      right: 40px;
      cursor: pointer;
      background: transparent;
    }
    .nav__menu{
        flex-direction: column;
        max-width: 450px;
        width: 100%;
        left: 0px;
        top: 0px;
        position: fixed; 
        z-index: 9999;
        height: 100vh;
        background: var(--colory-primary);
        box-shadow: 0px 3px 5px 0px #0000000D;
        padding: 70px 0px 80px 40px;
        transform: translateX(-100%);
        transition: 0.5s ease-in;
        align-items: flex-start;
        overflow: auto;
    }
    .nav__menu li {
        width: 89%;
    }
    .nav__menu .ul_li {
         padding: 0px 0px;
    }
    .nav__menu li a {
        display: flex;
        justify-content: space-between;
    }
    .dropdown{
        display: none;
        padding: 1rem 0rem 0rem 1rem;
        position: relative;
        top: 0px;
        right: 0px;
        padding: 1rem 0rem 0rem 1rem;
        border-radius: 0px;
        box-shadow: none;
        background: transparent;
        transition: none;
        opacity: 1;
        visibility: visible;
    }
    .dropdown li a {
        color: var(--colory-white) !important;
        line-height:24px;
    }
    /* Active Class */
    .nav__active {
        transform: translateX(0%);
    }
  /* ---footer--- */
    footer .foot{
        grid-template-columns: repeat(2,1fr);
    }
    .foot .foot-call{
        justify-content: flex-start;
    }
 
  }


  @media only screen and (max-width: 612px) {
    h1{
        font-size: 24px;
        line-height: 32px;
    }
    h2{
        font-size: 20px;
        line-height: 26px;
    }
    h3{
        font-size: 18px;
        line-height: 24px;
    }
    h4{
        font-size: 14px;
        line-height: 22px;
    }
    .containers {
      max-width: var(--container-width-sm);
    }
    .btn {
        padding: 10px 25px;
        font-size: 14px;
        line-height: 20px;
      }
      
     /* ---footer--- */
     footer{
        margin-top: 2rem;
    }
     footer .foot{
        grid-template-columns: 1fr;
        place-items: center;
        text-align: center;
    }
  }