/*
Theme Name: Dotechnology
Theme URI: -
Author: the WordPress team
Author URI: https://wordpress.org
Description: -
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: -
Tags: -
*/



/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --color-primary: #CCE400;
    --color-badge-1: #564FBD;
    --color-badge-2: #C746C1;
    --color-badge-3: #FF6385;
    --color-badge-4: #9ABD97;
    --color-badge-5: #44D6FF;
    --color-badge-6: #AFE7A2;
}

body {
    font-family: "Funnel Display", sans-serif;
}

.wrapper {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 16px;
}

.wrapper--secondary {
    width: 100%;
    max-width: 1568px;
    margin: 0 auto;
    padding: 0 16px;
}

.wrapper--tertiary {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 16px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding: 0 16px;
}

.section {
    position: relative;
    padding-top: 88px;
    padding-bottom: 120px;
}

.section__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 16px;  
}

@media (min-width: 768px){
    .section__inner {
       gap: 72px; 
    }
}

@media (min-width: 1440px){

    .wrapper--secondary {
        padding: 0 64px;
    }

    .content-wrapper {
        padding: 0 64px;
    }

}

.section--negative {
    background-image: url('radial.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.section-title {
    font-size: clamp(28px,4.167vw,60px);
    line-height: 1;
    font-weight: 300;
    text-align: center;
}

.section-title strong {
    font-weight: 600;
}

.section__footer {
    text-align: center;
    display: flex;
    justify-content: center;
}

.btn {
    background-color: transparent;
    font-size: 12px;
    line-height: 2;
    text-transform: uppercase;
    /* padding: 1.7em 13em 1.7em 4em; */
    color: #000;
    text-decoration: none;
    display: inline-flex;
    gap: 16px;
    position: relative;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.btn span {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    padding: 0 36px 0 36px;
    border-radius: 100px;
}

.btn--small {
    
}

.btn--small span {
    padding: 0 7em 0 4em;
}

.btn::after {
    content: "";
    height: 40px;
    aspect-ratio: 1;
    background-color: var(--color-primary);
    background-image: url('data:image/svg+xml,<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.3984 7.66406L9.77344 13.2891C9.5625 13.5 9.28125 13.6055 9 13.6055C8.68359 13.6055 8.40234 13.5 8.19141 13.2891C7.73438 12.8672 7.73438 12.1289 8.19141 11.707L11.8828 7.98047H1.125C0.492188 7.98047 0 7.48828 0 6.85547C0 6.25781 0.492188 5.73047 1.125 5.73047H11.8828L8.19141 2.03906C7.73438 1.61719 7.73438 0.878906 8.19141 0.457031C8.61328 0 9.35156 0 9.77344 0.457031L15.3984 6.08203C15.8555 6.50391 15.8555 7.24219 15.3984 7.66406Z" fill="%230E0D26"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 100%;
    position: relative;
    top: 0;
    right: 0;
    /*transform: translateX(100%);*/
}

@media (min-width: 1024px){
    
    .btn::after {
        height: 64px;
    }

    .btn span {
        padding: 1.7em 13em 1.7em 4em;
    }

    .btn--small span {
        padding: 1.7em 7em 1.7em 4em;
    }
}

.down {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.down--secondary {
    bottom: -144px;
}

.text-small {
    color: #767676;
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    padding-top: 1.77778em;
    padding-bottom: 1.77778em;
    border-bottom: 1px solid #fff;
}

.logo__svg {
    display: block;
    height: 40px;
}

.nav-main {
    gap: 32px;
    display: none;
}

.nav-main.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    z-index: 2;
}

.nav-main__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav-main__link {
    height: 100%;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    position: relative;
}

.nav-main__link.active {
    color: #CCE400;
}

.nav-main__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 0;
    outline: 0;
    border-radius: 100%;
    background-color: #CCE400;
}

@media (min-width: 1024px){
    .header {
        font-size: 16px;
    }

    .nav-main {
        display: flex;
        gap: 32px;
    }

    .nav-main.active {
        position: initial;
        background-color: transparent;
        width: auto;
        flex-direction: row;
    }

    .nav-main__items {
         gap: 32px;
         flex-direction: row
    }

    .nav-main__link.active::after {
        content: "";
        position: absolute;
        bottom: -1.77778em;
        left: 50%;
        width: 8px;
        height: 40px;
        background-color: #CCE400;
        transform: skewX(-30deg) translateX(-8px);
        transform-origin: center;
    }
}

@media (min-width: 1200px){
    .logo__svg {
        height: 65px;
    }
}

.hero {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100% - 112px);
    background-image: url('radial.png');
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -6px 0px 0px var(--color-primary);
}

.hero--secondary {
    padding-bottom: 88px;
}

.hero--secondary::before {
    height: 100%;
}

.hero__top {
    position: relative;
}

.hero__bottom {
    position: relative;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.hero__content__title {
    max-width: 1170px;
    font-size: clamp(32px,4.167vw,60px);
    line-height: 1.1;
    font-weight: 300;
}

.hero__content__title strong {
    font-weight: 600;
}

.hero-slider {
    border-radius: 20px;
    overflow: hidden;
}

.hero-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 1024px){
    
    .hero {
        gap: 104px;
    }

    .hero__content--primary::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 400px;
        background-color: #CCE400;
        transform: skewX(-30deg);
        transform-origin: right top;
    }
}

.grid-cards {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
}

.grid-minicards {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
}

.card--primary {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 24px 112px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    color: #000;
}

.card--primary__title {
    font-size: clamp(22px,2.917vw,42px);
    line-height: 1.0475;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.card--secondary {
    background-color: var(--color-primary);
}


.minicard--primary {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 32px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    color: #000;
}

.minicard--secondary {
    border-color: #4E545B; 
    background-color: #4E545B;
    color: #fff;
    display: flex;
    align-items: center;
}

.minicard--primary__title {
    font-size: clamp(24px,2.917vw,42px);
    line-height: 1.0475;
    font-weight: 300;
}

.badge {
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(40px,5vw,72px);
    background-color: orange;
    position: absolute;
    top: -12px;
    right: 24px;
    padding-left: 0.1em;
    padding-right: 0.1em;
    padding-top: 0.833333em;
    line-height: 1;
}

.badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0px 11px 11px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: inherit;
    border-left-color: transparent;
    transform: rotate(0deg);
}

.badge--1 {
    background-color: var(--color-badge-1);
    border-bottom-color: color-mix(in srgb, var(--color-badge-1), black 40%);
}

.badge--2 {
    background-color: var(--color-badge-2);
    border-bottom-color: color-mix(in srgb, var(--color-badge-2), black 40%);
}

.badge--3 {
    background-color: var(--color-badge-3);
    border-bottom-color: color-mix(in srgb, var(--color-badge-3), black 40%);
}

.badge--4 {
    background-color: var(--color-badge-4);
    border-bottom-color: color-mix(in srgb, var(--color-badge-4), black 40%);
}

.badge--5 {
    background-color: var(--color-badge-5);
    border-bottom-color: color-mix(in srgb, var(--color-badge-5), black 40%);
}

.badge--6 {
    background-color: var(--color-badge-6);
    border-bottom-color: color-mix(in srgb, var(--color-badge-6), black 40%);
}

@media (min-width: 768px){
    .grid-cards {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 1300px){
    .grid-cards {
        grid-template-columns: repeat(3,1fr);
    }

    .grid-minicards {
        grid-template-columns: repeat(4,1fr);
    }

    .card--primary {
        gap: 24px;
        padding: 32px 105px 32px 32px;
    }
}

.logos {
    padding-bottom: 40px;
}

.logos__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.logos__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.logos__title {
    text-align: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
}

.logos__title strong {
    font-weight: 600;
}

@media (min-width: 768px){
    .logos__title {
        font-size: 40px;
    }
}


@media (min-width: 1024px){
    .logos__title {
        font-size: 60px;
    }
}

.grid-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.grid-partners__item {
    display: flex;
    justify-content: center;
}

.quote--wrapper {
    padding-bottom: 260px;
}

.quote {
    background-color: rgb(204, 228, 0, .2);
    padding: 56px 56px 90px 56px;
    border-radius: 20px;
    font-size: 30px;
    line-height: 1.3334;
    position: relative;
}

.btn--quote {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.content-columns {
    padding-top: 160px;
    display: flex;
    gap: 180px;
}

.content-columns__text {
    font-size: 30px;
    font-weight: 300;
}

.content-columns__text strong {
    font-weight: 700;
}

.product {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 80px;
    padding-bottom: 56px;
}

.product {
    border-bottom: 1px solid rgba(0,0,0,.2);
}

.product__logo {
    flex: 0.5 0;
}

.product__logo__img {
    display: block;
    margin: 0 auto;
    max-height: 200px;
}

.product__content {
    flex: 1 0;
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: start;
}

.product__description {
    flex: 1 0;
    font-size: clamp(14px,2.084vw,30px);
    line-height: 1.3334;
    font-weight: 300;
}

.product__description.off {
    display: none;
}

.product__description p + p {
    margin-top: 1.2em;
}

.product__description strong {
    font-weight: 600;
}

@media (min-width: 768px){

    .product {
        padding-top: 160px;
        padding-bottom: 96px;
        gap: 120px;
        flex-direction: row;
        align-items: start;
    }

    .product__logo__img {
        margin: initial;
        max-height: none;
    }

}

.product__contact__content {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 120px;
}


@media (min-width: 768px){
    .product__contact__content {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 220px;
    }
}

.newsletter {
    background-color: #000000;
    color: #fff;
    padding-top: 88px;
    padding-bottom: 88px;
}

.newsletter__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

.newsletter__title {
    font-size: clamp(22px,4.167vw,60px);
    line-height: 1;
    font-weight: 300;
}

.newsletter__form__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.newsletter__form__input {
    background-color: #767676;
    color: #fff;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    border-radius: 100px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 12px;
    line-height: 2em;
    min-width: none;
    padding: 1.7em 4em 1.7em 4em;
}

.newsletter__form__submit {
    align-self: center;
}

.newsletter__form__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter__form__bottom a {
    color: #00A6FF;
}

@media (min-width: 768px){
    .newsletter__form__top {
        flex-direction: row;
    }

    .newsletter__form__input {
        padding: 1.7em 7em 1.7em 4em;
    }
}

@media (min-width: 1024px){
    .newsletter__form__input {
        min-width: 575px; 
    }
}

.footer {
    padding-top: 48px;
}

.footer__inner {
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    border-bottom: 1px solid #E3E4E5;
    padding-bottom: 16px;
    row-gap: 56px;
}

/* .footer__left {
    display: flex;
    flex-direction: column;
    gap: 80px;
} */

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-row: 3;
    
}

.footer__logo {
    display: flex;
    flex-direction: column;
    justify-self: center;
    gap: 16px;
    grid-row: 1;
    grid-column: 1;
}

.footer__logo__text {
    font-size: 14px;
    line-height: 1.714;
}

.footer__legal {
    font-size: 10px;
    text-align: center;
}

.footer__nav {
    display: flex;
    gap: 32px;
    grid-row: 2;
}

.footer__nav__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__nav__title {
    font-weight: 600;
}

.footer__nav__items {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav__link {
    color: #72777D;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.333;
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.footer__nav__link__address {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav__link svg {
    top: 0.45em;
    position: relative;
}

.footer__rrss {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer__rrss__link {
    background-color: #E6EBED;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.footer__rrss__link:hover {
    background-color: var(--color-primary);
}

@media (min-width: 768px){
    
    .footer__inner {
        grid-template-columns: 1fr auto;
    }

    .footer__logo {
        justify-self: start;
        gap: 24px;
    }

    .footer__nav {
        grid-row: 1;
    }

    .footer__legal {
        font-size: 14px;
    }
}


@media (min-width: 1024px){

    .footer__logo {
        gap: 32px;
    }

    .footer__content {
        grid-row: 2;
    }


    .footer__nav__link {
        font-size: 16px;
    }
}

@media (min-width: 1440px) {
        
    .footer__nav {
        gap: 160px;
    }

    .footer__nav__link {
    font-size: 18px;
    } 
}



.footer__banners {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
}

@media (min-width: 600px){
    .footer__banners {
        flex-direction: row;
    }
}

@media (min-width: 860px){
    .footer__banners {
        gap: 24px;
    }
}

@media (min-width: 1024px){
    .footer__banners {
        gap: 32px;
    }
}

.footer__banners__img {
    display: block;
    height: 24px;
    width: auto;
}

@media (min-width: 860px){
    .footer__banners__img {
        height: 32px;
    }
}

@media (min-width: 1024px){
    .footer__banners__img {
        height: 40px;
    }
}

@media (min-width: 1160px){
    .footer__banners__img {
        height: 48px;
    }
}

@media (min-width: 1440px){
    .footer__banners__img {
        height: 60px;
    }
}

.swiper {
    width: 100%;
    padding: 0 64px;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
  width: auto !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  height: auto;
}

.swiper-button-next, .swiper-button-prev {
    color: #767676;
}