.most-top-element {
    margin-top: 110px;
}

h1 {
    color: rgb(45, 45, 102);
}

.onscroll-navbar {
    background-color: rgb(45, 45, 102);
    justify-content: flex-start;
}

.onscroll-navbar * {
    font-size: 12px;
    color: white;
}

.onscroll-navbar img {
    height: 30px;
    width: auto;
}

.navbar-phone {
    margin-top: 10px;
    margin-right: 10px;
}

.navbar-phone-collapsed {
    margin-left: 30px;
    margin-bottom: 10px;
}

.navbar-phone {
    display: none;
}

.navbar-phone-text {
    margin: 0 0 0 0;
    font-weight: bold;
    text-align: center;
}

.number {
    font-size: 25px;
}

.nav-item-dropdown {
    display: none;
}

.dropdown-menu {
    background-color: rgb(45, 45, 102)
}

.custom-container {
    margin-left: 15%;
    margin-right: 15%;
    padding-left: 0;
    padding-right: 0;
}

.custom-container .col-right {
    padding-right: 0;
}

.custom-container .col-left {
    padding-left: 0;
}

.custom-container {
    margin-bottom: 20px;
}

.contact-form-button {
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0);
    background-image: url("../img/icons/mail_svg.svg");
    background-size: 50px 50px;
    border: none;
    right: 10px;
    bottom: 20px;
    z-index: 100;
}

.toast-container {
    right: 5px;
    bottom: 175px;
}

.toast-header {
    background-color: rgb(45, 45, 102);
    color: white;
}

.btn-custom {
    background-color: rgb(45, 45, 102);
    border-color: rgb(45, 45, 102);
    margin-top: 15px;
    color: white;
}

.btn-custom:hover {
    background-color: rgb(45, 45, 102);
    outline: none;
    border-color: rgb(45, 45, 102);
}
.btn-custom:focus {
    background-color: rgb(45, 45, 102);
    outline: none;
    box-shadow: none;
    border-color: rgb(45, 45, 102);
}

.footer-container {
    margin-bottom: 0;
    margin-top: 20px;
    padding-top: 10px;
    width: 100%;
    background-color: rgb(45, 45, 102);
}

.footer-item {
    color: white;
}

@media (min-width: 1400px) {
    .navbar-phone-collapsed {
        display: none;
    }

    .navbar-phone {
        display: block;
    }

    .nav-item-dropdown {
        display: list-item;
    }

    .nav-item-not-dropdown {
        display: none;
    }

    .onscroll-navbar img {
        height: 50px;
        width: auto;
    }

    .toast-container {
        right: 50px;
        bottom: 175px;
    }

    .contact-form-button {
        position: fixed;
        width: 100px;
        height: 100px;
        background-size: 100px 100px;
        right: 50px;
        bottom: 50px;
        z-index: 100;
    }
    
    .contact-form-button:hover {
        animation-name: bigger;
        animation-duration: 0.7s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
    
    @keyframes bigger {
        0% {
            width: 100px;
            height: 100px;
            background-size: 100px 100px;
        }
        100% {
            width: 130px;
            height: 130px;
            background-size: 130px 130px;
        }
    }
}