
/*--browser settings reset--*/


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/*--browser settings reset end--*/

:root {
    --background: rgba(94, 0, 66, .85);
    --background-color: transparent;
}


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

/*--browser settings reset END--*/






/*--consistent browser font rendering START--*/

body{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-transform: none;
}

/*--consistent browser font rendering END--*/





/*--grid layout START--*/


.hello-sales-content{
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    max-width: 1300px;
    margin: 0 auto;
    grid-gap: 1px;
    position: relative;
    grid-template-areas: 
        "one one one one one one one one one one one one"
        "two two two two two two two two two two two two"
        "three three three three three three three three three three three three"
        "four four four four four four four four four four four four"
        "five five five five five five five five five five five five"
        "six six six six six six six six six six six six"
        "seven seven seven seven seven seven seven seven seven seven seven seven"
        "eight eight eight eight eight eight eight eight eight eight eight eight"
        "nine nine nine nine nine nine nine nine nine nine nine nine"
        "ten ten ten ten ten ten ten ten ten ten ten ten"
        "eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven"
        "twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve"
}


.one{
    grid-area: one;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
    

}

.two{
    grid-area: two;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-color);
}

.three{
    grid-area: three;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
}

.four{
    grid-area: four;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
}

.five{
    grid-area: five;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
}

.six{
    grid-area: six;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-color);

}

.seven{
    grid-area: seven;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
    min-height: 50px;
    
    
}

.eight{
    grid-area: eight;
    
    background-color: var(--background-color);
    min-height: 50px;
    
}

.nine{
    grid-area: nine;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
    min-height: 50px;
    
}

.ten{
    grid-area: ten;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
    
}

.eleven{
    grid-area: eleven;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--background-color);
   
}

.twelve{
    grid-area: twelve;
    background-color: var(--background-color);
    height: 50px;
   
}



/*--grid layout END--*/






/*--grid ONE START--*/

.sales-logo{
    width: 100px;
    margin-top: 150px;
    
}

.seoulyfont1{
    width: 100px;
    height: 20px;
    display:table;
    margin: auto;
    font-family: 'Nunito',sans-serif;
    color: black;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1px;
    margin-top: 15px;
}

.seoulyfont2{
    width: 100px;
    height: 20px;
    display:table;
    margin: auto;
    font-family: 'Nunito',sans-serif;
    color: black;
    font-weight: 300;
    text-align: center;  
    margin-bottom: 300px;
}

/*--grid ONE END--*/






/*--grid TWO START--*/

.sales-video-box-1{
    max-width: 550px;
}

.seouly-english-media-1{
    width: 100%;
    
    
}

/*--grid TWO END--*/






/*--grid THREE/FOUR/FIVE GENERAL SETTINGS START--*/

.box-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 200px;
    margin-top: 50px;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    font-size: 45px;
    
}

.body-text{
    width: 200px;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-top: 50px;

    
}

/*--grid THREE/FOUR/FIVE GENERAL SETTINGS END--*/





/*--grid THREE START--*/


.large-shape-placeholder-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 250px;
    height: 75px;
    margin-top: 150px;
    background-color: transparent;
}

.triangle{
    height: 75px;
    margin-top: 5px;
    z-index: 999;
}

.copy-box-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 250px;
    height: 450px;
    background-color: #E2F0F9;
    margin-top: 0px;
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

/*--grid THREE END--*/







/*--grid FOUR START--*/

.large-shape-placeholder-2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 250px;
    height: 75px;
    margin-top: 100px;
    background-color: transparent;
}

.copy-box-2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 250px;
    height: 450px;
    background-color: #E2F0F9;
    margin-top: 0px;
    margin-bottom: 0px;
    
}

/*--grid FOUR END--*/







/*--grid FIVE START--*/

.large-shape-placeholder-3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 250px;
    height: 75px;
    margin-top: 100px;
    background-color: transparent;
}

.copy-box-3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 250px;
    height: 450px;
    background-color: #E2F0F9;

}

.open-hours{
    font-weight: 900;
}

/*--grid FIVE END--*/







/*--grid SIX START--*/

.copy-box-4{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 250px;
    height: 450px;
    background-color: transparent;
    margin-top: 150px;
    
}

.body-text-all-classes{
    width: 80%;
    margin: auto;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.list-icon{
    width: 15px;
    padding-right: 15px;
}

.body-text-tailored-2{
    
}

.body-text-tailored-2{
    
}

/*--grid SIX END--*/







/*--grid SEVEN START--*/


.copy-box-5{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 250px;
    height: 80%;
    color: white;
    background: #71B6E1;
    margin-top: 150px;
    
}

.box-heading-trial{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    font-size: 45px;
    text-align: center;
    
}

.body-text-need-1{
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 30px;

    
}

.body-text-need-2{
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 100px;

    
}

.how-improve{
    font-weight: 900;
    font-family: 'roboto', sans-serif;
    font-size: 16px;
    width: 80%;
    text-align: center;
    margin: auto;
    margin-top: 30px;
    line-height: 25px;
    
}

.tailored{
    width: 250px;
    background-color: transparent;
    margin-top: 100px;
}

.body-text-tailored-1{
    width: 80%;
    margin: auto;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 32px;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 30px;

    
}

.body-text-tailored-2{
    width: 80%;
    margin: auto;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-top: 0px;
    margin-bottom: 30px;

    
}

.body-text-tailored-3{
    width: 80%;
    margin: auto;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-top: 0px;
    margin-bottom: 100px;

    
}


/*--grid SEVEN END--*/













/*--grid EIGHT START--*/





/*---Slideshow---*/ 

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}


h6{
    z-index: 10000;
    font-size: 100px;
    text-align: center;
    position: absolute;
    width: 10%;
    padding-top: 100px;
    color: white;
    font-family: 'Nunito'; 
}

.class-slider{
    margin: auto;
    
}

.mainslider{
    overflow: hidden;
}

.mainslider figure div{
    width: 10%;
    float: left;
}

.mainslider figure img{
    width: 100%;
    float: left;
}

.mainslider figure{
    position: relative;
    width: 1000%;
    margin: 0;
    left: 0;
    -webkit-animation: 70s slidy infinite;
    animation: 70s slidy infinite;
}

@-webkit-keyframes slidy{
    0%{
        left: 0%;
    }
    
    5%{
        left: 0%;
    }
    
    12%{
        left: -100%;
    }
    
    17%{
        left: -100%;
    }
    
    27%{
        left: -200%;
    }
    
    29%{
        left: -200%;
    }
    
    39%{
        left: -300%;
    }
    
    42%{
        left: -300%;
    }
    
    52%{
        left: -400%;
    }
    
    54%{
        left: -400%;
    }
    
    64%{
        left: -500%;
    }
    
    66%{
        left: -500%;
    }
    
    76%{
        left: -600%;
    }
    
    78%{
        left: -600%;
    }
    
    88%{
        left: -700%;
    }
    
    90%{
        left: -700%;
    }
    
    100%{
        left: -800%;
    }
    
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    5% {
        left: 0%;
    }

    12% {
        left: -100%;
    }

    17% {
        left: -100%;
    }

    27% {
        left: -200%;
    }

    29% {
        left: -200%;
    }

    39% {
        left: -300%;
    }

    42% {
        left: -300%;
    }

    52% {
        left: -400%;
    }

    54% {
        left: -400%;
    }

    64% {
        left: -500%;
    }

    66% {
        left: -500%;
    }

    76% {
        left: -600%;
    }

    78% {
        left: -600%;
    }

    88% {
        left: -700%;
    }

    90% {
        left: -700%;
    }

    100% {
        left: -800%;
    }

}


/*--grid EIGHT END--*/








/*--grid NINE START--*/

.box-pricing{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.box-heading-pricing{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 200px;
    margin-top: 100px;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    font-size: 45px;
    
}

.price-box-1{
    width: 250px;
    height: 450px;
    background-color: #51BBBA;
    margin-top: 100px;
}

.price-box-2{
    width: 250px;
    height: 450px;
    background-color: transparent;
    margin-top: 100px;
}

.lesson-time-1{
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    color: white;
    font-size: 22px;
    line-height: 25px;
    margin-top: 50px;
}

.lesson-time-2{
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 12px;
    line-height: 22px;
    margin-top: 0px;
    margin-bottom: 30px;
}

.lesson-time-3{
    width: 90%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 12px;
    line-height: 16px;
    margin-top: 0px;
    margin-bottom: 10px;
} 

.lesson-time-4{
    width: 90%;
    margin: auto;
    text-align: center;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    color: white;
    font-size: 12px;
    line-height: 22px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.lesson-time-5{
    width: 70%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 12px;
    line-height: 16px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.lesson-time-6{
    width: 70%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 12px;
    line-height: 16px;
    margin-top: 0px;
    margin-bottom: 30px;
}

.box-credits{
    height: 75px;
    background-color: #51BBBA;
    margin-bottom: 25px;

}

.heading-10{
    margin: auto;
    height: 20px;
    width: 100%;
    text-align: center;
    padding-top: 27px;
    font-family: 'roboto', sans-serif;
    color: white;
    font-weight: 900;
    font-size: 20px;
}

.heading-20{
    margin: auto;
    height: 20px;
    width: 100%;
    text-align: center;
    padding-top: 27px;
    font-family: 'roboto', sans-serif;
    color: white;
    font-weight: 900;
    font-size: 20px;
}

.heading-30{
    margin: auto;
    width: 100%;
    text-align: center;
    padding-top: 27px;
    font-family: 'roboto', sans-serif;
    color: white;
    font-weight: 900;
    font-size: 20px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-transform: none;
}

.box-discount-1{
    width: 80%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 500;
    color: darkgray;
    font-size: 11px;
    line-height: 18px;
    margin-top: 0px;
    margin-bottom: 30px;
}

.payment-info{
    width: 100%;
    margin: auto;
    text-align: center;
    font-family: 'nunito', sans-serif;
    font-weight: 500;
    color: black;
    font-size: 10px;
    line-height: 18px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/*--grid NINE END--*/


 

/*--grid TEN START--*/

.box-heading-booking{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    text-align: center;
    margin-top: 100px;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    font-size: 45px;
    display: none;
    
}

.booking-how-to{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: green;
    height: 200px;
    margin-top: 200px;
    display: none;
    
}

/*--grid TEN END--*/




/*--grid ELEVEN START--*/

.box-heading-software{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    width: 250px;
    height: 85px;
    margin-top: 100px;
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 75px;

    
}

.software-needed-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0px;
}

.skype-logo{
    width: 100px;
    height: 50px;
}

.webcam-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
    font-family: 'roboto', sans-serif;
    font-size: 16px;
    
}

.software-needed-2{
    width: 200px;
    font-family: 'nunito', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 22px;
    margin-top: 50px; 
    margin-bottom: 100px;
}

/*--grid ELEVEN END--*/












/*--grid TWELVE START--*/


.twelve{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 500px;
    background-color: #71B6E1;
    padding-top: 75px;
}

.contacthead {
    color: white;
    font-family: 'roboto',sans-serif;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 8px;
}

#contactdetails{
    margin-top: 18px;
}

.copy-date{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 75px;
}




input,
input::-webkit-input-placeholder {
    height: 32px;
    font-size: 13px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-color: transparent;
    border-radius: 0px;
    border:0 none;
    padding-left: 0px;
    font-family: 'Nunito',sans-serif;
    font-weight: 300;
}

textarea[name=message] {
    width: 260px;
    height: 100px;
    background: white;
    font-family: 'Nunito',sans-serif;
    font-weight: 300;
    border-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 5px;
    font-size: 13px;
    padding-top: 5px;
    border-radius: 0px;
    border:0 none;
    opacity: 1;
}

input[type=name] {
    width: 260px;
    height: 32px;
    padding-left: 5px;
    background: white;
    font-family: 'Nunito',sans-serif;
    font-weight: 300;
    font-size: 12px;
    border:0 none;
    cursor:pointer;
    border-radius: 0px; 
    border-color: transparent;
    margin-bottom: 10px;
    opacity: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=email] {
    width: 260px;
    height: 32px;
    padding-left: 5px;
    background: white;
    font-family: 'Nunito',sans-serif;
    font-weight: 300;
    font-size: 12px;
    border:0 none;
    cursor:pointer;
    border-radius: 0px; 
    border-color: transparent;
    margin-bottom: 20px;
    opacity: 1;
}

input[type=submit] {
    color: #71B6E1;
    padding: 5px 15px; 
    background: white;
    font-family: 'Nunito',sans-serif;
    font-weight: 300;
    font-size: 13px;
    border:0 none;
    cursor:pointer;
    border-radius: 0px; 
    float: right;
    width: 80px;
}

#contactdetails{
    width: 262px;
    border-color: transparent;
}

#contactlinks{
    width: 260px;
    height: 50px;
    background-color: transparent;
    margin-top: 14px;
}



::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: grey;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-moz-placeholder { /* Firefox 19+ */
  color: darkgray;
  opacity: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
    
  
}
:-ms-input-placeholder { /* IE 10+ */
  color: #71B6E1;
}
:-moz-placeholder { /* Firefox 18- */
  color: darkgray;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/*--footer END--*/


/*--grid TWELVE END--*/









@media screen and (min-width: 600px){

    
    
/*--grid layout (tablet-portrait) START--*/
    
    .hello-sales-content{
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    max-width: 1300px;
    margin: 0 auto;
    grid-gap: 1px;
    position: relative;
    grid-template-areas: 
        "one one one one one one one one one one one one"
        "two two two two two two two two two two two two"
        "three three three three three three four four four four four four"
        "five five five five five five six six six six six six"
        "seven seven seven seven seven seven seven seven seven seven seven seven"
        "eight eight eight eight eight eight eight eight eight eight eight eight"
        "nine nine nine nine nine nine nine nine nine nine nine nine"
        "ten ten ten ten ten ten ten ten ten ten ten ten"
        "eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven"
        "twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve"
} 
    
    
.one{
    grid-area: one;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--background-color);
    

}

.two{
    grid-area: two;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-color);
   
}

.three{
    grid-area: three;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
    padding-right: 25px;
    background-color: var(--background-color);

}

.four{
    grid-area: four;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 25px;
    background-color: var(--background-color);

}

.five{
    grid-area: five;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: 25px;
    background-color: var(--background-color);
}

.six{
    grid-area: six;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    padding-left: 0px;
    background-color: var(--background-color);
}

.seven{
    grid-area: seven;
    background-color: var(--background-color);
    
}

.eight{
    grid-area: eight;
    background-color: var(--background-color);
    min-height: 50px;
}

.nine{
    grid-area: nine;
    background-color: var(--background-color);
    min-height: 50px;
}

.ten{
    grid-area: ten;
    background-color: var(--background-color);
    min-height: 50px;
}

.eleven{
    grid-area: eleven;
    background-color: var(--background-color);
    min-height: 50px;
}

.twelve{
    grid-area: twelve;
    background-color: var(--background-color);
    height: 300px;
}    
   
    
    
 
    
/*--grid ONE START--*/ 
 
    
.sales-logo{
    margin-top: 100px;
    
}
    
    
.seoulyfont2{
    margin-bottom: 50px;
}
    
    
    
/*--grid ONE END--*/    
    
    

    
    
    
    
/*--grid THREE START--*/   
    
.large-shape-placeholder-1{
    margin-top: 150px;
    
}    

.triangle{
    height: 75px;
}

/*--grid THREE END--*/
    
   
    
    
/*--grid FOUR START--*/    
    
.large-shape-placeholder-2{
    margin-top: 150px;
    
}    
    
/*--grid FOUR END--*/     
    
    
    
/*--grid FIVE START--*/    
    
.large-shape-placeholder-3{
    margin-top: 75px;
    
}    
    
/*--grid FIVE END--*/     
    
    
    
    
    
    
    
    
    
    
    
/*--grid SIX START--*/

.copy-box-4{
    margin-left: 25px;
    width: 250px;
    margin-top: 125px;
    
}   
    
.list-icon{
    width: 15px;
    padding-right: 15px;
}
    
.body-text-all-classes{
    padding-top: 30px;
}
    
/*--grid SIX END--*/    
    
    
    
    
    
    
    
/*--grid SEVEN START--*/

.copy-box-5{
    width: 550px;
}
   
.tailored{
    width: 550px;
    
}  
    
.how-improve{
    font-size: 23px;
    
    
}
      
.body-text-need-1{
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 16px;
       
}   
    
.body-text-need-2{
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 16px;
       
}  

.body-text-tailored-1{
    text-align: center;
    font-size: 28px;
    line-height: 40px;
    font-weight: 400;
    width: 100%;
    
    
}

.body-text-tailored-2{
    text-align: center;
    font-size: 12px;

    
}

.body-text-tailored-3{
    text-align: center;
    font-size: 12px;
    
    
}    
    
    
/*--grid SEVEN END--*/   
    
    
    
    
    
/*--grid NINE START--*/

.box-pricing{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}    
    
.price-box-1{
    margin-right: 25px;
}

.price-box-2{
    margin-left: 25px;
}
    
/*--grid NINE END--*/    
    
    
    
    
    
    

    
/*--grid ELEVEN START--*/ 
    
.box-heading-software{
    width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}   

.software-needed-2{
    width: 500px;
    text-align: center;
    margin-bottom: 100px;
}

/*--grid ELEVEN END--*/
    
    
    
    
    
    
    
    
    
/*--grid TWELVE START--*/

.twelve{
    height: 500px;
    background-color: #71B6E1;
}

/*--grid TWELVE END--*/    
    
    
    
    
    
    
    
}

@media screen and (min-width: 900px){
    
    
    .hello-sales-content{
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    max-width: 100%;
    margin: 0 auto;
    grid-gap: 1px;
    position: relative;
    grid-template-areas: 
        "one one one one two two two two two two two two"
        "three three three three four four four four five five five five"
        "six six six six six six six six six six six six"
        "seven seven seven seven seven seven seven seven seven seven seven seven"
        "eight eight eight eight eight eight eight eight eight eight eight eight"
        "nine nine nine nine nine nine nine nine nine nine nine nine"
        "ten ten ten ten ten ten ten ten ten ten ten ten"
        "eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven eleven"
        "twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve twelve"
} 
    
    
.one{
    grid-area: one;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: 100px;
    margin-top: 25px;
}

.two{
    grid-area: two;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--background-color);
    justify-content: center;
    margin-top: 25px;

   
}

.three{
    grid-area: three;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-end;
    padding-right: 25px;
    background-color: var(--background-color);

}

.four{
    grid-area: four;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0px;
    background-color: var(--background-color);

}

.five{
    grid-area: five;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 25px;
    background-color: var(--background-color);
}

.six{
    grid-area: six;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-color);
}

.seven{
    grid-area: seven;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-color);
}

.eight{
    grid-area: eight;
    background-color: var(--background-color);
    min-height: 50px;
}

.nine{
    grid-area: nine;
    background-color: var(--background-color);
    
}

.ten{
    grid-area: ten;
    background-color: var(--background-color);
}

.eleven{
    grid-area: eleven;
    background-color: var(--background-color);
    min-height: 50px;
}

.twelve{
    grid-area: twelve;
    background-color: var(--background-color);
    height: 400px;
    background-color: #71B6E1;
}    
    
    
    
    
    
    

/*--grid ONE START--*/

.sales-logo{
    margin-top: 250px;
    
}      
    
.sales-video-box-1{
    margin-top: 100px;
}    
    
/*--grid ONE END--*/


    
    
    
    
/*--grid THREE START--*/   
    
.large-shape-placeholder-1{
    margin-top: 150px;
    
}    
   
/*--grid THREE END--*/
    
    
    
    
    
/*--grid FOUR START--*/    
    
.large-shape-placeholder-2{
    margin-top: 150px;
    
}    
    
/*--grid FOUR END--*/     
    
    

    
/*--grid FIVE START--*/    
    
.large-shape-placeholder-3{
    margin-top: 150px;
    
}    
    
/*--grid FIVE END--*/ 
    
    
 
    
    
/*--grid SIX START--*/

.copy-box-4{
    margin-left: 0px;
    width: 850px;
    height: 370px;
    margin-top: 100px;
    margin-bottom: 100px;
    
}

.body-text-all-classes{
    margin: auto;
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    width: 800px;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
}

/*--grid SIX END--*/ 
    
    
    
    
    
    
    
/*--grid SEVEN START--*/
    
.copy-box-5{
    width: 800px;   
    margin-top: 75px;
    
} 
   
.tailored{
    width: 800px;
    
}

.body-text-tailored-1{
    font-family: 'roboto', sans-serif;
    text-align: center;
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin-top: 100px;
    
    
    
}

.body-text-tailored-2{
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 800px;
    text-transform: uppercase;
    
}

.body-text-tailored-3{
    font-family: 'nunito', sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 800px;
    text-transform: uppercase;
    margin-bottom: 150px;
    
}    
      
/*--grid SEVEN END--*/  
    
    
    
      
    
    
    
    
    
/*--grid EIGHT START--*/   
    
.class-slider{
    max-width: 800px;    
}

/*--grid EIGHT END--*/      
 
  
    
    
    
    
    
    
    
    
    
    
    
.booking-how-to{
    max-width: 800px;  
    height: 400px;
}    
    
    
    
    
    
    
    
    
    
   
    
    
 

    
 
    
    
   
    
}    
       
