.vertical-center {
    display: flex;
    align-items: center;
}

.wrap {
    max-width: 1250px;
    margin: 0 auto;
    background: #fff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 1350px){
    .navbar-right {
        float: right!important;
        margin-right: -15px;
    }
}
@media (min-width: 1350px){
    .navbar-header {
        float: left;
    }
}
.test {
    min-width: 100px;
    min-height: 100px;
    max-width: 150px;
    max-height: 150px;
    background-color: white;
}
.test2 {
    min-width: 250px;
    min-height: 250px;
    max-width: 250px;
    max-height: 250px;
    background-color: white;
}
.text-responsive {
    font-size: calc(8% + 1vw + 1vh);
}
@media (min-width: 1350px){
         .navbar-right {
         float: right!important;
         margin-right: -15px;
         }
        }
@media (min-width: 1350px){
         .navbar-header {
         float: left;
         }
        }
@media (min-width: 1200px) {
         .responsive-font {
         font-size: 32px;
         }
        }
         /* If the screen size is smaller than 1200px, set the font-size to 80px */
@media (max-width: 1199.98px) {
         .responsive-font {
         font-size: 24px;
         }
        }
@media (min-width: 768px) {
            .desktop-text {
                display: block; /* Show desktop text */
            }
            .mobile-text {
                display: none;   /* Hide mobile text */
            }
        }
@media (max-width: 767px) { /* Example breakpoint for mobile */
            .desktop-text {
                display: none;   /* Hide desktop text */
            }
            .mobile-text {
                display: block; /* Show mobile text */
            }
        }

