* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--global-font);
}

body.home {
    color: #fff;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #1D71B8;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border: none;
    border-radius: 1px;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #20EEEF 0%, #1071BB 100%);
}

.btn:hover .icon-arrow {
    filter: brightness(0) invert(1);
    transform: translateX(4px);
}

button:focus-visible{
    outline: 0;
}

h1 {
    font-family: var(--global-font);
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.4;
}

h2 {
    font-family: var(--global-font);
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

h3 {
    line-height: 1.2;
}

img {
    display: block;
    width: 100%;
    height: auto;
}
