@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary_color_1: #630000;
    --primary_color_2: #77251c;
    --primary_color_3: #8b4034;
    --primary_color_4: #9e5a4e;
    --primary_color_5: #b07469;
    --primary_color_6: #c18f85;
    --primary_color_7: #d2aaa2;
    --primary_color_8: #e1c6c0;
    --primary_color_9: #f1e2df;
    --primary_color_10: white;
    --primary_color_11: #372249;
    --primary_color_12: #2c2a5b;
    --primary_color_13: #21336d;
    --primary_color_14: #163b80;
    --primary_color_15: #0b4492;
    --primary_color_16: #004ca4;
    --font_family_1: 'Poppins', sans-serif;
    --font_family_2: 'Raleway', sans-serif;
    --font_family_3: 'Roboto Slab', serif;
    --font_family_4: 'Bitter', serif;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #630000;
    cursor: pointer;
    border-radius: 5px; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #163b80; 
}
html {
    box-sizing: border-box;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}
*, *::after, *::before {
    box-sizing: inherit;
}
*{
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Poppins', sans-serif;
}
a {
    color: black;
    text-decoration: none;
    transition: 200ms ease;
}
.button-56 {
    align-items: center;
    background-color: var(--primary_color_1);
    border: 2px solid #630000;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--font_family_2);
    height: 40px;
    justify-content: center;
    /* line-height: 24px; */
    max-width: 100%;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: manipulation;
  }
  
  .button-56:after {
    background-color: #000;
    content: "";
    display: block;
    height: 38px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -1px;
    transform: translate(0, 0);
    transition: transform .2s ease-out;
    z-index: -1;
  }
  
  .button-56:hover:after {
    transform: translate(10px, 10px);
  }
  
  .button-56:active {
    background-color: #ffdeda;
    outline: 0;
  }
  
  .button-56:hover {
    outline: 0;
  }
  
  /* @media (min-width: 768px) {
    .button-56 {
      padding: 0 40px;
    }
  } */

.page_loader {
    /* // border: 2px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999999999999;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
}
#google_translate_element{
    height: 35px;
}
#google_translate_element ::-webkit-scrollbar {
    width: 5px;
  }
.skiptranslate{
    height: 35px;
}
#google_translate_element select{
    background: #fff;
    color:var(--primary_color_1);
    font-weight: 600;
    border: none;
    border-radius:3px;
    font-family: var(--font_family_1);
    padding:6px 8px;
    margin-bottom:0 !important;
}
/*google translate link | logo */

.goog-logo-link{
    display:none!important;
}
.goog-te-gadget{
  color:transparent!important;
}
  
/* google translate banner-frame */
  
.goog-te-banner-frame{
  display:none !important;
}
  
#goog-gt-tt, .goog-te-balloon-frame{
  display: none !important;
}
.goog-text-highlight {
   background:none !important; box-shadow: none !important;
}
.sidebar {
    height: 100vh;
    width:0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    /* display: flex; */
    flex-direction: column;
    /* gap: 1rem; */
    flex-wrap: nowrap;
    background-color: var(--primary_color_1);
    overflow-y: scroll;
    transition: 1s ease-out;
    box-shadow: 3px 3px 5px black;
}
.sidebar-top-nav{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    background-color: var(--primary_color_1);
    padding: 1rem 0;
    color: white;
    box-shadow: 0 0 20px rgb(0 0 0 / 35%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 41;
    /* border-bottom: 2px solid black; */
}
.sidebar-menu{
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 50vw;
}
  
.sidebar a {
    padding: 0px 8px 8px 20px;
    /* border-bottom: 1px solid black; */
    text-decoration: none;
    text-transform: capitalize;
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    font-weight: 700;
    color: white;
    display: block;
    /* margin-top: 2rem; */
    transition: 0.3s;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}
.sidebar::-webkit-scrollbar{
    display: none;
} 
.sidebar a:hover {
    color:var(--primary_color_2) ;
}
.openbtn{
    display: none;
    cursor: pointer;
    background-color:transparent;
    color: var(--primary_color_2);
    font-size:clamp(1.8rem, 6vw, 2.5rem);
    border: none;
}
.closebtn {
    font-size: 2.5em;
    position: absolute;
    z-index: 10000;
    top: -5px;
    border: none;
    color: var(--primary_color_2);
    padding: 10px 20px;
    background-color: transparent;
    right: 0px;
}
.wapp_button {
  background-color: #fff !important;
    left: 0.5em;
    border: 1.5px solid green! important;
  color: green;
  padding: 16px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(1em, 1.5vw, 1.8em);
  z-index: 99999999999;
  margin: 4px 2px;
  position: fixed !important;
  bottom: 1.8em;
  cursor: pointer;
  border-radius: 100%;
} 
.wapp_button i {
    font-size: clamp(1.2em, 1.5vw, 2em) !important;
}

@media (max-width:950px) {
    .top-nav{
        display: none;
    }
}

.nav_header {
    display: none;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 10px;
    justify-content: flex-end;
    max-width: 100%;
    top: 0;
    box-shadow: none;
    background-color: #f5f5f5;
    position: fixed;
    height: 60px!important;
    z-index: 999999999999999999999999;
}
.header img {
    margin-right: 1rem;
}
#sidebarMenu {
    position: fixed;
    left: 0;
    height: 100%;
    top: 0;
    display: none;
    overflow-y: scroll;
    bottom: 0;
    z-index: 999999999999999999999999999999999999999999999999;
    width: 70%;
    font-size: clamp(0.7em,4vw, 0.9em);
    margin-top: 60px;
    transform: translateX(-100%);
    transition: transform 250ms ease-in-out;
    background: #f5f5f5;
}
.sidebarMenuInner{
    margin:0 0 3.5em 0;
    padding:1em 0;
    border-top: 1px solid #c8d0e2;
}
.sidebarMenuLogo {
    padding: 20px;
}
.sidebarMenuInner li{
    list-style: none;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    display: flex;
    margin: 1em 0;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #c8d0e2;
}
.sidebarMenuInner li i{
    color: var(--primary_color_3) !important;
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgba(104, 104, 104, 0.5);
}
.sidebarMenuInner li a{
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-left: 0.4em;
    text-decoration: none;
}
.sidebarMenuInfo {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1em;
    padding: 20px;
}
.sidebarMenuInfo .translate {
    display: flex;
    align-items: baseline;
    padding: 0 !important;
    gap: 0.5em;
}
.sidebarMenuInfo .server {
    display: flex;
    gap: 0.2em;
    font-size: 0.9em;
    align-items: center;
}
.sidebarMenuInfo .serv_cont {
    display: flex;
    gap: 0.3em;
    padding: 0;
    align-items: center;
    font-size: 0.8em;
}
.sidebarMenuInfo .fa-solid {
    margin-right: 0.3em;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99999999999999999999999999;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    display: none;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}
@media (max-width: 850px) {
    .nav_header {
        display: flex;
    }
    .sidebarIconToggle {
        display: block;
    }
    #sidebarMenu {
        display: block;
    }
    .bg_screen {
        display: none;
    }
}
/* END OF NAV SECTION ////////////////////////////// */
.top_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em 2em;
    position: relative;
    /* border: 2px solid red; */
    z-index: 40;
    font-family: 'Raleway', sans-serif !important;
    top: 0 !important;
    background-color: rgba(0, 0, 0, 0.602);
}
.top_nav_social {
    display: flex;
    align-items: center;
    gap: 2em;
    justify-content: space-between;
}
.top_nav_social i {
    font-size: clamp(0.6em, 1.5vw, 0.8em);
    color: white;
}
.top_nav_contact {
    display: flex;
    align-items: center;
    gap: 3em;
    justify-content: space-between;
}
.top_nav_contact_group {
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: white;
    letter-spacing: 1px;
}
.top_nav_contact i {
    font-size: clamp(0.6em, 1.5vw, 0.8em);
}
.top_nav_contact p {
    font-weight: 600;
    cursor: default;
    font-size: clamp(0.6em, 1.5vw, 0.8em);
}
.nav_bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.5em 2em;
    gap: 3em;
    position: fixed;
    font-family: 'Raleway', sans-serif !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 1000;
    background-color: transparent;
    color: #000;
    align-items: center;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.609), rgba(0, 0, 0, 0.312), rgba(0, 0, 0, 0.015)); */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.609), rgba(255, 255, 255, 0.312), rgba(255, 255, 255, 0.015));
}
.logo {
    display: flex;
    cursor: pointer;
    gap: 0.5em;
    padding: 0.5em 0;
    align-items: center;
    justify-content: start;
    /* border: 2px solid red; */
    width: 30%;
}
.logo img {
    /* border: 2px solid red; */
    padding: 0 !important;
    margin: 0;
    width: clamp(50%, 20vw, 70%);
}
.nav_bar_links {
    display: flex;
    gap: clamp(2em, 6vw, 6em);
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: clamp(0.6em, 1.2vw, 1em);
}
.active {
    color: var(--primary_color_1); 
}
.nav_bar_links a{
    position: relative;
    transition: 100ms ease-in-out;
}
.nav_bar_links a::after{
    position: absolute;
    content: " ";
    background-color:var(--primary_color_1);
    width: 0%;
    height: 2px;
    bottom: -.3rem;
    left: 0;
    transition: 100ms ease-in-out;
}
.nav_bar_links a:hover::after{
    width: 100%;
}
.nav_bar_links a:hover {
    color: var(--primary_color_1) !important;
}
.nav_bar_links .dropdown:hover i, .nav_bar_links .dropdown:hover .dropdown a {
    color: var(--primary_color_1);
}
.dropdown {
    position: relative;
    display: flex;
    gap: 0.2em;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* color: rgb(211, 211, 211); */
}
.dropdown i{
    transition: 200ms ease-in-out;
}
.dropdown:hover i{
    transform: rotate(180deg);
    color: var(--primary_color_1) !important;
}
.dropdown:hover .dropdownBtn {
    color: var(--primary_color_1) !important;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    white-space: nowrap;
    flex-direction: column-reverse !important;
    gap: 1em;
    top: 1.2em;
    min-width: 150px;
    box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.1);
    padding: 1em 16px;
    z-index: 1;
}
.dropdown-content a {
    color: #000 !important;
}
.dropdown:hover .dropdown-content {
    display: flex;
    align-items: center;
}
.nav_button_group {
    display: flex;
    justify-content: end;
    gap: 2em;
    font-size: clamp(0.6em, 1.5vw, 1em);
    font-weight: 600;
    align-items: center;
    text-transform: capitalize;
}
.nav_button_group .button-56 {
    padding: 0.3em 0.4em !important;
    font-size: clamp(0.5em, 1vw, 0.8em);
    text-transform: uppercase;
    font-weight: 600;
}
.nav_button_group a {
    position: relative;
}
.nav_button_group .login_btn::after{
    position: absolute;
    content: " ";
    background-color:var(--primary_color_1);
    width: 0%;
    height: 2px;
    bottom: -.3rem;
    left: 0;
    transition: 100ms ease-in-out;
}
.login_btn:hover {
    color: var(--primary_color_1) !important;
}
.nav_button_group .login_btn:hover::after {
    width: 100%;
}
.navbar-fixed-top.scrolled {
    background: #fff !important;
    color: #000 !important;
    transition: background-color 800ms linear;
}
.navbar-fixed-top.scrolled a {
    color:#000 !important;
}
.navbar-fixed-top.scrolled .button-56 {
    color: #fff !important;
}
.navbar-fixed-top.scrolled .dropdown .dropdownBtn {
    color:#000 !important;
}
.navbar-fixed-top.scrolled i {
    color: #000 !important;
}

/* @media (max-width:740px) {
    .logo img {
        margin: -1em 0;
    }
    .logo p {
        display: none;
    }
} */
@media (max-width:850px) {
    .top_nav, .nav_bar{
        display: none;
    }
    .page_loader img {
        width: 40%;
    }
}






















/* BEGGINING OF INVEST //////////////////////// */
.invest-background{
    /* background-color: var(--primary_color_4); */
    background: url(../img/max-kleinen-5xBp8dAx2m4-unsplash.jpg) no-repeat scroll center/cover;
    /* background-color: white; */
    padding: 4.5rem 1rem;
    margin-top: 4em;
}
.invest{
    max-width: 70rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.invest__desc{
    padding-left: 2px;
    display: flex;
    gap: .6rem;
    align-items: center;
}
.invest__text{
    font-size: 0.75rem;
    text-transform: capitalize;
    color: var(--primary_color_1);
    color: white;
}
.invest__icon{
    font-size: 0.7rem;
    color: white;
}
.invest__link{
    text-decoration: none;
    color: var(--primary_color_1);
    color: white;
}
.invest__link:hover{
    color: white;
    color: var(--primary_color_3);
}
.invest__head{
    font-size:clamp(1.8rem, 5vw, 2.375rem);
    text-transform: capitalize;
    font-family: var(--font-3-poppins);
    position: relative;
    color: var(--primary_color_1);
    color: white;
}
@media (max-width:950px) {
    .invest-background{
        margin-top: 3rem;
    }
}
@media (max-width:500px) {
    .invest-background{
        padding: 2rem 1rem;
    }
    .invest{
        gap: .5rem;
    }
    
}
/* END OF INVEST ///////////////////// */

/* BEGGINING OF CGP PLANS /////////////////////// */

.cgp-plan--background{
    background-color: var(--primary_color_4);
    background-color: white;
    padding: 4rem 1rem;
    display:flex;
    flex-direction: column;
    gap: 5rem;
}
.cgp-plan__head{
    position: relative;
    font-size:clamp(2rem, 3vw, 2.688rem);
    text-transform: uppercase;
    font-family: var(--font-3-poppins);
    color: var(--primary_color_1);
    /* max-width: fit-content; */
    align-self: center;
    text-align: center;

}
.cgp-plan--container{
    display: grid;
    grid-template-areas: 'box1 box2' 'box3 box4';
    gap: 2rem;
}
.cgp-plan-box1{
    grid-area: box1;
}
.cgp-plan-box2{
    grid-area: box2;
}
.cgp-plan-box3{
    grid-area: box3;
}
.cgp-plan-box4{
    grid-area: box4;
}
.plan{
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    background-color: white;
    padding-bottom: 2rem;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 20%);
}
.plan-box1{
    grid-area: box1;
    background-color: black;
    background-color: var(--primary_color_1);
    color: white;
    font-family: var(--font-3-poppins);
    text-transform: uppercase;
    padding: 2rem 0;
    text-align: center;
    font-size:clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
}
.plan-box2{
    grid-area: box2;
    padding-left:2rem ;
}
.plan-box3{
    grid-area: box3;
    padding-left: 2rem;
}
.plan-box4{
    grid-area: box4;
    padding-left: 2rem;
}
.plan-box5{
    grid-area: box5;
    padding-left: 2rem;
}
.plan-box6{
    grid-area: box6;
    padding-left: 2rem;
    /* justify-self: center; */
}
.plan-box7{
    grid-area: box7;
    display: flex;
    flex-direction: column;
    /* justify-self: center; */
    align-items: center;
}
.plan__text1{
    font-size:clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: .8rem;
    text-transform: capitalize;
    font-weight: 600;
    display:list-item;
}
.plan__text1::marker{
    content: '—';
    content: '-';
    padding-right: 10px;
}
.plan__text2{
    color:var(--primary_color_1);
    font-size:clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 600;
}
.plan__text3{
    font-size:clamp(0.75rem, 2.5vw, 0.9rem);
}
.plan__text4{
    font-size:clamp(0.7rem, 2vw, 0.8rem);
    color: var(--primary_color_1);
    color: black;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}
.plan__btn{
    font-size:clamp(0.8rem, 2vw, 1rem);
    padding: 0.8rem 1.8rem;
    background-color: var(--primary_color_1);
    color: white;
    cursor: pointer;
    border: none;
    transition: 300ms ease-in-out;
    margin-bottom: .5rem;
}
.plan__btn:hover{
    background-color: black;
}
@media (max-width:1030px) {
    .cgp-plan--container{
        gap: 1rem;
    }
}
@media (max-width:700px) {
    .cgp-plan--container{
        grid-template-areas: 'box1' 'box2' 'box3' 'box4';
    }
    .cgp-plan--background{
        gap: 2.5rem;
        padding: 2.5rem 1rem 1rem;
    }
    .cgp-plan__head::after{
        width: 30%;
        right: -33%;
    }
    .cgp-plan__head::before{
        width: 30%;
        left: -33%;
        
    }
    
}
/* END OF CGP PLANS /////////////////////////// */

/* BEGGINING OF MINING //////////////////////// */

.mining-background{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 5em;
    padding: 0 1rem 3rem;
}
.mining-desc{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}
.mining-text{
    text-align: center;
    line-height: 1.6;
    font-size:clamp(0.85rem, 2.5vw, 1.1rem);
}
.mining-head{
    font-size:clamp(2rem, 3vw, 2.688rem);
}
@media (max-width:500px) {
    .mining-head::after{
        width: 20%;
        right: -22%;
    }
    .mining-head::before{
        width: 20%;
        left: -22%;
        
    }.mining-head{
        margin-top: 4em;
    }
    
}

/* END OF MINING ////////////////////////////// */



/* BEGGINING OF FOOTER ///////////////////// */

.footer-section{
    padding: 3rem 1rem;
    background-color: #fff;
}
.footer{
    max-width: 70rem;
    margin: 0 auto;
    color: black;
    display: grid;
    grid-template-areas: 'box1 box3 box4';
    grid-auto-rows: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    gap: 2rem;
}
.footer-box1{
    grid-area: box1;
}
.footer-box2{
    grid-area: box2;
}
.footer-box3{
    grid-area: box3;
}
.footer-box4{
    grid-area: box4;
}
.footer__head{
    font-size:clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--primary_color_1);
    border-bottom: 1px solid silver;
    font-family: var(--font-3-poppins);
    padding-bottom: 6px;
}
.footer-about{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-about__img1{
    width:80%;
    height: auto;
}
.footer-about__img2{
    width: 70%;
    height: auto;
    filter: saturate(0);
}
.footer-about__text{
    font-size:clamp(0.7rem, 2.5vw, 0.813rem);
}
.footer-news{
    display:flex ;
    flex-direction: column;
    gap: 2rem;
}
.footer-news__desc{
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer-news__link{
    font-size:clamp(0.74rem, 2vw, 0.9rem );
    font-weight: 600;
    font-family: var(--font-3-poppins);
    color: var(--primary_color_1);
    text-decoration: none;
    transition: 200ms ease-in-out;
}
.footer-news__link:hover{
    color: var(--primary_color_3);
}
.footer-news__text{
    font-size:clamp(0.65rem, 2vw, 0.8rem);
    color: var(--primary_color_1);
}
.footer__icon{
    color: var(--primary_color_3);
    margin-right: 7px;
}
.footer-touch{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-touch__text{
    font-size:clamp(0.7rem, 2.5vw, 0.86rem);
    color: rgb(95, 95, 95);
    /* max-width: 30ch; */
}
.footer-location{
    display: flex;
}
.footer-touch__text2{
    font-size:clamp(0.7rem, 2.5vw, 0.813rem);
}
.footer-touch__icon{
    margin-right: 1rem;
    color: var(--primary_color_3);
    font-size:clamp(0.8rem, 2.5vw, 1rem);
}
.footer-link{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer__menu{
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
.footer-link__menu{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-link__menu a{
    text-decoration: none;
}
.footer-link__list{
    font-size: 0.93rem;
    color: rgba(255,255,255,.6);
    color: var(--primary_color_1);
    list-style: none;
    transition: 200ms ease-in-out;
    cursor: pointer;
}
.footer-link__list:hover{
    color: var(--primary_color_3);
    text-decoration: underline;

}
@media (max-width:1042px) {
    .footer__menu{
        flex-direction: column;
    }
}
@media (max-width:960px) {
    .footer{
        grid-template-areas: 'box1 box2' 'box3 box4';
        grid-auto-columns: 1fr 1fr;
        grid-auto-rows: 1fr auto;
    }
    .footer-about__img1{
        width: 40%;
    }
    .footer-about__img2{
        width: 50%;
    }
    .footer__menu{
        flex-direction: row;
    }
}
@media (max-width:500px) {
    .footer-section{
        padding:0 1rem 1rem;
    }
    .footer{
        grid-template-areas:  'box2' 'box3' 'box4' 'box1';
        grid-auto-rows: auto ;
        grid-auto-columns: auto;
    }
    .footer-box1{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer__head {
        width: 100%;
    }
    .footer-about__img2 {
        filter: brightness(50%);
    }
    .footer-box2{
        display: none;
    }
}
/* END OF FOOTER ////////////////////////// */

/* BEGGINING OF COPYRIGHT ////////////////// */

.copyright{
    display: none;
    justify-content: space-around;
    padding: 0rem 1rem 1rem;
    background-color: var(--primary_color_4);
    align-items: center;
}
.copyright__text{
    font-size: clamp(0.7rem, 2.5vw, .9rem);
    color: var(--primary_color_1);
}
.copyright__link{
    color: inherit;
    text-decoration: none;
    transition: 200ms ease-in-out;
}
.copyright__link:hover{
    text-decoration: underline;
}
.copyright__icons{
    display: flex;
    gap: .6rem;
}
.copyright__icon{
    width: 1.6rem;
    height: 1.6rem;
    color: var(--primary_color_1);
    background-color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size:clamp(.7rem, 2.5vw, 1rem);
}
@media (max-width:650px) {
    .copyright{
        flex-direction: column;
        gap: .6rem;
    }
}


/* END OF COPYRIGHT ///////////////////////// */



/* time and day //////////// */
.serv_cont {
    display: flex;
    color: black;
    gap: 0.5em;
    margin: 0;
    text-transform: capitalize;
}
.top-nav__text span {
    margin: 0;
}
.server {
    display: flex;
    gap: 0.5em;
    align-items: center;
}