@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;900&display=swap');
@font-face {
font-family: 'TH';
src: url('/webroot/fonts/TH.eot');
src: local('☺'), url('/webroot/fonts/TH.woff') format('woff'), url('/webroot/fonts/TH.ttf') format('truetype'), url('/webroot/fonts/TH.svg') format('svg');
}
@font-face {
font-family: 'THC';
src: local('☺'), url('/webroot/fonts/THC.woff') format('woff'), url('/webroot/fonts/THC.ttf') format('truetype'), url('/webroot/fonts/THC.svg') format('svg');
}
*, *:before, *:after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html{
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
}
body {
margin:0;
padding:0;
font-family: 'Roboto', Tahoma, Arial, Helvetica, sans-serif;
font-size:16px;
font-weight:normal;
background-color: #fff;
color:#333;
}
.hdr {
width:100%;
padding:5px 25px;
position:relative;
display: grid;
grid-template-columns:240px auto 80px;
grid-gap:40px;
z-index:88;
background:#eeeff4 url("/myfiles/images/other/bgg.png") no-repeat bottom right;
height:100px;
overflow:hidden;
-webkit-box-shadow: 0px 11px 36px -18px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 11px 36px -18px rgba(0,0,0,0.35);
box-shadow: 0px 11px 36px -18px rgba(0,0,0,0.35);
}
.cname{
display:flex;
align-items:center;
font-size:19px;
color:#6AC9EF;
}
.hlogo{
z-index:5;
width:240px;
position:relative;
}
.hlogo img{
max-width:100%;
}
.hlogo img{
width:100%;
height:auto;
display:block;
outline:none;
}
.lang{
position:absolute;
right:15px;
top:35px;
}
.lang ul{
list-style:none;
}
.lang ul li{
display:inline;
margin-right:15px;
}
.lang img{
height:25px;
}
.th{
font-family: TH;
font-size:24px;
}
.thc{
font-family: THC;
font-size:32px;
}
.icons ul{
list-style:none;
text-align:center;
}
.icons ul li{
display:inline;
margin-right:10px;
}
.icons img{
height:25px;
}
.required{
color:#555;
text-align:right;
}
.navt{
//background-color:#6AC9EF;
background-color:rgba(230,111,10,0.99);
display:flex;
align-items:center;
justify-content:center;
padding:0 10px;
}
.gwrap {
max-width:1300px;
margin:auto;
margin-top:40px;
margin-bottom:40px;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-template-areas: "n1 n1 n2 n3" "n1 n1 n4 n4" "n5 n6 n4 n4";
grid-column-gap: 25px;
grid-row-gap: 25px;
height:800px;
}
.gwrap img{
width:100%;
height:100%;
object-fit:cover;
}
.p1 { grid-area: n1;}
.p2 { grid-area: n2;}
.p3 { grid-area: n3;}
.p4 { grid-area: n4;}
.p5 { grid-area: n5;}
.p6 { grid-area: n6;} 
.mlogo img{
width:250px;
position:relative;
margin:auto;
}
.mlang{
border-top:1px solid #555;
border-bottom:1px solid #555;
margin:0 auto;
padding-top:10px;
padding-bottom:10px;
margin-top:30px;
width:320px;
color:#333;
}
.mlang a:link, .mlang a:visited{
text-transform:uppercase;
color: #fff;
font-size:20px;
margin:10px;
}
.mlang a:hover{
color: #6AC9EF;
}
.blanc{
margin-bottom:25px;
}
.application{
padding:5%;
//margin:40px 0 0 0;
background: url("/myfiles/images/other/button.jpg") no-repeat center center fixed;
background-size: cover;	
}
.abutton{
position:relative;
width:280px;
font-size:23px;
padding:20px 30px;
background-color:rgba(255,255,255,0.5);
text-transform:uppercase;
border:3px solid rgba(0,0,0,0.1);
margin:auto;
color:#555;
cursor:pointer;
transition:0.6s;
box-sizing:border-box;
border-radius:25px;
}
.abutton:hover{
background-color:#ededed;
border:3px solid rgba(255,255,255,0.8);
-webkit-box-shadow: 0px 0px 16px -3px rgba(0,0,0,0.40);
-moz-box-shadow: 0px 0px 16px -3px rgba(0,0,0,0.40);
box-shadow: 0px 0px 16px -3px rgba(0,0,0,0.40);
color:#C4261D;

}
.heart {
position: absolute;
width: 50px;
height: 45px;
animation: heartbeat 1.2s infinite;
margin:0 auto;
top:15px;
right:25px;
}
.heart:before,
.heart:after {
position: absolute;
content: "";
left: 25px;
top: 0;
width: 25px;
height: 40px;
background: #C4261D;
-moz-border-radius: 50px 50px 0 0;
border-radius: 50px 50px 0 0;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.heart:after {
left: 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 100% 100%;
-moz-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
-o-transform-origin: 100% 100%;
transform-origin :100% 100%;
}

@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}
/* Video */
.video-container { 
position: relative; 
padding-bottom: 56.25%; 
padding-top: 30px; 
height: 0; 
overflow: hidden; 
margin-bottom:25px;
}
.video-container iframe, .video-container object, .video-container embed { 
position: absolute; 
top: 0; 
left: 0; 
width: 100%; 
height: 100%; 
}
/* Waves */
.waves {
position: absolute;
width: 100%;
height: 100px;
right: 0;
top: 0;
min-height: 100px;
max-height: 150px;
z-index:-1;
}
.parallax > use {
animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
animation-delay: -2s;
animation-duration: 7s;
}
.parallax > use:nth-child(2) {
animation-delay: -3s;
animation-duration: 10s;
}
.parallax > use:nth-child(3) {
animation-delay: -4s;
animation-duration: 13s;
}
.parallax > use:nth-child(4) {
animation-delay: -5s;
animation-duration: 20s;
}
@keyframes move-forever {
0% {
transform: translate3d(-90px,0,0);
}
100% { 
transform: translate3d(85px,0,0);
}
}
/* Site map */
ul.sitemapp:first-child{
margin:auto;
margin-bottom: 25px;
display:block;
}
ul.sitemapp li {
margin-left: 18px;
padding: 5px 0;
font-size: 16px;
font-weight:normal;
}
ul.sitemapp li a {
color: #555555;
transition: all .2s ease-in;
}
ul.sitemapp li a:hover {
color: #6AC9EF;
padding-left: 8px;
}
ul.sitemapp li ul li a{
color:#555555;
}
ul.sitemapp li ul li ul li a{
color:#555555;
}
ul.sitemapp li ul li ul li ul li a{
color:#555555;
}
/* Two images info */
.twopinfo{
display: flex;
align-items:center;
justify-content:center;
background-size:contain;
background-position:-1% 100%;
background-repeat: no-repeat;
background-color:#f8e2e4;
//margin-bottom:50px;
padding:10% 0;
}
.twopinfo_inner{
width:70%;
display:grid;
grid-gap:40px;
grid-template-columns: 40% auto;
background-color:#f8f8f8;
border: 1px solid rgba(255,255,255,0.5);
}
.twopinfo_image{
position:relative;
}
.twopinfo_image:after{
z-index: 1;
border: 1px solid rgba(255,255,255,0.5);
content: "";
position: absolute;
top: 20px;
bottom: 20px;
left: 20px;
right: 20px;
}
.twopinfo_image img{
width:100%;
height:100%;
object-fit:cover;
}
.twopinfo_text{
display:flex;
align-items:center;
justify-content:center;
padding:50px 40px 50px 0;
}
.twopinfo_text_inner{
display:flex;
flex-direction:column;
}
.twopinfo_text_inner h2{
font-size:22px;
text-transform:uppercase;
color:#6AC9EF;
margin-bottom:20px;
font-weight:normal;
letter-spacing:1px;
line-height:1.5;
}
.twopinfo_text_inner h1{
font-size:26px;
text-transform:uppercase;
color:#333;
font-weight:normal;
letter-spacing:1px;
}
.twopinfo_text_inner hr {
height: 4px;
width: 70px;
position: relative;
background: #6AC9EF;
border: 0;
display: inline-block;
margin-top:20px;
margin-bottom:20px;
}
.twopinfo_text_inner p{
font-size:17px;
line-height:1.4;
font-weight:normal;
}
.twopinfo_text_inner a{
border:2px solid transparent;
display:block;
width:150px;
padding:12px 0;
text-align:center;
color:#333;
background-color:transparent;
transition:.3s;
text-transform:uppercase;
font-size:15px;
}
/* Slider */
.skitter {
max-width: initial;
}
/* Draw border button */
.draw-border {
box-shadow: inset 0 0 0 2px #bbb;
color: #333;
transition: color 0.25s 0.08s;
position: relative;
}
.draw-border::before, .draw-border::after {
border: 0 solid transparent;
box-sizing: border-box;
content: "";
pointer-events: none;
position: absolute;
width: 0;
height: 0;
bottom: 0;
right: 0;
}
.draw-border::before {
border-bottom-width: 2px;
border-left-width: 2px;
}
.draw-border::after {
border-top-width: 2px;
border-right-width: 2px;
}
.draw-border:hover {
color: #222;
}
.draw-border:hover::before, .draw-border:hover::after {
border-color: #222;
transition: border-color 0s, width 0.25s, height 0.25s;
width: 100%;
height: 100%;
}
.draw-border:hover::before {
transition-delay: 0s, 0s, 0.25s;
}
.draw-border:hover::after {
transition-delay: 0s, 0.25s, 0s;
}
/* PAGEING */
ul.paging{
clear:both;
padding:10px 0 10px 0;
text-align:center;
margin:18px 0;
}
ul.paging li{
display:inline;
list-style:none;
font-size:15px;
cursor:pointer;
}
ul.paging li a{
display:inline-block;
line-height:34px;
width:33px;
height:33px;
margin:2px;	
color:#333;
text-align:center;
text-decoration:none;
}
ul.paging li a:hover{
background-color:#333;
color:#fff;
}
ul.paging li.current{
background-color:#333;
display:inline-block;
line-height:34px;
width:33px;
height:33px;
margin:2px;	
color:#fff;
text-align:center;
text-decoration:none;
}
/* ATTRIBUTES */
.nothing{
margin:20px auto;
width:280px;
padding:8px 18px;
border:1px solid #ddd;
font-weight:normal;
text-align:center;
font-size:20px;
color:#ccc;
}
.w30{
width:30%;
min-width:200px;
}
.w50{
width:50%;
min-width:250px;
}
.w70{
width:70%;
margin:auto;
}
.w80{
width:80%;
margin:auto;
}
.w90{
width:90%;
margin:auto;
}
.w95{
width:95%;
margin:auto;
}
.w98{
width:98%;
margin:auto;
}
.w100{
width:100%;
margin:auto;
}
.e{
color:red!important;
}
.s{
color:green!important;
}
/* Back to top */
img.back-to-top{
width:30px;
margin:auto;
display:block;
z-index:8;
position: fixed;
right: 20px;
bottom: 30px;
}
.form-wrapper div div{
margin-top:10px;
}
.form-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
grid-column-gap:25px;
}
.tbox{
padding:10px;
width:100%;
outline:none;
}
.form-wrapper label, label{
display:block;
margin-bottom:8px;
color:#333;
}
.form-wrapper input[type="text"], .form-wrapper input[type="date"], .form-wrapper input[type="time"] {
height: 40px;
width:100%;
}
.form-wrapper textarea {
height: 92px;
}
#service_title{
text-transform:uppercase;
font-size:28px;
color:#6AC9EF;
}
img.preload{
width:15px;
margin-left:8px;
display:none;
}
#sss, #pss{
margin-top:15px;
display:none;
background-color:#f2f2f2;
padding:8px;
text-align:center;
}
/* Testimonials  */
.tcont{
padding:5%;
margin:40px 0 0 0;
background: url("/myfiles/images/other/testimonials.jpg") no-repeat center center fixed;
background-size: cover;
}
.tcont h1{
text-align:center;
margin-bottom:30px;
color:#fff;
font-weight:normal;
text-transform:uppercase;
font-size:30px;
}
.tnav{
display:flex;
justify-content:center;
margin-top:20px;
}
.tprev, .tnext{
padding:20px;
cursor:pointer;
}
.testimonials{
width:70%;
margin:auto;
text-align:center;
}
.testimonials .item p{
color:#fff;
line-height:1.5;
}
.testimonials .item h3{
color:#fff;
font-size:22px;
margin-top:25px;
font-weight:normal;
}
.testimonials .item img{
margin:auto;
margin-bottom:10px;
}
/* Draw border button */
.draw-border {
box-shadow: inset 0 0 0 2px #6AC9EF;
color: #333;
transition: color 0.25s 0.08s;
position: relative;
}
.draw-border::before, .draw-border::after {
border: 0 solid transparent;
box-sizing: border-box;
content: "";
pointer-events: none;
position: absolute;
width: 0;
height: 0;
bottom: 0;
right: 0;
}
.draw-border::before {
border-bottom-width: 2px;
border-left-width: 2px;
}
.draw-border::after {
border-top-width: 2px;
border-right-width: 2px;
}
.draw-border:hover {
color: #F794C5;
}
.draw-border:hover::before, .draw-border:hover::after {
border-color: #F794C5;
transition: border-color 0s, width 0.25s, height 0.25s;
width: 100%;
height: 100%;
}
.draw-border:hover::before {
transition-delay: 0s, 0s, 0.25s;
}
.draw-border:hover::after {
transition-delay: 0s, 0.25s, 0s;
}
.btn {
display:block;
width:200px;
padding:12px 0;
text-align:center;
color:#555;
background-color:transparent;
transition:.3s;
text-transform:uppercase;
font-size:15px;
letter-spacing:1px;
outline:none;
border:transparent;
cursor:pointer;
}
.btnactive{
background-color:#6AC9EF;	
}
a.btnactive {
color:#fff!important;	
}
.animation_image_gallery, .animation_image_info{
text-align:center;
}
a.butn {
margin: 0 auto;
display: block;
width: 80px;
text-align: center;
cursor: pointer;
outline: none;
position: relative;
color: #000;
font-size: 15px;
padding: 15px 0;
margin: 0 auto;
margin-top: 20px;
margin-bottom: 25px;
background-color:#fff;
z-index: 1;
}
#cur_info, #cur_gallery{
position:relative;
}
a:link, a:visited{
text-decoration:none;
color:#333;
}
.ppage{
display: grid;
grid-gap: 5%;
grid-template-columns: 60% 35%;
padding: 20px 0;
width:93%;
margin:auto;
}
.single{
margin-bottom:25px;
}
.single h1{
margin:0;
padding:0;
font-size:25px;
font-weight:normal;
text-align:center;
}
.single img{
width:100%;
height:300px;
object-fit: cover;
margin-bottom:15px;
}
.recent p{
font-size:25px;
text-align:center;
}
.single p{
font-size:17px;
text-align:left;
line-height:1.5;
}
.pdate{
color:#888;
}
.recent{
display:flex;
flex-direction: column;
}
.rhr{
height: 4px;
width: 80px;
background: #6AC9EF;
border: 0;
margin: 18px auto;
display:block;
}
.recent>div:not(:last-child){
margin-bottom:25px;
}
/* news cards */
.ncards {
max-width:1300px;
margin: 0 auto;
margin-bottom:25px;
display: grid;
grid-gap: 30px;
grid-template-columns: repeat(3, 1fr);
}
.ncard {
position: relative;
background-color: #f8f8f8;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.ncard:hover {
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
}
.ncard article:after {
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 20px 20px;
border-color: transparent transparent #f8f8f8 transparent;
position: absolute;
bottom: 0;
right: 0;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.ncard h3 {
color: #333;
font-size: 20px;
font-weight: normal;
margin-top:5px;
}
.ncard span {
color: #333;
font-size: 17px;
line-height:1.5;
}
.ncard article {
padding: 10px 30px 30px 30px;
}
.ncard article hr {
width: 30px;
margin: 13px 0;
border: 1px solid #6AC9EF;
transition: all 0.8s linear;
}
.ncard:hover article hr {
width: 88px;
}
.nimg {
overflow: hidden;
position:relative;
}
.nimg img {
width: 100%;
height:280px;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: transform 0.8s linear;
-moz-transition: transform 0.8s linear;
transition: transform 0.8s linear;
}
.ncard:hover .nimg img {
-webkit-transform: scale(1.3) rotate(3deg);
-moz-transform: scale(1.3) rotate(3deg);
transform: scale(1.3) rotate(3deg);
}
.ncard:hover article:after {
border-color: transparent transparent #6AC9EF transparent;
border-width: 0 0 30px 30px;
}
/* Partner */
.partner_page {
max-width:1300px;
margin: 0 auto;
margin-bottom:25px;
display: grid;
grid-gap: 50px;
grid-template-columns: 350px auto;
}
.ptext{
background-color:#fdfdfd;
padding:30px;
border:1px solid #eee;
}
.pimages img{
width:100%;
margin-bottom:25px;
padding:10px;
border:1px solid #eee;
}
.playb{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin-top:auto;
margin-left:auto;
margin-right:auto;
margin-bottom:auto;
width:80px;
height:80px;
background-image:url('/webroot/img/play.svg');
background-size:cover;
}
.ttl{
display:block;
color:#6AC9EF;
font-weight:bold;
margin-top:15px;
margin-bottom:5px;
}
.ttl:first-child{
margin-top:0;
}
.descr{
line-height:1.7;
}
/* Titles */
.h2-title{
position:relative;
text-align:left;
max-width:1300px;
margin:auto;
margin-top:40px;
margin-bottom:30px;
text-transform:uppercase;
}
.h2-title h2{
font-size:25px;
letter-spacing:1px;
color:#333;
margin-bottom:10px;
font-weight:normal;
}
.h2-title hr {
height: 4px;
width: 100px;
position: relative;
background: #6AC9EF;
border: 0;
display: inline-block;
}
.h2-title-dark{
position:relative;
text-align:center;
max-width:1300px;
margin:auto;
margin-top:40px;
margin-bottom:40px;
}
.h2-title-dark h2{
font-weight:normal;
font-size:30px;
letter-spacing:1px;
color:#fff;
margin-bottom:10px;
}
.h2-title-dark hr {
height: 2px;
width: 60px;
position: relative;
background: #fff;
border: 0;
display: inline-block;
}
/* Footer */
.footer {
width: 100%;
box-sizing: border-box;
background-color: #6AC9EF;
border-top: 1px solid #fff;
color: #fff;
}
.footeri {
width: 90%;
margin: 0 auto;
display: grid;
grid-gap: 30px;
grid-template-columns: repeat(3, 1fr);
padding: 40px 0;
color: #fff;
}
.footeri ul a{
color: #fff;
font-size: 16px;
line-height: 25px;
letter-spacing: 1px;
transition:0.8s;
}
.footeri ul a:hover{
color: #F794C5;
}
.footeri ul {
list-style: square;
margin-left: 15px;
line-height:1.8;
}
.footer>p {
text-align: center;
margin: 0;
padding: 0;
padding-bottom: 10px;
margin-top:25px;
}
.foot1 h3, .foot2 h3, .foot3 h3{
font-size: 22px;
margin-bottom: 8px;
font-weight: normal;
color: #fff;
text-transform:uppercase;
letter-spacing:1px;
}
.foot1 p {
padding: 0;
color: #fff;
font-size: 16px;
line-height:1.8;
letter-spacing:1px;
}
.foot1 hr, .foot2 hr, .foot3 hr{
width: 40px;
margin: 20px 0;
border: 2px solid #F794C5;
}
.foot3 i {
color: #f1f1f1;
font-size: 25px;
}
.foot2 .languages{
display:none;
}
hr.ftr {
width: 100%;
border: 1px solid #6AC9EF;
box-sizing: border-box;
}
.footer p.copyr, .footer p.ph{
margin:15px 0 10px 0;
}
/* Contact form */
.form-wrapper {
max-width:1300px;
margin: auto;
display:grid;
grid-template-columns: repeat(2, 1fr);
grid-gap:40px;
margin-bottom:30px;
}
.form-wrapper label, label{
display:block;
margin-bottom:8px;
color:#333;
}
.form-wrapper input[type="text"], .form-wrapper input[type="date"], .form-wrapper input[type="time"] {
height: 40px;
width:100%;
}
.form-wrapper textarea {
height: 92px;
}
.form-wrapper-left {
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.form-wrapper-right {
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.form-wrapper-right form{
width:100%;
}
.multifile_remove_input {
color: #555;
font-size: 28px;
text-decoration: none;
}
.flabel{
display:block;
position:relative;
width:100%;
height:auto;
//border:2px solid #112C49;
font-size:16px;
padding:8px;
color:#333;
}
#file_input {
width:100%;
position:absolute;
color: transparent;
opacity:0;
cursor:pointer;
top:0;
left:0;
bottom:0;
right:0;
}
.multifile_container{
position:relative;
z-index:5;
}
.upload_file{
padding:0 5px;
color:#555;
margin:5px 0;
}
.upload_file:hover{
color:#555;
}
.upload_file:last-child{
margin-bottom:0;
}
.filename{
word-break: break-all;
}
textarea, input[type=text] {
font-family: inherit;
font-size: inherit;
color:#555;
}
textarea:-moz-ui-invalid:not(output), input[type=text]:-moz-ui-invalid:not(output) {
box-shadow: none;
border: 1px solid inherit;
}
.form-control {
position: relative;
margin: 0 0 20px 0;
width:100%;
}
.form-control input, .form-control textarea {
border: 0;
border-bottom: 2px solid #555;
padding: 15px 0;
display: block;
font-size: 16px;
width: 100%;
transition: 0.1s ease-in;
}
.form-control input:focus, .form-control textarea:focus, .form-control input:valid, .form-control textarea:valid{
border-bottom-color: #6AC9EF;
outline: none;
}
.form-control input:focus + label span, .form-control textarea:focus + label span, .form-control input:valid + label span, .form-control textarea:valid + label span{
color: #6AC9EF;
transform: translateY(-35px);
}
.form-control label {
position: absolute;
top: 15px;
left: 0;
}
.form-control label span {
display: inline-block;
font-size: 16px;
min-width: 5px;
transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#mail-status{
background-color:#f8f8f8;
border:1px solid #ccc;
width:100%;
padding:8px;
text-align:center;
width:60%;
display:none;
color:#555;
margin:0 auto;
margin-bottom:20px;
}
img.preloader {
width:15px;
display:none;
}
.form-row{
display:grid;
grid-template-columns: repeat(2, 1fr);
grid-gap:30px;
}
.form-row3{
display:grid;
grid-template-columns: repeat(3, 1fr);
grid-gap:30px;
}
.form-row3 .form-control{
display:flex;
}
.form-control select{
width:100%;
padding:10px;
font-size:18px;
letter-spacing:1px;
color:#555;
border:1px solid #ccc;
background-color:transparent;
}
.grecaptcha-badge { 
visibility: hidden;
}
/* General form */
.app-wrapper{
background:#ededed;
display:none;
}
.app-form{
max-width:1300px;
padding:25px 0;
margin:auto;
}
.form-row4{
display:grid;
grid-template-columns: repeat(4, 1fr);
grid-gap:25px;
margin-bottom:15px;
}
.multik{
display:grid!important;
grid-template-columns: repeat(2, 1fr);	
grid-gap:10px;
}
#apform label{
color:#555;
font-size:16px;
display:inline-block;
}
#apform fieldset{
border: solid 1px #bbb;
padding:20px;
margin-bottom:20px;
}
#apform legend{
color:#6AC9EF;
font-size:20px;
padding: 0px 20px;
}
.bd3{
display:grid!important;
grid-template-columns:repeat(3, 1fr);
grid-gap:5px;
}
.form-row4 div{
display:flex;
flex-direction:column;
justify-content:center;
}
.form-row4 p{
height:50px;
}
.app-wrapper input[type=text], .app-wrapper input[type=date], .app-wrapper textarea {
border: 0;
border: 1px solid #ccc;
padding: 15px;
display: block;
font-size: 16px;
width: 100%;
outline:none;
}
.app-wrapper select {
border: 0;
border: 1px solid #ccc;
padding: 14px;
display: block;
font-size: 16px;
width: 100%;
outline:none;
background-color:#fff;
}
/* Counter */
#counter{
background-color:#6AC9EF;
color:#fff;
padding:25px 0;
}
#counter .item{
text-align:center;
font-size:20px;
}
#counter .counter-value{
font-size:35px;
font-weight:bold;
margin-bottom:15px;
}
/* Advantages */
.advantages_containter{
max-width:1300px;
margin:auto;
margin-top:40px;
margin-bottom:40px;
display:grid;
grid-template-columns: repeat(3, 1fr);
grid-gap:30px;
}
.advantages_containter div{
text-align:center;
transition:all 2.8s;
}
.advantages_containter div:hover img{
-webkit-box-shadow: 0px 0px 16px -3px rgba(0,0,0,0.40);
-moz-box-shadow: 0px 0px 16px -3px rgba(0,0,0,0.40);
box-shadow: 0px 0px 16px -3px rgba(0,0,0,0.40);
}
.advantages_containter img{
width:200px;
height:200px;
margin-bottom:15px;
border-radius:50%;
}
.advantages_containter h2{
font-size:23px;
color:#6AC9EF;
font-weight:normal;
margin-bottom:15px;
}
.advantages_containter p{
font-size:16px;
line-height:1.5;
}
/* Slider */
.bcont{
max-width:1300px;
margin:auto;
position:relative;
margin-top:30px;
margin-bottom:50px;
}
.bcont .slider div img {
width: 100%;
padding: 5px;
border:1px solid #eee;
//background-color:rgba(0,0,0,0.1);
}
.bcont .slick-dots {
text-align: center;
margin: 15px 0 10px 0;
padding: 0;
}
.bcont .slick-dots li {
display: inline-block;
margin-left: 4px;
margin-right: 4px;
}
.bcont .slick-dots li.slick-active button {
background-color: #A0366D;
}
.bcont .slick-dots li button {
text-shadow: none;
color: transparent;
background-color: transparent;
border: 1px solid #555;
width: 10px;
border-radius: 50%;
outline:none;
cursor: pointer;
}
.bcont .slick-dots li :hover {
background-color: black;
}
.bcont .slick-slide {
margin: 0 10px;
}
.bcont .slick-list {
margin: 0 -10px;
}
.bcont .prev{
position: absolute;
top: calc(50% - 15px);
left: -1.5em;
}
.bcont .prev span, .next span{
cursor: pointer;
}
.bcont .next{
position: absolute;
top: calc(50% - 15px);
right: -1.6em;
}
.lw{
max-width:90%;
}
/* Reveal block */
.reveal-holder {
position: relative;
display: inline-block;
overflow: hidden;
}
.reveal-holder .reveal-block {
position: absolute;
top: 0;
width: 101%;
height: 101%;
background: white;
}
.reveal-holder .reveal-block::before {
position: absolute;
content: '';
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #333;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
transition-duration: 0.5s;
}
.reveal-block.gradient::before {
background: linear-gradient( rgb(14, 42, 71), rgb(35, 182, 198) );
}
.reveal-block.gradient-two::before {
background: linear-gradient(to left, #555, #555);
}
.reveal-block.extra {
background: #6AC9EF;
}
.reveal-block.extra::before {
background: #F794C5;
}

.reveal-block.top.aos-animate::before,
.reveal-block.bottom.aos-animate::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.reveal-block.left.aos-animate::before,
.reveal-block.right.aos-animate::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.reveal-block.top::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}
.reveal-block.left::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}
.reveal-block.right::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}
.reveal-block.bottom::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}

/* AOS animate */
[data-aos="reveal-top"],
[data-aos="reveal-left"],
[data-aos="reveal-right"],
[data-aos="reveal-bottom"] {
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-delay: 0.5s;
}

[data-aos="reveal-top"] {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
[data-aos="reveal-top"].aos-animate {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}

[data-aos="reveal-left"] {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
[data-aos="reveal-left"].aos-animate {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

[data-aos="reveal-right"] {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
[data-aos="reveal-right"].aos-animate {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}

[data-aos="reveal-bottom"] {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
[data-aos="reveal-bottom"].aos-animate {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

[data-aos="reveal-item"] {
  visibility: hidden;
  transition-property: visibility;
  transition-duration: 0s;
}
[data-aos="reveal-item"].aos-animate {
  visibility: visible;
}
.info_pages{
max-width:1300px;
min-height:300px;
margin: 0 auto;
margin-bottom:25px;
line-height:1.5;
}
/* MEDIA QUERIES */
@media screen and (min-width: 1400px) {
	.gwrap {
	height:1200px;
	}
}
@media screen and (min-width: 1101px) {

}
@media screen and (max-width: 1300px) {
	.gwrap, .ncards, .h2-title, .advantages_containter,.info_pages, .form-wrapper {
	width:95%;
	}
}
@media screen and (max-width: 1100px) {
	.form-row4{
	grid-template-columns: repeat(2, 1fr);
	}	
	.form-row3{
	grid-template-columns: repeat(2, 1fr);
	}
	.cname{
    display:none;
    }
}
@media screen and (max-width: 1000px) {
	.twopinfo{
	padding:0;
	}
	.twopinfo_inner{
	width:100%;
	}
	.cform-wrapper .fwrap{
	width:70%;
	}
	.gwrap {
	width:95%;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-template-areas: "n1 n2 n3" "n4 n5 n6";
	height:auto;
	}
	.form-wrapper{
	grid-template-columns:1fr;
	}
}
@media screen and (max-width: 900px) {

}
@media screen and (max-width: 800px) {
	.ncards{
	grid-template-columns: auto auto;
	}	
	.cform-wrapper .fwrap{
	width:80%;
	}
	.advantages_containter{
	width:95%;
	grid-template-columns: repeat(2, 1fr);
	}
	.gwrap {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-template-areas: "n1 n2" "n3 n4" "n5 n6";
	}
}
@media screen and (max-width: 700px) {
	.single h1{
	font-size:20px;
	}
	.ppage{
	grid-gap: 0;
	grid-template-columns: 1fr;
	}
	.form-row3, .form-row4{
	grid-template-columns: 100%;
	}
	.partner_page {
	grid-template-columns: 100%;
	grid-gap:0;
	}
    .hdr {
    grid-template-columns:100%;
    }
}
@media screen and (max-width: 600px) {
	.hdr {
	width:100%;
	left:0;
	top:0;
	grid-template-columns: 250px auto;
	}
	.twopinfo_inner{
	grid-template-columns: 1fr;
	}
	.twopinfo_text{
	padding:25px;
	}
	.ncards{
	grid-template-columns: 1fr;
	}
	.testimonials{
	width:100%;
	}
	.cform-wrapper .fwrap{
	width:95%;
	}
}
@media screen and (max-width: 500px) {
	.h1-title h1 {
    font-size: 21px;
	}
	.form-row{
	grid-template-columns: 1fr;
	grid-gap:0;
	}
}
@media screen and (max-width: 450px) {
    .w30,.w50,.w70,.w80,.w90,.w95,.w98{
    width:90%;
    margin:auto;
    }
	.ncard span {
	font-size: 14px;
	}
	.ncard h3 {
    font-size: 17px;
	}
    #mail-status{
    margin:10px 0 18px 0;
    }
	.hdr {
	width:100%;
	left:0;
	top:0;
	grid-template-columns: 250px auto;
	}
	.advantages_containter{
	grid-template-columns: 1fr;
	}
	.gwrap {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "n1" "n2" "n3" "n4" "n5" "n6";
	grid-column-gap: 0;
	}
	.abutton{
	width: 100%;
	font-size: 18px;
	padding: 15px 20px;
	}
	.heart{
	top:7px;
	right:15px;
	}
	#mail-status{
    width:100%;
    }  
}
@media screen and (max-width: 450px) {
    .btn{
        width:100%!important;
    }
    .tcont{
    background: url("/myfiles/images/other/testimonials.jpg") no-repeat 72% 40% fixed;
    }
}
