*{
    box-sizing:border-box;
}



:root{

    /* Colors */

    --primary:#102B5C;
    --secondary:#7F9F84;
    --accent:#D6B64C;

    --text:#475569;
    --heading:#102B5C;
    --white:#ffffff;

    /* Fonts */

    --font-heading:"Manrope",sans-serif; 
    --font-body:"Inter",sans-serif;

    /* Font Weights */

    --fw-regular:400;
    --fw-medium:500;
    --fw-semibold:600;
    --fw-bold:700;
    --fw-extrabold:800;

    /* Border Radius */

    --radius-sm:8px;
    --radius-md:12px;
    --radius-lg:20px;

    /* Container */

    --container:1280px;

}

html{

    font-size:16px;

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-body);

    font-size:17px;

    line-height:1.8;

    color:var(--text);

    font-weight:400;

    background:#fff;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0 0 20px;

    color:var(--heading);

    font-family:var(--font-heading);

    line-height:1.15;

}

h1{

    font-size:72px;

    font-weight:800;

}

h2{

    font-size:48px;

    font-weight:700;

}

h3{

    font-size:30px;

    font-weight:700;

}

h4{

    font-size:24px;

    font-weight:600;

}

h5{

    font-size:20px;

}

h6{

    font-size:18px;

}

p{

    margin:0 0 24px;

    font-size:17px;

    line-height:1.9;

}

a{

    color:inherit;

    text-decoration:none;

    transition:.3s ease;

}

.container{
    width:min(1280px,92%);
    margin-inline:auto;
}

.section{
    padding:90px 0;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}


.ct-header-navigation a{

    font-family:var(--font-heading);

    font-size:15px;

    font-weight:600;

    letter-spacing:.2px;

}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}
.btn,
.wp-element-button{

    font-family:var(--font-heading);

    font-size:16px;

    font-weight:700;

    letter-spacing:.2px;

}

.btn-primary{
    background:#102B5C;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-2px);
}


.section{
    padding:100px 0;
}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading span{

    display:inline-block;

    color:#7F9F84;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:12px;

}

.section-heading h2{

    font-size:48px;

    color:#102B5C;

    margin-bottom:20px;

}

.section-heading p{

    font-size:18px;

    color:#64748B;

    line-height:1.8;

}


.ti{

font-size:18px;

vertical-align:middle;

line-height:1;

}

.topbar-left i,
.topbar-right i{

margin-right:6px;

color:#D6B64C;

}
.topbar-right a.guardian-btn i{
    color:#102B5C;
}

[data-menu]>ul>li[class*=current-menu-]>a:before, [data-menu]>ul>li[class*=current-menu-]>a:after,
[data-menu]>ul>li[class*=current-menu-]>a:hover::before, [data-menu]>ul>li[class*=current-menu-]>a:hover::after{
    background-color: #FFD700 !important;
}