@import url(./fonts.css);

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.container{
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

.phone{
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFDE00;
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 1;
    transition: 0.3s;
    position: fixed;
}

.phone:hover{
    transform: scale(1.1);
}

@keyframes example-animation {
    0% {
      transform: rotate(0);
    }
    50% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(0);
    }
  }
  
  .phone img {
    animation: example-animation 0.3s ease-in-out infinite;
  }


/* NAV */

.header_nav_c{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.header_nav{
    background: white;
    z-index: 2;
    width: 100%;
    position: fixed;
}

.header_nav_box{
    display: flex;
    gap: 20px;
}

/* navDrop menu */

.header_nav_box_dropmenu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    transition: 0.3s;
}

.header_nav_box_dropmenu span {
    display: block;
    background: black;
    width: 20px;
    height: 2px;
    transition: transform 0.3s ease;
}

.header_nav_box_dropmenu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(2px) translateX(3px);
}

.header_nav_box_dropmenu.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-2px) translateX(3px);
}

.header_nav_box_dropmenu.active ~ .header_nav_box_list{
    line-height: 1.2;
}

.header_nav_box_drop{
    position: relative;
}

.header_nav_box_list {
    width: 450px;
    position: absolute;
    top: 59px;
    right: 0;
    z-index: 1;

    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0 0 10px 10px;
    background: white;

    line-height: 0;
    transition: line-height 0.3s, color 0.3s;
}


.header_nav_box_list_links a{
    font-family: 'RB';
    font-size: 16px;
    text-align: center;
    color: black;
}

.header_nav_box_list_links{
    display: block;
    width: 98%;
    padding: 0.8lh 15px;

    transition: 0.1s;
    overflow: hidden;
}

.header_nav_box_list_links:hover{
    transform: translateX(2%);
}

/* HEader Content */

.header__content{
    padding-top: 80px;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: linear-gradient(117deg, #f9faff 33.17%, #eeeff7 33.23%, #eeeff7 65.65%, #dee2f0 65.74%);
}

.header__content_title{
    width: 100%;
    max-width: 535px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    font-family: 'RB';
    font-weight: 900;
    font-size: 35px;
    text-align: center;
    color: #000;
    position: relative;
}

.header__content_title::after{
    display: block;
    content: '';
    width: 64px;
    height: 4px;
    background: #FFDE00;
}

.header__content_text{
    font-family: 'RB';
    font-weight: 900;
    font-size: 15px;
    text-align: center;
    color: #000;
    margin-top: 24px;
    margin-bottom: 39px;
}

.header__content_info{
    font-family: 'RB';
    font-weight: 900;
    font-size: 15px;
    text-align: center;
    color: #000;
}

/* SECtion Products */
.section__product_cards{
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.section__product_titel{
    font-family: 'RB';
    font-size: 30px;
    color: #000;
}

.section__product_titel{
    text-align: center;
    margin: 25px 0;
}

.section__product_cards_card{
    width: 100%;
    max-width: 930px;
    height: 330px;
    position: relative;

    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__product_cards_card::before{
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    transition: 0.3s;

    clip-path: polygon(0 0, 0% 100%, 100% 0);
    transform: scale(1.15);
    background: #ffde00;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.section__product_cards_card::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #404040 100%);
    z-index: -1;
}

.section__product_cards_card-bg{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;

    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.section__product_cards_card_info{
    transition: 0.3s;
    margin-left: 50px;
}

.section__product_cards_card_info-title{
    font-family: 'RB';
    font-size: 25px;
    color: #f6f6f6;
    margin: 20px 0;
    transition: 0.5s;
}

.section__product_cards_card_info-link{
    font-family: 'RR';
    font-size: 18px;
    color: #FFDE00;

    position: absolute;
    transition: 0.5s;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    cursor: default;
    z-index: -1;
}

.section__product_cards_card:hover::before {
    transform: scale(1);
}

.section__product_cards_card_info-icon{
    transition: 0.5s;
}

.section__product_cards_card:hover .section__product_cards_card-bg {
    transform: scale(1.03);
}

.section__product_cards_card:hover .section__product_cards_card_info-icon {
    transform: translateY(-40px);
    opacity: 0;
}

.section__product_cards_card:hover .section__product_cards_card_info-title {
    transform: translateY(-40px);
}

.section__product_cards_card:hover .section__product_cards_card_info-link {
    transform: translateY(-40px);
    opacity: 1;

    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
}

@keyframes cardAnimation {
    0% {
      transform: translate(-100%);
    }
    /* 30% {
      transform: rotate(1deg);
    }
    70% {
      transform: rotate(-1deg);
    } */
    100% {
      transform: rotate(0deg);
    }
  }
  
  .section__product_cards_card {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  
  .section__product_cards_card.animate {
    animation: cardAnimation 0.9s ease-in-out 1;
    opacity: 1;
  }

  /* FOOTER */

.footer{
    background: #1E2339;
    margin-top: 40px;
    width: 100%;
    padding: 50px 0 30px 0;
}

.footer__content{
    display: flex;
    justify-content: space-between;
}

.footer__content_card{
    width: 100%;
    max-width: 265px;
}

.footer__content_logo{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__content_logo-img{
    max-width: 230px;
    width: 100%;
    height: 50px;
}

.footer__content_logo-text{
    font-family: 'RR';
    font-weight: 400;
    font-size: 15px;
    color: #dadeef;
}

.footer__content_logo_social{
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__content_contact{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__content_contact-title{
    font-family: 'RB';
    font-weight: 700;
    font-size: 22px;
    color: #FFDE00;
}

.footer__content_contact-text{
    font-family: 'RR';
    font-weight: 400;
    font-size: 15px;
    color: #dadeef;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__content_contact-text a{
    font-family: 'RR';
    font-weight: 400;
    font-size: 15px;
    color: #ffdd00fb;
}

.footer__content_contact-text br{
    padding: 10px;
}

.footer__content_product{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__content_product-title{
    font-family: 'RB';
    font-weight: 700;
    font-size: 22px;
    color: #FFDE00;
}

.footer__content_product_docs{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__content_product_docs_licks a{
    font-family: 'RR';
    font-weight: 400;
    font-size: 15px;
    color: #dadeef;
    transition: 0.3s;
}
.footer__content_product_docs_licks{
    transition: 0.5s ease-in-out;
}

.footer__content_product_docs_licks a:hover{
    color: #ffdd00fb;
}

.footer__content_product_docs_licks:hover{
    transform: scale(1.1);
}

/* FOOTER BANER */

.footer__baner{
    margin-top: 30px;
    border-top: solid 1px #303C70;
    padding-top: 30px;
}

.footer__baner_box{
    display: flex;
    justify-content: space-between;
}

.footer__baner_box p{
    font-family: 'RR';
    font-weight: 400;
    font-size: 17px;
    color: #dadeef;
}