﻿.header-section-wrapper {
  max-width: 100%;
  background: linear-gradient(180deg, #234465 52.7%, #fff 50%);
}
.header-section-wrapper:before {
  content: ' ';
  background-image: url('/Content/images/fees-page/frame.svg');
  position: absolute;
  width: 169px;
  height: 203px;
  top: 125px;
  left: -37px;
}
.header-section-wrapper .header-section-title {
  color: #fff;
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 1200px) {
  .header-section-wrapper .header-section-title {
    margin: 60px 0;
  }
}
@media (max-width: 1289px) and (min-width: 865px) {
  .header-section-wrapper .header-section-title {
    margin: 30px 0;
  }
}
.header-section-wrapper .marketing-program-fees-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 130px;
}
@media (max-width: 1200px) {
  .header-section-wrapper .marketing-program-fees-list {
    margin-bottom: 100px;
  }
}
@media (max-width: 599px) {
  .header-section-wrapper .marketing-program-fees-list {
    margin-bottom: 70px;
  }
}
.header-section-wrapper .marketing-program-card {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-rows: 220px 100px;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  z-index: 1;
  width: 400px;
}
@media (max-width: 599px) {
  .header-section-wrapper .marketing-program-card {
    grid-template-rows: 280px 100px;
  }
}
.header-section-wrapper .marketing-program-card:nth-child(2) {
  margin: 0 25px;
}
@media (max-width: 599px) {
  .header-section-wrapper .marketing-program-card:nth-child(2) {
    margin: 0;
  }
}
@media (max-width: 889px) {
  .header-section-wrapper .marketing-program-card:nth-child(2) {
    margin-top: 25px;
  }
}
@media (max-width: 1284px) and (min-width: 865px) {
  .header-section-wrapper .marketing-program-card:nth-child(3) {
    grid-column: 1 / 3;
    width: 400px;
    justify-self: center;
    max-width: 100%;
    margin-top: 25px;
  }
}
@media (max-width: 889px) {
  .header-section-wrapper .marketing-program-card {
    margin-top: 25px;
  }
}
.header-section-wrapper .marketing-program-card .marketing-program-card-description {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 15px;
}
.header-section-wrapper .marketing-program-card .marketing-program-title {
  color: #383838;
  font-weight: bold;
  margin-bottom: 12px;
}
.header-section-wrapper .marketing-program-card .marketing-program-title-smaller {
  font-size: 22px;
}
@media (max-width: 599px) {
  .header-section-wrapper .marketing-program-card .marketing-program-title {
    font-size: 20px;
  }
}
.header-section-wrapper .marketing-program-card .marketing-program-description {
  font-size: 18px;
  color: #565656;
  padding-bottom: 35.5px;
}
.header-section-wrapper .marketing-program-card .softuni-btn {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}
.header-section-wrapper .marketing-program-card .fundamentals-program {
  font-size: 16px;
  line-height: 1.38;
}
.header-section-wrapper .marketing-program-card .professional-program {
  line-height: 1.38;
  padding: 35px 15px 20px 15px;
}
.header-section-wrapper .marketing-program-card-fees {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
}
.header-section-wrapper .marketing-program-card-fees .marketing-fees-title {
  color: #fff;
  margin: 0;
  padding-bottom: 5px;
}
@media (max-width: 599px) {
  .header-section-wrapper .marketing-program-card-fees .fees-onsite {
    padding: 0 5px;
  }
}
.header-section-wrapper .marketing-program-card-fees .separator-line {
  width: 1px;
  height: 80px;
  background-color: #fff;
}
.header-section-wrapper .marketing-program-card-fees.green-background {
  background: linear-gradient(to right, #43A047, #81C784);
}
.header-section-wrapper .marketing-program-card-fees.blue-background {
  background: linear-gradient(to right, #4F8DB2, #78ACC6);
  /*display: grid;*/
  /*grid-template-columns: 1fr 1px 1fr;*/
  /*align-items: center;*/
}
.header-section-wrapper .marketing-program-card-fees.purple-background {
  background: linear-gradient(to left, #8D7EE2, #4A37A5);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
}
.header-section-wrapper .marketing-program-card-fees .professional-program-fees-title {
  color: #fff;
}
.header-section-wrapper .marketing-program-card-fees .cross-out {
  position: relative;
  overflow: hidden;
}
.header-section-wrapper .marketing-program-card-fees .cross-out::before,
.header-section-wrapper .marketing-program-card-fees .cross-out::after {
  position: absolute;
  content: '';
  background: red;
  display: block;
  width: 60%;
  height: 3px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 35%;
}
.header-section-wrapper .marketing-program-card-fees .cross-out::after {
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}