/* color */
.text_blue_1 {
  color: #2F80ED !important;
}

.text_gray_1 {
  color: #223141 !important;
}

.text_gray_2 {
  color: #435262 !important;
}

.text_gray_3 {
  color: #86868b !important;
}

.text_gray_4 {
  color: #959DA9 !important;
}

.text_gray_5 {
  color: #C4CAD3 !important;
}

.bg_blue_1 {
  background-color: #F4F6FC !important;
}

.bg_blue_2 {
  background-color: #2F80ED !important;
}

.bg_blue_3 {
  background-color: #F4F8FF !important;
}

.bg_gray_1 {
  background-color: #FCFCFC !important;
}

.bg_gray_2 {
  background-color: #F6F7F8 !important;
}

.bg_red_1 {
  background-color: #FFFAFA !important;
}

/* button */
.btn {
  white-space: nowrap;
  padding: .75em 30px;
  font-size: 18px;
  border-radius: 15px;
}

.btn_hover_shadow:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
}

.btn_blue_fill {
  border-color: #2F80ED;
  background: #2F80ED;
  color: #FFF;
}

.btn_blue_fill:hover {
  border-color: #1B70E3;
  background: #1B70E3;
  color: #FFF;
}

@media (max-width: 768px) {
  .btn {
    font-size: 16px;
    border-radius: 10px;
  }
}

.btn-after-angle::after {
    content: '\f105';
    font-family: FontAwesome;
    margin-left: 1em;
}

/* 텍스트 크기 */
.font_size_1 {
  font-size: 50px;
  letter-spacing: -0.05em;
}

.font_size_2 {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.font_size_3 {
  font-size: 22px;
  letter-spacing: -0.05em;
}

.font_size_4 {
  font-size: 18px;
  letter-spacing: -0.05em;
}

.font_size_5 {
  font-size: 16px;
  letter-spacing: -0.05em;
}

.font_size_6 {
  font-size: 14px;
  letter-spacing: -0.05em;
}

@media (max-width: 768px) {
  .font_size_1 {
    font-size: 30px;
  }

  .font_size_2 {
    font-size: 20px;
  }

  .font_size_3 {
    font-size: 18px;
  }

  .font_size_4 {
    font-size: 16px;
  }

  .font_size_5 {
    font-size: 14px;
  }

  .font_size_6 {
    font-size: 12px;
  }
}

/* 상단 네브 */
/* @media (min-width: 1200px) {
  .mainbar-row {
    height: 70px;
  }
}

.main-nav .current-menu-item .link-ext,
.main-nav a:hover .link-ext {
  opacity: 1;
  bottom: 0;
  border-radius: 10px;
  width: 70%;
  left: 15%;
}

.main-nav .current-menu-item .txt {
  color: #2F80ED;
} */

/* 주요 텍스트 스타일 */
.title_landing {
  color: #2F80ED;
  font-size: 60px !important;
  letter-spacing: -0.05em;
  font-weight: 700 !important;
  line-height: 1.25em;
}

.title {
  color: #1d1d1f;
  font-size: 50px !important;
  letter-spacing: -0.05em;
  font-weight: 700 !important;
  line-height: 1.25em;
  margin-bottom: 30px;
}

.sub_title {
  color: #86868b;
  font-size: 22px !important;
  letter-spacing: -0.05em;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sub_title i {
  font-size: 20px;
  margin-right: .5rem;
}

.sub_title i.alone {
  font-size: 30px;
}

.main_text {
  color: #86868b;
  font-size: 18px !important;
  letter-spacing: -0.05em;
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .title_landing {
    font-size: 40px !important;
  }

  .title {
    font-size: 30px !important;
    margin-bottom: 20px;
  }

  .sub_title {
    font-size: 18px !important;
    margin-bottom: 8px;
  }

  .sub_title .icon {
    width: 16px;
    height: 16px;
  }

  .sub_title .icon-alone {
    width: 22px;
    height: 22px;
  }

  .main_text {
    font-size: 16px !important;
  }
}

/* bounce animation  */
.bottom_middle_arrow {
  position: absolute;
  left: 48%;
  padding-top: 7.5px;
  font-size: 20px;
  z-index: 1;
}

.right_middle_arrow {
  position: absolute;
  top: 48%;
  padding-left: 7.5px;
  font-size: 20px;
  z-index: 1;
}

/* down bounce */
@-moz-keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* right bounce */
@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

@-moz-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}

@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

/* assign bounce */
.bounce_down {
  -webkit-animation: bounceDown 2s infinite;
  animation: bounceDown 2s infinite;
}

.bounce_right {
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
}

/* card style */
.card_media .iconbox-icon-wrap,
.card_media .contents {
  align-self: center;
}

.card_media .iconbox-icon-wrap.aline-self-top,
.card_media .contents.aline-self-top {
  align-self: auto;
}

.card_fees {
  text-align: center;
  height: 100%;
}

.card_fees.card_fees_other {
  background: #F1F2F3;
}

@media (min-width: 992px) {
  .card_fees.card_fees_other .row {
    height: 232px;
    display: flex;
    align-items: center;
  }
}

.card_fees.card_fees_promote {
  background: linear-gradient(to right, #3980ED, #3AB6FF);
}

.card_fees .card_title {
   width: fit-content;
   margin-left: auto;
   margin-right: auto;
   border-radius: 10px;
   padding: .3em 1.5em;
}

.card_start {
  text-align: center;
  background: #F0F6FF;
  max-width: 635px;
  margin-left: auto;
  margin-right: auto;
}

/* counter */
.counter {
  text-align: center;
  font-weight: bold;
  padding-top: 60px;
}

.counter .number {
  font-size: 70px;
}

@media (max-width: 768px) {
  .counter .number {
    font-size: 60px;
  }
}

.counter .label {
  background: #D6DFE8;
  border-radius: 50px;
  white-space: nowrap;
  width: fit-content;
  padding: .25em 1.5em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .counter:first-child {
    padding-top: 0;
  }
}

/* marquee */
.marquee-wrapper {
  text-align:center;
}

.marquee-wrapper .container {
  overflow:hidden;
}

.marquee-inner span {
  float:left;
  width:50%;
}

.marquee-wrapper .marquee-block {
  --total-marquee-items: 7;
  height: 150px;
  width: calc(250px * (var(--total-marquee-items)));
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 20px auto;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .marquee-wrapper .marquee-block {
    height: 100px;
  }
}

.marquee-inner {
  display: block;
  width: 200%;
  position: absolute;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

.marquee-item {
  width: 230px;
  height: auto;
  display: inline-block;
  margin: 0 10px;
  float: left;
  transition: all .2s ease-out;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marqueeRight {
  0% {
    left: -100%;
  }
  100% {
   left: 0;
  }
}

.border-dashed-gray3 {
  border: 3px dashed #C4CAD3;
  border-radius: 20px;
  padding: 20px;
}
/* 섹션별 디자인 */
@media (max-width: 1200px) {
  #start {
    background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url("https://theteams.kr/includes/img/promote/main.jpg");
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 768px) {
  #start .container>div {
    text-align: center;
  }
}

#start .ld-masked-image figure {
  background-position: -97% 31%;
  background-size: 75%;
}

#start .slogan .split-txt {
  background: linear-gradient(to right, #c7b8aa 0%, #7e726d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 800;
}

@media (max-width: 768px) {
  #start .slogan .split-txt {
    font-size: 18px;
  }
}

#pm001 {
  background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url("https://theteams.kr/includes/img/promote/main.jpg");
  background-size: cover;
  background-position: center;
}

#pm001 .ld-masked-image figure {
  background-position: -97% 31%;
  background-size: 75%;
}

#pm001 .title .split-txt {
  background: linear-gradient(to right, #6A82FB 0%, #FC5C7D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#pm001 .slogan .split-txt {
  font-size: 22px;
  font-weight: 800;
  color: #6E7783;
}

@media (max-width: 768px) {
  #pm001 .slogan .split-txt {
    font-size: 18px;
  }
}

#direction .sub_title,
#direction .fa {
  background: linear-gradient(to right, #c7b8aa 0%, #7e726d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#direction .title {
  color: #7e726d;
}

#direction {
  background: linear-gradient(to left, #ECE9E6, #FFFFFF);
}

#direction .main_text {
  color: #6e6e6e;
}

#career .sub_title,
#career .fa,
#pm005 .sub_title,
#pm005 .fa {
  background: linear-gradient(to right, #2BC0E4 0%, #EAECC6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#career .title,
#pm005 .title {
  color: #4ba0a5;
}

#career .counter .label,
#pm005 .counter .label {
  background: #c3efea;
  color: #4ba0a5 !important;
}

#career,
#pm005 {
  background: linear-gradient(to right, #edfbff, #faffeb);
}

#curriculum .carousel_card_container {
  padding-top: 90px;
  padding-bottom: 180px;
}

#curriculum .carousel-item:not(.is-active) .card {
  background: #FCFCFD;
}

@media (max-width: 992px) {
  #curriculum .carousel-item.is-active .card {
    margin-left: 15px;
    margin-right: 15px;
  }

  #curriculum .carousel_card_container {
    padding-bottom: 120px;
  }
}

#product .sub_title,
#product .fa {
  color: #D8DEE5;
}

#product .title {
  background: linear-gradient(to right, #2F80ED 0%, #832FED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#product {
  background: #FBFBFB;
}

#product .price {
  font-size: 22px;
}

@media (max-width: 992px) {
  #product .bg_blue_3 ,
  #product .bg_red_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #product .who {
    display: flex;
    align-items: center;
  }

  #product .price {
    font-size: 20px;
    text-align: right;
  }

}

#pricing .sub_title,
#pricing .fa,
#pm002 .left .sub_title,
#pm002 .left .fa,
#pm003 .sub_title,
#pm003 .fa,
#pm009 .sub_title,
#pm009 .fa {
  background: linear-gradient(to right, #c7b8aa 0%, #7e726d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#pm002 .right .sub_title,
#pm002 .right .fa {
  display: inline-block;
}

#pricing .title,
#pm002 .left .title,
#pm003 .title,
#pm009 .title {
  color: #7e726d;
}

#pricing,
#pm003,
#pm009 {
  background: linear-gradient(to left, #ECE9E6, #FFFFFF);
}

#service .sub_title,
#service .fa,
#difference .sub_title,
#difference .fa {
  background: linear-gradient(to right, #4ba0a5 0%, #eaecc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#service .title,
#difference .title {
  color: #4ba0a5;
}

#service,
#difference {
  background: linear-gradient(to right, #edfbff, #faffeb);
}

#service img {
  /*클래스 하나 지정을 해야할 듯 함*/
  box-shadow: 10px 10px 20px 0px rgb(43 192 228 / 40%);
  border-radius: 20px;
}

#resume .original_resume {
  background: linear-gradient(to left, #FFFFFF, #ECE9E6);
}

@media (min-width: 992px) {
  #resume .original_resume img {
    width: 70%;
  }

  #resume .new_resume img {
    width: 70%;
  }
}

#resume .new_resume {
  background: linear-gradient(to right, #3980ed, #3ab6ff);
}

#resume .original_resume,
#resume .new_resume {
  display: flex;
  align-items: end;
  border-radius: 20px;
  padding: 40px 40px 0 40px;
}

#resume .original_resume {
  background: #F1F2F3;
  flex-direction: row-reverse;
}

#resume .original_resume img {
  margin-right: 30px;
  filter: drop-shadow(4px -1px 12px rgba(0, 0, 0, 0#resume .08));
}

#resume .new_resume {
  text-align: right;
}

#resume .new_resume img {
  margin-left: 30px;
  filter: drop-shadow(-4px -1px 12px rgba(0, 0, 0, 0.08));
}

@media (max-width: 992px) {
  #resume .original_resume,
  #resume .new_resume {
    display: block;
  }

  #resume .new_resume {
    text-align: left;
  }

  #resume .original_resume img,
  #resume .new_resume img {
    margin: 0;
  }
}

#customized .sub_title,
#customized .fa {
  background: linear-gradient(to right, #c7b8aa 0%, #7e726d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#customized .title {
  color: #7e726d;
}

#customized {
  background: linear-gradient(to left, #ECE9E6, #FFFFFF);
}

@media (min-width: 992px) {
  #customized {
    padding-bottom: 0 !important;
  }

  #customized .fancy-title {
    text-align: right;
  }

  #customized .sub_title {
    justify-content: right;
  }

  #network .image_container {
    min-height: 370px;
  }

  #network .image_container img {
    margin-top: 100px;
  }
}

#max .sub_title {
  color: #fff;
}

#max .title {
  color: #fff;
}

#max .main_text {
  color: #fff;
}

#max .arrangement .flex img {
  box-shadow: 10px 10px 20px 0px #3980ed;
  border-radius: 20px;
}

#max {
  background: linear-gradient(to right, #3980ed, #3ab6ff);
}

#max .text_max {
  background: linear-gradient(to right, #b1fbff 0%, #fcffcc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#max .arrangement .flex:not(:first-child) {
  margin-top: 60px;
}

#max .arrangement .flex img {
  margin-right: 60px;
}

#max .arrangement .flex:nth-child(2n) img:first-child {
  margin-left: 60px;
}

@media (max-width: 768px) {
  #max .arrangement .flex:not(:first-child) {
    margin-top: 30px;
  }

  #max .arrangement .flex img {
    margin-right: 30px;
  }

  #max .arrangement .flex:nth-child(2n) img:first-child {
    margin-left: 90px;
  }

  #max .arrangement {
    position: relative;
    left: -25%;
  }

  #max .arrangement img {
    width: 75%;
  }
}

#review .carousel-review .carousel-item {
  width: 320px;
}

#review .carousel-review .card {
  padding: 40px 30px;
}

#review .carousel-review .content {
  height: 240px;
  display: flex;
  align-items: center;
}

#review .flickity-viewport {
  overflow: visible;
}

#review .flickity-page-dots {
  bottom: -30px;
}

#client,
#partner {
  background: linear-gradient(to left, #ECE9E6, #FFFFFF);
}

#client .people,
#partner .people {
  background: linear-gradient(to right, #c7b8aa 0%, #7e726d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#pm006 .sub_title,
#pm006 .fa,
#pm008 .sub_title,
#pm008 .fa {
  display: inline-block;
}

/* 모바일용 네브바 */
.navbar-fixed-bottom {
  background-color: #F2F2F2;
}

/* 하단 푸터 */
.service_center_btn {
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  border: 1px solid #808191;
  color: #808191 !important;
  margin-bottom: 10px;
}

.br-20 {
  border-radius: 20px;
}

.padding {
  padding: 16px !important;
}

.padding-half {
  padding: 8px !important;
}

.no-padding {
  padding: 0 !important;
}

.megamenu .fa-angle-down {
  transform: rotate(0deg);
  transition: all 0.25s;
}

.megamenu.active .fa-angle-down {
    transform: rotate(180deg);
}

.megamenu .card {
  border: 1px solid #EDEDED;
  border-radius: 8px;
  padding: 15px;
  box-shadow: none;
}
