.sidebar {
    position: relative;
    width: 100vw;
    height: 70px;
    background: var(--bg-sidebar);
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(360deg, rgba(217, 217, 217, 0) 0%, #000000 100%);
}

.sidebar .sidebar_content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    padding-block: 1rem;
}

.sidebar .sidebar_content h2 {
    font-size: 1.25rem;
    color: var(--text-black);
    font-weight: 700;
}

.sidebar .sidebar_content h2 span {
    font-weight: 500;
}

.sidebar .sidebar_content h2+a {
    font-size: 1.25rem;
    color: var(--text-white);
    background: var(--bg-button-whats);
    padding: 10px 20px;
    border-radius: 300px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .sidebar_content h2+a:hover {
    background: var(--text-green);
}

.sidebar .sidebar_content h2+a .fa {
    font-size: 1.3rem;
    text-indent: 8px;
}


/*                          HEADER | NAVBAR
  #########################################
*/

.header {
    width: 100%;
    height: 1470px;
    background: center no-repeat url(../imgs/banner-white.png);
}

.header .header_container {
    position: relative;
    z-index: 1;
    max-width: 1570px;
    margin-inline: auto;
    padding-block: 26px;
}

.header .header_container .navbar_content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 24px;
}

.header .header_container .navbar_content .navbar_logo img {
    width: 330px;
    height: 66px;
    object-fit: cover;
}

.header .header_container .navbar_content .navbar {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding-top: 20px;
}

.header .header_container .navbar_content .navbar .navbar_list {
    display: flex;
}

.header .header_container .navbar_content .navbar .navbar_list li {
    margin-left: 36px;
}

.header .header_container .navbar_content .navbar .navbar_list li a {
    font-size: 1.125rem;
    color: var(--text-white);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .header_container .navbar_content .navbar .navbar_list li a:hover {
    color: var(--bg-button);
}

.header .header_container .navbar_content .navbar .navbar_list+.navbar_buttons a {
    font-size: 0.96rem;
    text-transform: uppercase;
    color: var(--text-black);
    font-weight: 600;
    padding: 10px 12px;
    margin: 0 1px;
    background: var(--bg-button);
    border-radius: 60px;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.header .header_container .navbar_content .navbar .navbar_list+.navbar_buttons a:hover {
    background: var(--text-black);
    color: var(--bg-button);
}

.header .header_container .navbar_content .navbar~.social_network .fa {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-black);
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: var(--bg-button);
    border-radius: 50%;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.header .header_container .navbar_content .navbar~.social_network {
    text-align: center;
    overflow: hidden;
    padding-top: 14px;
}

.header .header_container .navbar_content .navbar~.social_network .fa:hover {
    background: var(--text-black);
    color: var(--bg-button);
}


/*              HEADER  |  IMAGES  | BANNER
  #########################################
*/

.header .header_info_banner {
    position: relative;
    padding-block: 46px;
    height: 648px;
}

.header .header_info_banner .banner_container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    padding-inline: 20px;
}

.header .header_info_banner .banner_container .text_banner {
    padding-top: 86px;
}

.header .header_info_banner .banner_container .text_banner h2 {
    font-size: 2.45rem;
    color: var(--text-white);
}

.header .header_info_banner .banner_container .text_banner h2 span {
    font-weight: 100;
}

.header .header_info_banner .banner_container .image_one img {
    position: relative;
    left: 50px;
    width: 454px;
    height: 717px;
    object-fit: contain;
}

.header .header_info_banner .banner_container .banner_content .banner_titles {
    position: relative;
    right: 56px;
    width: 470px;
    height: 207px;
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 7px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header .header_info_banner .banner_container .banner_content .banner_titles .group {
    display: flex;
    grid-gap: 16px;
    padding: 3px;
}

.header .header_info_banner .banner_container .banner_content .banner_titles .group .fa {
    position: relative;
    top: 6px;
    font-size: 0.4rem;
    color: white;
    text-shadow: 0px 7px 15px rgba(255, 255, 255, 2), 1px 7px 9px rgba(255, 255, 255, 2);
}

.header .header_info_banner .banner_container .banner_content .banner_titles .group p {
    font-size: 1rem;
    color: var(--text-white);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .header_info_banner .banner_container .banner_content .banner_titles .group:hover p {
    text-indent: 5px;
}

.header .header_info_banner .banner_container .banner_content .banner_titles .group p img {
    position: relative;
    right: 30px;
    width: 470px;
}

.header .header_info_banner .banner_container .banner_content .ellipse img {
    position: absolute;
    top: 20%;
    right: -60px;
    width: 125px;
    height: 125px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .header_info_banner .banner_container .banner_content:hover .ellipse img {
    transform: translateX(-6px);
}

.header .header_container .headers_titles {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.header .header_container .headers_titles .titles_item {
    text-align: center;
}

.header .header_container .headers_titles .titles_item h2 {
    font-size: 3rem;
    color: var(--bg-button);
    text-transform: uppercase;
}

.header .header_container .headers_titles .titles_item h2 span {
    display: block;
    line-height: 40px;
}

.header .header_container .headers_titles .group_item .titles_group {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.header .header_container .headers_titles .group_item .titles_group .group_title {
    display: flex;
    gap: 10px;
    margin: 4px;
}

.header .header_container .headers_titles .group_item .titles_group .group_title .fa {
    font-size: 1.4rem;
    color: var(--bg-whats-top);
    text-shadow: var(--text-shadow);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .header_container .headers_titles .group_item .titles_group .group_title:hover .fa {
    transform: scale(1.2);
}

.header .header_container .headers_titles .group_item .titles_group .group_title p {
    font-size: 1.5rem;
    color: var(--text-white);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .header_container .headers_titles .group_item .titles_group .group_title:hover p {
    color: var(--bg-button);
}

.header .header_container .headers_titles .titles_item {
    padding-block: 40px;
}

.header .header_container .headers_titles .titles_item h3 {
    font-size: 2.625rem;
    color: var(--text-white);
    font-weight: 100;
    margin-bottom: 20px;
}

.header .header_container .headers_titles .titles_item h3 span {
    font-weight: 600;
}

.header .header_container .headers_titles .titles_item .border_title {
    width: 320px;
    height: 4px;
    background-color: var(--bg-button);
    margin: auto;
}

.header .header_container .headers_titles .titles_paragraph {
    width: 784px;
    height: 130px;
    text-align: center;
}

.header .header_container .headers_titles .titles_paragraph p {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 100;
    margin-bottom: 20px;
}

.header .header_container .group_button {
    position: relative;
    cursor: pointer;
    width: 480px;
    height: 60px;
    background-color: var(--bg-button-whats);
    border-radius: 30px;
    padding-block: 14px;
    border: 2px solid var(--bg-icon-whats);
    overflow: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .header_container .group_button:hover {
    box-shadow: var(--shadow-whats);
}

.header .header_container .group_button a {
    text-indent: 24px;
}

.header .header_container .group_button h3 {
    font-size: 1.25rem;
    color: var(--text-black);
    font-weight: 300;
    padding-inline: 16px;
}

.header .header_container .group_button h3 strong {
    font-weight: 800;
}

.header .header_container .group_button .fa {
    position: absolute;
    top: 0;
    right: 0px;
    width: 70px;
    height: 60px;
    font-size: 1.7rem;
    background: var(--bg-icon-whats);
    color: var(--icon-wats);
    display: flex;
    align-items: center;
}


/* ###############################################
   ###############################################   END |  HEADER...
   ###############################################  
*/

.button_content {
    margin-left: 96px;
}

.button_scroll {
    position: fixed;
    right: 0;
    bottom: 5%;
    z-index: 1002;
}

.button_scroll .btn_whats {
    width: 73px;
    height: 50px;
    background: var(--bg-whats-top);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-bottom: 4px;
}

.button_scroll .btn_whats .fa {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 50px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_whats .fa:hover {
    background: var(--text-green);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/* ###############################################
   ###############################################   BTN   |   VOLTAR
   ###############################################  
*/

.button_scroll .btn_voltar {
    width: 73px;
    height: 50px;
    background: var(--text-black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    cursor: pointer;
}

.button_scroll .btn_voltar .fa {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 50px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_voltar .fa:hover {
    background: var(--bg-button);
    color: var(--text-black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/* ###############################################
   ###############################################   BTN   |   ASSINAR
   ###############################################  
*/

.button_scroll .btn_assinar {
    position: relative;
    width: 168px;
    height: 50px;
    background: var(--bg-icon-subscribe);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: 4px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_assinar:hover {
    background: var(--text-black);
}

.button_scroll .btn_assinar a {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 50px;
    text-indent: 40px;
    color: var(--text-black);
}

.button_scroll .btn_assinar a:hover {
    color: var(--text-white);
}

.button_scroll .btn_assinar a .fa {
    font-size: 1.3rem;
    position: relative;
    right: 10px;
}


/* ###############################################
   ###############################################   MAIN...
   ###############################################  
*/

.plans {
    width: 100%;
    height: 880px;
    background: center no-repeat url(../imgs/bg_about.png);
    transform: translateY(-96px);
}

.plans .plans_container {
    max-width: 1570px;
    margin-inline: auto;
    padding-inline: 20px;
}

.plans .plans_container .plans_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 160px;
}

.plans .plans_container .plans_content .plans_text {
    width: 434px;
}

.plans .plans_container .plans_content .plans_text h2 {
    font-size: 2.375rem;
    color: var(--text-blue);
    font-weight: 100;
    margin-bottom: 16px;
}

.plans .plans_container .plans_content .plans_text h2 span {
    display: block;
}

.plans .plans_container .plans_content .plans_text .plans_border {
    width: 340px;
    height: 2px;
    background: var(--text-green);
    margin-bottom: 16px;
}

.plans .plans_container .plans_content .plans_text p {
    font-size: 1rem;
    color: var(--text-blue);
    line-height: 24px;
}

.plans .plans_container .plans_content .plans_img img {
    width: 323px;
    height: 658px;
    object-fit: contain;
}


/*                     ANIMATION   |   CELL
  #########################################
*/

.plans .plans_container .plans_content .plans_img {
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@keyframes infiniteupdown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}


/*            END   |  ANIMATION   |   CELL
  #########################################
*/

.plans .plans_container .plans_content .plans_title {
    width: 480px;
    height: 370px;
    background: var(--text-green);
    border-radius: 25px;
    overflow: hidden;
}

.plans .plans_container .plans_content .plans_title .plans_group {
    position: relative;
    top: 20px;
    padding: 10px 40px;
}

.plans .plans_container .plans_content .plans_title .plans_group .itens_group {
    display: flex;
    gap: 10px;
    margin: 10px;
}

.plans .plans_container .plans_content .plans_title .plans_group h3 {
    font-size: 1.5rem;
    color: var(--text-white);
}

.plans .plans_container .plans_content .plans_title .plans_group .itens_group .fa {
    font-size: 0.5rem;
    color: var(--text-white);
    position: relative;
    top: 6px;
}

.plans .plans_container .plans_content .plans_title .plans_group .itens_group p {
    font-size: 1.1rem;
    color: var(--text-white);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.plans .plans_container .plans_content .plans_title .plans_group .itens_group:hover p {
    text-indent: 5px;
}


/*                          MAIN   |   VIDEO
  ##########################################
*/

.video {
    width: 100%;
    height: 886px;
}

.video_container {
    max-width: 1570px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.video .video_container .video_play iframe {
    width: 940px;
    height: 568px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.video .video_container .video_text {
    text-align: center;
}

.video .video_container .video_text h2 {
    font-size: 2.625rem;
    color: var( --text-blue);
    margin-bottom: 16px;
}

.video .video_container .video_text h2 span {
    display: block;
}

.video .video_container .video_border {
    width: 940px;
    height: 2px;
    background: var(--bg-button);
    margin: auto;
    margin-bottom: 16px;
}

.video .video_container .video_paragraph {
    text-align: center;
    width: 860px;
    margin: auto;
}

.video .video_container .video_paragraph p {
    font-size: 1.125rem;
    color: var(--text-blue);
}


/*              MAIN   |    CAROUSEL  |   PARCEIROS
    ############################################### 
*/

.carousel_partner {
    width: 100%;
    height: 485px;
}

.carousel_partner .carousel_container {
    max-width: 1570px;
    margin: auto;
    padding-inline: 20px;
}

.carousel_partner .carousel_container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-blue);
}

.carousel_partner .carousel_container h2 span {
    color: var(--text-green);
    display: block;
}

.carousel_partner .carousel_container .carousel_six {
    transform: translateY(-30px);
}

.carousel_partner .carousel_container .carousel_six .brands {
    width: 245px;
    height: 200px;
    background: var(--text_white);
    border-radius: 20px;
    margin: 10px;
    border: 1px solid var(--text-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel_partner .carousel_container .carousel_six .brands:hover {
    border: 1px solid var(--bg-button);
}

.carousel_partner .carousel_container .carousel_six .brands img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 30px auto;
}

.carousel_partner .carousel_container .carousel_six .slick-dots li button {
    margin-top: 136px;
    background: var(--text-green);
}

.carousel_partner .carousel_container .carousel_six .slick-dots li.slick-active button {
    border: 2px solid var(--text-green);
    background: transparent;
}


/*            MAIN   |    CAROUSEL   |   DEPOIMENTO
    ############################################### 
*/

.testimonials {
    width: 100%;
    height: 668px;
}

.testimonials .five_items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.testimonials .five_items .five_title {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials .five_items .five_title h2 {
    font-size: 2.5rem;
    color: var(--text-blue);
    font-weight: 100;
}

.testimonials .five_items .five_title h2 strong {
    color: var(--text-green);
    font-weight: 700;
}

.testimonials .five_items .five_title+.five_img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*                 |  ANIMATION   |  LOADER
  #########################################
*/

.testimonials .five_items .five_title+.five_img::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 206px;
    height: 206px;
    background: linear-gradient(to top, #019970, #687983);
    backdrop-filter: blur(30px);
    border-radius: 300px;
    opacity: 0.5;
    animation: loader 0.6s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*           END   |  ANIMATION   |  LOADER
  #########################################
*/

.testimonials .five_items .five_title+.five_img img {
    width: 186px;
    height: 186px;
    object-fit: cover;
}

.testimonials .five_items .five_text {
    text-align: center;
    height: 146px;
    padding-top: 30px;
}

.testimonials .five_items .five_text p {
    font-size: 1.125rem;
    color: var(--text-blue);
}

.testimonials .five_items .five_text p span {
    font-size: 1.125rem;
    color: var(--text-blue);
    font-weight: 600;
    display: block;
    margin-top: 20px;
}

.testimonials .carousel_five .slick-dots li button {
    background: var(--text-green);
    margin-top: 146px;
    display: inline-block;
}

.testimonials .carousel_five .slick-dots li.slick-active button {
    border: 2px solid var(--text-green);
    background: transparent;
}


/*           MAIN   |    ACCORDION  |   DUVIDAS
############################################### 
*/

.accordion {
    width: 100%;
    height: 796px;
}

.accordion .accordion_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accordion .accordion_container .accordion_info {
    width: 1300px;
    height: 680px;
    background-color: var(--text-black);
    border-radius: 40px;
    overflow: hidden;
    padding: 94px;
}

.accordion .accordion_container .accordion_info h2 {
    font-size: 3rem;
    color: var(--bg-button);
    text-transform: uppercase;
}

.accordion .accordion_container .accordion_info .accordio_items {
    position: relative;
    margin-top: 36px;
    max-width: 1060px;
    border-bottom: 2px solid var(--bg-button);
    padding-bottom: 20px;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text h3 {
    font-size: 1.125rem;
    color: var(--bg-button);
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text .fa {
    font-size: 1.5rem;
    color: var(--bg-button);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text.power .fa {
    transform: rotate(180deg);
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph {
    font-weight: 100;
    color: var(--text-white);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph.power {
    max-height: 100%;
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph p {
    font-size: 1rem;
    padding: 20px 0;
}


/*                                       FOOTER
############################################### 
*/

.footer {
    width: 100%;
}

.footer .footer_container {
    max-width: 1570px;
    height: 80px;
    margin: auto;
    background-color: var(--text-green);
}

.footer .footer_container .footer_content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
}

.footer .footer_container .footer_content .footer_title h2 {
    font-size: 1.25rem;
    font-weight: 100;
    color: var(--text-white);
}

.footer .footer_container .footer_content .footer_social_network {
    display: flex;
    gap: 26px;
    overflow: hidden;
}

.footer .footer_container .footer_content .footer_social_network a {
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 200;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer .footer_container .footer_content .footer_social_network a:hover {
    color: var(--bg-button);
}

.footer .footer_container .footer_content .footer_social_network a .fa {
    font-size: 1.3rem;
    margin: 0 3px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer .footer_container .footer_content .footer_social_network a:hover .fa {
    color: var(--text-black);
}


/*                          FOOTER    |   FOTTER_END
    ################################################
*/

.footer_end {
    width: 100%;
    height: 216px;
}

.footer_end .end_container {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

.footer_end .end_container img {
    width: 330px;
    height: 66px;
    object-fit: cover;
    margin-top: 40px;
}

.footer_end .end_container>.end_nav {
    margin-top: 20px;
    margin-bottom: 18px;
}

.footer_end .end_container>.end_nav a {
    font-size: 1.125rem;
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 30px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer_end .end_container>.end_nav a:hover {
    color: var(--text-green);
}

.footer_end .end_container+.copyright {
    padding: 16px 0;
    max-width: 1570px;
    margin: 0 auto;
    border-top: 1px solid var(--text-blue);
    text-align: center;
}

.footer_end .end_container+.copyright P {
    color: var(--text-black);
    font-size: 0.875rem;
}