:root {
    --blue-dark: rgb(40,47,149);
    --yellow-main: rgb(255,229,1);
}

body {
    color: var(--blue-dark)!important;
}

a:hover {
    text-decoration: none!important;
}

.text-blue-dark {
    color: var(--blue-dark);
}

.text-yellow-main {
    color: var(--yellow-main);
}

.bg-blue-dark {
    background-color: var(--blue-dark)!important;
}

.bg-yellow-main {
    background-color: var(--yellow-main)!important;
}

.hover-blue-dark:hover {
    color: var(--blue-dark)!important;
}

.hover-white:hover {
    color: white!important;
}

.hover-yellow-main:hover {
    color: var(--yellow-main)!important;
}


#contact_form {
	position: fixed;
	top: 100px;
	right: 15px;
    z-index: 999;
}

@media (max-width: 1179px) {
    #contact_form {
        width: 100%;
        position: relative;
        top: 0;
        right: 0;
    }
}