.footer-items {
  background-color: #fff;
  color: #333;
  position: relative;
  padding: 10rem 3rem 7.5rem;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-items__top {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-items__logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-items__logo-group img {
  height: 48px;
  width: auto;
}

.footer-items__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-items__text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0070b8;
  margin: 0;
}

.footer-items__text span {
  font-size: 0.9rem;
  color: #666;
}

.footer-items__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-items__social img {
  width: 22px;
  height: 22px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.footer-items__social a:hover img {
  opacity: 1;
}

.footer-items__nav {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-items__nav ul {
  display: flex;
  justify-content:flex-start;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
	margin: 25px 55px 0;
}
.footer-items__nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease, border-bottom 0.2s ease;
}

.footer-items__nav a:hover {
}

.footer-items__cta {
  text-align: center;
}

.footer-items__btn {
	display: flex;
	width: max-content;
	flex-direction: column;
	align-items: center;
	background: #3C97D3;
	color: #fff;
	text-decoration: none;
	padding: 7px 50px;
	border-radius: 154px;
	transition: background 0.3s ease, transform 0.2s ease;
}

.footer-items__btn:hover {
}

.footer-items__btn-line--top {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  margin: 0;
  font-weight: ;
}

.footer-items__btn-line--bottom {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-align: center;
  letter-spacing: 2px;
  margin: 0;
}

.footer-items__background {
  position: absolute;
  top: 50px;
  right: -25px;
  pointer-events: none;
  transform-origin: center;
  transform: rotate(13deg);
}
.footer-items .footer-items__social a[href="#mail"]{
  display: none;
}
.footer-items__social.fixer {
	flex-direction: column;
	position: fixed;
	top: 50%;
  transform: translateY(-50%);
	right: 0;
	background: #fff;
	padding: 15px 5px;
	box-shadow: 2px 3px 3px 3px rgba(0,0,0,0.3);
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
    gap: 5px;
    z-index: 100;
}
.footer-items__social.fixer a svg{
  transform: scale(0.7);
}

@media (max-width: 768px) {
  .footer-items__social.fixer{
    display: none;
  }  
  .footer-items {
    padding: 2rem 1rem;
    flex-direction: column-reverse;
    display: flex;
  }
  .footer-items__top {
    flex-direction: column;
    text-align: center;
  }
  .footer-items__nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-items__background{
    display: none;
  }
  .footer-items__nav ul {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 23px;
    margin-top: 0;
  }

  .footer-items__top {
    flex-direction: column-reverse;
  }
  .footer-items__logo-group{
    display: none;
  }
  .logo-svg {
    display: flex !important;
    justify-content: center;
    margin: 50px 0 20px;
  }

  .footer-items__btn-line--top {
    color: #7F846D;
  }
  .footer-items__btn-line--bottom {
    color: #7F846D;
  }
  .footer-items__btn {
    background: transparent;
  }
  .footer-items__cta {
    text-align: center;
    padding: 15px 0;
  }

  .footer-items__nav a {
    font-size: 24px;
  }

}
@media screen and (max-width:1144px){
  .footer-items__background{
    display: none;
  }
  .footer-items {
    background-color: #fff;
    color: #333;
    position: relative;
    padding: 30px;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    flex-direction: column-reverse;
    display: flex;
    gap: 20px;
  }

  .footer-items__nav ul, .footer-items__top {
    justify-content: center;
    gap: 50px;
  }
}