/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

:root {
    --theme__color1: #DC0714;
    --grey__text_color: #777777;
    --hind: 'Hind', sans-serif;
}

@font-face {
    font-family: FrizQuadrataStd;
    src: url("webfonts/Friz Quadrata Std/Friz Quadrata Std Regular/Friz Quadrata Std Regular.otf") format("opentype");
}

@font-face {
    font-family: Roboto Light;
    src: url("webfonts/Roboto-Light.ttf");
}

@font-face {
    font-family: Roboto Bold;
    src: url("webfonts/Roboto-Bold.ttf");
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    font-family: var(--hind);
    font-size: 14px;
    color: #666;
    background-color: #fff;
    line-height: 1.7em;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

a,
a:active,
a:focus,
a:active,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

input {
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.theme_text_color {
    color: var(--theme__color1);
}


a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
    outline: none;
}

::placeholder {
    opacity: 1;
}

:focus::placeholder {
    opacity: 0;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    /* Prevents HTML tables from becoming too wide */
    width: 100%;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

iframe {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 15px;
}

p:last-child {
    margin: 0;
}

.main-wrap {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 2500px) {
    .container {
        max-width: 2000px;
    }
}


/* header */

.header-section {
    background: var(--theme__color1);
}

.header-in {
    background: var(--theme__color1);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    /*height: 70px;*/
}

.second-nav {
    top: 30px;
    width: 80%;
    margin-left: 10%;
}

.first-nav-color {
    background: #911712;
    height: 70px;
}

.header-section-inner {
    min-height: 134px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.double-inner-nav {
    min-height: 70px;
}

.sticky .header-section-inner {
    min-height: 110px;
}

.header-logo {
    position: relative;
    align-self: stretch;
    width: 10px;
    display: flex;
    transition: 0.3s;
}

.header-logo .primary-img {
    width: 190px;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translate(0, -50%);
    max-width: initial;
    transition: 0.3s;
}

.sticky .header-logo .primary-img {
    opacity: 0;
}

.header-logo .short-img {
    width: 80px;
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translate(0, -50%);
    max-width: initial;
    opacity: 0;
    transition: 0.3s;
}

.double-inner-nav .header-logo .short-img {
    opacity: 100%;
}

.sticky .header-logo .short-img {
    opacity: 1;
}

.sticky .first-nav-color {
    display: none;
}

.sticky .second-nav {
    top: 0;
    margin-left: 0;
    width: 100%;
    background: var(--theme__color1);
    color: #ffffff;
}

.sticky .second-nav .main-menu a {
    color: #ffffff !important;
}

.sticky .second-nav .main-menu a.btn-desktop-login {
    color: #ffffff !important;
}
.sticky .second-nav .main-menu a.btn-desktop-register {
    color: #191919 !important;
}

.main-menu {
}

.main-menu > ul {
    display: flex;
    align-items: center;
}

.main-menu > ul > li {
    margin-right: 22px;
}

.main-menu > ul > li:last-child {
    margin-right: 0;
}

.main-menu > ul > li > a {
    font-weight: 700;
    transition: 0.3s;
}

.main-menu > ul > li > a:hover {
    opacity: 0.8;
}


/* header-end */


/* ---offcanvas-css--- */

.offcanvas-open {
    font-size: 22px;
    transition: 0.3s;
}

.offcanvas-open:hover {
    opacity: 0.8;
}

.offcanvas-close {
    color: #fff;
    position: absolute;
    transition: 0.3s;
    right: 15px;
    top: 15px;
    line-height: 1;
    font-size: 22px;
}

.offcanvas-close:hover {
    color: #97A3AE;
}

.offcanvas-menu {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(-105%);
    transition: 0.3s;
}

.offcanvas-menu.active {
    transform: translate(0);
}

.offcanvas-menu .offmenu {
    max-width: 250px;
    min-width: 200px;
    z-index: 5;
    position: relative;
    background: var(--theme__color1);
    height: 100%;
    padding: 50px 20px 40px;
    overflow: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.offcanvas-menu .offmenu :-webkit-scrollbar {
    display: none;
}

.mobile-menu li a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding: 7px;
}

.auth-btn {
    position: absolute;
    bottom: 2rem;
}

.mobile-menu .btn-login {
    background-color: white;
    color: black;
    min-width: 7rem;
    padding: 3px;
    margin-bottom: 0.7rem;

}

.mobile-menu .btn-register {
    background-color: #FFD700;
    color: black;
    min-width: 7rem;
    padding: 3px;
    margin-bottom: 0.7rem;

}


.btn-desktop-login {
    background-color: white;
    color: black;
    min-width: 7rem;
    padding: 3px;

}

.btn-desktop-register {
    background-color: #FFD700;
    color: black;
    min-width: 7rem;
    padding: 3px;

}
.btn-lang{
    background-color: #C00000;
    font-weight: 500;

}


.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.178);
    z-index: 2;
    transform: 0;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ---offcanvas-css-end---*/


/* --preloader-- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--theme__color1);
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* --preloader-end-- */


/* ---apple-section--- */

.apple-section {
    padding: 49px 0 20px;
    background: var(--theme__color1);
    color: #fff;
}

.apple-section-inner {
}

.box-h4 {
    font-size: 18px;
    margin: 0 0 30px;
    letter-spacing: 0.4px;
    padding: 5px 10px;
    border-radius: 5px;
    background: #C00000;
    display: inline-block;
    line-height: 1;
    font-weight: 500;
}

.box-h4.box-h4--black {
    background: #000;
    color: #fff;
}

.apple-row {
    --inner-space: 32px;
    --bt-space: var(--inner-space);
    --item: 3;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--inner-space) * -0.5) calc(var(--bt-space) * -1);
    justify-content: center;
    padding-bottom: 28px;
}

.apple-card {
    width: calc((100% / var(--item)) - var(--inner-space));
    margin: 0 calc(var(--inner-space) * 0.5) var(--bt-space);
}

.apple-card .image {
}

.apple-card .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.apple-card .content {
    padding: 14px 0px 10px;
    border-bottom: 1px solid #fff;
    height: 75px;
}

.apple-card .content h3 {
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    line-height: 1.7142;
}

.apple-row2 {
    --inner-space: 33px;
    --bt-space: var(--inner-space);
    --item: 2;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--inner-space) * -0.5) calc(var(--bt-space) * -1);
    justify-content: center;
    margin-bottom: 10px;
}

.apple-card2 {
    width: calc((100% / var(--item)) - var(--inner-space));
    margin: 0 calc(var(--inner-space) * 0.5) var(--bt-space);
}

.apple-card2 .image {
}

.apple-card2 .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.apple-card2 .content {
    padding: 20px 0 0;
}

.apple-card2 .content h5 {
    font-size: 16px;
    font-weight: 400;
}


/* ---apple-section---end */


/* ---banana-section--- */

.banana-section {
    padding: 100px 0 90px;
    background: #FFD700;
    color: #000;
}

.banana-section-inner {
}

.banana-content {
}

.banana-content h5 {
    margin: 0 0 20px;
    font-size: 16px;
}

.banana-content h3 {
    font-size: 46px;
    font-weight: 400;
}


/* ---banana-section---end */


/* ---coffee-section--- */

.coffee-section {
    padding: 50px 0;
}

.coffee-section-inner {
}

.coffee-row-outer {
    padding: 22px 22px 1px;
    background: #F6F6F6;
}

.coffee-row {
    --inner-space: 30px;
    --bt-space: var(--inner-space);
    --item: 3;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--inner-space) * -0.5) calc(var(--bt-space) * -1);
    justify-content: center;
    margin-bottom: 10px;
}

.coffee-card {
    width: calc((100% / var(--item)) - var(--inner-space));
    margin: 0 calc(var(--inner-space) * 0.5) var(--bt-space);
}

.coffee-card .video {
    display: block;
    padding-top: 56.7%;
    position: relative;
}

.coffee-card .video iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/* ---coffee-section---end */


/* ---cup-section--- */

.cup-section {
    background: #F6F6F6;
}

.cup-section-inner {
}

.cups {
    padding: 50px 0;
}

.cups img {
    width: 100%;
    height: 137px;
}


/* ---cup-section---end */


/* ---footer-section--- */

.footer-section {
    padding: 1px 0;
    background: #911712;
    color: #fff;
    bottom: 0;
    width: 100%;
}

.footer-top-border {
    border-top: 10px solid var(--theme__color1);
}

.footer-section-inner {
}

.footer-top-row {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top-row .footer-menu {
}

.footer-menu {
}

.footer-menu > ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu > ul > li {
    margin: 10px 0;
    margin-right: 30px;
}

.footer-menu > ul > li:last-child {
    margin-right: 0;
}

.footer-menu > ul > li > a {
    font-size: 14px;
}

.footer-menu > ul > li > a:hover {
}

.social-menu {
}

.social-menu > ul {
    display: flex;
}

.social-menu > ul > li {
    margin-right: 14px;
}

.social-menu > ul > li:last-child {
    margin-right: 0;
}

.social-menu > ul > li > a {
    height: 35px;
    width: 35px;
    font-size: 18px;
    background: #fff;
    color: #911712;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
}

.social-menu > ul > li > a:hover {
    color: var(--theme__color1);
}

.footer-bottom-row {
    /*padding-top: 15px;*/
    padding-bottom: 15px;
}

.footer-bottom-row .copy-right {
    font-size: 14px;
    text-align: center;
}


/* ---footer-section---end */


/* ---form-section--- */

.form-section {
    padding: 60px 0;
    background: var(--theme__color1);
    color: #fff;
}

.form-section-inner {
    padding: 0 5%;
}

.sign-form {
}

.sign-form-inner {
}

.sign-form-title {
    margin: 0 0 55px;
    text-align: center;
}

.sign-form-title h2 {
    font-size: 32px;
}

.custom-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 12px;
    grid-column-gap: 120px;
}

.single-input-x {
    width: 100%;
}

.label-x {
    font-size: 19px;
    padding: 0 0 3px 10px;
    width: 100%;
}

.input-x {
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 6px;
    line-height: 1.4;
    width: 100%;
    border: 1px solid transparent;
    color: #000;
    background: #fff;
}

.form-bottom {
    margin: 35px 0 0;
    display: flex;
    justify-content: center;
}

.submit-button {
    font-size: 28px;
    padding: 10px 30px 5px;
    border-radius: 8px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFC000;
    color: #000;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 0.3s;
}

.submit-button:hover {
    background: #ffe600;
}


/* ---form-section---end */

@media only screen and (min-width: 981px) {
    .header-color {
        background-color: #ffffff;
    }
}

.header-color .main-menu a {
    color: #191919 !important;
}

.fullwidth_image img {
    width: 100%;
    position: relative;
}

.about_section_padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.grey_text {
    color: var(--grey__text_color);
}

.about_content ul {
    list-style-type: disc;
    padding: 0 0 1.5em 2em;
    line-height: 26px;
}

.program-content .apple-section {
    background: #fff;
    color: black;
}

.program-content .box-h4 {
    background: #000;
    color: #fff;
}

.md-mobile-logo {
    display: none;
    text-transform: uppercase;
    font-family: 'Hind', Helvetica, Arial, Lucida, sans-serif;
    font-size: 26px;
    color: var(--theme__color1);
}

.header-color .md-mobile-logo {
    display: block;
}

.et-fixed-header .logo_container {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 100%;
}

.mb-sm-20 {
    margin-bottom: 20px;
}
.cup_10:after {
    content: '10';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.cup_19:after {
    content: '20';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.cup_6:after {
    content: '6';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.cup_8:after {
    content: '8';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.cup_3:after {
    content: '3';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.cup_9:after {
    content: '10';
    display: block;
    margin-top: 15px;
    text-align: center;
}


.cup_4:after {
    content: '4';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.cup_1:after {
    content: '1';
    display: block;
    margin-top: 15px;
    text-align: center;
}

.table-mobile, .cups-mobile {
    display: none;
}

.mb-sm-15 {
    margin-bottom: 15px;
}

#main-content .banner-heading {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 18%;
    margin-right: 20%;
    color: white;
    font-size: 3.0rem !important;
    font-weight: 300;
    font-family: "Roboto Light";
}

.banner-heading span {
    font-size: 1.75rem !important;
    font-weight: 700;
    font-family: "Roboto Bold";
}

.team-image img {
    height: 350px;

}


.team-member-name {
    font-size: 22px;
    line-height: 1.7rem;
}

.team-position {
    font-size: 18px;
    line-height: 1.7rem;
}

@media (max-width: 1440px) and (min-width: 1023px) {
    #main-content .banner-heading {
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media (max-width: 1024px) and (min-width: 980px) {
    #main-content .banner-heading {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 2.75rem !important;
    }
}

@media (max-width: 979px) and (min-width: 601px) {
    #main-content .banner-heading {
        margin-right: 5%;
        margin-left: 5%;
        font-size: 2.75rem !important;
    }
}

@media (max-width: 600px) {
    #main-content .banner-heading {
        margin-right: 5%;
        margin-left: 5%;
        font-size: 1rem !important;
    }

    .banner-heading span {
        font-size: 1.25rem !important;
    }

    .table-desktop, .cups-desktop {
        display: none;
    }

    .table-mobile, .cups-mobile {
        display: block;
    }

    .program-content .table thead th {
        border: none;
        padding: 5px;
        font-size: 14px;
    }

    .cups-mobile .cups {
        padding: 10px;

    }

    .team-image img {
        height: 300px;
        /*margin-bottom: 12rem;*/
    }

    .text-sm-center {
        text-align: center;
        padding: 0;
    }

}

@media (max-width: 980px) {
    .md-mobile-logo {
        display: block;
        color: #ffffff;
    }

    .first-nav-color {
        display: none;
    }

    .second-nav {
        top: 0;
        margin-left: 0;
        width: 100%;
        background: var(--theme__color1);
        color: #ffffff;
    }

    .second-nav .main-menu a {
        color: #ffffff !important;
    }
}

.btn-theme:hover {
    color: #fff;
}

.btn-theme:focus {
    outline: 0;
    color: #fff;
    box-shadow: 0 0 0 0.25rem #c5b8b266;
}
.bg-schedule-pink{
   background-color: #f39ba1;
}
