@import url("/assets/styles/navigation.css");
@import url("/assets/styles/contact-modal.css");

body {
    font-family: 'Manrope', sans-serif;
}

:root {
    --green-color: #5DB573;
    --gray-color: #F5F5F5;
    --gray-color-dark: #5E5E5E;
    --gray-color-light: #E2E2E2;
    --custom-black-color: #010201;
    --white: #FFFFFF;
    --divider-color: #3F3F3F;
    --text-gray: #848484;
}

html {
  scroll-behavior: smooth;
}

input, select {
    outline: none;
}


.button {
    transition: all .4s ease;
}

.button:hover {
    opacity: .7;
}

.container {
    max-width: 1314px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none; /* IE и Edge */
    scrollbar-width: none;    /* Firefox */
}

.spin-item {
    transform: rotate(180deg);
    /*transition: transform .5s ease;*/
}