/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES
========================================== */

:root{

    --primary:#0D4C92;
    --secondary:#34C38F;
    --dark:#1F2937;
    --light:#F5F7FA;
    --white:#FFFFFF;
    --text:#555555;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:12px;

}

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ==========================================
   HTML
========================================== */

html{

    scroll-behavior:smooth;

}

/* ==========================================
   BODY
========================================== */

body{

    font-family:'Poppins',sans-serif;

    color:#333;

    background:#fff;

    line-height:1.7;

    padding-top:90px;

}

/* ==========================================
   IMAGES
========================================== */

img{

    width:100%;

    display:block;

}

/* ==========================================
   LINKS
========================================== */

a{

    text-decoration:none;

}

/* ==========================================
   LISTS
========================================== */

ul{

    list-style:none;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/* ==========================================
   SECTION
========================================== */

section{

    padding:90px 0;

}

/* ==========================================
   HEADINGS
========================================== */

h1{

    font-size:58px;

    color:var(--primary);

    margin-bottom:20px;

    line-height:1.2;

}

h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

h3{

    font-size:24px;

    margin-bottom:15px;

}

p{

    color:var(--text);

    margin-bottom:20px;

}

/* ==========================================
   BUTTONS
========================================== */

.btn{

    display:inline-block;

    background:var(--secondary);

    color:white;

    padding:15px 34px;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:var(--primary);

}

.btn-outline{

    background:transparent;

    color:white;

    border:2px solid white;

}

.btn-outline:hover{

    background:white;

    color:var(--primary);

}
/* ==========================================
   FADE IN
========================================== */

body{

    animation:fadeIn .8s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}