@font-face {
  font-family: 'NewYork';
  src: url(../fonts/NEWYORK.OTF);
}

.program-courses {
  background-color: #f2f1ed;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.program-courses .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
}

@media only screen and (max-width: 750px) {
  .program-courses .center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.program-courses .center .content-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.program-courses .center .content-section .image-box {
  height: 300px;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  border-radius: 7px;
}

.program-courses .center .content-section .image-box img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.program-courses .center .content-section .header {
  font-size: 21px;
  font-weight: 600;
  line-height: 33px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(51, 51, 51, 0.8);
  margin-top: 23px;
}

@media only screen and (max-width: 750px) {
  .program-courses .center .content-section .header {
    font-size: 20px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 570px) {
  .program-courses .center .content-section .header {
    font-size: 19px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 400px) {
  .program-courses .center .content-section .header {
    font-size: 18px;
    line-height: 29px;
  }
}

.program-courses .center .content-section .bullet-container {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(51, 51, 51, 0.8);
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 750px) {
  .program-courses .center .content-section .bullet-container {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .program-courses .center .content-section .bullet-container {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .program-courses .center .content-section .bullet-container {
    font-size: 12px;
    line-height: 20px;
  }
}

.program-courses .center .content-section .bullet-container .element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  margin-top: 5px;
}

.program-courses .center .content-section .bullet-container .element .bullet {
  background-color: rgba(51, 51, 51, 0.6);
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 5px;
  position: relative;
  top: 8px;
}

.program-courses .center .options-section {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border-radius: 4px;
  background-color: white;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
  .program-courses .center .options-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    overflow-x: scroll;
  }
  .program-courses .center .options-section::-webkit-scrollbar-track {
    background-color: white;
    border: 5px;
    border-radius: 0px;
  }
  .program-courses .center .options-section::-webkit-scrollbar {
    width: 8px;
    max-width: 8px;
    max-height: 8px;
    height: 8px;
    background-color: #dbc9ab;
    border-radius: 0px;
    cursor: pointer;
  }
  .program-courses .center .options-section::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: rgba(196, 167, 118, 0.8);
    cursor: pointer;
  }
  .program-courses .center .options-section::-webkit-scrollbar-thumb:hover {
    background-color: #c4a776;
  }
}

.program-courses .center .options-section .option {
  border-radius: 4px;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f2f1ed;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: rgba(51, 51, 51, 0.8);
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .program-courses .center .options-section .option {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .program-courses .center .options-section .option {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .program-courses .center .options-section .option {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 750px) {
  .program-courses .center .options-section .option {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.program-courses .center .options-section .option.active {
  background-color: #c4a776;
  color: #FFFFFF;
}

.program-courses .center .options-section .option:hover {
  background-color: #dbc9ab;
  color: #FFFFFF;
}
/*# sourceMappingURL=programs.css.map */