@charset "UTF-8";


/****** ************************************************/
/****** 4-Tab and 3-Tab responsive tabs ********/
/****** ************************************************/

.responsive-tabs {width: 100%; margin-top: 20px;}
.responsive-tabs .state {position: absolute; left: -10000px;}

.responsive-tabs .flex-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}

/****** 4-Tab and 3-Tab Layout and spacing ********/
.responsive-tabs .flex-tabs .tab, .responsive-tabs .flex-tabs .threetabs {padding: 10px 0px 0px 0px; word-wrap: break-word; border-radius: 20px;}


.responsive-tabs .flex-tabs .panel {
  padding: 20px;
  display: none;
  width: 100%;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-radius: 20px;
}

.responsive-tabs .tab, .responsive-tabs .threetabs {
  display: inline-block;
  padding: 10px;
  vertical-align: top;
  cursor: hand;
  cursor: pointer;
}


/************************************************
Styling of checked tabs
************************************************/

/* Reveal panel of checked tabs */
#tab-one:checked ~ .tabs #tab-one-panel, #tab-two:checked ~ .tabs #tab-two-panel, #tab-three:checked ~ .tabs #tab-three-panel, #tab-four:checked ~ .tabs #tab-four-panel {display: block;}


/* Reveal panel of checked tabs */
.tabs #tab-one-panel {border-top-left-radius: 0px;}
.tabs .panel:last-child {border-top-right-radius: 0px;}

/* Size and background color of checked tabs for four tabs i.e. .tab */
.responsive-tabs .flex-tabs .tab {width: calc((100vw - 70px)/4); height: 25vw;}
#tab-one:checked ~ .tabs .tab.extralightbeneblueBG {background-color: var(--benebluelight); height: calc(25vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
#tab-two:checked ~ .tabs .tab.lightorangeBG {background-color: var(--beneorangemild); height: calc(25vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
#tab-three:checked ~ .tabs .tab.extralightpurpleBG {background-color: var(--benepurplelight); height: calc(25vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
#tab-four:checked ~ .tabs .tab.extralightlegupgreenBG {background-color: var(--legupgreenlight); height: calc(25vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}

/* Size and background color of checked tabs for threetabs */
.responsive-tabs .flex-tabs .threetabs {width: calc((100vw - 60px) / 3); height: 26vw;}
#tab-one:checked ~ .tabs .threetabs.lightlegupgreenBG {background-color: var(--legupgreenextralight); color:#000; height: calc(26vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
#tab-two:checked ~ .tabs .threetabs.mildorangeBG {background-color: var(--beneorangelight); color:#000; height: calc(26vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}
#tab-three:checked ~ .tabs .threetabs.lightpurpleBG {background-color: var(--benepurpleextralight); color:#000; height: calc(26vw + 10px); border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;}


/* Styling for cursor in checked tabs */
#tab-one:checked ~ .tabs #tab-one-label, #tab-two:checked ~ .tabs #tab-two-label, #tab-three:checked ~ .tabs #tab-three-label, #tab-four:checked ~ .tabs #tab-four-label {cursor: default;}


/* Mouse-over effect of four tabs,. i.e. "tab" */
.flex-tabs .tab.extralightbeneblueBG:hover {background-color: var(--benebluelight);}
.flex-tabs .tab.lightorangeBG:hover {background-color: var(--beneorangemild);}
.flex-tabs .tab.extralightpurpleBG:hover {background-color: var(--benepurplelight);}
.flex-tabs .tab.extralightlegupgreenBG:hover {background-color: var(--legupgreenlight);}


/* Mouse-over effect of three tabs, i.e. "threetabs" */
.flex-tabs .threetabs.lightpurpleBG:hover {background-color: var(--benepurpleextralight);}
.flex-tabs .threetabs.mildorangeBG:hover {background-color: var(--beneorangelight);}
.flex-tabs .threetabs.lightlegupgreenBG:hover {background-color: var(--legupgreenextralight);}


/* Scale background image of checked tabs */
#tab-one:checked ~ .tabs .threetabs .imgbox.einzelicon.cr {background-position: 100% 0%; transform: scale(1.1);}
#tab-two:checked ~ .tabs .threetabs .imgbox.halbprivaticon.cr {background-position: 100% 0%; transform: scale(1.1);}
#tab-three:checked ~ .tabs .threetabs .imgbox.mgkicon.cr {background-position: 100% 0%; transform: scale(1.1);}

#tab-one:checked ~ .tabs .tab .imgbox.levelicon.cc {background-position: 100% 0%; transform: scale(1.1);}
#tab-two:checked ~ .tabs .tab .imgbox.businessicon.cc {background-position: 100% 0%; transform: scale(1.1);}
#tab-three:checked ~ .tabs .tab .imgbox.conversationicon.cc {background-position: 100% 0%; transform: scale(1.1);}
#tab-four:checked ~ .tabs .tab .imgbox.examprepicon.cc {background-position: 100% 0%; transform: scale(1.1);}

#tab-one:checked ~ .tabs .tab .imgbox.levelicon.sk {background-position: 100% 0%; transform: scale(1.1);}
#tab-two:checked ~ .tabs .tab .imgbox.conversationicon.sk {background-position: 100% 0%; transform: scale(1.1);}
#tab-three:checked ~ .tabs .tab .imgbox.grammarrefreshicon.sk {background-position: 100% 0%; transform: scale(1.1);}
#tab-four:checked ~ .tabs .tab .imgbox.examprepicon.sk {background-position: 100% 0%; transform: scale(1.1);}




/************************************************
Accordion
************************************************/
/* Acordion styles */
.tabwrap {margin: 16px 0px 12px 0px;}

.tab {position: relative; width: 100%; overflow: hidden;}
.threetabs {position: relative; width: 100%; overflow: hidden;}

.tabs label h2 {font-size: 2vw;}

input {position: absolute; opacity: 0; z-index: -1;}

.tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}

.tab-content .FBtext  {margin-top: 0px;}
.tab-content .FBtext:last-child {margin-bottom: 40px;}

input:checked ~ .tab-content {max-height: 1000vh; overflow: scroll;}
input:checked ~ label {font-weight: bold;}

label::after {
  position: absolute;
  right: -2.2vw;
  top: 0px;
  display: block;
  width: 2em;
  height: 2em;
  line-height: 0.7;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
  font-size: 3vw;
}





/****** ************************************************/
/****** Accordion for Course Types ********/
/****** ************************************************/
h1 {
  margin: 0;
  line-height: 2;
  text-align: center;
}
h2 {
  margin: 0 0 .5em;
  font-weight: normal;
}
.acctab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}



.row {
  display: flex;
}
.row .col {
  flex: 1;
}
.row .col:last-child {
  margin-left: 1em;
}








/* Accordion styles */
.acctabs {
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.0);
  border: 2px solid #fff;
}
.acctab {
  width: 100%;
  color: #000;
  overflow: hidden;}

  label.acctab-label {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.8vw;
    transition: all .3s ease-in-out;

  }

  label.acctab-label:hover {background-color: #fff; color: #000;}


  .acctab-label::after {
    /*content: '276F';*/
    content: '\2713';
    width: 1em;
    height: 1em;
    background-color: var(--beneblue);
    text-align: center;
    transition: all .35s;
  }

  .acctab-content {
    max-height: 0;
    padding: 0 1em;
    color: #000;
    border: 2px;
    transition: all .35s;
  }

/* makes a button to close all tabs (optional) */
  .acctab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background-color: var(--benepurple);
    cursor: pointer;
  }
  .acctab-close:hover {background-color: var(leguppink);}

  .acctabs input:checked + label.acctab-label {background-color: #fff;}

  .acctabs input:checked::after {transform: rotate(90deg);}
  .acctabs input:checked ~ .acctab-content {
    max-height: 1000vh;
    padding: 20px;
  }


  /* Container-dependant checked tab states */
    .extralightlegupgreenBG .acctabs input:checked + label.acctab-label  {color: var(--legupgreen);}
    .extralightleguppinkBG .acctabs input:checked + label.acctab-label  {color: var(--leguppink);}
    .extralightbeneblueBG .acctabs input:checked + label.acctab-label  {color: var(--beneblue);}
    .extralightpurpleBG .acctabs input:checked + label.acctab-label  {color: var(--benepurple);}
    .lightorangeBG .acctabs input:checked + label.acctab-label  {color: var(--beneorange);}



/* Container-dependant BG and border colors */
  .extralightlegupgreenBG .acctab-label {background-color: var(--legupgreenmild);}
  .extralightlegupgreenBG .acctab-content {background-color: var(legupgreen); border: 2px; border-color: var(--legupgreen);}

  .extralightleguppinkBG .acctab-label {background-color: var(--leguppinkmild);}
  .extralightleguppinkBG .acctab-content {background-color: var(--leguppinkextralight); border-color: var(--leguppink);}

  .extralightbeneblueBG .acctab-label {background-color: var(--benebluemild);}
  .extralightbeneblueBG .acctab-content {background-color: var(--beneblueextralight); border-color: var(--beneblue);}

  .extralightpurpleBG .acctab-label {background-color: var(--benepurplemild);}
  .extralightpurpleBG .acctab-content {background-color: var(--benepurpleextralight); border-color: var(--benepurple);}

  .lightorangeBG .acctab-label {background-color: var(--beneorangemild);}
  .lightorangeBG .acctab-content {background-color: var(--beneorangelight); border-color: var(--beneorange);}





  @media (min-width: 1200px) {
    .responsive-tabs .flex-tabs .tab {width: 275px; height: 300px;}
    #tab-one:checked ~ .tabs .tab.lightbeneblueBG {height: 320px;}
    #tab-two:checked ~ .tabs .tab.mildorangeBG {height: 320px;}
    #tab-three:checked ~ .tabs .tab.lightpurpleBG {height: 320px;}
    #tab-four:checked ~ .tabs .tab.lightlegupgreenBG {height: 320px;}

    .responsive-tabs .flex-tabs .threetabs {width: 373px; height: 312px;}
    #tab-one:checked ~ .tabs .threetabs.lightlegupgreenBG {height: 332px;}
    #tab-two:checked ~ .tabs .threetabs.mildorangeBG {height: 332px;}
    #tab-three:checked ~ .tabs .threetabs.lightpurpleBG {height: 332px;}

    label.acctab-label {padding: 10px; font-size: 21.6px;}


  }


  @media (max-width:850px), (hover: none)  {
    .responsive-tabs .flex-tabs .tab {width: calc((100vw - 70px)/4); height: 26vw;}
    #tab-one:checked ~ .tabs .tab.lightbeneblueBG {height: calc(26vw + 10px);}
    #tab-two:checked ~ .tabs .tab.mildorangeBG {height: calc(26vw + 10px);}
    #tab-three:checked ~ .tabs .tab.lightpurpleBG {height: calc(26vw + 10px);}
    #tab-four:checked ~ .tabs .tab.lightlegupgreenBG {height: calc(26vw + 10px);}

    .responsive-tabs .flex-tabs .threetabs {width: calc((100vw - 60px) / 3); height: 30vw;}
    #tab-one:checked ~ .tabs .threetabs.lightlegupgreenBG {height: calc(30vw + 10px);}
    #tab-two:checked ~ .tabs .threetabs.mildorangeBG {height: calc(30vw + 10px);}
    #tab-three:checked ~ .tabs .threetabs.lightpurpleBG {height: calc(30vw + 10px);}

    label.acctab-label {padding: 10px; font-size: 2.6vw;}


  }


  @media (max-width: 667px) {
    .responsive-tabs .flex-tabs .tab {width: calc((100vw - 30px)/4); height: 26vw;}
    #tab-one:checked ~ .tabs .tab.lightbeneblueBG {height: calc(26vw + 10px);}
    #tab-two:checked ~ .tabs .tab.mildorangeBG {height: calc(26vw + 10px);}
    #tab-three:checked ~ .tabs .tab.lightpurpleBG {height: calc(26vw + 10px);}
    #tab-four:checked ~ .tabs .tab.lightlegupgreenBG {height: calc(26vw + 10px);}

    .responsive-tabs .flex-tabs .threetabs {width: calc((100vw - 20px)/3); height: 32vw;}
    #tab-one:checked ~ .tabs .threetabs.lightlegupgreenBG {height: calc(32vw + 10px);}
    #tab-two:checked ~ .tabs .threetabs.mildorangeBG {height: calc(32vw + 10px);}
    #tab-three:checked ~ .tabs .threetabs.lightpurpleBG {height: calc(32vw + 10px);}

    .responsive-tabs .flex-tabs .panel {padding: 20px;}


    label.acctab-label {padding: 10px; font-size: 3vw;}


  }
