:root {
    --main-bg: #f5f5f5;
    --accent-bg: #3498DB;
    --accent-bg-hover: #FFA430;
    --card-bg: #FFFFFF;
    --main-color: #646464;
    --dark-color: #011B2B;
    --semibold: Montserrat-SemiBold, sans-serif ;
    --medium: Montserrat-Medium, sans-serif;
    --regular: Montserrat-Regular, sans-serif;
}

* {
    color: var(--main-color);
    font-size: 16px;
    font-family: var(--regular);
    line-height: 130%;
    user-select: none;
}

*::selection {
    background: #c2c2c253;
    /* Safari */
}

*::-moz-selection {
    background: #c2c2c253;
    /* Firefox */
}


html {
    scroll-behavior: smooth;
}

a,
button,
.burger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    position: relative;
    background: var(--main-bg);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    overflow: visible;
}

.main {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1440px;
}

.element-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.element-show {
  opacity: 1;
  transform: translateY(0);
}

