:root{
 --main-color: #3aa2b2;
 --font-dark-color: #1a1a1a;   
 --font-light-color: #efefef;   
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
 margin: 0;
 padding: 0;
 border: 0;
 font-size: 100%;
 font: inherit;
 vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
 display: block;
}
body {
 line-height: 1;
 font-family: 'Roboto', sans-serif;
 color: var(--font-color) ;
 font-size: 16px;
 line-height: 1.6;

}
body img{
 width: 100%;
 height: auto;
 display: block;
}
body,html{
 width: 100%;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
 content: '';
 content: none;
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}

h1{
 font-size: 30px;
 line-height: 1.2;
}
h2{
 font-size: 25px;
 line-height: 1.2;  
}
h3{
 font-size: 20px;
 line-height: 1.3;     
}
h4{
 font-size: 18px;
 line-height: 1.4;        
}
*{
   box-sizing: border-box;
}
.comming-soon{
 min-height: 100vh;
 width: 100%;
 background-color: var(--main-color);    
 display: flex;
 justify-content: center;
 align-items: center;
}
.comming-soon .container{
 max-width: 1200px;
 margin: 15px;
 padding: 60px 30px;
 background-color: white;
 box-shadow: 0px 5px 15px rgba(255,255,255,0.3);
 width: 100%;
}
.comming-soon .container .identity img{
 max-width: 300px;
 margin: 0 auto;
}
.comming-soon .container .row:not(:last-of-type){
 margin-bottom: 60px;
}
.comming-soon .container .info{
 text-align: center;
}
.comming-soon .container .info h1{
 text-transform: uppercase;     
 font-weight: bold;
 margin-bottom: 15px;
}
.comming-soon .container .info h3{
 font-size: 30px;
 font-weight: bold;
 text-transform: uppercase;
}
.comming-soon .container .loading-animation{
 display: flex;
 justify-content: center;
 align-items: center;  
}
.comming-soon .container .loading-animation .loading-dot{
 height: 20px;
 width: 20px;
 background-color: var(--main-color);
 margin: 0px 10px;
 border-radius: 50%;
 animation: dotsLoading 1s infinite ease-in-out;   
}
.comming-soon .container .loading-animation .loading-dot:nth-child(1){
 animation-delay: 0ms;
}
.comming-soon .container .loading-animation .loading-dot:nth-child(2){
 animation-delay: 150ms;
}
.comming-soon .container .loading-animation .loading-dot:nth-child(3){
 animation-delay: 300ms;
}

@keyframes dotsLoading{
 0%{
  transform: scale(1.0) translate(0px,0px);
}    
50%{
  transform: scale(1.3) translate(0px,0px);
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

100%{
  transform: scale(1.0) translate(0px,0px);
}
}

@media screen and (max-width: 768px){
   .comming-soon .container .info h1{
      font-size: 40px;
   }
}
@media screen and (min-width: 767px){
   .comming-soon .container .info h1{
      font-size: 60px;
   }
}