﻿/*====================================================
    Sugamya Foundation
    Global Styles
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-size:16px;
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    font-size:16px;

    line-height:1.7;

    color:#222;

    background:#f5f7fa;

}

.wrapper{

    width:95%;

    max-width:1200px;

    margin:auto;

}

/*---------------------------------------*/

img{

    max-width:100%;

    height:auto;

    border:none;

}

/*---------------------------------------*/

a{

    color:#005A9C;

    text-decoration:none;

}

a:hover{

    text-decoration:underline;

}

/*---------------------------------------*/

h1{

    font-size:2.3rem;

    color:#005A9C;

    margin-bottom:15px;

}

h2{

    font-size:2rem;

    margin-bottom:15px;

    color:#005A9C;

}

h3{

    font-size:1.5rem;

    margin-bottom:12px;

    color:#1B5E20;

}

h4{

    font-size:1.2rem;

    margin-bottom:10px;

}

p{

    margin-bottom:18px;

}

section{

    padding:60px 0;

}

.text-center{

    text-align:center;

}

.btn{

    display:inline-block;

    padding:12px 25px;

    background:#005A9C;

    color:#fff;

    border-radius:4px;

    margin-top:10px;

}

.btn:hover{

    background:#003B66;

    color:#fff;

    text-decoration:none;

}

.btn-secondary{

    background:#1B5E20;

}

.btn-secondary:hover{

    background:#0E3D15;

}

.clear{

    clear:both;

}