.form__btn{
	max-width:initial;
}
.social{
	display:flex;
	align-items:center;
	gap:12px;
	z-index:100;
	margin: 0 24px 0 auto 
}
.social__item{
	width:32px;
	height:32px;
	flex-shrink: 0;
	display:flex;
	align-items:center;
	justify-content:center
}
@media (min-width: 61.99875em) {
	.header__logo{
		order:1
	}
	.header__social{
		order:3;
		margin: 0
	}
	.header__menu {
		order:2
	}
}
.header .logo{
	max-width:140px
}
.form__input.wpcf7-not-valid{
	border-bottom: 1px solid red;
}

.not-found {
    padding: 60px 0 60px 0;
    text-align: center;
}
  
.not-found .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.not-found .title {
    max-width: 726px;
}
.not-found .text {
    max-width: 900px;
}
  
.not-found img {
    width: 100%;
    max-width: 750px;
}
.not-found .btn {
    max-width: 320px;
}
  
.not-found .page__container {
    max-width: 56.5625rem;
}

.wpcf7-spinner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	margin: 0 !important;
}
.form.submitting::before{
	content:'';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.3;
	z-index: 10;
	border-radius: 8px 8px 22px 22px;
}
.wpcf7-not-valid-tip {
	position: absolute;
	left: 0;
	font-size: 14px;
	color: red;
}
.wpcf7-response-output{
	display: none !important;
}


.policy{
    padding: 0 0 100px 0;
}
.policy .container {
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.policy .fop {
    max-width: 404px;
}
.policy .fop h3 {
    text-align: left;
}
.policy p {
    text-align: justify;
    font-size: 16px;
}
.policy p:not(:last-child){
    margin-bottom: 12px;
}


.policy  h1 p {
    text-align: center;
}
.policy h1,
.policy h2 {
    font-family: 'Gilroy';
    font-weight: bold;
    margin-bottom: 18px;
}
.policy h1 {
    text-align: center;
}
.policy h2 {
    text-align: left;
}
.policy .right p {
    text-align: right;
}
.policy .list{
    margin-bottom: 18px;
}
.policy .list li {
    position: relative;
    font-size: 16px;
}
.policy .list li:not(:last-child){
    margin-bottom: 12px;
}
.policy .list li::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
}
@media (min-width: 1200px) {
    .policy .table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 32px;
        width: 100%;

    }

    .policy .table>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
}


/*
 * 
 * */
.social-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  z-index: 50;
}

.widget-toggle {
  background: #1AD079;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
  position: relative;
}

.social-icons {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 65px;
  animation: slide-up 0.3s ease-in-out;
}

.social-widget.open .social-icons {
  display: flex;
}

.social-icon {
  margin: 5px 0;
}

.social-big__item svg {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.social-big__item:hover svg {
  transform: scale(1.1);
}

@keyframes slide-up {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

