    /* 
 for all page 
 */ 
    @font-face
    {
        font-family: 'DemiBold';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ DemiBold.ttf);

    }
    @font-face
    {
        font-family: 'Light';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ Light.ttf);
    }

    @font-face
    {
        font-family: 'Medium';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ Medium.ttf);
    }

    @font-face
    {
        font-family: 'MediumItalic';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ Condensed\ Medium\ Italic.ttf);
    }

    @font-face
    {
        font-family: 'Regular';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ Regular.ttf);
    }
    @font-face
    {
        font-family: 'ExtraLight';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ ExtraLight.ttf);
        
    }
    @font-face
    {
        font-family: 'Thin';
        src:url(../Font/TT\ Hoves\ Pro\ Trial\ Thin.ttf);
    }

a
{
    text-decoration: none;  
}


 *{
     margin: 0;
     padding: 0;

     box-sizing: border-box;
     scroll-behavior: smooth;
     
 }
/*
   scrollbar
*/

    *::-webkit-scrollbar
    {
        width: 10px;
        
    }

    *::-webkit-scrollbar-thumb
    {
        background: #ffffff;
        border-radius: 10px;
        border: 2px solid #2eac49;
        
    }
    *::-webkit-scrollbar-thumb:hover
    {
        background: #ffffff;
        
    }

    *::-webkit-scrollbar-track
    {
        background: #0C2726;
    }

 
 body
 {
     background-color: #0C2726;
     animation: fade 1s ease-in-out forwards;
     opacity: 0;
 }
 
 @keyframes fade
 {
     to{opacity: 1;}
 }
  /* 
  **********************************************
   ************  about   header ****************
   **********************************************
  */ 

  .header
  {
    display: flex;
    justify-content: center;
  }
 header
 {

     font-family: 'Regular';
     font-weight: 100;
     background-color: rgb(255, 255, 255);
     width: 93.333%;
     display: inline-block;
     margin: 20px  5px;
     border-radius: 10px;
     position: fixed;
     display: flex;
     z-index: 9999;
     justify-content: space-between;
     align-items: center;
     padding: 2px 2px ;
     margin-right: 10px;
     animation: fade 1s ease-in-out forwards;
     animation-delay: 0.5s;
     opacity: 0;
 }
 
 
 .logo{
     text-decoration: none;
     color: #ffffff;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     border-radius: 10px;
     padding: 0px 50px;
     background-color:#0C2726;
 }
 

 
 .navigation ul 
 {    
    list-style: none;
    margin-right: 160px;
 }
 .navigation ul li 
 {
    display: inline-block;
     
 }


 .navigation ul li a
 {
    font-family: 'Regular';
     color: #0C2726;
     text-decoration: none;
     font-size: 24px;
     padding-left: 49px;
     transition: 0.7s ease;
 }
 
 .navigation ul li a:hover
 {
     color: #2eac49;
     font-size: 26px;
 }


     /* 
     ***************************
     drop menu  
 */ 


 .navigation ul li ul.drop 
 {
    list-style: none;
    background-color: #fff;
    width: 340px;
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
    margin-top: 0px ;
    margin-left: 50px;
    padding: 15px  0px; 
    position: absolute;
    text-align: left;
    z-index: 999;
    display: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
 }


 .navigation ul li ul.drop::-webkit-scrollbar-thumb
 {
     background: #ffffff;
     border-radius: 10px;
     border: 2px solid #2eac49;
     
 }
 .navigation ul li ul.drop::-webkit-scrollbar-thumb:hover
 {
     background: #ffffff;
     
 }

 .navigation ul li ul.drop::-webkit-scrollbar-track
 {
     background: #ffffff;
 }
 

 .navigation ul li:hover ul.drop
 {
    display:block;
 }

 .navigation ul li ul.drop li
 {
   display: block;
   padding: 20px 0px;
   padding-left: 30px;
   
 }
 .navigation ul li ul.drop li a
 {
    font-size: 17px;
    padding-left: 0px;
    transition: 0.7s ease;
 }

 .navigation ul li ul.drop li a:hover
 {
     color: #2eac49;
     font-size: 19px;
 }
 

      /* 
    *****************************************
 */ 
 
 .toggel-nav
 {
     color: #0C2726;
     font-size: 1.6em;
     cursor: pointer;
     display: none;
     margin-right: 25px;
 }

 .box-search
 {
     height: 30px;
     display: flex;
     cursor: pointer;
     padding: 2px 20px;
     border-radius: 3px;
     align-items: center;
 
 }
 
 .box-search input{
     width: 0;
     outline: none;
     border: none;
     font-weight: 500;
     transition: 0.7s;
     background: transparent;
 }
 
 .box-search a .fas{
     color: #0C2726;
     font-size: 18px;
 }
 
 .box-search:hover input
 {
     width: 100px;
 }
 
 .dropdown-menu
 {
     display: none;
     position: absolute;
     right: 0px;
     top: 70px;
     height: 0;
     width: 500px ;
     background-color: #ffffffd2;
     color: #0C2726;
     border-radius: 6px;
     overflow: hidden;
 }
 
 .dropdown-menu.open
 {
     height: auto;
 }
 
 .dropdown-menu ul li  
 {   
     font-size: 1.7em;
     padding: 15px 50px;
 }
 .dropdown-menu ul li  a
 {
     color: #0C2726;
 }
 
 
 .dropdown-menu div
 {   
     margin-bottom: 10px;
     height: 50px;
     display: flex;
     cursor: pointer;
     padding: 15px 50px;
     border-radius: 3px;
     align-items: center;
     margin-bottom: 30px;
 }
 
 .dropdown-menu div input{
     width: 0;
     outline: none;
     border: none;
     font-weight: 500;
     font-size: 1.4em;
     transition: 0.7s;
     background: transparent;
 }
 
 .dropdown-menu div a .fas{
     color: #0C2726;
     font-size: 30px;
 }
 
 .dropdown-menu div:hover input
 {
     width: 100px;
 }

footer
{
    font-family: 'Regular';
    margin-top: 0px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;

}

.footer-card
{
    background-color: #0C2726;
    border-top: 1px solid #4CDC6B;
    border-left: 1px solid #4CDC6B;
    border-right: 1px solid #4CDC6B;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 1431px;
    margin: 0px 5px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    color: #fff;
}


.row
{
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col
{
    flex-basis: 27%;
    padding: 10px;
}

.logo-footer
{
    margin-top: 20px;
    margin-bottom: 30px;
}

.margin-footer-logo
{
    
    margin-top: 56px;
    margin-bottom: 6px;
    width: fit-content;
    position: relative;
    font-family: 'DemiBold';
    font-size: 1.3em;
}

.col-2
{
    flex-basis: 5%;
    padding: 20px 0px;
}

.col-3
{
    flex-basis: 14%;
    padding: 20px 0px;
}

.margin-footer-linkes
{
    margin-top: 145px;
    margin-bottom: 6px;
    width: fit-content;
    position: relative;
    font-family: 'DemiBold';
    font-size: 1.3em;
}

.col-2 ul li 
{
    list-style: none;
    margin-bottom: 12px;

}

.col-2 ul li  a
{
    text-decoration: none;
    color: #fff;
    transition: 0.7s ease;

}

.col-2 ul li a:hover
{
    color: #2eac49;
    font-size:  1.03em;
    padding-left: 5px;
}

.col-3 p{
    font-size: 1.05em;
    margin-bottom: 12px;
}

.col-4
{
    flex-basis: 25%;
    padding: 20px 0px;
}

.margin-footer-Newsletter
{
    margin-top: 110px;
    margin-bottom: 20px;
    width: fit-content;
    position: relative;
    font-family: 'DemiBold';
    font-size: 1.4em;
}
.col-4 p{

    font-weight: 350;
    font-size: 1.1em;
    margin-bottom: 5px;
}
.col-4 form{
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 3px;
    padding-left: 20px;
    border-radius: 6px;
}

.col-4 form input
{
    width: 100%;
    background: transparent;
    color:#0C2726;
    border : 0;
    outline: none;
    margin-right: 50px;
}

.col-4 form button {
    
    background-color: #0C2726;
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
}

.col-4 form button i {
    
    color: #fff;
    outline: none;
    cursor: pointer;
    padding: 15px 30px; 
    border-radius: 6px;
    transition: 0.7s ease;
}

.col-4 form button i:hover{
    
    color: #4CDC6B;
}

.social-icons a
{
    text-decoration: none;
    color: #fff;
}

.social-icons .fa-brands 
{
    margin-top: 10px;
    margin-right: 15px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    
    transition: 0.7s ease;

}

.social-icons .fa-brands:hover
{

    color: #2eac49;
    font-size: 32px;
}

hr
{   
    display: flex;
    width: 70%;
    border: 0;
    border-bottom: 1px solid #4CDC6B;
    margin: 20px auto;
}

.copyright
{

    text-align: center; 
    margin-bottom: 10px;
}
.copyright a{

    text-decoration: none;
    color: #4CDC6B;
}
@media(max-width:1810px)
{
    .navigation ul li a
    {
        font-size: 17px;
        padding-left: 39px;
    }
    .navigation ul li a:hover
    {
        font-size: 19px;
    }

    .navigation ul 
    {
        margin-right: 80px;
    }
}

@media(max-width:1439px)
{
    /* 
  *********************************
  ************  header  ***********
  *********************************
 */ 
    header
    {
            margin: 20px 80px;
    }
    
   .logo
    {
        padding: 0px 20px;
    }

    .navigation ul 
    {
        margin-right: 80px;
    }

    .navigation ul li a
    {
        font-size: 13px;
        padding-left: 30px;
    }
    .navigation ul li a:hover
    {
        color: #2eac49;
        font-size: 15px;
    }

    .navigation 
    {
        margin-right: 10px;
    }
  
    .footer-card
    {
        width: 1120px;
    }

}


@media(max-width:1119px)
{

    .logo img
    {
        width: 140px ;
        
    }
    header
    {
        margin: 20px 50px;
    }

    .navigation 
    {
        display: none;
    }
    .box-search
    {   
        display: none;
    }   
    

    .toggel-nav
    {
        display: block;
    }

    

    .dropdown-menu
    {
        display: block;
        width: 300px ;
    }

    .dropdown-menu div input
    {
        width: 80px;
    }
    .dropdown-menu div:hover input
    {
        width: 130px;
    }   

    .footer-card
    {
        width: 770px;

    }

    
}


@media (max-width: 779px)
{

    header
    {
        margin: 20px 30px;

    }

    .logo
    {
        padding: 0px 20px;
    }
    
    .logo img
    {
        width: 120px ;
        
    }

    .dropdown-menu
    { 
        top:50px ;
        width: 200px ;
    }
    .dropdown-menu ul
    {
        padding-top: 20px;
    }
    .dropdown-menu ul li  
    {
        font-size: 1.5em;
        padding: 10px 20px;
    }

    .dropdown-menu div
    {
        margin-bottom: 5px;
        padding: 15px 20px;
    }

    .dropdown-menu div input
    {
        font-size: 1em;
        font-weight: 300;
    }
    .dropdown-menu div a .fas
    {
        font-size: 20px;
    }

    .dropdown-menu div input
    {
        width: 42px;
    }
    .dropdown-menu div:hover input
    {
        width: 100px;
    }   


    body
    {
        font-size: 12px;
    }
     h2
    {
        font-size: 1em;
    }
     h3
    {
        font-size: 1.4em;
    }

    footer
    {
        bottom: unset;
    }
    .footer-card
    {
        width: 570px;
    }
    .col
    {
        flex-basis: 100%;
    }
    .col-2
    {
        flex-basis: 100%;
        margin-left: 10px;
    }
    .col-3
    {
        flex-basis: 100%;
        margin-left: 10px;
    }
    .col-4
    {
        flex-basis: 100%;
        margin-left: 10px;
    }
    .margin-footer-linkes
    {
        margin-top: 30px;
        
    }
    .margin-footer-Newsletter
    {
        margin-top: 30px;
        
    }

    .col-4 form{
        width: 280px;
    }
    .copyright
    {
        margin-bottom: 30px;
    }
}


@media (max-width: 579px)
{

    header
    {
        margin: 10px 15px;
    }
    .footer-card
    {
        width: 350px;
    }

}