.university {
  display: flex;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed lightgray;
}
@media (max-width: 1200px) {
  .university {
    flex-direction: column;
  }
}
.university .left {
  min-width: 205px;
  height: 192px;
  background-size: cover;
  width: -moz-fit-content;
  width: fit-content;
}
.university .right {
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .university .right {
    margin-left: 0;
  }
}
.university .right .title {
  margin: 0;
  color: #0e74dc;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
}
.university .right p {
  margin: 10px 0;
}
@media (max-width: 1200px) {
  .university .right .flex {
    flex-direction: column;
    align-items: baseline;
  }
}
.university .right .flex div:nth-child(1) {
  width: 52%;
}
@media (max-width: 1200px) {
  .university .right .flex div:nth-child(1) {
    width: 100%;
  }
}
.university .right .flex p {
  font-size: 12px;
  color: #0e74dc;
  margin: 4px 0;
}

.phone-button-cell {
  position: fixed;
  bottom: 300px;
  right: 45px;
  height: 60px;
  width: 60px;
  z-index: 1000000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
}
.phone-button-cell .phone-tube {
  position: absolute;
  opacity: 0.6;
  background: url("../img/envelope.svg") center center/75% no-repeat #31dc41;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 100%;
}
.phone-button-cell .phone-tube-border {
  position: absolute;
  opacity: 0;
  width: 54px;
  height: 54px;
  background-color: transparent;
  border-style: solid;
  border-width: 7px;
  border-color: #fff;
  border-radius: 100%;
  transform: scale(1.6);
  transition: 1s ease;
}

footer {
  padding: 20px;
  background-color: #222;
  border-top: 6px solid #ccc;
  color: #ccc;
  display: flex;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  width: 1240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-wrap: nowrap;
  }
}
footer .container .header {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}
footer .container a, footer .container [data-href] {
  color: #ccc;
  display: block;
  transition: color 0.3s ease;
}
footer .container a:hover, footer .container [data-href]:hover {
  color: #fff;
}
footer .container a.email, footer .container [data-href].email {
  margin: 10px 0 5px;
}
footer .container a.rewards, footer .container [data-href].rewards {
  width: 149px;
  height: 60px;
  background: url(https://cac-edu.com.ua/assets/img/footer/leader-ru.svg) center center/cover;
}
footer .container .cols_1-3 {
  width: 750px;
  display: flex;
  justify-content: space-between;
  margin-right: 60px;
}
@media (max-width: 768px) {
  footer .container .cols_1-3 {
    margin-right: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .container .cols_1-3 .col_3 a {
  margin: 10px 0;
}
@media (max-width: 768px) {
  footer .container .cols_1-3 .col_3 {
    display: none;
  }
}
@media (max-width: 768px) {
  footer .container .cols_1-3 .col_2 {
    display: none;
  }
}
@media (max-width: 768px) {
  footer .container .cols_1-3 {
    flex-direction: column;
    align-items: center;
  }
}
footer .container .col_4 form {
  margin: 10px 0;
}
footer .container .col_4 form input {
  height: 35px;
  padding: 5px 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  color: black;
}
footer .container .col_4 form input::-moz-placeholder {
  color: black;
}
footer .container .col_4 form input::placeholder {
  color: black;
}
footer .container .col_4 form button {
  height: 35px;
  padding: 5px 10px;
  color: black;
  font-weight: bold;
}
footer .container .col_5 {
  width: 100%;
  display: flex;
  padding: 20px 0;
}
@media (max-width: 768px) {
  footer .container .col_5 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .container .phone_num {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 300;
  display: flex;
  justify-content: center;
}
footer .container .phone_num span {
  color: white;
}
footer .container .logo {
  display: inline-block;
  margin-right: 20px;
  padding-left: 70px;
  background: url(https://cac-edu.com.ua/assets/img/footer/logo-grayscale.svg) no-repeat 0% 50% transparent;
  vertical-align: top;
  padding-top: 12px;
  padding-bottom: 10px;
}
footer .container .logo div:first-child {
  font-weight: 600;
}
footer .container .logo div:last-child {
  font-size: 13px;
}
footer .container .iapa {
  height: 60px;
  margin-top: -15px;
}
footer .container .copyright div:first-child {
  padding: 20px;
}
footer .container .dotted_separator {
  border-bottom: 1px dotted #666;
  margin-top: 5px;
  margin-bottom: 10px;
}

.modal {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 10000000;
  top: 0;
  background: #f9f9f9;
  width: 320px;
  padding: 20px;
  left: calc(50% - 160px);
  box-sizing: border-box;
  outline: 1000vw solid rgba(0, 0, 0, 0.4117647059);
}
.modal .header {
  font-size: 18px;
  margin: 10px 0 20px;
}
@media (max-width: 768px) {
  .modal .flex {
    flex-direction: row;
  }
}
.modal input, .modal .prefix, .modal textarea, .modal select {
  background-color: #fff;
  padding: 0.75em;
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  width: 100%;
  box-sizing: border-box;
  height: 51px;
  border: 1px solid #ccc;
  margin: 5px 0 10px;
}
.modal textarea {
  height: 120px;
}
.modal button {
  background: #31dc41;
  padding: 20px;
  color: white;
  margin-top: 20px;
  cursor: pointer;
}
.modal .prefix {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  padding-right: 20px;
}

.close-modal {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.relation {
  width: 100%;
  max-width: 1000px;
  position: relative;
  margin: 40px auto;
}
.relation .relation-ratio {
  height: 0;
  padding-top: 57%;
}
.relation .relation-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.relation iframe {
  width: 100%;
  height: 100%;
}

.edu-project {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.edu-project div {
  width: 20%;
  padding: 20px;
  text-align: center;
}
.edu-project div img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.siblings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 20px;
}
.siblings a, .siblings [data-href] {
  color: #0e74dc;
  border: 1px solid #0e74dc;
  border-radius: 2px;
  padding: 2px 10px;
}
.siblings a.active, .siblings [data-href].active {
  background: #0e74dc;
  color: white;
}/*# sourceMappingURL=bottom.css.map */