/* Contacts Section */
.contacts-section {
	padding: 0;
	position: relative;
	z-index: 2;
}
.contacts-section__main-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -2px;
  margin-bottom: 40px;
  margin-top: 0px;
}
.contacts-grid {
  display: flex;
  padding: 22px 28px;
  gap: 10px;
  margin-bottom: 120px;
  border-radius: 40px;
  background: #FFF;
  box-shadow: 8px 5px 25.4px 0 rgba(0, 0, 0, 0.10);
}
.contacts-info-card {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}
.contacts-info__title {
  margin-top: 0px;
  color: #000;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 36px;
}
.contacts-info__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-grow: 1;
}
.contacts-info__item {
  color: #494949;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contacts-info__icon {
	color: #494949;
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
}
.contacts-info__socials {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}
.contacts-social-icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	transition: opacity 0.3s;
}
.contacts-social-icon:hover {
	opacity: 0.7;
}

.contacts-form-card {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 49px;
  background: #FFE174;
}
.contacts-form__title {
  color: #000;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-top: 0px;
  margin-bottom: 24px;
}
.contacts-form__text {
  margin-top: 0px;
  color: #494949;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 52px;
}
.contacts-form__input-group {
	margin-bottom: 24px;
}
.contacts-form__input {
  width: 100%;
  padding: 16px 24px !important;
  border: none !important;
  font-family: Montserrat;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 26px !important;
  background: #F6F3F3;
  outline: unset;
}
.contacts-form__input::placeholder {
	color: #A9A9A9;
}
.contacts-form__submit {
	display: inline-flex;
	padding: 16px 24px;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border-radius: 100px;
	background: #FFF8C7;
	color: #000;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	transition: background 0.3s;
	width: fit-content;
}
.contacts-form__submit:hover {
	background: #FFF;
}
.contacts-form__status {
	margin-top: 15px;
	font-size: 14px;
	color: #000;
}

.socials-bottom {
	text-align: center;
	padding-bottom: 120px;
}
.socials-bottom__title {
  margin-top: 0px;
  color: #000;
  text-align: center;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.socials-bottom__text {
  color: #494949;
  text-align: center;
  font-feature-settings: 'dlig' on;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  max-width: 880px;
  margin: 0 auto 40px auto;
}
.socials-bottom__icons-wrap {
	display: inline-flex;
	align-items: center;
	position: relative;
}
.socials-bottom__icons {
  border-radius: 100px;
  background: #FFF;
  box-shadow: 0 4px 12.9px 0 rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 22px 38px;
}
.socials-bottom__icon {
	color: #000;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
}
.socials-bottom__icon:hover {
	opacity: 0.7;
}
.socials-bottom__icons-wrap .calc-tooltip-wrap--cta {
  position: absolute;
  right: 15px;
  bottom: auto;
  left: auto;
  z-index: 5;
  top: -5px;
}
/* Tooltip adjustment */
.socials-bottom__icons-wrap .calc-tooltip-wrap:hover .calc-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
