@use "sass:math";

:root {
    --theme-color: #1E3A8A;
    --title-color: #102C59;
    --body-color: #737887;
    --smoke-color: #F5F5F5;
    --smoke-color2: #E2E8FA;
    --black-color: #000000;
    --black-color2: #080E1C;
    --gray-color: #bdbdbd;
    --white-color: #ffffff;
    --light-color: #72849B;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #E0E0E0;
    --title-font: 'Barlow', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1220px;
    --container-gutters: 24px;
    --section-space: 80px;
    --section-space-mobile: 60px;
    --section-title-space: 50px;
    --ripple-ani-duration: 5s
}


.breadcumb-menu li:after {
    content: "\f323"!important;
    position: relative;
    margin-right: 10px!important;
    font-weight: 500;
    font-size: 15px;
    color: var(--white-color);
    font-family: var(--icon-font)
}

.breadcumb-menu li:before {
    content: "";
    position: relative;
    margin-right: 10px;
    font-weight: 500;
    font-size: 15px;
    color: var(--white-color);
    font-family: var(--icon-font)
}


.widget_nav_menu a::after, .widget_meta a::after, .widget_pages a::after, .widget_archive a::after, .widget_categories a::after {
    content: "\f060";
    position: absolute;
    left: 25px;
    top: 17px;
    font-family: var(--icon-font);
    font-weight: 600;
    color: #1E3A8A;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}

.widget_nav_menu a::before, .widget_meta a::before, .widget_pages a::before, .widget_archive a::before, .widget_categories a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 17px;
    font-family: var(--icon-font);
    font-weight: 600;
    color: #1E3A8A;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}

.blog-meta span, .blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
    position: relative;
    margin-right: 0;
    margin-left: 10px;
}

.widget .search-form input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 0 6px 6px 0 ;
    padding-right: 25px
}

.widget .search-form button {
    border: none;
    font-size: 16px;
    background-color: #1E3A8A;
    color: white;
    display: inline-block;
    padding: 0;
    width: 56px;
    text-align: center;
    border-radius:  6px 0 0 6px
}