/* styles.css */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #212529;
}

header {
  background: #343a40;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

.logo em {
  font-style: italic;
  color: #00bcd4;
}

.language-switch button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 0.5rem;
}

main {
  padding: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-top: 2rem;
  color: #007bff;
}

ul, ol {
  padding-left: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header h1 {
    font-size: 1.5rem;
  }

  main {
    padding: 1rem;
  }
}

/********footer***********************************/

ul.widget_menu li a:before {
  content: "";
  display: inline-block;
  position: relative;
  height: 20px;
  width: 20px;
  background: url(/assets/img/arrow_footer.svg);
  background-size: contain !important;
  top: 2px;
  margin-right: 8px;
}

footer {
  padding: 80px 0!important;
}
#scrolltop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 30;
  opacity: 0;
  transition: all .3s ease;
}
#scrolltop.vis{
  opacity: 1;
  visibility: unset;
  transition: all .3s ease;
}
#scrolltop a{
  width: 60px;
  height: 60px;
  font-weight: normal;
  line-height: 60px;
  text-align: center;
  background-color:#0d232e;
  font-size: 38px;
  color: rgba(255, 255, 255, 1);
  transition: all .3s ease;
  border-radius: 10px;
  text-decoration: none;
  display:block;
}

#scrolltop a:hover {
background:var(--green);
}


.copyright svg {
  height: 25px;
  width: fit-content;
}



/*copy***/
.footer_copy_wrapper {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  color: var(--text-light-2);
  width:100%;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

.footer_copy {
padding:20px 0;
background:none;
}

.footer_copy_wrapper p,
.footer_copy_wrapper a {
  font-size: 15px;
  color: var(--text-light-2);
  font-weight:500;
}

.footer_copy_wrapper a:hover {
  color: var(--green);
}
/******widgets****/


footer{
  padding-bottom:0!important;
  border-radius: 0!important;
}

a.big_mail {
  text-decoration: none;
  color: var(--white-text);
  font-size: 36px;
  font-family: 'Safiro';
}

p.widget_headline {
  color: var(--text-light-2);
}
ul.widget_menu {
  padding: 0;
}
ul.widget_menu li {
list-style: none;
}


ul.widget_menu li a{
text-decoration: none;
color:var(--white-text);
font-size:20px;
}

ul.widget_menu li a:hover{
color: var(--green);
  }
