@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

:root {
   --themeColor: #00ccff; 
}
* { box-sizing: border-box;}
html,body{
margin:0;
padding:0;
background-color:#fff;
overflow-x:hidden;
scroll-behavior: smooth;
}
*:focus{outline:none}
*:active{outline:none}
*:visited{outline:none}
*:link{outline:none}
img{border:none}
::selection{background-color:#e3dccf;color:#000}
.slogan{
color: white;
font-size: 50px;
text-align: center;
font-family: "Cairo", sans-serif;
}
.slogan_sub{
    color: white;
    font-size: 50px;
    text-align: center;
    font-family: "Cairo", sans-serif;
}
section#topOne {
    position:relative;
    width:100%;
    height:800px;
    background-image:url("../imgs/fullbg.jpg");
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-position:center;
    background-size: cover;
    -webkit-background-size: cover;
}
div#mainLogo {
    display: flex;
    justify-content: left;
    align-items: inherit;
}
div#mainLogo > div img {
    display: block;
    width:200px;
    height:auto;
    margin-top: 10px;
    margin-left: 70px;
}
div#topLogo {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center
}
div#topLogo > div {
    position:relative;
    margin-top:120px;
}
div#topLogo > div span {
    position:absolute;
    color:var(--themeColor);
    font-weight: bold;
    font-size: 1.875rem;
    bottom:8px;
    left:40px;
    z-index: 10;
    transition: 0.5s linear;
}
div#topLogo > div:hover span {
  letter-spacing: 2px;
}
div#bottomTop {
    position:absolute;
    bottom:0;
    left:0;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0),#ffffff80, rgba(255,255,255,1));
    width:100%;
    height:80px;
    z-index: 10;
}
div#whats {
    position:absolute;
    bottom:0px;
    left:0;
    width:100%;
    height:70px;
    padding-top:20px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}
div#whats > div a{
    display: inline-block;
    background-color:#22d366 ;
    text-decoration: none;
    color:#fff;
    font-weight: bold;
    font-size: 1.75rem;
    border-radius:40px;
    padding:0 30px 0 25px;
    transition:0.5s linear;
    font-family: "Cairo", sans-serif;
}
div#whats > div a:hover{
 /* color:var(--themeColor);*/
  letter-spacing:2px;
}
div#whats > div a img{
    vertical-align: middle;
    width:50px;
    margin:0;
    padding:0;
}

section#middleOne {
  position: relative;
  padding-bottom:130px;
}

div#midContent {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
div#midContent div.content {
    position:relative;
    flex:0 0 30%; 
    margin: 0 1% 10px;
    z-index:5;
    transition: 0.5s linear;
}
div#midContent div.content:hover img {
  transform:scaleX(-1);
}
div#midContent div.content img {
   width:100%;
   height:auto;  
}
div#midContent div.content span {
    position: absolute;
    color:#fff;
    font-weight: bold;
    padding:10px;
    top:0px;
    right:0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--themeColor);
    z-index:10; 
    font-family: "Cairo", sans-serif;
 }

div#midBottom {
    position: absolute;
    width:100%;
    height:40px;
    bottom:0;
    left:0;
    background-color: var(--themeColor);
    z-index:1;
}
#footer {
    background-color: var(--themeColor);
    padding: 20px 0 40px;
}
#foot {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#foot article {
    flex:0 0 100%;
    margin-bottom: 40px;
}
#foot article:first-child a {
   display: inline-block;
   background-color: #fff;
   border-radius: 50%;
   text-align: center;
   width:40px;
   height:40px;
   padding-top:12px;
}
#foot article:first-child a i{
  font-size:20px;
  color:var(--themeColor);
}
#foot article:last-child {
  text-align: center;
}
#foot article:last-child a {
    display: inline-block;
    width:12%;
    margin-left: 10px;
    margin-right: 10px;
 }
 #foot article:last-child a img {
    display: inline-block;
    width:100%;
    height:auto;
    border-radius:14px;
 }
div#flyApp {
  position: fixed;
  bottom:10px;
  right:10px;
  z-index: 20;
}
div#flywhats {
  position: fixed;
  bottom:10px;
  left:10px;
  z-index: 20;
}

@supports (-webkit-touch-callout: none) {
    section#topOne {
        background-attachment:scroll;
    }
  }
@media screen and (max-width:800px) {
    section#topOne {
        background-attachment:scroll;
    }
    div#midContent div.content {
      flex:0 0 47%;
   }
   #foot article:last-child a {
    width:20%;
     }
   }
   @media screen and (max-width:600px) {
    section#topOne {
        background-attachment:scroll;
    }
    div#midContent div.content {
      flex:0 0 96%;
      margin-left:2%;
      margin-right:2%;
   }
   #foot article:last-child a {
    width:30%;
     }
   }
  
