@import url('https://fonts.googleapis.com/css?family=Kanit:100,200,300,400i,500,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Mulish:300&display=swap');

.main-content{
    margin-top: 58px;
    display: block;
    z-index: 1;
    font-family: kanit;
    text-shadow: 1px 2px 1px rgba(0,0,0,0.04);
}

.background-content-container{
    display: block;
    position: relative;
    height: 425px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    transition: opacity 1s ease-in-out;
    width: 100%;
}

.banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #555;
    height: 425px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.92;
	filter: grayscale(10%);
    animation: fadein 2.5s;
}

@keyframes fadein {from { opacity: 0; }to   { opacity: .92; }}
@keyframes fadeIt {from { opacity: 0; }to   { opacity: 1; }}

@keyframes altFadeA {
    0% { opacity: 0; transform: translateY(-100px);}
    75%{transform: translateY(-25px);}
    85%{opacity: 0;}
    100%{transform: translateY(0px); opacity: 1;}
}


#banner-0{
	background-image: url("images/0-a-0.jpg");
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 425px;
    opacity: 0;
}

.program{
    display: inline-block;
    letter-spacing: .2px;
    position: absolute;
    top: 80px;
    height: 55%;
    left: 20%;
    border-radius: 10px;
    padding: 15px 35px;
    width: 425px;
    background: rgba(67, 82, 97, 0.85);
    box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.16),
                 2px 4px 4px rgba(0, 0, 0, 0.4);
    animation-name: textAnimate;
    animation-duration: .4s;
}

#program-defer{
    display: none;
}

#program-op{
    left: 32.5%;
    background: rgba(33, 42, 50, 0.85);
    border: 1px solid rgba(0,0,0,.35);
}

.program-heading{
    font-size: 32.5px;
    color: #B2FF95;
    margin-bottom: 5px;
    font-weight: normal;
    animation-name: textAnimate;
    animation-duration: .5s;
}

.program-desc{
    font-size: 22.5px;
    color: #FFF;
    margin: 0;
    font-style: normal;
    font-weight: 300;
    animation-name: textAnimate;
    animation-duration: .5s;
}

#desc-op{
    margin-bottom: 5px;
}

.program a{
    font-weight: 300;
    margin: 0;
    text-decoration: none;
    font-size: 20px;
    color: #EC77FF;
    animation-name: textAnimate;
    animation-duration: 1s;
}

@keyframes textAnimate {
    from {
          opacity: 0;
          transform: scale(0);
          transition: all 0.3s ease-in-out 0.2s;
    }
    to {
          opacity: 1;
          transform: scale(1);
          transition: all 0.3s ease-in-out 0.1s;    
    }
}

.program a:hover, .program a:focus{
    color: #EF8CFF;
}

.ui-header-container{
    display: block;
    text-align: center;
}

@keyframes inLeft{
0%{left: -700px; opacity: 0;}
50%{left: -700px; opacity: 0;}
100%{left: -2px; opacity: 1;}
}

.deal-block{
    position: absolute;
    left: -2px;
    top: 0;
    width: 35%;
    height: 100%;
    transition: .5s;
    animation: inLeft 1s ease-out;
}

.head-in{
    position: absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.heading-h{color: #fff; font-size: 32.5px; font-weight: 600; line-height: 42px; margin: 10px 0 10px;  text-shadow: 0 2px 3px rgba(0,0,0,.08);}
.heading-h-sub{color: #fff; font-size: 20.5px; font-weight: 300; opacity: .85;  margin: 15px 0 30px; text-shadow: 0 2px 1px rgba(0,0,0,.03);}
.heading-h-button{
    padding: 15px 0;
    width: 275px;
    background: linear-gradient(90deg, #FF37D3 0%, #FF3969 100%);
    border-radius: 100px;
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
    font-weight: 600;
    font-size: 26.5px;
    color: #fff;
    margin: 0 auto;
    opacity: 1;
    transition: .05s;
    filter: hue-rotate(10deg);
    border: 1px solid rgba(0,0,0,.3);
}

.heading-h-button:hover{
    opacity: 1;
    cursor: pointer;
    transform: scale(1.02);
    box-shadow: 0 2px 3px rgba(0,0,0,.17);
    filter: hue-rotate(20deg);
    border: 1px solid rgba(0,0,0,.35);
}

.ui-header{
    display: block;
    background: linear-gradient(90deg, #0587FF 0%, #539548 100%);
    color: white;
    padding: 7px 0;
    font-weight: 400;
    font-size: 20px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.ui-content{
    display: block;
    text-align: center;
    margin: 25px 0 75px;
    min-height: 100px;
}

.ui-mobile-row{
    display: inline-block;
}

.ui-button{
    display: inline-block;
    width: 130px;
    font-weight: 300;
    color: #7F8589;
    background: #f8f8f8;
    font-size: 17px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 0 4px;
    padding: 15px 0 10px;
    border: 1px solid #cfcfcf;
    transition: .15s;
    box-sizing: border-box;
    animation: altFadeA 1.5s;
}

.ui-button:hover, .ui-button:focus{
    cursor: pointer;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-3%);
}

.ui-button:hover i{opacity: .5;}

.ui-button:active{transform: scale(.95);}

.ui-button i{
    padding: 0;
    opacity: .35;
    font-size: 36px;
    transition: .12s;
    margin: 0;
    text-shadow: 0 2px 2px rgba(0,0,0,.07);
}

.ui-desc{
    margin-top: 5px;

}

.contact-container{
    display: block;
    background: #0587FF;
    text-align: center;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

#contact-heading{
    font-size: 40px;
    display: block;
    font-weight: 600;
    color: #fff;
    padding: 35px 0 0;
}

.contact-content{
    display: flex;
    width: 60%;
    margin: 0 auto;
}

.contact-left{
    width: 48.5%;
    padding: 5px 0;
}

.contact-left img{
    max-width: 325px;
    border-radius: 5px;
    opacity: .96;
    box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.15),
                 2px 4px 4px rgba(0, 0, 0, 0.3);
}

.contact-right{
    width: 48.5%;
    text-align: left;
    font-size: 17px;
    padding-top: 15px;
    box-sizing: border-box;
    color: #eee;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(0,0,0,.35);
    margin: 0;
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
    border-radius: 3px;
}

.content-block{
    margin-bottom: 8px;
}

#contact-sub-heading{
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 500;
    font-size: 22.5px;
    margin-left: 5%;
}

.contact-text{
    margin: 0;
    font-weight: 200;
    padding: 0;
    margin-top: -2px;
    font-size: 17px;
    margin-left: 5%;
}

.contact-button{
    display: inline-block;
    background: linear-gradient(90deg, #FF37D3 0%, #FF3969 100%);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    margin: 35px 0;
    width: 205px;
    padding: 10px 35px;
    font-size:  28.5px;
    color: #fff;
    transition: .07s;
    filter: hue-rotate(5deg);
    border: 1px solid rgba(0,0,0,.15);
    box-shadow: -2px 0px 3px rgba(0, 0, 0, 0.05),
                 2px 4px 4px rgba(0, 0, 0, 0.15);
}

.contact-button:hover{
    box-shadow: -2px 0px 3px rgba(0, 0, 0, 0.12),
                 2px 4px 4px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(0,0,0,.25);
    cursor: pointer;
    transform: scale(1.02);
    width: 210px;
    filter: hue-rotate(5deg);
}



.convince-container{
    display: block;
    text-align: center;
}

#convince-heading{
    font-size: 50px;
    display: block;
    font-weight: 600;
    color: #777;
}

.convince-content{
    display: flex;
    width: 70%;
    margin: 0 auto;
}

#mobile-block{
    display: none;
}

.convince-desc-container{
    width: 33%;
    color: #0587FF;
    font-size: 24px;
}

.convince-icon{
    margin: 5px 0 10px;
    color: #0587FF;
    opacity: .95;
}

.convince-desc{
    color: #777;
}

.convince-text-box{
    display: block;
    text-align: left;
    margin: 50px auto 0;
    box-sizing: border-box;
    padding: 25px 10%;
    width: 100%;
    font-size: 22.5px;
    color: #777;
    background: #95FF70;
    border: 1px solid #87d26c;
    font-weight: 300;
    box-shadow: -2px 0px 3px rgba(0, 0, 0, 0.1),
                 2px 4px 4px rgba(0, 0, 0, 0.2);
}

#text-op{
    font-weight: 400;
    color: #555;
}

#cB{transition: .5s;}
#contactMSG{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(74, 91, 107, 0.88);
    display: none;
    animation: fadeIt .5s;
    z-index: 7;
}

.exit-box{
    position: absolute;
    top: 25px;
    right: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 50px; height: 50px; border-radius: 50px;
    opacity: .85;
    transition: .2s;
}

.exit-box:hover{
    opacity: 1;
    cursor: pointer;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.15);
}

.exit-box i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    text-shadow: 0 1px 2px rgba(0,0,0,.1);
    color: #fff;
    opacity: .65;
}

#contactBoxH{
    font-family: kanit;
    text-align: center;
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    transition: .5s;
}

.contact-line{
    margin: 5px auto 25px;
    height: 5px;
    width: 375px;
    background: linear-gradient(270deg, #0580F7 -3.09%, #5BD9CA 110.18%);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    transition: .5s;
}

.contact-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-row{
    display: block;
    position: relative;
    margin: 35px 0 15px;
}

.input-holder{position: relative; display: inline-block;}
.i-holder{position: absolute; height: 100%; top: 0; left: 0; width: 50px;}#iP{margin-left: 13px;}
.input-holder i{position: absolute; top: 50%; left: 60%; transform: translate(-50%, -50%); opacity: .15; text-align: center; font-size: 20px; left: 25px;}
.input-holder input, #fieldC{outline: none;}
.input-holder input:focus, #fieldC:focus{box-shadow: 0px 0px 3px 3px rgba(27, 193, 230, 0.5);}

.contact-input, .contact-text-box{
    background: #fff;
    border: 1px solid #333;
    box-sizing: border-box;
    box-shadow: 0 2px 3px 1px rbga(0,0,0,.35);
    font-size: 18.5px;
    font-family: 'Mulish';
    font-weight: 300;
    transition: .15s;
}

.contact-input{
    border-radius: 20px;
    display: inline-block;
    padding: 15px 5px 15px 50px;
    border-radius: 10px;
    width: 265px;
    margin: 0;
    border: 1px solid #545559;
}

.contact-input:focus{
    opacity: 1;
    border: 1px solid #00B2FF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 2px 3px rgba(0, 178, 255, 0.48);
}

#phoneForm{margin-left: 13px;}

.contact-text-box{
    border-radius: 15px;
    line-height: 34px;
    color: #4F555C;
    box-sizing: border-box;
    padding: 25px 35px;
    height: 225px;
    width: 550px;
    border: 2px solid #545559;
    resize: none;
}

.contact-text-box:focus{
    opacity: 1;
    border: 2px solid #00B2FF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 2px 3px rgba(0, 178, 255, 0.48);
}

.contact-MSG{
    color: #fff;
    padding: 15px 0;
    width: 175px;
    font-weight: 700;
    font-family: 'Kanit';
    text-align: center;
    margin: 25px 0 35px;
    opacity: .97;
    border-radius: 100px;
    font-size: 24px;
    background: linear-gradient(90deg, #FF30AC 0%, #FB30FF 100%);
    border: 1px solid rgba(0,0,0,.35);
    box-shadow: 0 2px 3px rgba(0,0,0,.2);
    transition: .15s;
}

.contact-MSG:hover{
    box-shadow: 0 2px 3px 1px rgba(0,0,0,.25);
    cursor: pointer;
    width: 185px;
    filter: hue-rotate(5deg);
}


@media (max-width: 1400px) {
    
.head-in{
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}    
}

@media (max-width: 1200px) {

.program{
    top: 60px;
    height: 60%;
    width: 385px;
}

#program-op{
    left: 30%;
}

.program-heading{
    margin: 0 auto 5px;
    font-size: 32px;
}

.program-desc{
    font-size: 22px;
}

.contact-content{
    width: 80%;
}

}


@media (max-width: 1000px) {
    
.deal-block{width: 100%; left: 0; background: rgba(0,0,0, .5);}
#program-op{left: 25%;}
.contact-content{width: 90%;}
.convince-content{width: 80%;}
#banner-svg{display: none;}

}


@media (max-width: 800px) {
  
  
.head-in{width: 100%; left: 0;}  
#program-op{
    left: 20%;
}     
    
.contact-content{
    width: 100%;
}

.contact-left img{
    max-width: 300px;
}

.convince-content{
    width: 90%;
}

#convince-heading{font-size: 46px;}
.ui-button i{font-size: 40px;}
    
    
}


@media (max-width: 650px) {
    
.program{
    left: 15%;
    top: 80px;
    height: 55%;
    width: 70%;
    padding: 0;
}

#program-op{
    left: 15%;
}

.program-heading{
    font-size: 24px;
    margin: 15px auto 5px;
    margin-left: 20px;
}

.program-desc{
    font-size: 17px;
    margin-left: 20px;
}

#desc-op{
    margin-bottom: 2.5px;
}

.program a{
    font-size: 15px;
    margin-left: 20px;
}
    
.ui-content{
    margin: 25px 0;
}
    
.ui-button{
    width: 100px;
    font-size: 14px;
    padding: 10px 0 5px;
}

.ui-button i{font-size: 32px;}
#convince-heading{font-size: 40px;}

#contact-heading{
    font-size: 40px;
}

.contact-content{
    display: block;
    width: 100%;
}

.contact-left{
    display: block;
    width: 100%;
}

.contact-left img{
  transform: scaleX(-1);
}


.contact-right{
    display: block;
    width: 100%;
    margin: 25px 0 0;
}

.content-block{
    margin-bottom: 15px;
}

#contact-sub-heading{
    margin-bottom: 5px;
}

.contact-button{
    padding: 10px 0;
    font-size:  28px;
}
    
.convince-content{
    width: 95%;
}

.convince-desc-container{
    width: 49%;
    display: inline-block;
}

#icon-option{
    display: none;
}

#mobile-block{
    display: block;
    margin: 35px auto 0;
}

.input-holder{display: block; margin-bottom: 10px;}
#phoneForm{margin-left: 0;}
.contact-input, .contact-text-box{width: 100%;}
    
}


@media (max-width: 525px) {

.program{
    left: 10%;
    width: 80%;
}

#program-op{
    left: 10%;
}

.ui-button{
    width: 85px;
}

#convince-heading{font-size: 36px;}

.ui-desc{
    padding: 3.5px 0 0;
}

}


@media (max-width: 400px) {
    
.program{
    left: 5%;
    width: 90%;
}

#program-op{
    left: 5%;
}

.ui-mobile-row{
    display: block;
}

#row-op{
    margin-top: 10px;
}

.ui-button{
    width: 92.5px;
}

#convince-heading{font-size: 32px;}

.contact-container{
    box-sizing: border-box;
    padding: 0 5%;
}

#contact-heading{
    font-size: 36.5px;
}

.contact-left img{
    max-width: 100%;
}

#contact-sub-heading, .contact-text{
    margin-left: 0;
}

.contact-button{
    font-size:  24px;
}

}