﻿@font-face {
    font-family: 'Montserrat';
    src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format('truetype');
}

@font-face {
    font-family: 'Baloo 2';
    src: url("assets/fonts/Baloo2-VariableFont_wght.ttf") format('truetype');
}

@font-face {
    font-family: 'Poppins';
    src: url("assets/fonts/Poppins-Regular.ttf");
}

:root {
    --content-max-width: 1440px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

body.menu-is-open {
    overflow: hidden;
}

.d_none {
    display: none;
}

.ellipse-3,
.ellipse-4,
.ellipse-5,
.ellipse-6,
.ellipse-7,
.ellipse-8,
.ellipse-9,
.ellipse-10,
.ellipse-11,
.ellipse-11-contact,
.ellipse-12,
.ellipse-13,
.ellipse-14 {
    z-index: 0;
    pointer-events: none;
}

.btn {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #5988FF;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.15);
    color: #5988FF;
    background-color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 23px;
    line-height: 120%;
    letter-spacing: 0%;
    padding: 16px 30px;
    display: inline-block;
    text-decoration: none;
    transition: color 140ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -45%;
    width: 150%;
    z-index: -1;
    background: radial-gradient(74.22% 74.22% at 19.79% 22.42%, #5988FF 6.25%, #5988FF 51.56%, #0043F0 100%);
    transform: translateX(-100%) skewX(-18deg);
    transition: transform 260ms ease;
}

.btn:hover {
    color: white;
    border-color: #5988FF;
    transform: scale(1.05);
    cursor: pointer;
}

.btn:hover::before {
    transform: translateX(0) skewX(-18deg);
}

@media (max-width: 420px) {
    .btn {
        font-size: 18px;
        padding: 12px 22px;
    }
}
