/* GENERAL */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #edf2f6 url('../img/bg1.jpg') no-repeat center center;
}
html,
body {
    margin: 0;
    padding: 0;
    color: #291C00;
    line-height: 1.8em;
}
a, a:hover {
    color: #291C00;
    text-decoration: none;
}
/* HEADING */

h1 {
    font-size: 34px;
    font-weight: 600;
}

h2 {
    font-size: 30px;
    font-weight: 600;
}

h3 {
    font-size: 26px;
    font-weight: 500;
}

h4 {
    font-size: 22px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}

h1 {
    font-family: 'Tonyukuk';
}

p {
    font-size: 14px;
}

/* UNDERLINE */

.underline-red {
    position: relative;
    color: #56698F;
}

.underline-red::after {
    background-color: #E31E24;
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 15px;
}

.underline-white {
    position: relative;
    color: #fff;
}

.underline-white::after {
    background-color: #fff;
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 15px;
}

/* LINK-MORE */

.link-more {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #56698F;
    text-decoration: none;
}

.link-more img {
    height: 24px;
    width: auto;
}

.link-more:hover {
    text-decoration: none;
    color: #56698F;
}

/*------------------------------------------------
    MAIN
------------------------------------------------*/

.general {
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevent container scrolling */
    display: flex;
}
.svg-container {
    width: 100%;
    height: 100%;
    max-width: 800px; /* Maximum size */
    max-height: 800px; /* Maximum size */
    margin: 0 auto; /* Center horizontally */
}
.sidebar {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

.sidebar ul {
    margin: 0;
    padding: 30px;
    list-style: none;
}
.sidebar ul li {
    margin: 0 0 10px 0;
}
.sidebar ul a {
    font-weight: 500;
    color: #666;
    letter-spacing: 0.02rem;
}
.sidebar ul li ul {
    padding: 0;
    display: none;
}
.sidebar ul li.active ul {
    display: block;
}
.sidebar ul li ul li {
    margin: 0;
}
.sidebar ul li ul li a {
    padding: 5px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.body {
    width: 50%;
    height: 100%;
    overflow-y: auto; /* Vertical scrolling only */
    margin: 0;
}
@media (max-width: 768px) {
    .general {
        width: 100%;
        display: block;
    }
    .sidebar {
        height: auto;
        width: 100%;
        display: block;
    }
    .sidebar ul li {
        display: inline-block;
        margin: 0 10px;
    }
    .sidebar ul li ul {
        display: none;
    }
    .body {
        width: 100%;
        height: auto;
        margin: 15px 0 0 0;
    }
}
.container-xl {
    width: 100%;
    max-width: 100%;
}

/*-------------------------------------------- 
    CARD
--------------------------------------------*/
.card {
    border: none;
    box-shadow: 3px 3px 8px 0px rgba(227,227,227,0.39);
    -webkit-box-shadow: 3px 3px 8px 0px rgba(227,227,227,0.39);
    -moz-box-shadow: 3px 3px 8px 0px rgba(227,227,227,0.39);
    margin-bottom: 15px;
}
.card-header {
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 600;
    color: #444;
}
.card-header i {
    color: #205295;
}
.card-header span {
    float: right;
    font-weight: 400;
    font-size: 14px;
}
.card-header span i {
    font-size: 20px;
}
/* home */

.main-menu {
    width: 100%;
    text-align: center;
    padding: 13% 0;
}
.home .img-full {
    margin: 30px 0;
}
.img-full img {
    width: 100%;
}
.info {
    margin: 30px 0;
}

/* IMAGE */
.box img {
    width: 100%;
    height: 100%;
}

/* HEADER-TOP */
header {
    padding: 30px 0;
    color: #370617;
}
header h1 {
    margin: 0;
}
header h1 a {
    color: #370617;
    letter-spacing: 5px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100px;
}

.contact-box {
    width: 50%;
    display: flex;
    align-items: center;
}

@media(min-width: 992px) {
    .contact-info {
        justify-content: flex-end;
    }
    .contact-box {
        width: auto;
    }
    .contact-box {
        margin-right: 40px;
    }
}

.contact-box .icon-box img {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.contact-box .text-box p {
    font-size: 16px;
    font-weight: 600;
    color: #56698F;
    margin-bottom: 0;
}

.contact-box .text-box a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #56698F;
    text-decoration: none;
}

/* TOP-LOGO */

.header-top .top-logo {
    position: absolute;
    top: 0;
    z-index: 999999;
}

.header-top .top-logo img {
    max-height: 200px;
    width: auto;
}

/* WIDGET-LANG */

.widget-lang .btn-outline-primary {
    min-width: 120px;
    border-color: #56698F;
    border-radius: 0;
    font-weight: 600;
    color: #56698F;
}

.widget-lang .btn-outline-primary:hover {
    background-color: transparent;
    color: #56698F;
}

.widget-lang .btn-outline-primary:not(:disabled):not(.disabled):active {
    background-color: transparent;
    border-color: #56698F;
    color: #56698F;
}

.widget-lang .btn-outline-primary:focus,
.widget-lang .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: none !important;
}

.contact-info .show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.contact-info .show>.btn-outline-primary.dropdown-toggle {
    background-color: transparent;
    border-color: #56698F;
    color: #56698F;
}

.widget-lang .dropdown-menu {
    background-color: #56698F;
    background-clip: border-box;
    min-width: 120px !important;
    left: 0 !important;
    right: 0 !important;
    top: 38px !important;
    transform: none !important;
    will-change: unset !important;
    border: 1px solid #56698F;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 999999;
}

.widget-lang .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 5px 15px;
}

.widget-lang .dropdown-menu .dropdown-item:focus,
.widget-lang .dropdown-item:hover {
    background-color: transparent;
}

/* CREA-MENU */

.crea-header {
    background-color: #3A5A9A;
    padding-right: 15px;
    padding-left: 15px;
}

.crea-header .logo {
    padding: 30px;
}

.crea-menu>ul {
    list-style: none;
}

.crea-menu>ul>li>a {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    border-top: 1px solid rgba(255, 255, 255, .20);
}

.crea-menu ul li:hover>a {
    background-color: transparent;
    color: #fc555a;
}

.crea-menu li>ul {
    background-color: #3A5A9A;
    list-style: none;
    padding-left: 16px;
}

.crea-menu ul ul li>a {
    background-color: transparent;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .20);
    padding-left: 15px;
}

.crea-menu ul ul li:hover>a {
    background-color: transparent;
}

.crea-header .burger-menu {
    top: 21.5px;
    right: 0;
}

.crea-header .line-menu {
    background-color: #fff;
}

.crea-header .line-menu.line-half {
    width: 100%;
}

.crea-header .line-menu.first-line {
    transform-origin: center;
}

.crea-header .menu-open .line-menu.first-line {
    transform: rotate(-90deg) translateX(-7px);
}

.crea-header .line-menu.last-line {
    transform-origin: center;
}

.crea-header .menu-open .line-menu.last-line {
    transform: rotate(-90deg) translateX(7px);
}

.crea-menu .dropdown-plus::after,
.crea-menu .dropdown-plus::before {
    background-color: #fff;
}

@media(min-width: 768px) {
    .crea-header {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media(min-width: 1200px) {
    .crea-header .crea-header-container {
        height: 60px;
    }
    .crea-header .logo {
        padding: 0;
    }
    .crea-header .logo img {
        position: absolute;
    }
    .crea-menu>ul>li>a {
        line-height: 60px;
        height: 60px;
        border-top: 0;
    }
    .crea-header.sticky {
        top: 0 !important;
        margin-top: 0 !important;
    }
    .crea-menu li>ul {
        width: 200px;
        padding: 10px 0;
    }
    .crea-menu ul ul li>a {
        padding: 9px 20px 7px!important;
        border-top: 0;
    }
    .crea-menu ul ul li:hover>a {
        padding-left: 20px !important;
        color: #fc555a;
    }
    .crea-menu ul ul li:hover>a::before {
        width: 0;
    }
    .crea-menu ul li.dropdown_menu>a>span::before {
        width: 6px;
        height: 6px;
        border-color: #fff;
        border-width: 1.5px 1.5px 0 0;
    }
}

/* SWIPER */

.swiper-container {
    position: relative;
}

.swiper-container .swiper-slide {
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
}

.swiper-container .swiper-caption {
    padding: 10px 15px 60px 15px;
}

.swiper-container .swiper-caption a {
    display: block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.swiper-container .swiper-navigation {
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.swiper-container .swiper-navigation .swiper-button {
    background-color: #fff;
    position: relative;
    right: inherit;
    left: inherit;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin: 5px;
}

.swiper-container .swiper-navigation .swiper-button-disabled {
    opacity: .9;
}

.swiper-container .swiper-navigation .swiper-button:focus {
    outline: 0;
}

.swiper-container .swiper-navigation .swiper-button::after {
    font-family: FontAwesome;
    font-size: 30px;
    color: #E31E24;
}

.swiper-container .swiper-navigation .swiper-button-prev::after {
    content: "\f105";
}

.swiper-container .swiper-navigation .swiper-button-next::after {
    content: "\f104";
}

@media(min-width: 576px) {
    .swiper-container .swiper-slide {
        min-height: 350px;
    }
    .swiper-container .swiper-caption a {
        font-size: 18px;
    }
}

@media(min-width: 768px) {
    .swiper-container .swiper-slide {
        min-height: 400px;
    }
    .swiper-container .swiper-caption {
        background-color: #E31E24;
        width: 90%;
        padding: 20px 150px 20px 25px;
    }
    .swiper-container .swiper-caption a {
        font-size: 20px;
    }
    .swiper-container .swiper-navigation {
        right: 2%;
        bottom: 7%;
    }
}

@media(min-width: 992px) {
    .swiper-container .swiper-slide {
        min-height: 500px;
    }
    .swiper-container .swiper-caption {
        width: 80%;
    }
    .swiper-container .swiper-caption a {
        font-size: 24px;
    }
}

@media(min-width: 1200px) {
    .swiper-container .swiper-slide {
        min-height: 600px;
    }
    .swiper-container .swiper-caption {
        width: 70%;
    }
}

/* HEADER-BOTTOM*/

.header-bottom {
    background-color: #3A5A9A;
    padding-right: 15px;
    padding-left: 15px;
}

.header-bottom h3 {
    font-size: 28px;
    color: #fff;
    padding: 8px 16px;
    margin-bottom: 0;
}

.header-bottom .nav li a {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

@media(min-width: 480px) {
    .header-bottom h3,
    .header-bottom .nav li a {
        font-size: 32px;
    }
}

/* FACTS */

.widget.facts {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media(min-width: 768px) {
    .widget.facts {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.widget.facts h2 {
    margin-bottom: 30px;
}

.facts-content {
    margin-bottom: 50px;
}

@media(min-width: 992px) {
    .facts-content {
        margin-bottom: 0;
    }
}

.facts-content p {
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.facts-content p b {
    display: block;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    color: #E31E24;
    text-align: right;
}

.in-numbers {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    padding: 20px;
}

.in-numbers:nth-child(2n+1) {
    margin-right: 20px;
}

.in-numbers .in-brief {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.in-numbers.bg-alizarin .in-figures {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.in-numbers.bg-mariner .in-figures {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

/* PROJECTS */

/* LATEST_NEWS */

.widget.latest_news {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media(min-width: 768px) {
    .widget.latest_news {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* TABS */

.news-tab {
    margin-bottom: 30px;
}

@media(min-width: 992px) {
    .news-tab {
        margin-bottom: 0;
    }
}

.news-tab .tab-content img {
    width: 100%;
}

.news-tab .nav-tabs {
    border-bottom-color: transparent;
}

.news-tab .nav-tabs .nav-link {
    border-radius: 0;
    color: #333;
}

.news-tab .nav-tabs .nav-link.active {
    background-color: #666;
    border-color: transparent;
    color: #fff;
}

.news-tab .nav-tabs .nav-link:focus,
.news-tab .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.news-tab .nav-tabs .nav-link:focus {
    outline: 0;
}

/* SLIDER-BLOCK */

.slider-block {
    background-color: #3A5A9A;
    padding: 40px 30px;
}

.slider-block .heading {
    margin-bottom: 20px !important;
}

.slider-block .heading h2 {
    color: #fff;
}

.slider-block .slider-arrows {
    display: flex;
}

.slider-block .slider-arrows .slick-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    top: initial;
    right: initial;
    left: initial;
    transform: translateY(0);
}

.slider-block .slider-arrows .slick-arrow::before {
    width: 24px;
    height: 24px;
    display: block;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.slider-block .slider-arrows .slick-arrow:first-child {
    margin-right: 5px;
}

.slider-block .slider-arrows .slick-arrow:last-child {
    margin-left: 5px;
}

.slider-block .slider-arrows .slick-next::before {
    background-image: url('../img/icons/arrow-right.svg');
}

.slider-block .slider-arrows .slick-prev::before {
    background-image: url('../img/icons/arrow-left.svg');
}

.slider-block .slick-slider .slider-item a:focus {
    outline: 0;
}

.slider-block .slick-slider .slider-image {
    margin-bottom: 20px;
}

.slider-block .slick-slider .slider-image img {
    width: 100%;
}

.slider-block .slick-slider .slider-title h5 {
    font-weight: 400;
    color: #fff;
    line-height: 30px;
    margin-bottom: 0;
}

.slider-block .slick-slider .slider-title h5 a {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* NEWSLETTER */

.widget.newsletter {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #E31E24;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media(min-width: 768px) {
    .widget.newsletter {
        padding-right: 35px;
        padding-left: 35px;
    }
}

@media(min-width: 1300px) {
    .widget.newsletter {
        flex-direction: row;
    }
    .subscribe-form {
        margin-left: auto;
    }
}

.subscribe-form .form-group {
    margin-bottom: 0;
}

.subscribe-form label {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-right: 15px;
    padding: 0;
}

.subscribe-form .input-group .form-control {
    height: auto;
    border-radius: 0;
    border-color: #fff;
    background-clip: border-box;
}

.subscribe-form .input-group .form-control:focus {
    box-shadow: none;
}

.subscribe-form .input-group>::-webkit-input-placeholder {
    color: #56698F;
}

.subscribe-form .input-group>::-moz-placeholder {
    color: #56698F;
}

.subscribe-form .input-group>:-ms-input-placeholder {
    color: #56698F;
}

.subscribe-form .input-group>:-moz-placeholder {
    color: #56698F;
}

.subscribe-form .input-group-append .btn-primary {
    background-color: #3A5A9A;
    border-color: #3A5A9A;
    border-radius: 0;
    font-weight: 600;
    padding: 8px 20px;
}

.newsletter .mos-aris {
    width: 100%;
}

.newsletter .whatsapp,
.newsletter .email-contact {
    width: 50%;
}

.newsletter .whatsapp img,
.newsletter .email-contact img {
    height: 30px;
    margin-right: 15px;
}

@media(min-width: 576px) {
    .newsletter .mos-aris,
    .newsletter .whatsapp,
    .newsletter .email-contact {
        width: auto;
    }
    .newsletter .mos-aris,
    .newsletter .whatsapp {
        margin-right: 30px;
    }
}

.newsletter .whatsapp a,
.newsletter .email-contact a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

/* FAQ */

.widget.faq {
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px;
}

@media(min-width: 768px) {
    .widget.faq {
        padding-right: 35px;
        padding-left: 35px;
    }
}

.accordion-wrap {
    margin-bottom: 30px;
}

@media(min-width: 1200px) {
    .accordion-wrap {
        margin-bottom: 0;
    }
}

.accordion-wrap .heading h2 {
    color: #56698F;
}

.accordion-wrap .heading .more {
    display: block;
    font-size: 20px;
    color: #56698F;
    text-decoration: none !important;
}

.accordion-wrap .heading .more img {
    width: 20px;
    margin-left: 10px;
}

.accordion-wrap .heading h2::after {
    background-color: #E31E24;
}

.accordion-wrap .accordion .card {
    border-radius: 0;
    border: 1px solid #ccc;
}

.accordion-wrap .accordion .card:not(:last-child) {
    border-bottom: 0;
}

.accordion-wrap .accordion .card-header {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.accordion-wrap .accordion .card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

.accordion-wrap .accordion .card-header a {
    color: inherit;
    text-decoration: none;
}

.accordion-wrap .accordion .card-body p {
    font-size: 16px;
    color: #666;
}

.accordion-wrap .accordion .card-body p:last-of-type {
    margin-bottom: 0;
}

/* SURVEY */

.survey {
    background-color: #E31E24;
    height: 100%;
    padding: 50px 30px;
}

.survey .heading h2 {
    color: #fff;
}

.survey-form h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 50px;
}

.survey-form label {
    position: relative;
    font-size: 16px;
    color: #fff;
}

.survey-form input,
.survey-form label:focus {
    outline: 0;
}

.survey-form .custom-control-label::before {
    border: 1px solid #fff;
}

.survey-form .custom-control-input:checked~.custom-control-label::before {
    background-color: #fff;
    border-color: #fff;
}

.survey-form .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.survey-form .custom-radio .custom-control-input:checked~.custom-control-label::after {
    top: 5.5px;
    left: -20px;
    width: inherit;
    height: inherit;
    background-image: none;
    content: "\f111";
    font-family: FontAwesome;
    font-size: 10px;
    color: #666;
}

.survey-form .btn-primary {
    background-color: #3A5A9A;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 0;
    border-color: #3A5A9A;
    margin-top: 30px;
    padding: 10px 30px;
}

.survey-form .btn-primary:focus,
.survey-form .btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}

.survey-form .btn-primary:not(:disabled):not(.disabled):active {
    background-color: #3A5A9A;
    border-color: #3A5A9A;
}

/* PARTNERS */

.widget.partners {
    position: relative;
    padding-right: 35px;
    padding-left: 35px;
}

.partners .partner-logo {
    width: 100%;
    text-align: center;
    padding: 30px;
}

@media(min-width: 480px) {
    .partners .partner-logo {
        width: 50%;
        text-align: left;
    }
}

@media(min-width: 576px) {
    .partners .partner-logo {
        width: 33.333333%;
    }
}

@media(min-width: 992px) {
    .partners .partner-logo {
        width: 20%;
    }
}

/* FOOTER */

footer {
    position: relative;
    padding: 10px;
}

.footer-menu {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.footer-menu li a {
    display: block;
    font-size: 14px;
    color: #fff;
    padding: 7px 14px;
    text-decoration: none;
}

.copyright p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 0;
}

/* SECTION */

.section {
    background-image: url("../img/image-01.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.section-header {
    margin: 0;
    padding: 30px 0;
    border-bottom: 2px solid #291C00;
}

.section-header h1 {
    font-size: 68px;
    margin-bottom: 15px;
}

.section-header h1,
.section-header h3 {
    color: #291C00;
}

.section-header h3 {
    margin-bottom: 0;
}

@media(min-width: 768px) {
    .section-header h1 {
        margin-bottom: 0;
    }
}

.section-header h3 {
    font-size: 40px;
}

.section-content .back {
    background-color: #291C00;
    font-size: 24px;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #93866A;
    margin-bottom: 30px;
}

.section-content .back i {
    margin-right: 10px;
}

.section-content .list-unstyled li a {
    display: block;
    font-size: 24px;
    color: #291C00;
    text-decoration: none;
    padding: 5px 0;
}

/* BREADCRUMBS */
ul.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.breadcrumbs li {
    display: inline-block;
}
ul.breadcrumbs li i {
    margin: 0 10px;
}


/* CIRCULAR MENU */
#tree {
    height: 100vh;
}
.circular-menu {
    position: relative;
    width: 500px;
    height: 500px;
    display: inline-block;
}

svg {
    margin: 50px;
    stroke: #291C00;
    stroke-width: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
svg.main {
    margin: 0;
}
.circular-menu h4 {
    position: absolute;
    width: 120px;
    height: 60px;
    line-height: 30px;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -60px;
    text-align: center;
}
.circular-menu ul {
    list-style: none; margin: 0;
    padding: 0;
}
.circular-menu ul li {
    width: 160px; 
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    position: absolute;
    margin: 0 0 0 -80px;
}
.circular-menu ul li:nth-child(1) {top: 0; left: 50%;}
.circular-menu ul li:nth-child(2) {
    top: 67px; left: 78px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.circular-menu ul li:nth-child(3) {
    top: 238px; left: 15px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.circular-menu ul li:nth-child(4) {
    top: 409px; left: 78px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.circular-menu ul li:nth-child(5) {
    bottom: 0px; left: 50%;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.circular-menu ul li:nth-child(6){
    top: 409px; right: -8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.circular-menu ul li:nth-child(7) {
    top: 238px; right: -65px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.circular-menu ul li:nth-child(8) {
    top: 67px; right: -8px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* ARTICLES */

.article-item {
    margin-bottom: 30px;
}
.article-item img {
    width: 100%;
    height: 100%;
}

.article-detail h4 {
    margin-bottom: 30px;
}
.article-detail img {
    margin-bottom: 30px;
}

/* BOOKS */
.widget .book-item {
    text-align: center;
}
.widget .book-item img {
    width: 60%;
    height: 60%;
}

/* MEMBERS */
ul.members {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.members li {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
}
ul.members li img {
    width: 48px;
    height: 48px;
    margin-right: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
    PODCASTS
---------------------------------------*/
ul.podcasts {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.podcasts li {
    margin: 0 0 20px 0;
}
ul.podcasts li img {
    border-radius: 8px;
    max-width: 80px;
    margin-right: 20px;
}
