/*Utilities - Color*/

/*rgba(161, 216, 79,1),a1d84f 
or #F18EAF
*/

.gray {
    background: #141414 !important;
}

.lgray {
    background: #1B1B1B !important;
}

.yellow {
    color: #a1d84f !important;
}

a.yellowlink {
    color: #a1d84f
}

a.yellowlink:hover {
    color: #fff;
}

span.anchor {
    display: block;
    position: relative;
    margin-top: -100px;
    padding-bottom: 100px;
    z-index: -1;
}

.footnote {
    font-size: 0.7em!important;
    color: rgba(255, 255, 255, 0.3)
}

footer {
    border-top: 1px solid rgb(54, 54, 54);
    margin: 30px auto 0;
}

footer .inner {
    width: 85%;
    display: flex;
    color: rgba(255, 255, 255, 0.3);
    justify-content: space-between;
    font-size: 0.9em;
    margin: 0 auto
}

/*utilities alignment*/

br.small {
    display: block;
    margin: 10px 0;
}

.top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center !important;
}

.start {
    align-items: flex-start !important;
}

.handle {
    transition: all .3s ease-in;
    background: #141414;
    border-bottom: 2px solid #a1d84f;
}

.sticker {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 7.5%;
    margin: 0 auto;
    width: 85%;
    min-height: 99px;
    /* -webkit-box-shadow: 0px -1px 111px 15px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px -1px 111px 15px rgba(0, 0, 0, 0.75);
    box-shadow: 0px -1px 111px 15px rgba(0, 0, 0, 0.75); */
    transition: all .3s ease-in;
}

ul.res {
    margin: 8px 0 0 0;
    padding: 0;
}

ul.res li {
    list-style-type: none;
    line-height: 1.7em;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mb90 {
    margin-bottom: 90px !important;
}

.pt60 {
    padding-top: 60px !important;
}

.pt90 {
    padding-top: 90px !important;
}

.pl30 {
    padding-left: 30px !important;
}

.pb90 {
    padding-bottom: 90px !important;
}

.mobile-video {
    height: auto;
    width: 80%;
}

hr {
    border: 0;
    display: block;
    width: 100%;
    background-color: #a1d84f;
    height: 2px;
    margin: 40px 0 60px 0;
}

a {
    text-decoration: none;
    transition: .5s ease;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    background: #141414;
    box-sizing: border-box;
    color: #fff;
    overflow-x: hidden;
    transition: all .3s;
    scroll-behavior: smooth;
}

body, button, input, select, textarea {
    -webkit-font-smoothing: antialiased;
    font-family: 'Source Sans Pro', sans-serif;
}

p {
    line-height: 200%
}

/*Menu Items*/

.nav-wrapper {
    position: relative;
}

nav {
    position: fixed;
    z-index: 4;
    top: 52px;
}

#menuToggle {
    display: block;
    position: relative;
    top: 0;
    left: 50px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: #a1d84f;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
}

#menuToggle.dark span {
    background: #383838 !important;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #a1d84f !important;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: absolute;
    width: 315px;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background: rgba(27, 27, 27, 1);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-bottom: 6px solid #a1d84f;
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
}

#menuToggle input:checked~ul {
    transform: none;
}

.hero {
    height: 100%;
    width: 100%;
    display: flex;
}

.left {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

#circle-holder {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
    justify-content: space-between;
    z-index: 0;
}

/* rgb(241 24 94) */

.circle {
    flex: 1 0 calc(14% - 10px);
    margin: 5px;
    background: rgba(161, 216, 79, 1);
    position: relative;
    transition: .5s ease;
    border-radius: 50%;
}

.circle:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.square {
    flex: 1 0 calc(14% - 10px);
    margin: 5px;
    background: rgba(161, 216, 79, 1);
    position: relative;
    transition: .5s ease;
}

.square:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

/* rgb(24 241 181)  */

.tri {
    width: 0;
    height: 0;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-bottom: 86.60254px solid rgba(161, 216, 79, 1);
}

.tri:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.square:hover, .tri:hover, .circle:hover {
    filter: blur(20px)
}

.hero-title {
    color: #fff;
    font-size: 4em;
    font-weight: 900;
    line-height: 100%;
    position: relative;
    z-index: 1;
}

.hero-sub {
    display: flex;
    align-items: center;
}

.hero-sub h1 {
    border-bottom: 5px solid #a1d84f;
    padding: 30px 0;
}

.sub-left {
    width: 50%;
}

.sub-right {
    width: 50%;
}

.right {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

a.ex-btn {
    display: flex;
    font-size: 3em;
    font-weight: 900;
    color: #a1d84f;
    text-align: center;
}

a.ex-btn:hover {
    filter: blur(3px)
}

.box-container {
    display: flex;
    flex-wrap: wrap;
}

.box-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.box {
    flex: 1 0 calc(16.6% - 10px);
    margin: 5px;
    background: #141414;
    position: relative;
    transition: .5s ease;
}

.box:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.box h2 {
    padding: 30px 0 0 30px;
    font-size: 1em;
}

.box p {
    padding-left: 30px;
    font-size: 0.7em;
    line-height: 1.3em;
}

.box a {
    color: #a1d84f;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.7em;
    font-weight: 700;
    display: block;
    padding: 20px;
    text-align: center;
    transition: .5s ease;
    position: absolute;
    width: 140px;
    margin-left: -90px;
    left: 50%;
    bottom: 6%;
    border: 2px solid #a1d84f;
}

.box a:hover {
    background: #111;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transition: .5s ease;
    background-color: rgba(27, 27, 27, 0.8);
}

.overlay:hover {
    opacity: 1;
    background-color: rgba(20, 20, 20, 0.3);
}

.container, .container-sub {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container-sub h1 {
    font-size: 3.1em;
}

.container-sub h2 {
    font-size: 2.3em;
    padding: 0;
    margin: 0;
}

.container-sub p {
    font-size: 1em;
    line-height: 1.7em;
    margin: 0.7em 0;
}

small {
    margin: 0.3em 0;
}

small.medium {
    margin-bottom: 2em;
}

.container-sub {
    width: 85%;
    margin: 0 auto;
}

.btn-flex {
    display: flex;
    justify-content: space-around;
}

.btn-flex a {
    display: flex;
    flex: 1;
    margin: 0 1%;
}

a.convert {
    display: block;
    font-size: 1em;
    border: 2px solid #a1d84f;
    padding: 30px;
    color: #fff;
    text-align: center;
    transition: all .3s ease-in;
    margin-top: auto;
}

a.convert:hover {
    background: rgba(241, 2198, 24, 0.1)
}

p.bottom {
    flex-grow: 1;
}

.col {
    flex: 1;
    position: relative;
}

.col-full {
    width: 100%;
}

.col-full-aland {
    background: url(../img/aland-awny/hero.jpg);
}

.col-full-seyma {
    background: url(../img/seyma-celik/glint_heroimage.jpg);
}

.col-full-buse {
    background: url(../img/buse-dagdelen/hero.jpg);
}

.col-full-govhar {
    background: url(../img/govhar-huseyinli/heroimage.jpg);
}

.col-full-alpay {
    background: url(../img/alpay-efe-igrek/heroimage.jpg);
}

.col-full-bengu {
    background: url(../img/bengu-eda-kilicer/hero.jpg);
}

.col-full-kucuk {
    background: url(../img/ayse-irem-kucuk/hero.jpg);
}

.col-full-irem {
    background: url(../img/irem-canakci/hero.jpg);
}

.col-full-gizel {
    background: url(../img/eunjin/hero.jpg);
}

.col-full-gulce {
    background: url(../img/gulce-ozdemir/hero.jpg);
}

.col-full-begum {
    background: url(../img/begum-ozyurek/heroimage.jpg);
}

.col-full-hoda {
    background: url(../img/hoda-tara/hero-image01.jpg);
}

.col-full-tugce {
    background: url(../img/tugce-toroslu/hero.jpg);
}

.col-full-aland, .col-full-seyma, .col-full-alpay, .col-full-govhar, .col-full-bengu, .col-full-buse, .col-full-kucuk, .col-full-irem, .col-full-gizel, .col-full-gulce, .col-full-begum, .col-full-hoda, .col-full-togay, .col-full-tungul, .col-full-aybuke, .col-full-tugce {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.scroll-down-circular {
    position: absolute;
    z-index: 3;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    bottom: 40px;
    width: 150px;
    left: 50%;
    margin-left: -90px;
    box-sizing: border-box;
    border-radius: 50%;
    height: 150px;
    line-height: 112px;
    box-sizing: border-box;
}

.scroll-down {
    position: absolute;
    z-index: 3;
    background: #000;
    padding: 20px;
    bottom: 0;
    width: 180px;
    left: 50%;
    margin-left: -90px;
    box-sizing: border-box;
}

.scroll-down a {
    color: #a1d84f;
    display: block;
    text-align: center;
}

a.medium {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

a.medium:hover {
    color: #a1d84f;
}

small.medium {
    font-size: 0.7em;
    padding: 0;
    margin: 0;
}

.inner {
    display: flex;
}

.playfunc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 130px;
    width: 33%;
}

.playfunc img {
    float: left;
    display: block;
    margin-right: 5px;
    cursor: pointer;
}

p.player {
    line-height: 3.7em;
    margin-right: 15px;
}

#myVideo {
    object-fit: fill;
}

/*Grid*/

.col-25 {
    display: flex;
    flex-direction: column;
    padding: 30px;
    flex-basis: 25%;
}

.col-33 {
    width: 33%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.col-50 {
    flex-direction: column;
    display: flex;
    width: 50%;
    padding: 30px;
}

.col-67 {
    width: 67%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.col-100 {
    display: flex;
    flex-direction: column;
    padding: 30px;
    flex-basis: 100%;
}

.full-img {
    width: 100%;
    height: auto
}

/*Seniors*/

.aland-soran-awny {
    background: url(../img/thumbnails/fibber.jpg);
}

.irem-canakci {
    background: url(../img/thumbnails/irem-canakci.png);
}

.seyma-celik {
    background: url(../img/thumbnails/celik.jpg);
}

.buse-dagdelen {
    background: url(../img/thumbnails/buse.jpg);
}

.govhar-huseyinli {
    background: url(../img/thumbnails/govhar.png);
}

.alpay-efe-igrek {
    background: url(../img/thumbnails/alpay.jpg);
}

.bengu-eda-kilicer {
    background: url(../img/thumbnails/bengu-eda.jpg);
}

.ayse-irem-kucuk {
    background: url(../img/thumbnails/ayse-irem.png);
}

.gizel-asli-onder {
    background: url(../img/thumbnails/gizel.jpg);
}

.gulce-ozdemir {
    background: url(../img/thumbnails/gulce.jpg);
}

.begum-ozyurek {
    background: url(../img/thumbnails/ozyurek.jpg);
}

.seyedah-hoda-tara {
    background: url(../img/thumbnails/hoda.jpg);
}

.murat-togay {
    background: url(../img/thumbnails/murat.png);
}

.sanem-tokyay {
    background: url(../img/thumbnails/sanem.jpg);
}

.oyku-naz-tungul {
    background: url(../img/thumbnails/tungul.jpg);
}

.aybuke-yilmazer {
    background: url(../img/thumbnails/aybuke.png);
}

.tugce-toroslu {
    background: url(../img/thumbnails/test.jpg);
}

.aland-soran-awny, .irem-canakci, .seyma-celik, .buse-dagdelen, .govhar-huseyinli, .alpay-efe-igrek, .bengu-eda-kilicer, .ayse-irem-kucuk, .gizel-asli-onder, .gulce-ozdemir, .begum-ozyurek, .seyedah-hoda-tara, .murat-togay, .sanem-tokyay, .oyku-naz-tungul, .aybuke-yilmazer, .tugce-toroslu {
    background-repeat: no-repeat;
    background-size: cover;
}

/*Embeds*/

.embed-container {
    position: relative;
    padding-bottom: 100vh;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    z-index: 0;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.75%;
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Transitions */

.transition-fade {
    transition: 500ms;
    opacity: 1;
}

html.is-animating .transition-fade {
    opacity: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .handle {
        display: none !important;
    }
    .container-sub {
        display: flex;
        flex-direction: column;
    }
    .container-sub h1 {
        font-size: 2em;
    }
    .container-sub h2 {
        font-size: 1.7em;
    }
    .col, .col-25, .col-33, .col-50, .col-67, .col-100 {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px 30px !important;
        box-sizing: border-box;
    }
    /*orders*/
    .one {
        order: 1;
    }
    .two {
        order: 2;
    }
    hr {
        border: 0;
        display: block;
        width: 100%;
        background-color: #a1d84f;
        height: 1px;
        margin: 20px 0 20px 0;
    }
    a.convert {
        display: block;
        font-size: 1em;
        border: 1px solid #a1d84f;
        padding: 30px;
        color: #fff;
        text-align: center;
        transition: all .3s ease-in;
        margin-top: auto;
    }
    .mt60 {
        margin-top: 0 !important;
    }
    .mb30 {
        margin-bottom: 0 !important;
    }
    .mt90 {
        margin-top: 0 !important;
    }
    .mb90 {
        margin-bottom: 0 !important;
    }
    .pt60 {
        padding-top: 0 !important;
    }
    .pt90 {
        padding-top: 0 !important;
    }
    .pb90 {
        padding-bottom: 0 !important;
    }
    .pl30r {
        padding-left: 30px;
    }
    nav {
        top: 12px;
    }
    #menuToggle {
        display: block;
        position: relative;
        top: 0;
        left: 10px;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
    }
    .hero {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .left {
        width: 100%;
        height: 65vh;
        display: flex;
        align-items: center;
        justify-content: space-around;
        position: relative;
    }
    .right {
        width: 100%;
        height: 35vh;
        display: flex;
        align-items: center;
        justify-content: space-around;
        position: relative;
    }
    .hero-title {
        color: #fff;
        font-size: 3em;
        font-weight: 900;
        line-height: 100%;
    }
    a.ex-btn {
        display: flex;
        font-size: 2em;
        font-weight: 900;
        color: #a1d84f;
        text-align: center;
    }
    .box-container {
        display: flex;
        flex-wrap: wrap;
        margin: 5px;
    }
    .box {
        flex-basis: 25%
    }
    .box a {
        background: rgba(0, 0, 0, 0.7);
    }
    .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 1;
        transition: .5s ease;
        background-color: rgba(27, 27, 27, 0.3);
    }
    /*responsive col01*/
    .col-full-aland, .col-full-seyma, .col-full-alpay, .col-full-govhar, .col-full-bengu, .col-full-buse, .col-full-kucuk, .col-full-irem, .col-full-gizel, .col-full-gulce, .col-full-begum, .col-full-hoda, .col-full-togay, .col-full-tungul, .col-full-aybuke, .col-full-tugce {
        width: 100%;
        height: 50vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: initial;
        position: relative;
    }
    .scroll-down {
        display: none;
    }
    .mobile-video {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .hero-title {
        color: #fff;
        font-size: 2em;
        font-weight: 900;
        line-height: 100%;
    }
    .box {
        flex-basis: 70%
    }
    .pl30r {
        padding-left: 30px;
    }
    /*responsive col02*/
    .col-full-aland, .col-full-seyma, .col-full-alpay, .col-full-govhar, .col-full-bengu, .col-full-buse, .col-full-kucuk, .col-full-irem, .col-full-gizel, .col-full-gulce, .col-full-begum, .col-full-hoda, .col-full-togay, .col-full-tungul, .col-full-aybuke, .col-full-tugce {
        width: 100%;
        height: 32vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: initial;
        position: relative;
    }
    .inner {
        display: block;
    }
    .playfunc {
        width: 100%;
        display: block;
    }
    p.player {
        width: 100%;
        text-align: center;
    }
    .playfunc img {
        float: none;
        display: block;
        margin: 0 auto;
    }
    footer .inner {
        display: block;
    }
}