body {
    cursor: default;
	margin: auto;
    padding: 25px 10px;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    background: #f5f5f7;
}

.none-sm {
    display: none;
}

.content-space {
    width: calc(100% - 20px);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
    opacity: 0;
    animation: content-space 0.5s ease-out 0.25s forwards;
}

@keyframes content-space {
    0% {
        transform: translateY(45px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.header-pic {
    width: 100%;
    height: 175px;
    background-image: url(/-/images/pics/warehouse.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: -15px;
}

.header-space {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.title {
    font: 30px/1.4 "SF bold";
    color: #030301;
    text-align: center;
}

.subtitle {
    margin-top: 24px;
    margin-bottom: 20px;
    font: 26px/1.4 "SF light";
    color: #030301;
    text-align: center;
}

.logos {
    width: 94%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 15px;
    justify-content: center;
    align-items: center;
}

.logos > img {
    height: auto;
    object-position: center;
    object-fit: contain;
    margin: auto;
}

.logos > img:nth-child(1) {
    width: 110px;
    margin-top: 15px;
}
.logos > img:nth-child(2) {
    width: 172px;
}
.logos > img:nth-child(3) {
    width: 130px;
}
.logos > img:nth-child(4) {
    width: 70px;
    margin-top: 2px;
}

.hr-subtle {
    height: 1px;
    border: none;
    background: linear-gradient(to right, #f5f5f7, #d2d2d2, #f5f5f7);
    margin: -10px 0 -30px 0;
}

.content {
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    gap: 55px;
}

.buttons {
    position: fixed;
    bottom: 25px; right: 15px;
    height: fit-content;
    background: rgba(40,167,96,1);
    backdrop-filter: blur(25px);
    padding: 8px 21px 6px 12px;
    border-radius: 50px;
    opacity: 0;
    animation: buttons 0.5s ease-out 1.25s forwards;
}

@keyframes buttons {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.button {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.customer-support-pic {
    position: relative;
    display: inline-block;
}

.customer-support-pic > img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.online-indicator {
    position: absolute;
    bottom: 4px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border: 2px solid #f5f5f7;
    border-radius: 50%;
    animation: online-indicator 2.5s infinite ease-in-out;
}

@keyframes online-indicator {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.25);
    }
    10% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.customer-support-q {
    margin-top: 6px;
    font: 18px/1 "SF bold";
    letter-spacing: 0.5px;
    color: #ffffff;
}

.customer-support {
    margin-top: 6px;
    color: #ffffff;
}

body.hasHover .customer-support:hover {
    cursor: pointer;
}

body.hasHover .customer-support:hover .customer-support-l {
    text-decoration: underline;
    cursor: pointer;
}

.customer-support-l {
    font: 18px/1 "SF light";
}

.customer-support-l-arrow {
    font: 18px/1 "SF light";
    padding-left: 2px;
}

.screens {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.screen {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.screen-title {
    font: 22px/1 "SF bold";
    color: #030301;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.cards-space {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.card {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 2px 2px 8px #e2e2e2;
    padding: 25px;
}

.card-text {
    font: 21px/1.55 "SF regular";
    color: #030301;
}

.card-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card-icon > img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

:root {
    --card-highlight: #3378f6;
    --icon-florida: url(/-/images/icons/florida.svg) center center / contain no-repeat;
    --icon-automate: url(/-/images/icons/automate.svg) center center / contain no-repeat;
    --icon-integration: url(/-/images/icons/integration.svg) center center / contain no-repeat;
    --icon-fees: url(/-/images/icons/fees.svg) center center / contain no-repeat;
    --icon-growing: url(/-/images/icons/growing.svg) center center / contain no-repeat;
    
    --icon-icon-1: url(/-/images/icons/icon-1.svg) center center / contain no-repeat;
    --icon-icon-2: url(/-/images/icons/icon-2.svg) center center / contain no-repeat;
    --icon-icon-3: url(/-/images/icons/icon-3.svg) center center / contain no-repeat;
    --icon-icon-4: url(/-/images/icons/icon-4.svg) center center / contain no-repeat;
    
    --contact-close-btt: url(/-/images/icons/close-btt.svg) center center / contain no-repeat;
}

.icon-florida {
    mask: var(--icon-florida);
    -webkit-mask: var(--icon-florida);
    background-color: var(--card-highlight);
}

.icon-automate {
    mask: var(--icon-automate);
    -webkit-mask: var(--icon-automate);
    background-color: var(--card-highlight);
}

.icon-integration {
    mask: var(--icon-integration);
    -webkit-mask: var(--icon-integration);
    background-color: var(--card-highlight);
}

.icon-fees {
    mask: var(--icon-fees);
    -webkit-mask: var(--icon-fees);
    background-color: var(--card-highlight);
}

.icon-growing {
    mask: var(--icon-growing);
    -webkit-mask: var(--icon-growing);
    background-color: var(--card-highlight);
}

.icon-1 {
    mask: var(--icon-icon-1);
    -webkit-mask: var(--icon-icon-1);
    background-color: var(--card-highlight);
}

.icon-2 {
    mask: var(--icon-icon-2);
    -webkit-mask: var(--icon-icon-2);
    background-color: var(--card-highlight);
}

.icon-3 {
    mask: var(--icon-icon-3);
    -webkit-mask: var(--icon-icon-3);
    background-color: var(--card-highlight);
}

.icon-4 {
    mask: var(--icon-icon-4);
    -webkit-mask: var(--icon-icon-4);
    background-color: var(--card-highlight);
}

.card-highlight {
    color: var(--card-highlight);
    font-family: "SF medium"
}

.cards-la-space {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.card-la {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 2px 2px 8px #e2e2e2;
    display: flex;
    flex-direction: column;
}

.card-la-info {
    flex: 1;
    padding: 25px 15px 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-la-name {
    font: 26px/1.4 "SF bold";
    color: var(--card-highlight);
    margin-bottom: 5px;
    padding-left: 25px;
}

.card-la-text {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.semicircle {
    width: 10px;
    height: 20px;
    background-color: #e8e8ed;
    border-radius: 0 20px 20px 0;
    margin-top: 3px;
}

.card-text-info {
    font: 21px/1.55 "SF regular";
    color: #030301;
}

.card-la-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 25px 25px;
}

.fedbacks {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 95px;
}

.margin-top {
    margin-top: 5px;
}

.feedback-text {
    font: 20px/1.5 "NY regular";
    color: #030301;
}

.feedback-author {
    font: 14px/1.5 "SF regular";
    color: #868686;
    padding-top: 15px;
}

.feedback-author > img {
    width: 25px;
    height: 25px;
    object-position: center;
    object-fit: contain;
    border-radius: 25px;
    vertical-align: middle;
    margin-right: 10px;
}



.contact-space {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0; left: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-space.visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-windows {
    width: 335px;
    height: 415px;
    background: #f5f5f7;
    border-radius: 25px;
    box-shadow: 2px 2px 10px #525252;
    padding: 25px 25px 15px 25px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    
    position: fixed;
    top: 20px;
}

.contact-close-btt {
    width: 30px;
    height: 30px;
    mask: var(--contact-close-btt);
    -webkit-mask: var(--contact-close-btt);
    background-color: #c8c8c8;
    transition: ease-out 0.25s;
}

body.hasHover .contact-close-btt:hover {
    background-color: #b2b2b2;
    cursor: pointer;
}

.contact-forms {
    width: calc(100% - 40px);
}

#telegram {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-window-title {
    font: 18px/1.4 "SF medium";
    color: #030301;
}








.contact-form-input {
    font: 15px/1 "SF medium";
    color: #030301;
    background: #ffffff;
    padding: 5px 10px;
    outline: none;
    border: 1.5px solid #e2e2e2;
    border-radius: 10px;
    transition: 0.25s ease;
}

.contact-form-input:focus {
    border: 3px solid #3378f6;
}

.input-long {
    width: 300px;
}

.input-large {
    width: 300px;
    height: 80px;
}

.contact-form-button {
    margin: 5px -41px 0 0;
    font: 20px/1 "SF medium";
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 10px 25px;
    float: right;
    cursor: pointer;
    background: #3378f6;
}

.contact-form-success-alert {
    margin-top: 5px;
    color: #3378f6;
    font: 16px/1.4 "SF medium";
    animation: contact-form-success-alert 0.5s;
}

@keyframes contact-form-success-alert {
     0% {
          opacity: 0;
     }
     100% {
          opacity: 1;
     }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form-title {
    flex: 0.3;
}

.contact-form > input, textarea {
    flex: 1;
}

.contact-form-title {
    font: 16px/1 "SF regular";
    color: #030301;
}

.contact-form-title-required {
    color: #ff0000;
}