:root {
    --white-color: #ffffff;
    --black-color: #000000;
    --grey-color: #999999;
    --secondary-color: #ffb400;
    --primary-color: #1239ac;
     --primary-color-rgb: 18, 57, 172;
        --secondary-color-rgb: 255, 180, 0;
}

/*------------------------------------*\
    Global Styles
\*------------------------------------*/
body,
html {
    margin: 0;
}

@font-face {
    font-family: 'icomoon' !important;
    src: url('fonts/icomoon.eot?vwucc1');
    src: url('fonts/icomoon.eot?vwucc1#iefix') format('embedded-opentype'),
        url('fonts/icomoon.ttf?vwucc1') format('truetype'),
        url('fonts/icomoon.woff?vwucc1') format('woff'),
        url('fonts/icomoon.svg?vwucc1#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}



body {
    background-color: var(--white-color);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
}


* {
    outline: none;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

a:hover,
a:focus,
a:active {
    color: var(--secondary-color);
    text-decoration: none;
    outline: none;
}

textarea {
    resize: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
}




/*------------------------------------*\
    Align
\*------------------------------------*/
.text--left {
    text-align: left !important;
}

.text--right {
    text-align: right !important;
}

.text--center {
    text-align: center !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.text-secondary{
    color: var(--secondary-color) !important;
}
.text-grey{
    color: var(--grey-color) !important;
}
/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--brote-base);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: var(--white-color);
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--brote-base);
}

.scroll-to-top:hover i {
    color: var(--white-color);

}
