/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Work+Sans:wght@200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
/* font-family: 'Source Sans Pro', sans-serif; */
html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
    background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background-color: #222;
    outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
    background: #970000;
}

body {
    color: #131313; /*rgba(51, 51, 51, 0.5);*/
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

img {
    max-width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
a:active, a:hover {
    text-decoration: none;
}

button,
.btn {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
    outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    color: #333333;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
}

.btn:hover,
.btn:focus {
    outline: 0;
    box-shadow: none;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #131313;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 48px;
    line-height: 1.3;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
}

h5 {
    font-size: 20px;
    line-height: 1.2;
}

h6 {
    font-size: 16px;
    line-height: 1.2;
}

hr {
    margin: 20px 0;
    border-color: #352323;
}

ol {
    list-style: decimal;
}

p:last-child {
    margin-bottom: 0;
}

/* Form */
label {
    color: #ddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: #970000;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #970000;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #970000;
    color: #fff;
    text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
    color: rgba(51, 51, 51, 0.5);
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: rgba(51, 51, 51, 0.5);
    font-size: 16px;
    opacity: 1;
}

/* Button */
.btn-theme {
    color: #fff;
    border-color: #970000;
    background: #970000;
}
.btn-theme:hover {
    background: #970000;
    color: #fff;
    border-color: #970000;
}

.btn-rounded {
    border-radius: 100% !important;
}

.btn-square {
    border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
    background: #ddd;
}

.bg-white {
    background: #fff;
}

.bg-black {
    background: #000;
}

.bg-theme {
    background: #970000;
}

.bg-dark {
    background-color: #101a23 !important;
}

.bg-off-white {
    background-color: #f7f7f7;
}

.bg-off-white-2 {
    background-color: #f1f8ff;
}

.bg-blue {
    background-color: #4c87ff !important;
}

.bg-yellow {
    background-color: #fea116 !important;
}

.bg-pink {
    background-color: #fc4557 !important;
}

.bg-egg-blue {
    background-color: #1cb5a3 !important;
}

.bg-purple {
    background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
    background: #ddd;
}

.white-color {
    color: #fff;
}

.black-color {
    color: #000;
}

.theme-color {
    color: #970000;
}

/* Others Common Css Here :) */
.table-row {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

.separator {
    border-top: 1px solid #f2f2f2;
}

[data-overlay] {
    position: relative;
    z-index: 1;
}
[data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
}

[data-overlay=light]::before {
    background-color: #fff;
}

[data-overlay=dark]::before {
    background-color: #000a2d;
}

[data-overlay=theme]::before {
    background-color: #970000;
}

[data-opacity="1"]::before {
    opacity: 0.1;
}

[data-opacity="2"]::before {
    opacity: 0.2;
}

[data-opacity="3"]::before {
    opacity: 0.3;
}

[data-opacity="4"]::before {
    opacity: 0.4;
}

[data-opacity="5"]::before {
    opacity: 0.5;
}

[data-opacity="6"]::before {
    opacity: 0.6;
}

[data-opacity="7"]::before {
    opacity: 0.7;
}

[data-opacity="8"]::before {
    opacity: 0.8;
}

[data-opacity="9"]::before {
    opacity: 0.9;
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        /*max-width: 1200px;*/
    }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 30px;
}

.row {
    --bs-gutter-x: 30px;
}

.mobile-menu-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9999;
}
.mobile-menu-wrapper .menu-close {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    background: #dc3545;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
.mobile-menu-wrapper .menu-overlay {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: url(https://gould.usc.edu/wp-content/themes/usc/assets/img/icon/close.png), auto;
    -webkit-transition: all 0.3s ease-in 0.6s;
    -o-transition: all 0.3s ease-in 0.6s;
    transition: all 0.3s ease-in 0.6s;
}
.mobile-menu-wrapper .agenia-mobile-menu {
    background: #fff;
    width: 375px;
    height: 100%;
    top: 0;
    z-index: 99;
    position: fixed;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    padding: 30px 15px;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0s;
    -o-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0s;
    transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0s;
    overflow-y: auto;
}
.mobile-menu-wrapper.active .menu-overlay {
    visibility: visible;
    left: 0;
    opacity: 1;
    -webkit-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}
.mobile-menu-wrapper.active .agenia-mobile-menu {
    opacity: 1;
    visibility: visible;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
}

.agenia-mobile-menu .mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}
.agenia-mobile-menu .mean-container .mean-bar a.meanmenu-reveal {
    display: none !important;
}
.agenia-mobile-menu .mean-container .mean-nav {
    background: none;
    margin-top: 0;
}
.agenia-mobile-menu .mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}
.agenia-mobile-menu .mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0 !important;
}
.agenia-mobile-menu .mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: 500;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand {
    margin-top: 0;
    padding: 0 !important;
    display: inline-block;
    width: 40px !important;
    height: 45px;
    line-height: 50px;
    font-weight: 400;
    border-left: 2px solid rgba(0, 0, 0, 0.2) !important;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand:hover {
    background: transparent;
    color: #970000;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand:before {
    content: "\f067";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand.mean-clicked {
    color: #970000;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand.mean-clicked:before {
    content: "\f068";
}
.agenia-mobile-menu .mean-container .mean-nav ul li .sub-menu li a {
    width: 80%;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #222;
    padding: 10px 10%;
    opacity: 1;
}

.header-top {
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-bottom {
    padding-top: 5px;
    padding-bottom: 5px;
}

.logo img {
    max-width: 225px;
    height: auto;
}

.search-from-wrap {
    /*margin-left: 28px;*/
    margin-left: 15px;
    margin-right: 20px;
}
.search-from-wrap form {
    max-width: 150px;
    position: relative;
}
.search-from-wrap form input {
    width: 100%;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    padding-left: 33px;
}
.search-from-wrap form input::-webkit-input-placeholder {
    color: #D6D6D6;
}
.search-from-wrap form input:-moz-placeholder {
    color: #D6D6D6;
}
.search-from-wrap form input::-moz-placeholder {
    color: #D6D6D6;
}
.search-from-wrap form input:-ms-input-placeholder {
    color: #D6D6D6;
}
.search-from-wrap form button {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: 0;
    color: #D6D6D6;
    line-height: 1;
}

.header-logo-btn {
    margin-left: 20px;
}
.header-logo-btn a {
    display: inline-block;
}
.header-logo-btn img {
    max-width: 150px;
}
.mobile-header-logo-btn {
	margin-bottom: 15px;
}
.mobile-header-logo-btn a {
	display: inline-block;
}
.mobile-header-logo-btn img {
	max-width: 150px;
}

.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.top-menu ul li {
    display: inline-block;
    /*margin-right: 24px;*/
    margin-right: 15px;
}
.top-menu ul li:last-child {
    margin-right: 0;
}
.top-menu ul li a {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    /*color: rgba(0, 0, 0, 0.5);*/
	color: #000;
}

body.page.acsb-keynav [data-acsb-focused=true], body.page.acsb-keynav :focus { outline: solid 3px #074FCA !important; }

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu ul li {
    display: inline-block;
    margin-right: 34px;
}
.main-menu ul li a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}
.main-menu ul li a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    margin-left: 8px;
}

.header-btns { display: flex; align-items: center; justify-content: flex-end; }
.header-btns a {
    display: inline-block;
    padding: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    margin-left: 15px;
    color: #990000;
}
.header-btns a.apply {
    display: inline-block;
    padding: 10px 15px;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    background: #970000;
    margin-left: 15px;
}
.header-btns a i {
    margin-left: 7px;
}

.header-mobile {
    /*padding: 20px 0;*/
    position: relative;
    z-index: 1;
}

.header-mobile-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.header-mobile-wrapper .search-btn button {
    border: 2px solid #000000;
    border-radius: 34px;
    width: 38px;
    height: 37px;
    background: #fff;
    line-height: 34px;
}
.header-mobile-wrapper .menu-bar button {
    border: 2px solid #000000;
    border-radius: 34px;
    width: 38px;
    height: 37px;
    background: #090909;
    position: relative;
    z-index: 1;
}
.header-mobile-wrapper .menu-bar button .bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.header-mobile-wrapper .menu-bar button .close {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.header-mobile-wrapper .menu-bar.active button .bar {
    visibility: hidden;
    opacity: 0;
}
.header-mobile-wrapper .menu-bar.active button .close {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-area {
    padding: 24px;
    background: #fff;
}

.header-mobile-btns a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 76px;
    padding: 10px 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    margin-bottom: 11px;
}
.header-mobile-btns .btn-1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    mix-blend-mode: multiply;
    z-index: -1;
}
.header-mobile-btns .btn-2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(151, 0, 0, 0.47);
    mix-blend-mode: multiply;
    z-index: -1;
}
.header-mobile-btns .btn-3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 199, 43, 0.71);
    mix-blend-mode: multiply;
    z-index: -1;
}

@media (max-width: 1199px) {
    .header-mobile-btns a {
        background-color: #990000;
        background-image: none !important;
    }
    .header-mobile-btns .btn-1:before,
    .header-mobile-btns .btn-2:before,
    .header-mobile-btns .btn-3:before { content: none; }
}

.main-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-mobile-menu ul li {
    display: block;
    border-bottom: 1px solid #D6D6D6;
}
.main-mobile-menu ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    padding: 15px 0;
}
.main-mobile-menu ul li a:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    margin-left: 8px;
}

.mobile-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 20px;
}

.top-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.top-mobile-menu ul li {
    display: inline-block;
    border-bottom: 1px solid #D6D6D6;
}
.top-mobile-menu ul li:last-child {
    margin-right: 0;
}
.top-mobile-menu ul li a {
    display: block;
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.37);
    padding-bottom: 20px;
}

.mobile-search-from-wrap {
    padding: 24px 24px 0;
}
.mobile-search-from-wrap form {
    width: 100%;
    position: relative;
    z-index: 1;
}
.mobile-search-from-wrap form input {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    /*border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.1);*/
	border: 1px solid rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    padding-left: 44px;
	color: #131313;
}
.mobile-search-from-wrap form input::-webkit-input-placeholder {
    /*color: #D6D6D6;*/
	color: #131313;
}
.mobile-search-from-wrap form input:-moz-placeholder {
    color: #131313;
}
.mobile-search-from-wrap form input::-moz-placeholder {
    color: #131313;
}
.mobile-search-from-wrap form input:-ms-input-placeholder {
    color: #131313;
}
.mobile-search-from-wrap form button {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: 0;
    /*color: #D6D6D6;*/
	color: #131313;
    line-height: 1;
}
.mobile-search-from-wrap form button:hover {
    color: #131313;
}
/*
.hero-slider-active {
  position: relative;
  z-index: 1;
}
.hero-slider-active .hero-control-wrap {
	display: flex;
    position: relative;
    z-index: 10;
    width: 100%;
}
@media (max-width: 767px) {
  .hero-slider-active .hero-control-wrap {
    bottom: 80px;
  }
}
.hero-slider-active .hero-button-prev {
  color: #fff;
  background: rgba(217, 217, 217, 0.38);
  width: 23px;
  height: 23px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.hero-slider-active .hero-pagination {
  margin: 0 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}
.hero-slider-active .hero-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgb(217, 217, 217);
}
.hero-slider-active .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.hero-slider-active .hero-button-next {
  color: #fff;
  background: rgba(217, 217, 217, 0.38);
  width: 23px;
  height: 23px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 134px;
	height: 700px;
}
@media (max-width: 767px) {
  .hero-content-wrapper {
    height: 660px;
    padding-top: 46px;
  }
}
.hero-content-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 199, 43, 0.3657) 0%, rgba(0, 0, 0, 0) 100%);
  transform: rotate(-180deg);
}
.hero-content-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: rgba(0, 0, 0, 0.53);
}
.hero-content-wrapper .shape {
  position: absolute;
  left: -84px;
  bottom: 0;
  z-index: -1;
  height: 100%;
  mix-blend-mode: multiply;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-content-wrapper .shape {
    left: -15px;
    overflow: hidden;
  }
}
.hero-content-wrapper .shape img {
  height: 100%;
}
@media (max-width: 767px) {
  .hero-content-wrapper .shape img {
    height: 1006px;
  }
}
.hero-content-wrapper .content {
  max-width: 609px;
}
.hero-content-wrapper .content span {
  display: block;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 2.48325px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .hero-content-wrapper .content span {
    display: none;
  }
}
.hero-content-wrapper .content h1 {
  font-weight: 400;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -3px;
  color: #FFFFFF;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .hero-content-wrapper .content h1 {
    max-width: 224px;
    font-size: 40px;
    line-height: 46px;
  }
}
.hero-content-wrapper .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .hero-content-wrapper .content p {
    max-width: 276px;
  }
}

.hero-content-wrapper-2 {
  position: relative;
  z-index: 1;
  background-size: 70%;
  background-position: top right;
  background-repeat: no-repeat;
  padding-top: 134px;
  height: 1008px;
  background-color: #970000;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 {
    height: 660px;
    padding-top: 46px;
    background-position: bottom center;
    background-size: cover;
  }
}
.hero-content-wrapper-2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 199, 43, 0.3657) 0%, rgba(0, 0, 0, 0) 100%);
  transform: rotate(-180deg);
}
.hero-content-wrapper-2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: rgba(0, 0, 0, 0.53);
}
.hero-content-wrapper-2 .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 .shape {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.hero-content-wrapper-2 .shape img {
  height: 100%;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 .shape img {
    max-width: initial;
    width: 822px;
    height: 590px;
    margin-left: -170px;
  }
}
.hero-content-wrapper-2 .content {
  width: 374px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 .content {
    max-width: 327px;
  }
}
.hero-content-wrapper-2 .content span {
  display: block;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 2.48325px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 .content span {
    display: none;
  }
}
.hero-content-wrapper-2 .content h1 {
  font-weight: 400;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -3px;
  color: #FFFFFF;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 .content h1 {
    font-size: 40px;
    line-height: 46px;
  }
}
.hero-content-wrapper-2 .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  width: 279px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-2 .content p {
    max-width: 266px;
  }
}

.hero-content-wrapper-3 {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 134px;
  height: 1008px;
  background-color: #970000;
}
@media (max-width: 767px) {
  .hero-content-wrapper-3 {
    height: 660px;
    padding-top: 46px;
    background-position: center center;
    background-size: cover;
  }
}
.hero-content-wrapper-3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 199, 43, 0.3657) 0%, rgba(0, 0, 0, 0) 100%);
  transform: rotate(-180deg);
}
.hero-content-wrapper-3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: rgba(0, 0, 0, 0.53);
}
.hero-content-wrapper-3 .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  mix-blend-mode: multiply;
}
.hero-content-wrapper-3 .shape img {
  height: 100%;
}
@media (max-width: 767px) {
  .hero-content-wrapper-3 .shape img {
    max-width: inherit;
    width: 574px;
  }
}
.hero-content-wrapper-3 .content {
  width: 700px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-3 .content {
    max-width: 100%;
  }
}
.hero-content-wrapper-3 .content h1 {
  font-weight: 400;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -3px;
  color: #FFFFFF;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-3 .content h1 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .hero-content-wrapper-3 .content .h-tags {
    display: flex;
    flex-direction: column;
    max-width: 241px;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content-wrapper-3 .content .h-tags a {
  display: inline-block;
  padding: 14px 36px;
  background-color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #990000;
  margin-right: 21px;
}
@media (max-width: 767px) {
  .hero-content-wrapper-3 .content .h-tags a {
    margin-bottom: 16px;
    text-align: center;
  }
}
*/
.service-area {
    background: #F0EEEF;
}

.service-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 22px;
    background: #FFFFFF;
    gap: 41px;
    margin-top: -240px;
    position: relative;
    z-index: 1;
}

.service-slider-active {
    margin-top: -30px;
    position: relative;
    z-index: 1;
}
.service-slider-active .swiper-container {
    padding: 50px 30px;
    background: #FFFFFF;
    margin-bottom: 100px;
}
.service-slider-active .service-control-wrap {
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    background: #970000;
    border-radius: 20.5px;
    padding: 9px 18px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.service-slider-active .service-button-prev {
    color: #fff;
    background: rgba(217, 217, 217, 0.38);
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.service-slider-active .service-pagination {
    margin: 0 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}
.service-slider-active .service-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgb(217, 217, 217);
}
.service-slider-active .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}
.service-slider-active .service-button-next {
    color: #fff;
    background: rgba(217, 217, 217, 0.38);
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.service-slider-active .service-wrap {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 30px;
}
.service-slider-active .service-wrap:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.service-slider-active .service-wrap:after {
    display: none;
}

.service-wrap {
    display: flex;
    position: relative;
    z-index: 1;
}
.service-wrap:after {
    content: "";
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.08);
    top: 50%;
    right: -21px;
    transform: translateY(-50%);
    height: 193px;
}
.service-wrap:last-child:after {
    display: none;
}
.service-wrap .icon {
    width: 55px;
    margin-right: 12px;
}
.service-wrap .content {
    flex: 1;
}
.service-wrap .content span {
    font-weight: 400;
    font-size: 27.5345px;
    line-height: 50px;
    letter-spacing: -1.14727px;
    color: #990000;
    margin-bottom: 2px;
}
.service-wrap .content h4 {
    font-weight: 400;
    font-size: 16.0618px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 4px;
}
.service-wrap .content p {
    font-weight: 400;
    font-size: 12.62px;
    line-height: 19px;
    color: rgba(51, 51, 51, 0.5);
    margin-bottom: 0;
}

.service-btn a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #990000;
    border: 2px solid #970000;
    padding: 14px 28px;
}

.spotlight-thumb {
    margin-bottom: 30px;
}
.spotlight-thumb a {
    position: relative;
    z-index: 1;
}
.spotlight-thumb a > img {
    width: 100%;
}
.spotlight-thumb a .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.expertise-slider-active {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.expertise-slider-active .expertise-control-wrap {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    background: #970000;
    border-radius: 20.5px;
    padding: 9px 18px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.expertise-slider-active .expertise-button-prev {
    color: #fff;
    background: rgba(217, 217, 217, 0.38);
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.expertise-slider-active .expertise-pagination {
    margin: 0 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}
.expertise-slider-active .expertise-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgb(217, 217, 217);
}
.expertise-slider-active .expertise-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}
.expertise-slider-active .expertise-button-next {
    color: #fff;
    background: rgba(217, 217, 217, 0.38);
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.programs-area {
    background-color: #2C3237;
    background-image: -o-linear-gradient(314.82deg, rgba(140, 27, 18, 0.79) 0%, rgba(140, 27, 18, 0) 59.72%);
    background-image: linear-gradient(135.18deg, rgba(140, 27, 18, 0.79) 0%, rgba(140, 27, 18, 0) 59.72%);
}

@media (max-width: 767px) {
    .programs-title {
        text-align: center;
    }
}
.programs-title p {
    font-weight: 800;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: "Figtree", sans-serif;
    margin-bottom: 13px;
}
.programs-title h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2px;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .programs-title h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.programs-content-wrap {
    padding: 48px 30px 55px 48px;
    background: #FFF9EA;
    margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .programs-content-wrap {
        padding: 45px 30px;
    }
}
@media (max-width: 767px) {
    .programs-content-wrap {
        padding: 35px 20px;
    }
}
.programs-content-wrap .icon {
    background: #970000;
    height: 138px;
    width: 138px;
    border-radius: 100%;
    padding: 35px;
    text-align: center;
    margin-bottom: 29px;
}
@media (max-width: 767px) {
    .programs-content-wrap .icon {
        height: 90px;
        width: 90px;
        padding: 25px;
    }
}
.programs-content-wrap .content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 48px;
    color: #333333;
    margin-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .programs-content-wrap .content h3 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .programs-content-wrap .content h3 {
        font-size: 17px;
        line-height: 24px;
    }
}
.programs-content-wrap .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
    margin-bottom: 23px;
}
@media (max-width: 767px) {
    .programs-content-wrap .content p {
        display: none;
    }
}
.programs-content-wrap .content .read-more a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #970000;
}
.programs-content-wrap.style-2 {
    background: #FFFFFF;
}
.programs-content-wrap.style-2 .icon {
    background: #FFCC00;
}

.expertise-area {
    background: #F0EEEF;
}

@media (max-width: 767px) {
    .expertise-title {
        text-align: center;
    }
}
.expertise-title h3 {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 74px;
    letter-spacing: 6.9375px;
    text-transform: uppercase;
    color: #929192;
    margin-bottom: 32px;
}
@media (max-width: 767px) {
    .expertise-title h3 {
        width: 150px;
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 3px;
    }
}

.expertise-content-wrap {
    margin-bottom: 28px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.expertise-content-wrap .thumb img {
    width: 100%;
}
.expertise-content-wrap .content {
    background: #FFFFFF;
    padding: 29px 32px 19px;
    height: 190px;
}
@media (max-width: 767px) {
    .expertise-content-wrap .content {
        height: auto;
        padding: 18px 20px;
    }
}
.expertise-content-wrap .content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #970000;
    background: #FFCC00;
    padding: 0 13px;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .expertise-content-wrap .content .tag a {
        font-size: 10.1901px;
        line-height: 20px;
    }
}
.expertise-content-wrap .content h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 4px;
}
@media (max-width: 767px) {
    .expertise-content-wrap .content h4 {
        font-size: 15.2852px;
        line-height: 20px;
    }
}
.expertise-content-wrap .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}
@media (max-width: 767px) {
    .expertise-content-wrap .content p {
        font-size: 10.1901px;
        line-height: 20px;
    }
}

.expertise-card-wrap {
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr 185px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .expertise-card-wrap {
        grid-template-columns: 1fr 170px;
    }
}
.expertise-card-wrap .thumb {
    flex: 1;
    height: 100%;
    overflow: hidden;
}
.expertise-card-wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) and (max-width: 991px) {
    .expertise-card-wrap .thumb img {
        height: 300px;
        object-position: center center;
    }
}
.expertise-card-wrap .card-content {
    background: #970000;
    padding: 25px 18px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.expertise-card-wrap .card-content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 9px;
}
@media (max-width: 767px) {
    .expertise-card-wrap .card-content h3 {
        font-size: 20px;
        line-height: 29px;
    }
}
.expertise-card-wrap .card-content p {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .expertise-card-wrap .card-content p {
        font-size: 12px;
        line-height: 15px;
    }
}
.expertise-card-wrap .card-content .read-more a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .expertise-card-wrap .card-content .read-more a {
        font-size: 14px;
        line-height: 16px;
    }
}

.practice-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .practice-area {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .practice-area {
        grid-template-columns: 1fr;
    }
}

.practise-content {
    background: #970000;
    height: 100%;
    padding-top: 130px;
    padding-left: 136px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .practise-content {
        padding-left: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .practise-content {
        padding: 100px 50px;
    }
}
@media (max-width: 767px) {
    .practise-content {
        padding: 70px 60px;
    }
}
.practise-content .content {
    max-width: 431px;
}
@media (max-width: 767px) {
    .practise-content .content {
        max-width: 233px;
    }
}
.practise-content h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin-bottom: 18px;
}
@media (max-width: 767px) {
    .practise-content h2 {
        font-size: 32px;
        line-height: 35px;
    }
}
.practise-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .practise-content p {
        font-size: 12px;
        line-height: 17px;
    }
}
.practise-content .practice-btn a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 14px 26px;
    border: 2px solid #FFFFFF;
}
@media (max-width: 767px) {
    .practise-content .practice-btn a {
        padding: 15px 26px;
    }
}

.build-content {
    background: #FFCC00;
    height: 100%;
    padding-left: 93px;
    padding-top: 130px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .build-content {
        padding-left: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .build-content {
        padding: 100px 50px;
    }
}
@media (max-width: 767px) {
    .build-content {
        padding: 70px 60px;
    }
}
.build-content .content {
    max-width: 431px;
}
@media (max-width: 767px) {
    .build-content .content {
        max-width: 233px;
    }
}
.build-content h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2px;
    color: #970000;
    margin-bottom: 18px;
}
@media (max-width: 767px) {
    .build-content h2 {
        font-size: 32px;
        line-height: 35px;
    }
}
.build-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #970000;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .build-content p {
        font-size: 12px;
        line-height: 17px;
    }
}
.build-content .build-btn a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #970000;
    padding: 14px 60px;
    border: 2px solid #970000;
}
@media (max-width: 767px) {
    .build-content .build-btn a {
        padding: 15px 26px;
    }
}

.spotlight-area {
    background: #F0EEEF;
}

.spotlight-title p {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 0.495046);
    margin-bottom: 16px;
}
.spotlight-title h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -2px;
    color: #333333;
    margin-bottom: 47px;
}
@media (max-width: 767px) {
    .spotlight-title h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.spotlight-btn a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #970000;
    padding: 15px 30px;
    border: 2px solid #970000;
}

.featured-area {
    background: #2C3237;
}

@media (max-width: 767px) {
    .featured-title {
        text-align: center;
    }
}
.featured-title p {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D6D6D6;
    margin-bottom: 16px;
}
.featured-title h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .featured-title h2 {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 30px;
    }
}

.featured-content-wrap {
    background: #FFFFFF;
}
.featured-content-wrap .thumb img {
    width: 100%;
}
.featured-content-wrap .content {
    padding: 23px 32px 16px;
    position: relative;
    z-index: 1;
}
.featured-content-wrap .content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 9px;
}
@media (max-width: 767px) {
    .featured-content-wrap .content h3 {
        font-size: 13px;
        line-height: 18px;
    }
}
.featured-content-wrap .content .date {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 32px;
    transform: translateY(-50%);
    background: #970000;
    padding: 12px 21px 23px;
    border-radius: 0 0 50px 50px;
}
@media (max-width: 767px) {
    .featured-content-wrap .content .date {
        right: 18px;
    }
}
.featured-content-wrap .content .date span {
    display: block;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -1px;
    color: #FFCC00;
}
@media (max-width: 767px) {
    .featured-content-wrap .content .date span {
        font-size: 23.0769px;
        line-height: 28px;
    }
}
.featured-content-wrap .content .date p {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .featured-content-wrap .content .date p {
        font-size: 13.8462px;
        line-height: 18px;
    }
}
.featured-content-wrap .content .time {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}
@media (max-width: 767px) {
    .featured-content-wrap .content .time {
        font-size: 9.23077px;
        line-height: 18px;
    }
}
.featured-content-wrap .content .time i {
    color: #970000;
    margin-right: 8px;
}

.featured-slider-active {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.featured-slider-active .featured-button-prev {
    position: absolute;
    right: 55px;
    top: -107px;
    width: 48px;
    height: 48px;
    line-height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.295743);
    border-radius: 24px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
}
@media (max-width: 767px) {
    .featured-slider-active .featured-button-prev {
        right: 44px;
        width: 33px;
        height: 33px;
        line-height: 30px;
        top: auto;
        bottom: -60px;
        border: 0.6875px solid rgba(255, 255, 255, 0.295743);
    }
}
.featured-slider-active .featured-button-prev img {
    transform: translateX(-2px);
}
@media (max-width: 767px) {
    .featured-slider-active .featured-button-prev img {
        width: 11px;
    }
}
.featured-slider-active .featured-button-next {
    position: absolute;
    right: 0;
    top: -107px;
    width: 48px;
    height: 48px;
    line-height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.295743);
    border-radius: 24px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
}
@media (max-width: 767px) {
    .featured-slider-active .featured-button-next {
        width: 33px;
        height: 33px;
        line-height: 30px;
        top: auto;
        bottom: -60px;
        border: 0.6875px solid rgba(255, 255, 255, 0.295743);
    }
}
.featured-slider-active .featured-button-next img {
    transform: translateX(2px);
}
@media (max-width: 767px) {
    .featured-slider-active .featured-button-next img {
        width: 11px;
    }
}

.study-area {
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.study-area:after {
    content: "";
    background: linear-gradient(135.18deg, rgba(255, 199, 43, 0.71) 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: matrix(1, 0, 0, -1, 0, 0);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.study-area:before {
    content: "";
    background: linear-gradient(127.23deg, rgba(151, 0, 0, 0.65) 0%, rgba(140, 27, 18, 0) 61.98%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.study-content h2 {
    font-weight: 400;
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -3px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .study-content h2 {
        font-size: 40px;
        line-height: 40px;
        max-width: 300px;
    }
}
.study-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 48px;
    max-width: 598px;
}
@media (max-width: 767px) {
    .study-content p {
        font-size: 20px;
        line-height: 32px;
    }
}
@media (max-width: 767px) {
    .study-content .study-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
.study-content .study-buttons .btn-1 {
    padding: 15px 22px;
    border: 2px solid #FFFFFF;
    background: transparent;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .study-content .study-buttons .btn-1 {
        min-width: 220px;
        text-align: center;
    }
}
.study-content .study-buttons .btn-2 {
    margin-left: 21px;
    padding: 15px 25px;
    border: 2px solid #FFFFFF;
    background: transparent;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .study-content .study-buttons .btn-2 {
        margin-left: 0;
        margin-top: 26px;
        min-width: 220px;
        text-align: center;
    }
}

.commitment-area {
    background: #2C3237;
}

.commitment-title h3 {
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin-bottom: 18px;
}
@media (max-width: 767px) {
    .commitment-title h3 {
        font-size: 32px;
        line-height: 36px;
    }
}
.commitment-title p {
    margin: 0 auto 35px;
    max-width: 470px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}
.commitment-title .thumb {
    position: relative;
    z-index: 1;
}
.commitment-title .thumb:after {
    content: "";
    background: linear-gradient(135.18deg, rgba(255, 199, 43, 0.51) 0%, rgba(140, 27, 18, 0) 59.72%);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.commitment-title .commitment-btn {
    margin-top: 58px;
}
.commitment-title .commitment-btn a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #970000;
    padding: 14px 30px;
    background: #FFCC00;
    border: 0;
}

.connected-content-wrap h3 {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2px;
    color: #000000;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .connected-content-wrap h3 {
        font-size: 40px;
        line-height: 64px;
    }
}
.connected-content-wrap .connected-content {
    display: flex;
}
@media (max-width: 767px) {
    .connected-content-wrap .connected-content {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.connected-content-wrap .connected-content .account {
    margin-left: 16px;
    margin-right: 20px;
}
.connected-content-wrap .connected-content .account p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 2px;
}
.connected-content-wrap .connected-content .account span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(51, 51, 51, 0.55);
}
.connected-content-wrap .connected-content .connected-btn a {
    /*display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #970000;
    padding: 15px 22px;
    border: 2px solid #970000;
    background: transparent;*/
}


.tag-title h3 {
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin-bottom: 18px;
}
@media (max-width: 767px) {
    .tag-title h3 {
        font-size: 32px;
        line-height: 32px;
    }
}

.tag-content a {
    margin-right: 18px;
    margin-bottom: 18px;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 0 12px;
}
@media (max-width: 767px) {
    .tag-content a {
        margin-right: 15px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
}

.footer-area {
    background: #000000;
}

.widget-title h4 {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.495046);
    margin-bottom: 15px;
}

.widget-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-content ul li a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
}

.widget-wrap p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .footer-icons {
        text-align: center;
    }
}
.footer-icons a {
    display: inline-block;
    color: #FFFFFF;
    background: #970000;
    font-size: 16px;
    height: 48px;
    width: 48px;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
}

.copy-right-area {
    background: #000000;
}

.copyright-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.502972);
    margin-bottom: 0;
}
.copyright-text:before {
    content: "";
    background: #FFFFFF;
    mix-blend-mode: normal;
    opacity: 0.08;
}

.footer-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p-content-area {
    background: #F0EEEF;
}

.breadcrumb-wrap {
    /*margin-bottom: 5px;*/
    padding: 25px 0;
}
.breadcrumb-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-wrap ul li {
    display: inline-block;
}
.breadcrumb-wrap ul li:after {
    content: "/";
    margin-left: 5px;
    color: #970000;
}
.breadcrumb-wrap ul li:last-child:after {
    display: none;
}
.breadcrumb-wrap ul li a {
    display: inline-block;
    font-weight: 500;
    font-size: 13px;
    line-height: 32px;
    color: #970000;
}

.breadcrumb-wrap-2 {
    margin-bottom: 5px;
}
.breadcrumb-wrap-2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-wrap-2 ul li {
    display: inline-block;
    color: #970000;
}
.breadcrumb-wrap-2 ul li:after {
    content: "/";
    margin-left: 5px;
    margin-right: 5px;
    color: #970000;
}
.breadcrumb-wrap-2 ul li:last-child:after {
    display: none;
}
.breadcrumb-wrap-2 ul li a {
    display: inline-block;
    font-weight: 500;
    font-size: 13px;
    line-height: 32px;
    color: #970000;
}

.p-sidebar-wrap {
    padding: 31px 11px;
    background: #FFFFFF;
}
.p-sidebar-wrap .title {
    max-width: 154px;
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #131313;
    margin-bottom: 30px;
}
.p-sidebar-wrap .p-link-wrap a {
    padding: 16px 0;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #494949;
}
.p-sidebar-wrap .p-link-wrap a:before {
    content: "\f053";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 10px;
    color: #970000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.p-sidebar-wrap .p-link-wrap a:hover {
    font-weight: 600;
    font-size: 13px;
    color: #970000;
    border-color: #970000;
}
.p-sidebar-wrap .p-link-wrap a:hover:before {
    visibility: visible;
    opacity: 1;
}

.p-content-wrapper {
    background: #FFFFFF;
    padding: 31px 57px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .p-content-wrapper {
        padding: 30px 15px 0;
    }
}
.p-content-wrapper:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: #FFCC00;
}

.p-undergraduate-wrap .title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #FFCC00;
    margin-bottom: 32px;
}
.p-undergraduate-wrap .p-undergraduate-thumb {
    position: relative;
    z-index: 1;
}
.p-undergraduate-wrap .p-undergraduate-thumb:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(85.75deg, rgba(255, 199, 43, 0.33) 4.57%, rgba(255, 255, 255, 0) 62.89%);
}
.p-undergraduate-wrap .p-undergraduate-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(85.75deg, rgba(151, 0, 0, 0.26) 4.57%, rgba(255, 255, 255, 0) 62.89%);
    transform: rotate(-180deg);
}
.p-about-wrap h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #970000;
    margin-bottom: 11px;
}
.p-about-wrap p {
    max-width: 327px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}

.p-about-card-wrap {
    background: #FFFCF3;
}
.p-about-card-wrap .p-about-thumb {
    background: #970000;
    position: relative;
    z-index: 1;
}
.p-about-card-wrap .p-about-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135.18deg, #FFCC00 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: rotate(-180deg);
}
.p-about-card-wrap img {
    width: 100%;
}
.p-about-card-wrap .card-content {
    padding: 30px 32px 50px;
}
.p-about-card-wrap .card-content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #970000;
    background: #FFCC00;
    padding: 0 13px;
    margin-bottom: 10px;
}
.p-about-card-wrap .card-content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 5px;
}
.p-about-card-wrap .card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

.p-opportunities-title {
    position: relative;
    z-index: 1;
}
.p-opportunities-title:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: -17px;
    height: 1px;
    width: 100%;
    background: #F99D1C;
}
.p-opportunities-title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 24px;
}
.p-opportunities-title p {
    max-width: 464px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.p-opportunities-content {
    margin-bottom: 25px;
}
.p-opportunities-content a {
    margin-top: 10px;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #333333;
}

.p-faculty-card-wrap {
    background: #FFFCF3;
    margin-left: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .p-faculty-card-wrap {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .p-faculty-card-wrap {
        margin-left: 0;
    }
}
.p-faculty-card-wrap .p-faculty-thumb {
    position: relative;
    z-index: 1;
}
.p-faculty-card-wrap .p-faculty-thumb img {
    width: 100%;
}
.p-faculty-card-wrap .p-faculty-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135.18deg, #8C1B12 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: rotate(-180deg);
}
.p-faculty-card-wrap .card-content {
    padding: 30px 32px 19px;
}
.p-faculty-card-wrap .card-content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #970000;
    background: #FFCC00;
    padding: 0 13px;
    margin-bottom: 10px;
}
.p-faculty-card-wrap .card-content h3 {
    max-width: 263px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 5px;
}
.p-faculty-card-wrap .card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

.p-faculty-wrap .p-faculty-title {
    padding-top: 27px;
    padding-bottom: 27px;
}
.p-faculty-wrap .p-faculty-title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #131313;
    margin-bottom: 14px;
}
.p-faculty-wrap .p-faculty-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.p-faculty-wrap .p-faculty-title p a {
    text-decoration-line: underline;
    color: #000000;
}
.p-faculty-wrap .p-faculty-link-wrap {
    margin-top: 26px;
    height: 295px;
    overflow-y: auto;
}
.p-faculty-wrap .p-faculty-link-wrap ul {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    padding-left: 15px;
}
.p-faculty-wrap .p-faculty-link-wrap ul li a {
    display: inline-block;
    color: #000000;
    text-decoration-line: underline;
}

.p-faculty-wrapper {
    position: relative;
    z-index: 1;
}
.p-faculty-wrapper .p-faculty-background {
    position: absolute;
    z-index: -1;
    height: 180px;
    top: 0;
    left: -57px;
    right: -57px;
    background: #FFCC00;
}

.p-cta-content-wrapper {
    position: relative;
    z-index: 1;
}
.p-cta-content-wrapper:before {
    content: "";
    position: absolute;
    left: -57px;
    top: 0;
    right: -57px;
    bottom: 0;
    background: #970000;
    z-index: -1;
}

.p-cta {
    padding: 45px 20px 50px;
}
.p-cta .title {
    margin-bottom: 25px;
}
.p-cta .title a {
    display: inline-block;
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #FFFFFF;
}
.p-cta a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.p-cta a:last-child {
    margin-bottom: 0;
}

.s-content-wrapper {
    background: #FFFFFF;
    padding: 31px 43px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .s-content-wrapper {
        padding: 31px 15px 0;
    }
}
.s-content-wrapper:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: #F99D1C;
}

.staff-list-wrapper {
    background: #FFFFFF;
    padding: 31px 43px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .staff-list-wrapper {
        padding: 30px 15px 0;
    }
}

.s-staff-wrap {
    position: relative;
    z-index: 1;
}
.s-staff-wrap:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #F99D1C;
}
.s-staff-wrap .title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #131313;
    padding-bottom: 10px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .s-staff-wrap .title h2 {
        font-size: 26px;
    }
}

.s-faculty-wrapper {
    position: relative;
    z-index: 1;
}
.s-faculty-wrapper .s-faculty-background {
    position: absolute;
    z-index: -1;
    height: 180px;
    top: 0;
    left: -43px;
    right: -43px;
    background: #F99D1C;
}
@media (max-width: 767px) {
    .s-faculty-wrapper .s-faculty-background {
        left: -15px;
        right: -15px;
    }
}

.s-faculty-card-wrap {
    background: #FFFCF3;
    margin-right: 18px;
}
@media (max-width: 767px) {
    .s-faculty-card-wrap {
        margin-right: 0;
    }
}
.s-faculty-card-wrap .s-faculty-thumb {
    position: relative;
    z-index: 1;
}
.s-faculty-card-wrap .s-faculty-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135.18deg, #8C1B12 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: rotate(-180deg);
}
.s-faculty-card-wrap .s-faculty-thumb img {
    width: 100%;
}
.s-faculty-card-wrap .card-content {
    padding: 30px 32px 19px;
}
.s-faculty-card-wrap .card-content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #970000;
    background: #FFCC00;
    padding: 0 13px;
    margin-bottom: 10px;
}
.s-faculty-card-wrap .card-content h3 {
    max-width: 264px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    text-decoration-line: underline;
    margin-bottom: 5px;
}
@media (max-width: 767px) {
    .s-faculty-card-wrap .card-content h3 {
        font-size: 22px;
    }
}
.s-faculty-card-wrap .card-content h3 a {
    color: #333333;
}
.s-faculty-card-wrap .card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

.s-faculty-wrap .s-faculty-title {
    padding-top: 27px;
    padding-bottom: 47px;
}
@media (max-width: 767px) {
    .s-faculty-wrap .s-faculty-title {
        padding-bottom: 0;
    }
}
.s-faculty-wrap .s-faculty-title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #131313;
    margin-bottom: 14px;
}
@media (max-width: 767px) {
    .s-faculty-wrap .s-faculty-title h2 {
        font-size: 28px;
    }
}
.s-faculty-wrap .s-faculty-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.s-faculty-wrap .s-faculty-title p a {
    text-decoration-line: underline;
    color: #000000;
}
.s-faculty-wrap .p-faculty-description {
    margin-top: 26px;
}
.s-faculty-wrap .p-faculty-description p {
    max-width: 353px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.s-menu-list-wrapper {
    position: relative;
    z-index: 1;
}
.s-menu-list-wrapper:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.06);
}

.s-list-wrap {
    padding: 11px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .s-list-wrap {
        padding: 11px 30px;
    }
}
.s-list-wrap a {
    display: inline-block;
    font-weight: 500;
    font-size: 11.8537px;
    line-height: 17px;
    text-transform: uppercase;
    color: #970000;
    margin-left: 9px;
    margin-right: 9px;
}
.s-list-wrap a:last-child {
    margin-right: 0;
}
.s-list-wrap a.active, .s-list-wrap a:hover {
    border-bottom: 1px solid #970000;
}

.s-letter-wrap {
    position: relative;
    z-index: 1;
}
.s-letter-wrap:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 30px;
    right: -43px;
    height: 1px;
    background: #FFCC00;
}
.s-letter-wrap h2 {
    height: 30.87px;
    width: 28px;
    color: #FFCC00;
    font-size: 31px;
    margin-bottom: 0;
}
.s-letter-wrap.style-2 h2 {
    color: #970000;
}
.s-letter-wrap.style-2:after {
    background: #970000;
}

.s-profile-content-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.s-profile-content-wrap .s-profile-content {
    margin-left: 22px;
}
.s-profile-content-wrap .s-profile-content a {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #000000;
}
.s-profile-content-wrap .s-profile-content p {
    max-width: 213px;
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.32);
}

.sb-menu-list-wrapper {
    padding: 15px 0;
    display: flex;
}
.sb-menu-list-wrapper .sb-list-wrap a {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #970000;
    margin-right: 3px;
}
.sb-menu-list-wrapper .sb-list-text span {
    display: inline-block;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.26);
    margin-left: 33px;
    margin-right: 24px;
}
.sb-menu-list-wrapper .sb-list-icon-wrap {
    display: flex;
}
.sb-menu-list-wrapper .sb-list-icon-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sb-menu-list-wrapper .sb-list-icon-wrap ul li {
    display: inline-block;
    margin-right: 38px;
}
.sb-menu-list-wrapper .sb-list-icon-wrap ul li:last-child {
    margin-right: 0;
}
.sb-menu-list-wrapper .sb-list-icon-wrap ul li a {
    display: inline-flex;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    color: #000000;
    align-items: center;
}
.sb-menu-list-wrapper .sb-list-icon-wrap ul li a i {
    margin-right: 4px;
    font-size: 16px;
}

.sb-bio-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.sb-bio-wrapper .sb-bio-thumb {
    position: relative;
    z-index: 1;
    max-width: 241px;
}
@media (max-width: 767px) {
    .sb-bio-wrapper .sb-bio-thumb {
        max-width: 100%;
    }
}
.sb-bio-wrapper .sb-bio-thumb:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(151, 0, 0, 0.42) 0%, rgba(196, 196, 196, 0) 31.43%);
}
.sb-bio-wrapper .sb-bio-thumb img {
    width: 100%;
}
.sb-bio-wrapper .sb-bio-content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    background: #414141;
    padding: 31px;
}
.sb-bio-wrapper .sb-bio-content-wrapper .tag {
    margin-bottom: 20px;
}
.sb-bio-wrapper .sb-bio-content-wrapper .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 11px;
    line-height: 11px;
    color: #FFFFFF;
    padding: 5px 6px;
    border: 2.06683px solid #FFFFFF;
}
.sb-bio-wrapper .sb-bio-content-wrapper h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1.37789px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.sb-bio-wrapper .sb-bio-content-wrapper p {
    font-weight: 400;
    font-size: 11px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.sb-bio-wrapper .sb-bio-content-wrapper p a {
    display: inline-block;
    color: #FFFFFF;
    text-decoration-line: underline;
}

.sb-interest-title h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 24px;
}

.sb-interest-content a {
    margin-right: 7px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 400;
    font-size: 11.3803px;
    line-height: 23px;
    color: #000000;
    padding: 0 7px;
    border: 1.5px solid #000000;
}

.sb-news-title h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 24px;
}

.sb-news-content-wrapper {
    background: #FFFFFF;
    border: 0.703804px solid #F0EEEF;
    position: relative;
    z-index: 1;
}
.sb-news-content-wrapper .sb-news-thumb {
    background: #FFCC00;
    position: relative;
    z-index: 1;
}
.sb-news-content-wrapper .sb-news-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135.18deg, rgba(140, 27, 18, 0.58) 0%, rgba(140, 27, 18, 0) 59.72%);
}
.sb-news-content-wrapper .sb-news-thumb img {
    width: 100%;
}
.sb-news-content-wrapper .tag {
    position: absolute;
    z-index: 3;
    top: 8px;
    left: 8px;
}
.sb-news-content-wrapper .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 11.2609px;
    line-height: 11px;
    color: #FFFFFF;
    padding: 5px 6px;
    border: 2.11141px solid #FFFFFF;
}
.sb-news-content-wrapper .sb-news-content {
    padding: 28px 0 0 28px;
}
.sb-news-content-wrapper .sb-news-content a {
    display: inline-block;
    font-weight: 400;
    font-size: 16.8913px;
    line-height: 23px;
    text-decoration-line: underline;
    color: #333333;
    margin-bottom: 5px;
}
.sb-news-content-wrapper .sb-news-content p {
    font-weight: 400;
    font-size: 11.2609px;
    line-height: 23px;
    color: rgba(51, 51, 51, 0.5);
}

.pc-content-wrapper {
    background: #FFFFFF;
    padding: 31px 57px 0;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
    .pc-content-wrapper {
        padding: 30px 15px 0;
    }
}
@media (max-width: 767px) {
    .pc-content-wrapper {
        padding: 30px 15px 0;
    }
}
.pc-content-wrapper:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: #EE3342;
}

.pc-undergraduate-wrap .title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #EE3342;
    margin-bottom: 32px;
}
.pc-undergraduate-wrap .pc-undergraduate-thumb {
    position: relative;
    z-index: 1;
}
.pc-undergraduate-wrap .pc-undergraduate-thumb:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(85.75deg, rgba(255, 199, 43, 0.33) 4.57%, rgba(255, 255, 255, 0) 62.89%);
}
.pc-undergraduate-wrap .pc-undergraduate-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(85.75deg, rgba(151, 0, 0, 0.26) 4.57%, rgba(255, 255, 255, 0) 62.89%);
    transform: rotate(-180deg);
}
.pc-about-wrap h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #EE3342;
    margin-bottom: 17px;
}
.pc-about-wrap p {
    max-width: 327px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}
@media (min-width: 768px) and (max-width: 991px) {
    .pc-about-wrap p {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .pc-about-wrap p {
        max-width: 100%;
    }
}

.pc-about-card-wrap {
    background: #FFFCF3;
}
.pc-about-card-wrap .pc-about-thumb {
    background: #970000;
    position: relative;
    z-index: 1;
}
.pc-about-card-wrap .pc-about-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135.18deg, #FFCC00 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: rotate(-180deg);
}
.pc-about-card-wrap .pc-about-thumb img {
    width: 100%;
}
.pc-about-card-wrap .card-content {
    padding: 30px 32px 50px;
}
.pc-about-card-wrap .card-content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #970000;
    background: #FFCC00;
    padding: 0 13px;
    margin-bottom: 10px;
}
.pc-about-card-wrap .card-content .title a {
    display: inline-block;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 5px;
    text-decoration-line: underline;
}
.pc-about-card-wrap .card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

.pc-faculty-wrapper {
    position: relative;
    z-index: 1;
}
.pc-faculty-wrapper .pc-faculty-background {
    position: absolute;
    z-index: -1;
    height: 180px;
    top: 0;
    left: -57px;
    right: -57px;
    background: #970000;
}

.pc-faculty-card-wrap {
    background: #FFFCF3;
    margin-left: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .pc-faculty-card-wrap {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .pc-faculty-card-wrap {
        margin-left: 0;
    }
}
.pc-faculty-card-wrap .pc-faculty-thumb {
    position: relative;
    z-index: 1;
}
.pc-faculty-card-wrap .pc-faculty-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135.18deg, #8C1B12 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: rotate(-180deg);
}
.pc-faculty-card-wrap img {
    width: 100%;
}
.pc-faculty-card-wrap .card-content {
    padding: 30px 32px 19px;
}
.pc-faculty-card-wrap .card-content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #970000;
    background: #FFCC00;
    padding: 0 13px;
    margin-bottom: 10px;
}
.pc-faculty-card-wrap .card-content .title a {
    display: inline-block;
    max-width: 263px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 5px;
    text-decoration-line: underline;
}
.pc-faculty-card-wrap .card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

.pc-faculty-wrap .pc-faculty-title {
    padding-top: 26px;
    padding-bottom: 26px;
}
.pc-faculty-wrap .pc-faculty-title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .pc-faculty-wrap .pc-faculty-title h2 {
        color: #EE3342;
    }
}
.pc-faculty-wrap .pc-faculty-lists {
    margin-top: 26px;
}
.pc-faculty-wrap .pc-faculty-lists ul {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.pc-clinic-title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #EE3342;
    margin-bottom: 15px;
}
.pc-clinic-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 33px;
}

.pc-clinic-content-wrapper .pc-clinic-content-warp {
    display: flex;
    margin-bottom: 33px;
}
.pc-clinic-content-wrapper .pc-clinic-content-warp .pc-clinic-icon {
    margin-right: 25px;
}
.pc-clinic-content-wrapper .pc-clinic-content-warp .pc-clinic-content h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 8px;
}
.pc-clinic-content-wrapper .pc-clinic-content-warp .pc-clinic-content p {
    max-width: 668px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.pc-clinic-description p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.pc-practicum-title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #131313;
}
.pc-practicum-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.pc-access-practicum-wrapper {
    background: #F0EEEF;
    padding: 35px 45px;
}
@media (max-width: 767px) {
    .pc-access-practicum-wrapper {
        padding: 30px 15px;
    }
}
.pc-access-practicum-wrapper h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 17px;
}
.pc-access-practicum-wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 20px;
}
.pc-access-practicum-wrapper p:last-child {
    margin-bottom: 0;
}
.pc-access-practicum-wrapper .pc-access-list ul {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.l-content-wrapper {
    background: #FFFFFF;
    padding: 27px 38px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .l-content-wrapper {
        padding: 27px 15px 0;
    }
}
.l-content-wrapper:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: #FFB400;
}

.l-undergraduate-wrap .title h2 {
    max-width: 629px;
    font-weight: 500;
    font-size: 72px;
    line-height: 76px;
    color: #FFB400;
    margin-bottom: 25px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .l-undergraduate-wrap .title h2 {
        font-size: 50px;
        line-height: 60px;
    }
}
@media (max-width: 767px) {
    .l-undergraduate-wrap .title h2 {
        font-size: 32px;
        line-height: 45px;
    }
}
.l-undergraduate-wrap .l-undergraduate-thumb {
    position: relative;
    z-index: 1;
}
.l-undergraduate-wrap .l-undergraduate-thumb:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(98.03deg, rgba(151, 0, 0, 0.47) -12.42%, rgba(196, 196, 196, 0) 96.25%);
}
.l-undergraduate-wrap .l-undergraduate-thumb img {
    width: 100%;
}
.l-undergraduate-wrap .l-undergraduate-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}

.l-about-thumb img {
    width: 100%;
    background: #970000;
    position: relative;
    z-index: 1;
}
.l-about-thumb img:after {
    content: "";
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135.18deg, #FFCC00 0%, rgba(140, 27, 18, 0) 59.72%);
    transform: rotate(-180deg);
}

.l-about-content h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 18px;
}
@media (max-width: 767px) {
    .l-about-content h3 {
        font-size: 24px;
    }
}
.l-about-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}
.l-about-content p a {
    display: inline-block;
    text-decoration-line: underline;
    color: #000000;
}

.l-about-read-more a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #970000;
}

.l-cta-content-wrapper {
    position: relative;
    z-index: 1;
}
.l-cta-content-wrapper:before {
    content: "";
    position: absolute;
    left: -39px;
    top: 0;
    right: -38px;
    bottom: 0;
    background: #970000;
    z-index: -1;
}

.l-cta {
    padding: 45px 35px 34px;
}
.l-cta .title {
    margin-bottom: 25px;
}
.l-cta .title a {
    display: inline-block;
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #FFFFFF;
}
.l-cta a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.l-cta a:last-child {
    margin-bottom: 0;
}

.l-career-wrapper {
    display: flex;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .l-career-wrapper {
        flex-wrap: wrap;
    }
}
.l-career-wrapper .l-career-thumb-wrapper {
    max-width: 60%;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .l-career-wrapper .l-career-thumb-wrapper {
        max-width: 100%;
    }
}
.l-career-wrapper .l-career-thumb-wrapper .l-career-thumb {
    position: relative;
    z-index: 1;
}
.l-career-wrapper .l-career-thumb-wrapper .l-career-thumb:after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(296.15deg, rgba(255, 199, 43, 0.62) -7.3%, rgba(217, 217, 217, 0) 67.54%);
}
.l-career-wrapper .l-career-thumb-wrapper .tag {
    position: absolute;
    z-index: 99;
    top: 8px;
    left: 8px;
}
.l-career-wrapper .l-career-thumb-wrapper .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 11.0231px;
    line-height: 11px;
    color: #FFFFFF;
    padding: 5px 6px;
    border: 2.06683px solid #FFFFFF;
}
.l-career-wrapper .l-career-thumb-wrapper .l-career-text {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.l-career-wrapper .l-career-thumb-wrapper .l-career-text h2 {
    font-weight: 400;
    font-size: 74.5896px;
    line-height: 85px;
    letter-spacing: -2.66392px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.l-career-wrapper .l-career-thumb-wrapper .l-career-text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -1.37789px;
    color: #FFFFFF;
}
.l-career-wrapper .l-career-content-wrapper {
    background: #FFFFFF;
    padding: 0 26px;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 767px) {
    .l-career-wrapper .l-career-content-wrapper {
        padding: 30px 26px;
    }
}
.l-career-wrapper .l-career-content-wrapper h2 {
    font-weight: 400;
    font-size: 38.5808px;
    line-height: 44px;
    letter-spacing: -1.37789px;
    color: #970000;
    margin-bottom: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .l-career-wrapper .l-career-content-wrapper h2 {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 767px) {
    .l-career-wrapper .l-career-content-wrapper h2 {
        font-size: 24px;
        line-height: 30px;
    }
}
.l-career-wrapper .l-career-content-wrapper .text {
    margin-bottom: 62px;
}
.l-career-wrapper .l-career-content-wrapper p {
    font-weight: 400;
    font-size: 13.7789px;
    line-height: 22px;
    color: #333333;
}
.l-career-wrapper .l-career-content-wrapper .read-more a {
    display: inline-block;
    font-weight: 500;
    font-size: 11.0231px;
    line-height: 13px;
    text-decoration-line: underline;
    color: #970000;
}

.l-news-wrapper {
    background: #FFFFFF;
}
.l-news-wrapper .l-news-thumb {
    position: relative;
    z-index: 1;
}
.l-news-wrapper .l-news-thumb img {
    width: 100%;
}
.l-news-wrapper .tag {
    position: absolute;
    z-index: 9;
    top: 8px;
    left: 8px;
}
.l-news-wrapper .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 11.0231px;
    line-height: 11px;
    color: #FFFFFF;
    padding: 5px 6px;
    border: 2.06683px solid #FFFFFF;
}
.l-news-wrapper .l-news-content {
    padding: 27px 28px 20px;
}
.l-news-wrapper .l-news-content h3 {
    font-weight: 400;
    font-size: 16.5347px;
    line-height: 22px;
    color: #333333;
    margin-bottom: 4px;
}
.l-news-wrapper .l-news-content p {
    font-weight: 400;
    font-size: 11.0231px;
    line-height: 22px;
    color: rgba(51, 51, 51, 0.5);
}

.l-news-bg {
    position: relative;
    z-index: 1;
}

.n-content-wrapper {
    background: #FFFFFF;
    padding: 31px 43px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .n-content-wrapper {
        padding: 30px 15px 0;
    }
}
.n-content-wrapper:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: #970000;
}

.n-staff-wrap {
    position: relative;
    z-index: 1;
}
.n-staff-wrap:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #970000;
}
.n-staff-wrap .title h2 {
    font-weight: 500;
    font-size: 31px;
    line-height: 32px;
    color: #131313;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.n-menu-list-wrapper {
    padding: 16px 0;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .n-menu-list-wrapper {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
.n-menu-list-wrapper .n-list-text span {
    display: inline-block;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.26);
    margin-right: 24px;
}
@media (max-width: 767px) {
    .n-menu-list-wrapper .n-list-text span {
        margin-bottom: 15px;
        margin-right: 0;
    }
}
.n-menu-list-wrapper .n-list-icon-wrap {
    display: flex;
}
.n-menu-list-wrapper .n-list-icon-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.n-menu-list-wrapper .n-list-icon-wrap ul li {
    display: inline-block;
    margin-right: 38px;
}
.n-menu-list-wrapper .n-list-icon-wrap ul li:last-child {
    margin-right: 0;
}
.n-menu-list-wrapper .n-list-icon-wrap ul li a {
    display: inline-flex;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    color: #970000;
    align-items: center;
}
.n-menu-list-wrapper .n-list-icon-wrap ul li a i {
    margin-right: 4px;
    font-size: 16px;
}

.n-news-feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.n-news-feature-wrapper .n-news-thumb {
    position: relative;
    z-index: 1;
    max-width: 407px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .n-news-feature-wrapper .n-news-thumb {
        max-width: 50%;
    }
}
@media (max-width: 767px) {
    .n-news-feature-wrapper .n-news-thumb {
        max-width: 100%;
    }
}
.n-news-feature-wrapper .n-news-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #000000 0%, rgba(196, 196, 196, 0) 27.75%);
}
.n-news-feature-wrapper .n-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.n-news-feature-wrapper .n-news-feature-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 31px 30px 8px;
}
.n-news-feature-wrapper .n-news-feature-content:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 4px;
    right: 0;
    background: #FFCC00;
}
.n-news-feature-wrapper .n-news-feature-content .tag {
    margin-right: 10px;
    margin-bottom: 65px;
}
.n-news-feature-wrapper .n-news-feature-content .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 11px;
    line-height: 11px;
    color: #970000;
    padding: 5px 6px;
    border: 2.06683px solid #970000;
}
.n-news-feature-wrapper .n-news-feature-content h2 {
    max-width: 327.36px;
    font-weight: 400;
    font-size: 38.5808px;
    line-height: 44px;
    letter-spacing: -1.37789px;
    color: #970000;
    margin-bottom: 98px;
}
.n-news-feature-wrapper .n-news-feature-content .read-more a {
    display: inline-block;
    font-weight: 500;
    font-size: 11.0231px;
    line-height: 13px;
    text-decoration-line: underline;
    color: #970000;
}

.n-news-read-title {
    position: relative;
    z-index: 1;
}
.n-news-read-title:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -23px;
    left: 0;
    width: 783px;
    height: 1px;
    background: #970000;
}
.n-news-read-title h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 26px;
}

.n-news-card-link a {
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    text-decoration-line: underline;
    color: #970000;
    margin-bottom: 8px;
}

.n-news-card-wrapper {
    background: #FFFFFF;
    border: 1px solid #F0EEEF;
    position: relative;
    z-index: 1;
    width: 350px;
    height: 368px;
}
.n-news-card-wrapper .tag {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
}
.n-news-card-wrapper .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    padding: 8px 9px;
    border: 3px solid #FFFFFF;
}
.n-news-card-wrapper .n-news-card-content {
    padding: 40px 22px 31px 40px;
}
.n-news-card-wrapper .n-news-card-content a {
    display: inline-block;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-decoration-line: underline;
    color: #333333;
    margin-bottom: 9px;
}
.n-news-card-wrapper .n-news-card-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

.n-related-area {
    background: #FFCC00;
    padding-top: 36px;
    padding-bottom: 97px;
}

.n-related-title h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 56px;
    color: #970000;
    margin-bottom: 39px;
}

.n-related-content-wrapper {
    background: #FFFFFF;
    border: 1px solid #F0EEEF;
}
.n-related-content-wrapper .n-related-thumb {
    position: relative;
    z-index: 1;
}
.n-related-content-wrapper .n-related-thumb:after {
    content: "";
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135.18deg, rgba(140, 27, 18, 0.58) 0%, rgba(140, 27, 18, 0) 59.72%);
}
.n-related-content-wrapper .n-related-thumb img {
    width: 100%;
}
.n-related-content-wrapper .n-related-thumb .tag {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
}
.n-related-content-wrapper .n-related-thumb .tag a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    padding: 8px 9px;
    border: 3px solid #FFFFFF;
}
.n-related-content-wrapper .n-related-content {
    padding: 40px 40px 30px;
}
.n-related-content-wrapper .n-related-content a {
    display: inline-block;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-decoration-line: underline;
    color: #333333;
    margin-bottom: 9px;
}
.n-related-content-wrapper .n-related-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgba(51, 51, 51, 0.5);
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */
