@font-face
{
	font-family: Roboto;
	src: url(/static/fonts/Roboto-Light.ttf);
	font-display: swap;
}
@font-face
{
	font-family: Roboto;
	src: url(/static/fonts/Roboto-Medium.ttf);
	font-display: swap;
}
@font-face
{
	font-family: Roboto;
	src: url(/static/fonts/Roboto-Regular.ttf);
	font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
}
.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
body,html
{
    padding: 0;
    margin: 0;
    height: 100vh;
    font-family: Roboto;
    font-weight: 100;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-block: 250px;
}
body
{
    overflow-x: hidden;
    background-color: #f3f3f3;
}
.Header
{
    position: relative;
    z-index: 1;
    width: -webkit-fill-available;
    transition: var(--ts-slow);
}
.HeaderTop
{
    padding-inline: var(--main-padding);
    padding-block: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px Dashed rgba(255, 255, 255, 0.05);
}
.HeaderBottom
{
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-inline: var(--main-padding);
    padding-block: 20px;
}
.HeaderLeft 
{
    display: flex;
    gap: 15px;
    align-items: center;
}
.HeaderTopLeft
{
    display: flex;
    align-items: center;
    gap: 5px;
}
.HeaderTopLeft a
{
    display: flex;
    align-items: center;
}
.HeaderTopLeft svg *
{
    fill: var(--header-item-color);
    transition: var(--ts-fast);
}
.HeaderTopLeft svg:hover *
{
    fill: var(--main-color1);
    cursor: pointer;
}
.HeaderTopRight a
{
    border: none;
    border-radius: 25px;
    padding-inline: 15px;
    background-color: rgb(43, 170, 71);
    color: white;
    align-items: center;
    transition: var(--ts-slow);
    font-family: Red Hat Display;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    font-weight: 500;
}
.HeaderRight
{
    display: flex;
    align-items: center;
    gap:10px;
}
.HeaderRight img
{
    width: 30px;
    height: 30px;
    padding: 8px;
    background: #ffffff94;
    border-radius: 50%;
}
.HeaderTopRight
{
    display: flex;
    gap: 25px;
}
.HeaderTopRight div
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.HeaderTopRight div i
{
    width:15px;
    height:15px;
    color: white;
    opacity: 0.5;
}
.HeaderTopRight div svg:last-child
{
    width:23px;
    height:23px;
}
.HeaderTopRight div svg *
{
    fill: var(--main-color1);
}
.HeaderTopRight div a
{
    color: var(--header-item-color);;
    font-family: Poppins;
    font-weight: 300;
    font-size: 15px;
    text-decoration: none;
}
.HeaderLogo
{
    width: 175px;
    height: auto;
}
.HeaderText *,.FooterLogoArea *
{
    margin: 0;
    color: var(--header-item-color);
    font-family: Lexend;
}
.HeaderText h4,.FooterLogoArea h4
{
    font-weight: 100;
    font-family: Poppins;
    color: var(--header-item-color);
    font-size: 15px;
    opacity: 0.5;
}
.Menu
{
    margin: 0;
    display: flex;
    list-style: none;
    transition: var(--ts-slow);
    overflow: hidden;
    position: relative;
    z-index: 100;
    background: var(--main-color1);
    border-radius: 151px;
    align-items: center;
    padding: 0;
}
.DesktopMenuItem,.HeaderActions span,.MobileMenuItem
{
    padding: 10px;
    color: white;
    font-family: Poppins;
    font-weight: 400;
    text-decoration: none;
    display: block;
    font-family: 'Poppins';
    font-size: 15px;
    position: relative;
    overflow: hidden;
}
.DesktopMenuItem
{
    padding: 20px;
    padding-inline: 25px;
    min-width: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--ts-slow);
    text-align: center;
}
.CurrentLink {
    background: white;
    color: var(--main-color1);
    margin: 15px;
    padding: 10px;
    border-radius: 29px;
    padding-block: 5px;
}
.DesktopMenuItem::before
{
    content: "";
    position: absolute;
    inset: 10px;
    margin-block: 15px;
    transition: var(--ts-fast);
    background-color: white;
    z-index: -1;
    bottom: 0;
    top: 100%;
    border-radius: 50px;
    padding: 10px;
    padding-block: 5px;
}
.DesktopMenuItem:hover
{
    color: var(--main-color1);
}
.DesktopMenuItem:hover::before
{
    top: 0%;
}
.LoginButton
{
    border: 1px Solid var(--main-color1);
    border-radius: 25px;
    padding-inline: 20px !important;
    cursor: pointer;
    transition: var(--ts-slow);
}
.RegisterButton
{
    background: var(--main-color1);
    border-radius: 25px;
    margin-left: 5px;
    padding-inline: 20px !important;
    cursor: pointer;
    transition: var(--ts-slow);
}
.LoginButton,.RegisterButton
{
    opacity: 0.85;
}
.HeaderActions
{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}
.MobileMenuIcon,.MobileMenuCloseIcon
{
    width: 30px;
    height: 30px;
    display: none;
    transition: var(--ts-slow);
}
.HeaderActions a
{
    transition: var(--ts-slow);
}
.HeaderActions a:hover
{
    cursor: pointer;
    transform: scale(1.15);
}
.LangFlag
{
    border-radius: 50%;
    display: block;
    padding: 3px;
    background-color: transparent;
    transition: var(--ts-slow);
    filter: drop-shadow(2px 4px 1px rgba(0, 0, 0, 0.2));

}
.MobileMenuIcon:hover,.MobileMenuCloseIcon:hover
{
    opacity: 0.6;
    cursor: pointer;
}
.MobileMenuCloseIcon
{
    position: absolute;
    top: 50px;
    right: 50px;
    display: block;
}
.HeaderWhatsapp
{
    position: fixed;
    right: 15px;
    bottom: 15px;
    transition: var(--ts-slow);
    display: grid;
    justify-items: end;
    text-decoration: none;
}
.HeaderWhatsapp img
{
    width: 75px;
    height: 75px;
    transition: var(--ts-slow);
}
.HeaderWhatsapp span
{
    padding: 10px;
    border-radius: 25px;
    padding-inline: 25px;
    color: white;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px Solid rgba(0, 0, 0, 0.2);
    border-top-left-radius: 3px;
    backdrop-filter: blur(5px);
}
.HeaderWhatsapp:hover
{
    cursor: pointer;
    transform: scale(1.1);
}
.BlockTitle
{
    margin: 0;
    font-size: 20px;
    font-family: "Poppins";
}
.BlockSubTitle
{
    margin: 0;
    color: var(--main-color1);
    font-weight: 100;
    font-family: "Poppins";
    font-weight: 400;
    opacity: 0.3;
    font-size: 15px;
}
.BlockText
{
    max-width: 535px;
    font-family: Poppins;
    font-size: 18px;
}
.ButtonStyle1,.ButtonStyle2,.ButtonStyle3
{
    display: flex;
    gap: 15px;
    border-radius: 30px;
    padding: 15px;
    border: 1px Solid rgba(43, 170, 71, 0.668);
    background-color: rgb(43, 170, 71);
    color: white;
    align-items: center;
    transition: var(--ts-slow);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    font-family: Red Hat Display;
    font-weight: 500;
    width: fit-content;
    justify-content: space-between;
}
.ButtonStyle2
{

    width: fit-content;
    margin-top: 25px;
}
.ButtonStyle1:hover,.ButtonStyle2:hover
{
    cursor: pointer;
    gap: 20px;
}
.ButtonStyle1::before,.ButtonStyle2::before
{
    position: absolute;
    right: -80px;
    content: "";
    width: 65px;
    height: 65px;
    border-radius: 5px;
    background-color: white;
    transition: var(--ts-slow);
    transform: rotate(45deg);
}
.ButtonStyle1:hover::before
{
    right: -25px;
}
.ButtonStyle2::before
{
    right: -25px !important;
    background-color: var(--main-color1);
}
.ButtonStyle2:hover::before
{
    transform: rotate(135deg);
}
.MobileMenu
{
    position: fixed;
    left: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    width: -webkit-fill-available;
    padding: 50px;
    bottom: 0;
    top: 0;
    transition: var(--ts-slow);
    display: block;
}
.MobileMenuUl
{
    padding: 0;
    margin-block: 75px;
    list-style: none;
}
.MobileMenuItem
{
    padding-inline: 0;
    font-size: 25px;
}
.MobileMenuSocial
{
    position: absolute;
    bottom: 25px;
    left: 50px;
    display: flex;
    align-items: center;
}
.MobileMenuSocial svg *
{
    fill: var(--main-color1);
}
.LinkedinIcon,.InstagramIcon
{
    width:36px;
    height:36px;
    display: block;
}
.InstagramIcon
{
    width:50px;
    height:50px;
    display: block;
}
.MobilMenuContact
{
    margin-top: 50px;
}
.MobileMenu * 
{
    width: max-content;
}
.MobilMenuContact div 
{
    display: flex;
    gap:15px;
    align-items: center;
    margin-bottom: 10px;
}
.MobilMenuContact a
{
    text-decoration: none;
    color: white;
    font-family: Lexend;
    font-weight: 300;
}
.MobilMenuContact svg *
{
    fill: var(--main-color1);
}
@media screen and (min-width:1350px) and (max-width: 1600px)
{
    :root
    {
        --main-padding: 10% !important;
        --main-margin: 10% !important;
    }
}

@media screen and (min-width:800px) and (max-width: 1350px)
{
    .HeaderActions
    {
        margin-right: 15px;
        position: fixed;
        display: grid;
        right: 0;
        background: rgba(0, 0, 0, 0.75);
        padding: 5px;
        border-radius: 6px;
        bottom: 145px;
    }
    .HeaderActions img
    {
        width: 30px;
        height: 30px;
    }
    .MobileMenuIcon
    {
        display: none;
    }
    :root
    {
        --main-padding: 5% !important;
        --main-margin: 5% !important;
    }
}
@media screen and (min-width:200px) and (max-width: 800px)
{
    .Menu
    {
        display: none;
    }
    :root
    {
        --main-padding: 20px !important;
        --main-margin: 20px !important;
        --swiper-pagination-bottom: 15px !important;
    }
    .HeaderLogo
    {
        width: 150px;
    }
    body
    {
        overflow-x: hidden !important;
    }
    .Header
    {
        padding-inline: 10px;
    }
    .HeaderActions
    {
        margin-right: 15px;
        position: fixed;
        display: grid;
        bottom: 85px;
        right: 0;
        background: rgba(0, 0, 0, 0.75);
        padding: 5px;
        border-radius: 6px;
    }
    .HeaderTopRight div:last-child
    {
        display: none;
    }
    .HeaderWhatsapp span
    {
        display: none;
    }
    .HeaderWhatsapp img
    {
        width: 60px;
        height: 60px;
    }
}
@media screen and (min-width:200px) and (max-width: 1050px)
{
    .Menu
    {
        display: none;
    }
    .MobileMenuIcon
    {
        display: block;
    }
    .CurrentLink
    {
        background: transparent;
        color: var(--main-color1);
        padding: 0;
        margin: 0;
    }
}
:root
{
    --main-color: #00445f;
    --main-color1: #0c0c0c;
    --main-color1-op: rgba(12, 12, 12, 0.267);
    --main-color2:rgb(10, 10, 10);
    --green-color: rgb(43, 170, 71);
    --gradient1:linear-gradient(156deg, rgb(61 240 60) 0%, rgb(0 0 0) 100%);
    --gradient2:linear-gradient(176deg, rgb(253, 116, 53) 0%, rgba(245,86,12,1) 100%);
    --gradient3:linear-gradient(45deg,  rgba(245, 86, 12, 1) 0%, rgba(255, 171, 132, 1) 100%);
    --gradient4:linear-gradient(45deg,  rgba(245, 86, 12, 1) 0%, rgb(0, 0, 0) 100%);
    --page-top-gradient:linear-gradient(45deg, rgba(245,86,12,1) 0%, rgba(245,86,12,0.16850490196078427) 100%);
    --main-padding: 15%;
    --main-margin: 15%;
    --content-padding: 5%;
    --main-padding-block: 25px;
    --main-border-radius:10px;
    --ts-hard-slow: 1.5s;
    --header-item-color:white;
    --ts-slow: 0.6s;
    --ts-fast: 0.2s;

    --mobile-padding:50px;
    --swiper-pagination-color:rgb(12, 12, 12) !important;
    --swiper-pagination-bullet-inactive-color:rgba(255, 255, 255, 0.664) !important;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-horizontal-gap:7px;
    --swiper-pagination-bottom:150px;
    --swiper-pagination-right:15% !important;
}
swiper-container
{
    z-index: 0;
}