* {
    padding: 0;
    margin: 0;
    font-family: "Inter Tight", sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-weight: 600;
}
:root {
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --orange: #fc661b;
}
::selection {
    background: var(--orange);
    color: var(--white);
}
html {
    scroll-behavior: smooth;
    max-width: 100vw;
}
body {
    max-width: 100vw;
}
main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 70px 0px 0px 0px;
}
section {
    width: 100%;
    padding: 50px 0px;
}
nav {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.1);
    position: fixed;
    top: 0;left: 0;
    z-index: 1000;
    background: var(--white);
}
.hamburger_menu {
    position: absolute;
    z-index: 998;
    width: 100%;
    opacity: 0;
    top: 100%;
    background: rgba(255, 255, 255,.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,.1);
    transition: 200ms;
    overflow: hidden;
    transform: translateY(-50px);
    visibility: hidden;
}
.hamburger_active {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}
.hamburger_nav {
    width: 100%;
    display: flex;flex-direction: column;
    align-items: center;
}
.hamburger_nav li {
    width: 100%;
}
.hamburger_nav li a {
    width: 100%;
    display: inline-block;
    color: var(--gray);
    text-align: center;
    padding: 30px 0px 30px 0px;
}
.hamburger {
    display: none;
    margin: 0px 0px 0px 0px;
}
.hamburger_el {
    width: 25px;
    height: 3px;
    background: var(--black);
    opacity: .8;
    margin: 5px 0px;
    border-radius: 10px;
}
h1 {
    font-size: 40px;
}
h1 strong {
    color: var(--orange) !important;
}
h1 span {
    font-weight: 700;
}
h1,h2 {
    font-weight: 700;
}
p {
    font-weight: 500;
    font-size: 15px;
}
.container {
    width: 85%;
    max-width: 1250px;
    margin: 0 auto;
}
.nav_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}
.logo {
    padding: 5px 0px 0px 0px;
    margin: 0px 10px 0px 0px;
}
.logo img {
    width: 100px;
}
.navigation {
    display: flex;
}
.navigation li a {
    display: inline-block;
    color: var(--black);
    position: relative;
    transition: 300ms;
    padding: 30px 25px;
}
/* .navigation li a::after {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    transition: 300ms;
    opacity: 0;
    background: var(--orange);
} */
.navigation li a:hover {
    color: var(--orange);
    /* transform: translateY(-1px); */
    background: rgba(252,102,27,.1);
}
/* .navigation li a:hover::after {
    bottom: -8px;
    opacity: 1;
} */
.languages {
    display: flex;
}
.languages a{
    color: var(--black);
    margin: 0px 5px;
    opacity: .5;
}
.lang_active {
    color: var(--orange) !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}
header {
    width: 100%;
    padding: 50px 0px;
}
.header_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.markup {
    padding: 7px 15px;
    background: rgba(252,102,27,.2);
    border-radius: 40px;
    color: var(--orange);
    font-weight: 600;
}
.header_h1 {
    text-align: center;
    margin: 10px 0px 30px 0px;
}
.main_header {
    font-size: 65px;
}
.main_header strong {
    color: var(--orange);
}
.header_text p {
    text-align: center;
    font-weight: 500;
    opacity: .8;
}
.header_btns a{
    display: inline-block;
    padding: 10px 20px;
    background: var(--orange);
    border-radius: 5px;
    margin: 30px 5px 0px 5px;
    transition: 300ms;
    color: var(--white);
}
.header_btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(252,102,27,.2);;
}
.header_img {
    margin: 70px 0px 0px 0px;
    width: 80%;
}
.boxes {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0px 0px 0px;
}
.box {
    width: calc(100%/3);
    padding: 10px;
}
.box_content {
    width: 100%;
    padding: 50px 25px;
    border-radius: 20px;
    background: #fefefe;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 300ms;
    text-align: center;
}
.box_content i{
    color: var(--orange);
    font-size: 40px;
    border-radius: 50px;
}
.box_content h3 {
    font-size: 23px;
    margin: 30px 0px 6px 0px;
}
.box_content p {
    font-size: 14px;
    font-weight: 500;
    opacity: .8;
}
.box_content:hover {
    transform: translateY(-5px);
    box-shadow: 0px 40px 20px rgba(0,0,0,.1);
}
.solve_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.solve_container_mobile {
    display: none;
}
.solve_text,.get_text {
    min-width: 500px;
}
.solve_text h1{
    margin: 20px 0px 25px 0px;
    max-width: 500px;
}
.solve_text p,.solve_text li {
    max-width: 450px;
    opacity: .9;  
}
.solve_text li {
    display: flex;
}
.solve_img img {
    max-width: 600px;
    width: 100%;
    margin: 0px 0px 0px 50px;
}
.solve_text a,.get_text a {
    display: inline-block;
    padding: 13px 25px;
    margin: 40px 0px 0px 0px;
    background: var(--orange);
    border-radius: 5px;
    transition: 300ms;
    color: var(--white);
}
.get_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.get_text h1{
    margin: 20px 0px 25px 0px;
    max-width: 550px;
}
.get_text p {
    max-width: 450px;
    opacity: .8;
}
.get_img img {
    max-width: 600px;
    width: 90%;
    margin: 0px 50px 0px 0px;
}
.cons {
    margin: 35px 0px 0px 0px;
}
.cons li {
    margin: 20px 0px;
    font-size: 17px;
    display: flex;align-items: center;
}
.cons li img {
    margin-right: 18px;
    width: 40px;
}
.boxes2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.box2 {
    width: calc(100%/4);
    padding: 10px;
    margin: 10px 0px;
}

.box2_content img{
    border-radius: 10px;
    width: 100%;
}
.box2_content h3{
    font-weight: 700;
    font-size: 20px;
    margin: 15px 0px 5px 0px;
    text-align: left !important;
}
.box2_content p {
    opacity: .8;
    text-align: left !important;
}
.usage_section {
    text-align: center;
}
.usage_section h1 {
    margin: 20px 0px 25px 0px;
}
.usage_section p {
    margin: 0px 0px 20px 0px;
    text-align: center;
    opacity: .8;
}
.banner {
    width: 100%;
    padding: 50px 20px;
    display: flex;align-items: center;justify-content: center;flex-direction: column;
    background-color: var(--orange);
    background-image: url(../images/bg3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 35px;
}
.banner h2{
    /* color: var(--orange); */
    color: var(--white);
    text-align: center;
    font-size: 40px;
}
.free_btn {
    border: 2px solid var(--white);
    border-radius: 5px;
    padding: 10px 20px;
    margin: 25px 0px 0px 0px;
    color: var(--white);
    transition: 300ms;
}
.free_btn:hover {
    color: var(--orange);
    background: var(--white);
}
.section_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section_text h1 {
    margin: 15px 0px 25px 0px;
    text-align: center;
}
.try_img {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.try_img h4 {
    margin: 20px 0px 0px 0px;
    text-align: center;
    font-size: 25px;
}
.try_img h4 a {
    display: inline-block;
    margin: 10px 0px 0px 0px;
    color: var(--orange);
    text-decoration: underline;
}
.try_img img {
    max-width: 550px;
    width: 100%;
}
footer {
    margin: 50px 0px 0px 0px;
}
footer hr {
    opacity: .5;
}
.footer_top {
    padding: 50px 0px;
    display: flex;
    justify-content: space-between;
}
.footer_top ul h3 {
    font-size: 20px;
    margin: 0px 0px 15px 0px;
    color: var(--orange);
    font-weight: 700;
    position: relative;
}
/* .footer_top ul h3::after {
    content: '';
    width: 20%;
    height: 2px;
    background: var(--orange);
    position: absolute;
    opacity: .5;
    bottom: -5px;left: 0;
} */
.footer_top li a{
    display: inline-block;
    margin: 5px 0px;
    font-size: 18px;
    color: var(--black);
    opacity: .8;
    transition: 300ms;
}
.footer_top li a:hover {
    transform: translateX(2px);
    opacity: 1;
    color: var(--orange);
}
.footer_bottom {
    padding: 30px 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_logo img {
    width: 110px;
    opacity: .9;
}
.footer_bottom h3 {
    font-size: 15px;
    opacity: .8;
}