/*
===========================================
Insurance With Antwan OS
Global Theme Styles
Version: 1.0.0
===========================================
*/

:root{

    --iwa-primary:#0B2E59;
    --iwa-primary-dark:#071D38;
    --iwa-secondary:#1E88E5;
    --iwa-gold:#D4AF37;

    --iwa-success:#16A34A;
    --iwa-danger:#DC2626;
    --iwa-warning:#F59E0B;

    --iwa-white:#FFFFFF;
    --iwa-light:#F8FAFC;
    --iwa-border:#E5E7EB;

    --iwa-text:#0F172A;
    --iwa-text-light:#64748B;

    --iwa-shadow:0 15px 45px rgba(0,0,0,.08);

    --iwa-radius:18px;

    --iwa-max-width:1400px;

}

/*------------------------------------
RESET
------------------------------------*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:
    Inter,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;

    background:var(--iwa-light);

    color:var(--iwa-text);

    font-size:16px;

    line-height:1.7;

}

/*------------------------------------
LAYOUT
------------------------------------*/

.iwa-container{

    width:95%;

    max-width:var(--iwa-max-width);

    margin:auto;

}

section{

    padding:80px 0;

}

/*------------------------------------
TYPOGRAPHY
------------------------------------*/

h1{

    font-size:56px;

    line-height:1.1;

    font-weight:800;

}

h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

h3{

    font-size:28px;

    margin-bottom:15px;

}

p{

    color:var(--iwa-text-light);

    margin-bottom:20px;

}

/*------------------------------------
BUTTONS
------------------------------------*/

.iwa-btn{

    display:inline-block;

    padding:16px 34px;

    border-radius:12px;

    text-decoration:none;

    transition:.30s;

    font-weight:700;

}

.iwa-btn-primary{

    background:var(--iwa-secondary);

    color:#fff;

}

.iwa-btn-primary:hover{

    background:var(--iwa-primary);

}

.iwa-btn-secondary{

    border:2px solid var(--iwa-secondary);

    color:var(--iwa-secondary);

}

.iwa-btn-secondary:hover{

    background:var(--iwa-secondary);

    color:#fff;

}

/*------------------------------------
CARDS
------------------------------------*/

.iwa-card{

    background:#fff;

    border-radius:var(--iwa-radius);

    box-shadow:var(--iwa-shadow);

    padding:35px;

}

/*------------------------------------
GRID
------------------------------------*/

.iwa-grid{

    display:grid;

    gap:30px;

}

.iwa-grid-2{

    grid-template-columns:repeat(2,1fr);

}

.iwa-grid-3{

    grid-template-columns:repeat(3,1fr);

}

.iwa-grid-4{

    grid-template-columns:repeat(4,1fr);

}

/*------------------------------------
RESPONSIVE
------------------------------------*/

@media(max-width:992px){

.iwa-grid-4{

grid-template-columns:repeat(2,1fr);

}

.iwa-grid-3{

grid-template-columns:repeat(2,1fr);

}

h1{

font-size:44px;

}

}

@media(max-width:768px){

.iwa-grid-2,
.iwa-grid-3,
.iwa-grid-4{

grid-template-columns:1fr;

}

section{

padding:60px 0;

}

h1{

font-size:36px;

}

h2{

font-size:30px;

}

}