@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');

:root
{
    --color_1:#FFF;
    --color_1_rgb:255,255,255;

    --color_2:#fbbc51;
    --color_2_rgb: 251, 188, 81;

    --white: #FFF;
    --maincolor:var(--color_1);
    --mainfont: 'Lato', sans-serif;
    --bgcolor: #231C53;
    --bgcolor_rgb: #231C53;

    --dblue: #6077ba;
    --dblue_rgb: 96, 119, 186;

    --lblue: #63afe1;
    --lblue_rgb: 99, 175, 225;


}
/*reset styles*/

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 {
    border: 0 none;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    min-height: 480px;
    min-width: 321px;
    /*iphone size*/
    color: var(--maincolor);
    background-color: var(--bgcolor);
    font: 400 16px/1.5 var(--mainfont);    
    width: 100%;
    min-height:700px;

}


/***** link & button *********/

a,
button {
    color: var(--color_1);
    text-decoration: none;
    transition: all 0.1s ease-in-out 0s;
    -webkit-transition: all 0.1s ease-in-out 0s;
}

a span {
    transition: all 0.1s ease-in-out 0s;
    -webkit-transition: all 0.1s ease-in-out 0s;
}

a:focus,
a:hover {
    text-decoration: none;
    color: rgba(var(--color_2_rgb), 0.6);
}

:focus,
a,
a:hover,
a:active a:focus {
    outline: medium none !important;
}

a.link {
    color: var(--color_2);
}

a.link:hover,
a.link:focus {
    color: var(--color_4);
}

ul,
li {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

h1 {
    font: 700 32px/1.3 var(--mainfont);
    color: var(--maincolor);
    margin-bottom: 15px;
}

h2 {
    font: 700 28px/1.5 var(--mainfont);
    color: var(--maincolor);
}

h3 {
    font: 700 20px/1.3 var(--mainfont);
    color: var(--maincolor);
}

h3.regular {
    font: 400 20px/1.3 var(--mainfont);
    color: var(--maincolor);
}

h4 {
    font: 400 18px/1.4 var(--mainfont);
    color: var(--maincolor);
}

h5 {
    font: 700 16px/1.2 var(--mainfont);
    color: var(--maincolor);
}

h6 {
    font: 600 16px/1.2 var(--mainfont);
    color: var(--maincolor);
}


p {
    font: 400 16px/1.5 var(--mainfont);
    margin-bottom: 5px;
}

b,
strong {
    font-weight: 700;
}


.airteam_btn
{
    font-size: 14px;
    display: inline-block;
    padding: 10px 37px;
    background-color: var(--dblue);
    -webkit-border-radius: 25px;
    -khtml-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    color: var(--white);
    
    outline: 0;
    position: relative;
    line-height: 25px;
    text-transform: uppercase;
    border: 2px solid var(--dblue);

    -webkit-transition: all .4s ease 0s !important;
    -khtml-transition: all .4s ease 0s !important;
    -moz-transition: all .4s ease 0s !important;
    -ms-transition: all .4s ease 0s !important;
    -o-transition: all .4s ease 0s !important;
    transition: all .4s ease 0s !important;
    text-decoration: none;
    text-align: center;
}
.airteam_btn:hover,
.airteam_btn:focus,
.airteam_btn:active
{
      background: transparent;
      color: var(--dblue);
      text-decoration: none;
      color:var(--white);
}





.logo_container
{
    /*height:50vh; */
}
@media (max-width:768px)
{
 .logo_container img {     
     max-height:300px;
 }
}

a.address
{
    padding:5px;
}

.icon
{
    margin-right:5px;
}
.icon svg {
    vertical-align: middle;
    align-self: center;
    color: var(--color_2);
    fill: rgba(var(--color_2_rgb), 0.08);
    width: 24px;
    height: 24px;
}

.address :hover .icon svg,
.address :focus .icon svg,
.address :active .icon svg
{
     color: var(--color_1);
     fill: rgba(var(--color_1_rgb), 0.08);
}




footer
{
    margin-top: 60px;
    
    width:100%;
    color:rgba(var(--dblue_rgb), 0.8);
    
    padding:0 10px;
}
footer p
{
    font: 400 18px/1.2 var(--mainfont);
}
a.footer_button
{
    color:rgba(var(--dblue_rgb), 0.8);
}
a.footer_button:hover
{
    color:rgba(var(--color_2_rgb), 0.8);
}