@import "../libs/bootstrap5/bootstrap-reboot.min.css";
@import "../libs/bootstrap5/bootstrap-grid.min.css";
@import "components/header.css";
@import "components/navbar.css";
@import "components/other.css";
@import "components/section.css";
@import "components/button.css";
@import "components/footer.css";
@import "components/bootstrap-skins.css";



.font1 {
	font-family: "Roboto", sans-serif !important;
}

.text-accent {
	color: #0D57DF !important;
}

.fz11 {
	font-size: 11px !important;
}

p {
	line-height: 24px;
	margin-bottom: 0;
}

h1 {
	font-family: 'Roboto', sans-serif !important;
	font-size: 80px;
	line-height: 64px;
	font-weight: 700;
	color: #fff;
}

h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: #0D57DF;
}

h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #202020;
}

h5 {
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #202020;
}

.data {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #0D57DF;
}


img {
	width: 100%;
}

a:hover {
	color: #0D57DF;
}

.link_unstyled {
	color: #fff;
	text-decoration: none;
}

body {
	font-family: 'Roboto', sans-serif;
	color: #202020;
	font-weight: 400;
	font-size: 16px;
	min-width: 280px;
	background-color: #fff;
	overflow-x: hidden;
}


/* POPup */

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.popup.is-active {
  display: flex;
  opacity: 1;
}


.popup__content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease-in-out;
}

.popup.is-active .popup__content {
  transform: translateY(0);
}

.popup__icon {
  width: 60px;
  height: 60px;
  background-color: #0d6efd;
  color: white;
  font-size: 32px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}

.popup__close:hover {
  color: #333;
}

/* Кнопка "Отлично" */

.popup__button {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    padding: 15px 30px;
    background-color: #202020;
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 30px;
}

.popup__button:hover {
  background-color: #444;
}

.popup__desc {
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    color: #202020;
}


/* Модальное окно */


.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.is-active {
    display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  font-family: Arial, sans-serif;
}


.modal-desc {
	margin-top: 50px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 0;
	color: #202020;
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    background-color: #0D57DF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;    
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    padding: 0;
    z-index: 101;
}

.modal-close-btn:hover {
    transform: scale(1.08);
}

.modal-close-btn:active {
    transform: scale(0.95);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 14px;
}

.modal-content input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #fcfcfc;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #00aa6c;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #008f5a;
}

.form__item {
    width: 100%;
    margin-bottom: 12px;
}

.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.disclaimer input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 3px 0 0 0;
    flex-shrink: 0;
    cursor: pointer;
}

.disclaimer label {
    font-size: 13px;
    line-height: 1.4;
    color: #666666;
    cursor: pointer;
    user-select: none;
    text-align: left;
}

.disclaimer-fos {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    justify-content: center;
}

.disclaimer-fos input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 3px 0 0 0;
    flex-shrink: 0;
    cursor: pointer;
}

.disclaimer-fos label {
    font-size: 13px;
    line-height: 1.4;
    color: #666666;
    cursor: pointer;
    user-select: none;
}

.mb-80 { 
    margin-bottom: 80px;
}

.mb-100 { 
    margin-bottom: 100px;
}



@media (max-width: 575.98px) {

h1 {
	font-size: 28px;
}

h2 {
	font-size: 28px;
}

}