:root {
    --russian-violet: #c58832;
    --dark-purple: #0f4c87;
    --eerie-black: #0f4c87;
    --davys-gray: hsl(0, 0%, 34%);
    --light-gray: hsl(0, 0%, 84%);
    --cultured-1: hsl(0, 0%, 98%);
    --cultured-2: hsl(280, 14%, 96%);
    --cultured-3: hsl(280, 9%, 94%);
    --gainsboro: hsl(0, 1%, 85%);
    --black_10: hsla(0, 0%, 0%, 0.1);
    --black_5: hsla(0, 0%, 0%, 0.05);
    --pumpkin: #f5b22e;
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --ff-montserrat: "Montserrat", sans-serif;
    --ff-roboto: "Montserrat", sans-serif;
    --fs-1: 3rem;
    --fs-2: 2rem;
    --fs-3: 1.5rem;
    --fs-4: 1.4rem;
    --fs-5: 1.3rem;
    --fw-900: 900;
    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;
    --section-padding: 50px;
    --shadow-1: 0px 0px 20px var(--black_10);
    --shadow-2: 0 0 20px 4px var(--black_5);
    --radius-6: 6px;
    --radius-10: 10px;
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a,img,span,button,ion-icon {
    display: block;
}

img {
    height: auto;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

address {
    font-style: normal;
}

html {
    font-family: var(--ff-montserrat);
    font-style: normal;
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    font-size: 1.6rem;
    color: var(--davys-gray);
}

:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: hsl(0 0% 98%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0 0% 80%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0 0% 70%);
}

.container {
    padding-inline: 15px;
}

.btn {
    color: var(--color,var(--white));
    font-size: var(--fs-4);
    max-width: var(--width,max-content);
    padding: 10px 20px;
    border-radius: var(--radius-10);
    transition: var(--transition-1);
    width: max-content;
    font-weight: 700;
}

.btn-primary {
    background-color: var(--eerie-black);
}

.btn-primary:is(:hover,:focus) {
    background-color: var(--pumpkin);
}

.btn-secondary {
    background-color: var(--eerie-black);
}

.btn-secondary:is(:hover,:focus) {
    background-color: var(--pumpkin);
}

.quotebtn {
    margin: auto;
    width: 50%;
    margin-top: 20px;
}

.btn-outline {
    --color: var(--pumpkin);
    --width: 100%;
    text-align: center;
    font-weight: var(--fw-500);
    border: 1px solid var(--cultured-3);
}

.btn-outline:is(:hover,:focus) {
    background-color: var(--pumpkin);
    color: var(--white);
}

.section {
    padding-block: var(--section-padding);
}

.section-subtitle {
    color: var(--pumpkin);
    font-size: var(--fs-3);
    margin-block-end: 5px;
}

.h1,.h2,.h3 {
    font-family: var(--ff-roboto);
}

.h1,.h2 {
    font-size: var(--fs-1);
}

.h3 {
    color: var(--eerie-black);
}

.h3 {
    font-size: var(--fs-2);
}

.section-text,.card-text {
    font-size: var(--fs-4);
    line-height: 1.8;
}

.btn-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.btn-item-link {
    overflow: hidden;
    border-radius: var(--radius-10);
}

.btn-item-link .img {
    width: 136px;
}

.w-100 {
    width: 100%;
    border-radius: 15px;
}

.section-title {
    margin-block: 10px 20px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
    font-size: 3rem;
}

:is(.features,.blog) :is(.section-subtitle,.section-title) {
    text-align: center;
}

.img {
  width: 100%; /* or max-width: 100%; */
  height: auto;
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-2);
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding-block: 15px;
    z-index: 999;
    transition: transform 0.5s ease,box-shadow 0.3s ease;
}

.header.active {
    position: fixed;
    top: 0;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgb(0 0 0 / .15);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 20px;
}

.logo {
    color: #17a4db;
    font-family: "Montserrat",sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo>img {
    width: 30%;
    height: auto;
}

    /* MENU */  
      
.nav-toggle-btn {
    background-color: var(--pumpkin);
    color: var(--white);
    font-size: 1.8rem;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease,transform 0.2s ease;
}

.nav-toggle-btn:hover {
    transform: scale(1.1);
    background-color: darkorange;
}

.navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding-inline: 15px;
    overflow: hidden;
    max-height: 0;
    visibility: hidden;
    transition: max-height 0.5s ease,visibility 0.5s ease;
    z-index: 998;
}

.navbar.active {
    max-height: 500px;
    visibility: visible;
}

.navbar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    background-color: var(--cultured-1);
    border-radius: 10px;
    overflow-y: auto;
    max-height: 80vh;
}

.navbar-link {
    color: var(--eerie-black);
    font-size: 1.6rem;
    font-weight: 600;
    padding-block: 8px;
    transition: color 0.3s ease,background 0.3s ease;
    font-family: "Montserrat",sans-serif;
    text-decoration: none;
    display: block;
    width: max-content;
}

.navbar .btn {
    margin-block: 8px;
}

.dropdown,.w3-dropdown-hover {
    position: relative;
}

.dropdown-toggle,.navbar-link.w3-button {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-menu,.navbar-l.w3-dropdown-content {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    padding: 10px 0;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    overflow-y: auto;
    max-height: 300px;
}

.dropdown.active .dropdown-menu,.w3-dropdown-hover.active .navbar-l.w3-dropdown-content {
    display: flex;
}

.dropdown-item,.navbar-l.w3-bar-item.w3-button {
    display: block;
    padding: 10px 20px;
    color: var(--eerie-black);
    text-decoration: none;
    transition: background-color 0.2s,color 0.2s;
}

.dropdown-item:hover,.navbar-l.w3-bar-item.w3-button:hover {
    background-color: var(--pumpkin);
    color: #fff;
    border-radius: 5px;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

@media (min-width:768px) {
    .navbar {
        position: static;
        display: flex;
        justify-content: flex-end;
        max-height: none;
        visibility: visible;
        background: none;
        padding: 0;
    }

    .navbar-list {
        flex-direction: row;
        gap: 30px;
        background: none;
        padding: 0;
    }

    .nav-toggle-btn {
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu,
    .dropdown.active .dropdown-menu {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 180px;
      padding: 10px 0;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgb(0 0 0 / .15);
      background-color: var(--white);
      flex-direction: column;
      z-index: 999;
    }
}

    /* HERO */
    
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    padding-block-start: calc(var(--section-padding) + 70px);
    align-content: center;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    margin: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 5%;
    text-align: left;
    top: -40px;
}

.hero-title {
    margin-block: 15px 25px;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-section-text {
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    
    /* VALORES */

.features {
    background-color: #0f4c87;
}

.features .section-title {
    margin-bottom: 2rem;
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
    text-align: center;
    font-size: 3rem;
    color: #fff;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
    padding: 0;
    margin: 2rem 0 0 0;
}

.features-item {
    position: relative;
    transition: transform 0.3s ease,box-shadow 0.3s ease;
}

.features-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cultured-2,#f5f5f5);
    border-radius: 15px;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.features-item:hover {
    transform: translateY(-8px);
}

.features-card {
    background-color: #fff;
    box-shadow: 0 8px 25px rgb(0 0 0 / .1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease,box-shadow 0.3s ease;
}

.features-card:hover {
    box-shadow: 0 20px 40px rgb(0 0 0 / .15);
}

.features-card .card-icon {
    color: #17a4ab;
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-card .card-icon ion-icon {
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
}

.features-card .card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.features-card .card-text {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.features-card .btn-secondary {
    background-color: #0f4c87;
    color: #fff;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease,transform 0.3s ease;
}

.features-card .btn-secondary:hover {
    background-color: #145b9a;
    transform: translateY(-3px);
}

body {
    font-family: 'Montserrat',sans-serif;
}

.modalvalues {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgb(15 76 135 / .85);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 12px 45px rgb(0 0 0 / .25);
    transform: scale(.9);
    opacity: 0;
    animation: popUp 0.4s ease forwards;
    transition: transform 0.3s ease,opacity 0.3s ease;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

@keyframes popUp {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modalvaluesh {
    background-color: #0f4c87;
    color: #fff;
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.modalvaluesh h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
    color: #fff;
    background-color: rgb(0 0 0 / .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease,opacity 0.3s ease,background-color 0.3s ease;
}

.close-btn:hover {
    opacity: .9;
    transform: rotate(360deg) scale(1.15);
    background-color: rgb(0 0 0 / .5);
}

.modalvaluesc {
    padding: 2rem 2.5rem;
    color: #0f4c87;
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: left;
    animation: fadeSlide 0.5s ease forwards;
}

.modalvaluesc p {
    margin: 1.2rem 0 1rem 0;
}

.modalvaluesc video {
  width: 40%;
  height: 40%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:768px) {
    .modal-content {
        width: 92%;
        margin-top: 20%;
    }

    .modalvaluesh h2 {
        font-size: 1.6rem;
    }

    .modalvaluesc {
        font-size: 1.2rem;
    }
}
    
      /* ABOUT US */

.about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 4rem 2rem;
    box-sizing: border-box;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin-bottom: 3rem;
}

.about-content .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0f4c87;
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
}

.about-content .section-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #0f4c87;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
}

.about-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgb(15 76 135 / .2),0 0 40px rgb(197 136 50 / .15);
    width: 100%;
    text-align: center;
    position: relative;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgb(0 0 0 / .15);
}

.gif-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.gif-wrapper video {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.item-title {
    color: #c58832;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.item-text {
    color: #0f4c87;
    font-size: 1.6rem;
    line-height: 1.6;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .about-flex {
        padding: 2rem 1rem;
    }

    .item-title {
        font-size: 1.5rem;
    }

    .item-text {
        font-size: 1.3rem;
    }

    .gif-wrapper {
        width: 80px;
        height: 80px;
    }
}
        
    /* QUICK BOOST */
    
.app {
    background-color: #0f4c87;
}

.app-banner {
    margin-block-end: 30px;
}

.app .section-title {
    color: var(--white);
}

.app .section-text {
    margin-block-end: 30px;
}

.app-main-title {
    text-align: center;
    font-size: 3rem;
    color: #0f4c87;
    margin-bottom: 3rem;
    font-family: 'Montserrat',sans-serif;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.app-flex {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 4rem 2rem;
}

.app-banner img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgb(0 0 0 / .2);
    background-color: #fff;
}

.app-content {
    flex: 1;
    max-width: 600px;
}

.app-content .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #c58832;
    font-family: 'Montserrat',sans-serif;
}

.app-content .section-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fff;
}

.quick-boost-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: #fff;
}

.quick-boost-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .8rem;
    font-weight: 700;
}

.quick-boost-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #17a4db;
    font-weight: 700;
}

.btn-app {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: #f5b22e;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.3s ease,transform 0.2s ease;
}

.btn-app:hover {
    background-color: #c58832;
    transform: translateY(-2px);
}

@media (max-width:768px) {
    .app-flex {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .app-content .section-title {
        font-size: 2rem;
    }

    .app-content .section-text {
        font-size: 1.3rem;
    }
}

.tabs {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.tabs:after {
    content: '';
    display: table;
    clear: both;
}

.tabs input[type=radio] {
    display: none;
}

.tabs label {
    display: inline-block;
    min-width: 25%;
    flex: 1 1 25%;
    color: #ccc;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.tabs label span {
    display: none;
    font-size: 1.7rem;
}

.tabs label:hover {
    color: var(--pumpkin);
}

.tabs label:hover .icon {
    border-color: var(--pumpkin);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

.tab__content {
    display: none;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #fff;
    margin-top: 4rem;
    justify-items: center;
    color: var(--eerie-black);
}

.tab__content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 19px;
    margin-bottom: 2rem;
    object-fit: cover;
    transition: transform 0.5s ease,box-shadow 0.5s ease;
}

.tab__content * {
    -webkit-animation: scale 0.2s ease-in-out;
    -moz-animation: scale 0.2s ease-in-out;
    animation: scale 0.2s ease-in-out;
}

@keyframes scale {
    0% {
        transform: scale(.9);
        opacity: 0;
    }

    50% {
        transform: scale(1.01);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tabs [id^="tab"]:checked+label {
    background: #FFF;
    color: var(--eerie-black);
    box-shadow: 0 0 20px 2px var(--pumpkin);
    border-radius: 17px;
    padding: 10px 3px 10px 3px;
}

.tabs [id^="tab"]:checked+label i {
    border-color: var(--eerie-black);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

#tab1:checked~#tab__content--1,#tab2:checked~#tab__content--2,#tab3:checked~#tab__content--3,#tab4:checked~#tab__content--4 {
    display: block;
}

@media (min-width:768px) {
    .tabs label span {
        display: block;
    }
}

.icon {
    margin-top: 1rem;
    display: inline-block;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: 2px solid #CACFD6;
    background-size: 140px 73px;
    box-sizing: border-box;
}

.email-cal {
    background-image: url(../images/socialmedia.webp);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

.snapshot {
    background-image: url(../images/GraphicServices.webp);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

.inbox-apps {
    background-image: url(../images/WebServices.webp);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

.log-calls {
    background-image: url(../images/SoftwareAppDevelopment.webp);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

.tracking {
    background: #fff url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/45910/icon_--_tracking.png);
    background-size: 140px 73px;
    background-position: 0 0;
}

.book-meetigns {
    background: #fff url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/45910/icon_--_book_meeting.png);
    background-size: 140px 73px;
    background-position: 0 0;
}

.send-later {
    background: #fff url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/45910/icon_--_send_later.png);
    background-size: 140px 73px;
    background-position: 0 0;
}

.follow-up {
    background: #fff url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/45910/icon_--_follow_up.png);
    background-size: 140px 73px;
    background-position: 0 0;
}

.tab__content img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgb(0 0 0 / .25);
}

@media (max-width:768px) {
    .tab__content img {
        max-width: 90%;
        margin: 0 auto 2rem auto;
        display: block;
    }
}

.tabslist {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.tabslist li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0f4c87;
    background: rgb(23 164 219 / .08);
    border-left: 3px solid #17a4db;
    border-radius: 8px;
    padding: 12px 16px 12px 3rem;
    transition: all 0.3s ease;
}

.tabslist li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2317a4db" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm0 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"/><path d="M12 5a7 7 0 100 14 7 7 0 000-14zm0 12a5 5 0 110-10 5 5 0 010 10z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.tabslist li:hover {
    background: rgb(23 164 219 / .15);
    transform: translateX(5px);
    border-left-color: #00d4ff;
    box-shadow: 0 0 10px rgb(23 164 219 / .3);
}

@media (max-width:767px) {
    .tabslist li {
        font-size: 1.1rem;
        padding-left: 2.5rem;
        padding-right: 12px;
    }

    .tabslist li::before {
        width: 14px;
        height: 14px;
        left: 8px;
    }
}

#__next {
    color: #0f4c87;
}

.iEMoRw {
    font-weight: normal!important;
}

.jcrvVL {
    font-weight: normal!important;
}

.iXyxZb {
    font-weight: 500!important;
}

.iXyxZb:hover {
    background-color: #f5b22e;
}

.dXabXn {
    color: #0f4c87;
}

.qboost-mic {
    color: #FFF;
    margin-top: 10px;
}

.footer {
    background-color: #28282B;
}

.footer-top .container {
    display: grid;
    gap: 30px;
}

.footer-top .section-text {
    margin-block: 15px 60px;
    color: #fff;
}

.social-list {
    display: flex;
    gap: 15px;
}

.social-link {
    background-color: var(--white);
    padding: 12px;
    border-radius: 50%;
    transition: var(--transition-1);
}

.social-link:is(:hover,:focus) {
    background-color: #17a4db;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-list-title {
    color: #17a4db;
    font-family: var(--ff-roboto);
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    margin-block-end: 20px;
}

.footer-link {
    font-size: var(--fs-4);
    margin-block-start: 10px;
    transition: var(--transition-1);
    color: #fff;
}

.footer-link:is(:hover,:focus),.footer-item .item-link:not(.address):is(:hover,:focus) {
    color: #17a4db;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-block-start: 10px;
    color: #fff;
}

.footer-item ion-icon {
    flex-shrink: 0;
    color: #fff;
    font-size: 17px;
    margin-block-start: 2px;
}

.footer-item .item-link {
    font-size: var(--fs-4);
    transition: var(--transition-1);
}

.footer-bottom {
    padding-block: 20px;
    border-block-start: 1px solid var(--gainsboro);
}

.copyright {
    font-size: var(--fs-4);
    text-align: center;
    color: #fff;
}

.copyright-link {
    color: #c58832;
    display: inline-block;
}

.back-top-btn {
    position: fixed;
    bottom: 30px;
    right: -36px;
    background-color: var(--pumpkin);
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-51px);
}

@media (min-width:575px) {
    .container,.hero-content {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }

    .features-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .app-banner {
        max-width: max-content;
    }

    .footer-top .container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width:768px) {
    :root {
        --fs-1: 4.5rem;
    }

    .container,.hero-content {
        max-width: 720px;
    }

    .h2 {
        --fs-1: 3.5rem;
    }

    .btn {
        font-size: unset;
        padding: 15px 30px;
    }

    .btn-list {
        gap: 20px;
    }

    .btn-item-link .img {
        width: 150px;
    }

    .navbar .btn {
        font-size: var(--fs-4);
        padding: 10px 20px;
    }

    .blog-list {
        gap: 20px;
    }

    .blog-list>li {
        max-width: calc(50% - 10px);
    }
}

@media (min-width:992px) {
    :root {
        --section-padding: 100px;
    }

    .container {
        max-width: 960px;
    }

    .btn-item-link .img {
        width: 185px;
    }

    .nav-toggle-btn {
        display: none;
    }

    .navbar,.navbar.active,.navbar-list {
        all: unset;
    }

    .navbar-list {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-content {
        margin-block-end: 0;
        top: 0;
    }

    .features .section-title {
        margin-block-end: 40px;
    }

    .features-list {
        grid-template-columns: repeat(4,1fr);
    }

    :is(.about,.about-2,.app) .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .about-banner,.app-banner {
        margin-block-end: 0;
    }

    .app {
        padding-block: 0;
    }

    .app-content {
        padding-block: var(--section-padding);
    }

    .app-banner {
        transform: translateY(100px);
    }

    .blog-list>li {
        max-width: calc(33.33% - 13.33px);
    }

    .footer-top .container {
        grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr;
        gap: 50px;
    }
}

@media (min-width:1200px) {
    :root {
        --fs-1: 5rem;
    }

    .container {
        max-width: 1180px;
    }

    .section-text {
        --fs-4: 1.5rem;
    }

    .h2 {
        --fs-1: 4rem;
    }

    .h3 {
        --fs-2: 2.2rem;
    }

    .header {
        padding-block: 20px;
    }

    :is(.header,.hero) .container {
        max-width: unset;
        padding-inline: 25px;
    }

    .header .btn {
        font-size: var(--fs-3);
        padding: 14px 30px;
        border-radius: var(--radius-6);
        margin-block: 0;
    }

    .hero {
        --section-padding: 10px;
        height: 100vh;
    }

    .features-list {
        gap: 25px;
    }

    .features-card {
        padding: 20px;
    }

    .blog-list {
        gap: 25px;
    }

    .blog-list>li {
        max-width: calc(33.33% - 16.66px);
    }

    .footer-list-title {
        --fs-2: 2.2rem;
    }

    .social-link {
        font-size: 18px;
        padding: 14px;
    }

    .footer-link,.copyright {
        --fs-4: 1.5rem;
    }

    .back-top-btn {
        font-size: 24px;
        padding: 13px;
        bottom: 40px;
    }

    .back-top-btn.active {
        transform: translateX(-80px);
    }
}

.reputation-gradient {
    background: linear-gradient(135deg,#0f4c87 0%,#17a4db 100%);
    color: #fff;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.reputation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.reputation-content {
    flex: 1 1 500px;
    text-align: left;
    z-index: 2;
}

.reputation .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
}

.reputation .section-text {
    font-size: 1.7rem;
    color: rgb(255 255 255 / .9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.reputation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.reputation-list li {
    margin-bottom: 2rem;
    background: rgb(255 255 255 / .1);
    border-left: 4px solid #fff;
    padding: 1.8rem 1.5rem 1.8rem 2.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.reputation-list li:hover {
    transform: translateX(5px);
    background: rgb(255 255 255 / .2);
}

.reputation-list h3 {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: .5rem;
    font-weight: 700;
}

.reputation-list p {
    font-size: 1.5rem;
    color: rgb(255 255 255 / .85);
    line-height: 1.7;
}

.reputation-list li.highlight {
    border-left: 5px solid #f5b22e;
    background: rgb(245 178 46 / .15);
    box-shadow: 0 0 25px rgb(245 178 46 / .2);
}

.reputation-list li.highlight h3 {
    color: #f5b22e;
}

.reputation-list li.highlight .impact-text {
    margin-top: 1rem;
    font-weight: 700;
    color: #fff;
}

.reputation .btn {
    background-color: #f5b22e;
    color: #0f4c87;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgb(245 178 46 / .4);
}

.reputation .btn:hover {
    background-color: #fff;
    color: #0f4c87;
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(245 178 46 / .5);
    }

    70% {
        box-shadow: 0 0 0 15px #fff0;
    }

    100% {
        box-shadow: 0 0 0 0 #fff0;
    }
}

.reputation-banner img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgb(0 0 0 / .3);
    transition: transform 0.4s ease,box-shadow 0.4s ease;
}

.reputation-banner img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgb(0 0 0 / .4);
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.3s;
}

.fade-in.delay-2 {
    animation-delay: 0.6s;
}

.fade-in.delay-3 {
    animation-delay: 0.9s;
}

.fade-in.delay-4 {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:992px) {
    .reputation-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .reputation-content {
        text-align: center;
    }

    .reputation-list li {
        text-align: left;
    }

    .reputation .btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}