:root {
    --content-max-width: 1440px;
    --content-max-menu: 960px;
    --content-main-view: 1124px;
    --margin-content-end: 40px;
    --height-block-content: 560px;
}

/************************************* All *************************************************/
* {
    box-sizing: border-box;
}

html,
body {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    /* font-family: "Lato", Arial, sans-serif; */
    font-family: Montserrat;
}

body {
    background-color: #eaeaea;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

nav {
    margin: 0px !important;
    padding: 0px !important;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

a {
    text-decoration: none !important;
    cursor: pointer;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: ease;
}

.body {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.btn-read-more {
    background: #cd0000;
    border: none;
    outline: none;
    padding: 10px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #ffffff;
}

.active {
    color: #cd0000;
}

/************************************* Header *************************************************/

.content-max-size {
    max-width: var(--content-max-width);
}

.navbar-header {
    background: #181818 !important;
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.8)
    ) !important;
    width: 100%;
    height: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-header .navbar-links-wrapper {
    display: flex;
    flex-direction: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-header .navbar-links-wrapper .logo-title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    /* position: absolute;
    z-index: 0;
    left: 0;
    right: 0; */
}

.navbar-header .nav-link-left,
.navbar-header .nav-link-right {
    max-width: 250px;
    width: 100%;
}

.navbar-header .nav-link-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.navbar-header .nav-link-left li:nth-child(n + 2) a,
.navbar-header .nav-link-right li:nth-child(n + 2) a {
    margin-left: 20px;
}

.navbar-header .nav-link-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.navbar-header .nav-link {
    min-width: 0;
    color: #ffffff;
    font-family: "GT-America-Expanded-Medium", sans-serif;
    font-weight: 500;
    font-stretch: expanded;
    font-size: 11px;
    line-height: 1.27em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 0;
    outline: 0;
    border: 0;
    z-index: 10;
}

.navbar-header .nav-link:hover {
    color: #cd0000;
}

.navbar-dark-title {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    color: #ffffff;
    text-align: center;

    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
}

@media only screen and (max-width: 992px) {
    .navbar-header .navbar-links-wrapper .logo-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .navbar-header {
        justify-content: center;
    }
    .navbar-header .navbar-links-wrapper .logo-title {
        font-size: 18px;
    }
    .navbar-header .nav-link-left li:nth-child(n + 2) {
        display: none;
    }
    .navbar-header .nav-link-left {
        max-width: 60px;
        order: 2;
    }
    .navbar-header .nav-link-right {
        display: none;
    }
    .navbar-header .navbar-links-wrapper .logo-title {
        order: 1;
    }
}

@media only screen and (max-width: 520px) {
    .navbar-header .navbar-links-wrapper .logo-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 400px) {
    .navbar-header .navbar-links-wrapper .logo-title {
        font-size: 14px;
    }
}

/************************************* Menu Mobile*************************************************/

.menu-mobile {
    position: -webkit-sticky;
    position: sticky;
    top: 0;

    width: 100%;
    height: 60px;
    display: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background: #ffffff;
    padding: 0px 20px;
    border-top: 2px solid #eb2e2c;
    z-index: 200;
}
.menu-mobile.menu-mobile-scroll {
    border-top: none;
    border-bottom: 2px solid #eb2e2c;
    box-shadow: 0px 2px 30px 0px rgb(0 0 0 / 60%);
    -webkit-box-shadow: 0px 2px 30px 0px rgb(0 0 0 / 60%);
}
.menu-mobile .btn-open-menu {
    height: 41px;
    width: 41px;
    outline: none;
    background: none;
    border: 2px solid #cd0000;
    color: #cd0000;
    border-radius: 50%;
    font-size: 25px;
}

.menu-sidenav-mobile {
    display: none;
    /* margin-right: 41px; */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 10000;
}

.menu-sidenav-mobile ul li {
    width: 100%;
    border-bottom: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-sidenav-mobile ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.menu-sidenav-mobile ul li a:hover,
.menu-sidenav-mobile ul li a.active {
    color: #cd0000;
}

.menu-sidenav-mobile ul li a i {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 65px;
    text-align: right;
}
.menu-sidenav-mobile ul li a span {
    padding: 10px 0px 10px 20px;
}

.menu-sidenav-mobile ul li .dropdown-sidenav-mobile {
    display: none;
}

.menu-sidenav-mobile ul li .dropdown-sidenav-mobile ul li {
    padding: 10px 20px;
    background-color: #eaeaea;
    border-bottom: 1px solid #302d2e;
}

.menu-sidenav-mobile ul li .dropdown-sidenav-mobile ul li a {
    color: #555555;
}

.menu-sidenav-mobile a:hover,
.menu-sidenav-mobile ul li .dropdown-sidenav-mobile ul li a:hover,
.menu-sidenav-mobile ul li .dropdown-sidenav-mobile ul li a.active {
    color: #cd0000;
}

.menu-sidenav-mobile .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main-root-content {
    transition: margin-left 0.5s;
}

@media screen and (max-height: 450px) {
    .menu-sidenav-mobile {
        padding-top: 15px;
    }
    .menu-sidenav-mobile a {
        font-size: 18px;
    }
}

@media screen and (max-width: 960px) {
    .menu-sidenav-mobile {
        display: block;
    }
    .menu-mobile {
        display: flex;
    }
}

/************************************* Content *************************************************/

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--content-max-width);

    /* width: 1440px; */
    background-color: #ffffff;
    padding: 50px 0px;
    margin-bottom: var(--margin-content-end);
}
.slider-content {
    height: 100%;
    max-width: var(--content-max-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.image-slider {
    max-width: var(--content-max-width);
    background-repeat: no-repeat;
    background-size: cover;
    height: 576px;
}

.slider-title {
    /* font-size: 2.428em;
    line-height: 1em; */
    margin: 40px 0;
    color: #ffffff;
    z-index: 1;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
}
.slider-subtitle {
    /* font-size: 1.071em;
    line-height: 1.1em; */
    color: #ffffff;
    z-index: 1;
    max-width: var(--content-max-menu);

    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
}
.slider-read-more {
    padding: 17px 20px;
    border-color: #ffffff;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1;
    line-height: 14px;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    text-transform: uppercase;

    transition: all 400ms ease !important;
}
.slider-read-more:hover {
    color: #000000;
    background-color: #fff;
}

.slider-arrows {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    position: absolute;
    cursor: pointer;
    background: none;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    font-size: 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
}

.arrow-slider-prev {
    left: 2px;
    right: auto;
}

.arrow-slider-next {
    right: 2px;
    left: auto;
}

.slider-film {
    max-width: var(--content-max-width);
}

.slider-film:hover .slider-arrows {
    opacity: 1;
}

.content-arrows {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .slider-opacity:after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #000 0, transparent 30%);
        z-index: 0;
    }
}

/************************************* Scroll *************************************************/
#scroll-1 {
    overflow-y: scroll;
}

#scroll-1::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

#scroll-1::-webkit-scrollbar {
    width: 3px;
    background-color: #f5f5f5;
}

#scroll-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

/************************************* Home *************************************************/

.menu-fixed {
    /* position: sticky; */
    top: 0;
    z-index: 10000;

    margin: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: #ffffff;
    z-index: 100;
    height: 56px;
    border-bottom: 2px solid #eb2e2c;
    -webkit-box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.6);

    display: none;
    justify-content: center;
    align-items: center;
}

.menu-fixed .main-menu-top {
    box-sizing: border-box;
    max-width: var(--content-max-menu);
}

.menu-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-generic-menu {
    border-top: 2px solid #eb2e2c;
    max-width: var(--content-max-menu);
    width: 100%;
    background-color: #ffffff;
    z-index: 100;
    box-sizing: border-box;
    height: 56px;
}

.main-menu {
    box-sizing: border-box;
    border-top: 2px solid #eb2e2c;
    max-width: var(--content-max-menu);
    width: 100%;
    background-color: #ffffff;
    z-index: 100;
    margin-top: -56px;
    height: 56px;
}

.menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.menu-item {
    /* position: relative; */
    display: inline-block;
}

.main-link {
    width: 100%;
}

.main-link:hover,
.main-link.active {
    color: #cd0000;
}

.menu-item .main-link::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    height: 28px;
    width: 1px;
    background-color: #aaa;
}

.menu-item a {
    color: #000000;
    display: inline-block;
    height: 56px;
    /* max-width: 137px; */
    line-height: 56px;
    vertical-align: middle;
    font-family: "Lato", Arial, sans-serif;
    font-size: 0.928em;
    text-transform: uppercase;
    position: relative;
    padding: 0 20px;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    text-align: center;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    margin-top: 56px;
}

/* .dropdown-submenu::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000 0, transparent 30%);
    z-index: 0;
} */

.dropdown-submenu .submenu-content {
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    width: var(--content-max-menu);
    height: 340px;
    padding: 40px;
    color: #ffffff;
    box-sizing: border-box;

    background: url("../images/menu/menu.webp");
    background-size: cover;
    background-position: 50% 50%;

    /* opacity: 1;
    transform: scale(1.05);
    transition: transform 4000ms ease,opacity 750ms ease; */
}

.dropdown-submenu .submenu-content.menu-company {
    background: url("../images/menu/company.png"),
        linear-gradient(to right, #000000 37.13%, #cd0000 99.95%);
    background-position-x: right;
    mix-blend-mode: screen;
    background-size: contain;
    background-position: 100% 100%, 0% 0%;
    background-repeat: no-repeat, no-repeat;
}
.dropdown-submenu .submenu-content.menu-portfolio {
    background: linear-gradient(
            to right,
            #000000,
            rgba(0, 0, 0, 0.96) 48.85%,
            rgba(0, 0, 0, 0.44) 57.73%,
            rgba(0, 0, 0, 0) 76.91%
        ),
        url("../images/home/home1.png");
    background-position-x: right;
    mix-blend-mode: screen;
    background-size: contain;
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
}
.dropdown-submenu .submenu-content.menu-investors {
    background: linear-gradient(
            to right,
            #717171,
            rgba(151, 151, 151, 0.98) 65%,
            rgba(255, 255, 255, 0) 80%
        ),
        url("../images/menu/investors.png");
    background-position-x: right;
    mix-blend-mode: screen;
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
}
.dropdown-submenu .submenu-content.menu-industry {
    background: linear-gradient(
            to right,
            #000000,
            rgba(0, 0, 0, 0.96) 48.85%,
            rgba(0, 0, 0, 0.44) 57.73%,
            rgba(0, 0, 0, 0) 76.91%
        ),
        url("../images/menu/industry.png");
    background-position-x: right;
    mix-blend-mode: screen;
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
}
.dropdown-submenu .submenu-content.menu-contact {
    background: linear-gradient(
            to right,
            #a0a0a0 36.62%,
            rgba(160, 160, 160, 0.45) 46.25%,
            rgba(255, 255, 255, 0) 59.59%
        ),
        url("../images/menu/contact.webp");
    background-position-x: right;
    mix-blend-mode: screen;
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
}

.dropdown-submenu .submenu-content .submenu-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 340px;
}

.menu-info:hover ~ .dropdown-submenu {
    display: block;
    opacity: 1;
    transition: all 400ms ease;
}

.menu-company,
.menu-portfolio,
.menu-investors,
.menu-industry,
.menu-contact {
    display: none;
}

.menu-company:hover,
.menu-portfolio:hover,
.menu-investors:hover,
.menu-industry:hover,
.menu-contact:hover {
    display: block;
}

.item-company:hover ~ .dropdown-submenu .menu-company,
.dropdown-submenu .menu-company:hover {
    display: block;
}
.item-portfolio:hover ~ .dropdown-submenu .menu-portfolio,
.dropdown-submenu .menu-portfolio:hover {
    display: block;
}
.item-investors:hover ~ .dropdown-submenu .menu-investors,
.dropdown-submenu .menu-investors:hover {
    display: block;
}
.item-industry:hover ~ .dropdown-submenu .menu-industry,
.dropdown-submenu .menu-industry:hover {
    display: block;
}
.item-contact:hover ~ .dropdown-submenu .menu-contact,
.dropdown-submenu .menu-contact:hover {
    display: block;
}

.dropdown-submenu:hover {
    display: block;
    transition: all 400ms ease;
}

.dropdown-submenu .menu-title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    /* font-size: 28px; */
    font-size: 2.428em;
    /* line-height: 87.99%; */
    line-height: 1em;

    padding: 0 5px 0 0;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    left: 0px;
    margin-top: 0px;
    z-index: 3;
}

.dropdown-submenu .description {
    color: #a6a6a6;
    position: relative;
    z-index: 1;
    margin: 10px 0;
    z-index: 3;
}

.home {
    max-width: var(--content-max-menu);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.container-img {
    max-width: 310px;
    height: 210px;
    margin: 7px;
    z-index: 1;
}
.image-film {
    display: block;
    width: 100%;
    height: auto;
}
.overlay-content {
    position: absolute;
    color: #f1f1f1;
    width: 310px;
    height: 210px;
    transition: 0.5s ease;
    text-align: left;
    padding-left: 30px;
    color: white;
    text-transform: uppercase;
    z-index: 1;
}
.overlay-content.overlay-title {
    margin-top: -80px;
    font-size: 1.214em;
}
.overlay-content.overlay-subtitle {
    margin-top: -60px;
    font-size: 0.857em;
}
.hide-text {
    opacity: 0;
}

/* .container-img:hover .hide-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    margin-top: -210px;
    height: 210px;
    width: 310px;
    padding: 30px 50px 30px 50px;

    position: absolute;
    opacity: 1;
    font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
    background: rgb(235, 46, 44, 0.8);
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
} */

.container-img:hover .hide-text h5 {
    color: white;
    font-size: 1.5em;
}
.container-img:hover .hide-text a {
    color: white;
    font-size: 1em;
}

.menu .wrapper-links {
    margin: 20px 0px 0px 20px;
    display: grid;
    grid-template-columns: 270px 270px;
    z-index: 2;
}

.menu .wrapper-links .col-links {
    display: flex;
    flex-direction: column;
}

.menu .wrapper-links a {
    margin: 6px 0px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;

    color: #ffffff;
    z-index: 2;
}

.menu .wrapper-links a:hover,
.menu .wrapper-links a.active {
    color: #cd0000;
}

.menu .wrapper-links a i {
    font-size: 0.6em;
}

.container-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-image {
    max-height: 264px;
    max-width: 397px;
    border-radius: 0px;
}

.snake {
    margin: 11px;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    opacity: 0.9;
    background: linear-gradient(
        0deg,
        rgba(205, 0, 0, 0.63),
        rgba(205, 0, 0, 0.63)
    );
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.overlay .title {
    font-family: Montserrat;
    font-style: italic;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    text-align: center;
    padding: 31px 0px 0px 0px;
    width: 100%;
}

.overlay .description {
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    padding: 31px 50px 0px 50px;
    text-transform: lowercase;
    width: 100%;
}

.overlay .content-read-more {
    margin-top: 90px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.overlay .content-read-more a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-transform: lowercase;
    color: #ffffff;
    margin-right: 74px;
}

@media only screen and (max-width: 960px) {
    .main-generic-menu {
        /* max-width: var(--content-max-menu);
        width: auto; */
        display: none;
    }
    .main-menu {
        /* max-width: var(--content-max-menu);
        width: auto; */
        display: none;
    }
    .main-menu-top {
        /* max-width: var(--content-max-menu);
        width: auto; */
        /* display: none */
    }
    .container-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar-dark-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .container-images {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 540px) {
    .home-image {
        width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .navbar-dark-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 400px) {
    .navbar-dark-title {
        font-size: 14px;
    }
}

/************************************* Multi Proposal *************************************************/

.header-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 20px;
    height: 278px;
    max-width: var(--content-max-width);
    /* background-image: url("../images/aboutUs/menu-bg.webp"); */
    background: linear-gradient(
        180deg,
        #000000 30.58%,
        rgba(0, 0, 0, 0) 94.96%
    );
    background-size: cover;
    background-position: 100%;
}

.header-menu-container .title-film {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 39px;
    line-height: 49px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 44px;
}

.block-half-content {
    padding-left: 150px;
    background: transparent;
    position: absolute;
    z-index: 2;
    color: #ffffff;
    width: 50%;
}

.block-half-content2 {
    padding-left: 150px;
    background: transparent;
    z-index: 2;
    color: #000000;
    width: 50%;
}
.block-half-content2:nth-child(2) {
    margin-top: 80px;
}
.block-half-content2 .block-title {
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
    font-size: 2.429em;
    line-height: 1em;
    text-transform: uppercase;
    color: #000;
}
.block-half-content2 .block-description {
    font-family: "Lato", Arial, sans-serif;
    line-height: 1.5em;
    font-size: 1em;
    color: #000;
    margin: 24px 0px;
}
.content-learn-more {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #ffffff;
}
.content-learn-more a {
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
    margin-left: 10px;
}

.block-title-top {
    font-size: 1.429em;
    text-transform: uppercase;
    color: #a6a6a6;
    font-family: "Lato", Arial, sans-serif;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    /* margin-bottom: -50px; */
}
.block-title-top:after {
    content: "";
    height: 2px;
    width: 100px;
    background-color: #a6a6a6;
    display: inline-block;
    vertical-align: baseline;
    margin-left: 20px;
}
.block-margin-title-top {
    margin: 50px 0px;
}
.block-title {
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
    font-size: 2.429em;
    line-height: 1em;
    color: #ffffff;
    text-transform: uppercase;
    width: 320px;
    margin-top: 40px;
    z-index: 1;
}
.block-title2 {
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
    font-size: 2.429em;
    line-height: 1em;
    color: #eb2e2c;
    text-transform: uppercase;
    width: 320px;
    z-index: 1;
}
.block-description {
    font-weight: 500;
    width: 320px;
    z-index: 1;
    color: #ffffff;
}
.content-learn-more {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.content-learn-more a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    margin-left: 10px;
}
.img-square {
    margin-top: 40px;
    width: 480px;
    height: 315px;
}
.block-date {
    margin: 20px 0px 5px 0px;
    width: 100%;
    font-family: "Lato", Arial, sans-serif;
    font-size: 0.857em;
    line-height: 1.143em;
    color: #a6a6a6;
    text-transform: uppercase;
}
.opacity-dark-left:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 560px;
    background: linear-gradient(
        to right,
        #000000 30%,
        transparent 100%
    ) !important;
    z-index: 0;
}
.opacity-light-left:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 560px;
    background: linear-gradient(
        to right,
        #ffffff 30%,
        transparent 100%
    ) !important;
    z-index: 0;
}
.opacity-dark-top:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 560px;
    background: linear-gradient(
        to bottom,
        #000000 5%,
        transparent 100%
    ) !important;
    z-index: 0;
}

@media screen and (max-width: 767px) {
    .header-menu-container .title-film {
        font-family: Didot;
        font-style: normal;
        font-weight: normal;
        font-size: 28px;
        line-height: 49px;
        text-transform: uppercase;
        color: #ffffff;
        margin-bottom: 44px;
    }
}

/************************************* About Us *************************************************/

.about {
    padding-top: 80px;
    width: var(--content-max-width);
    background-color: #ffffff;
    margin-bottom: var(--margin-content-end);
}

.about .block1 {
    width: var(--content-max-width);
    height: 560px;
    background-image: url("../images/aboutUs/block2.webp");
    background-size: cover;
    background-position: 100%;
}
.about .block2 {
    width: var(--content-max-width);
    height: 560px;
    display: flex;
    flex-direction: row;
    justify-content: start;
}
.about .block3 {
    width: var(--content-max-width);
    height: 560px;
    background-image: url("../images/aboutUs/block3.webp");
    background-size: cover;
    background-position: 100%;
}
.about .block4 {
    width: var(--content-max-width);
    height: 560px;
    display: flex;
    flex-direction: row;
    justify-content: start;
}
.about .block5 {
    width: var(--content-max-width);
    height: 560px;
    background-image: url("../images/aboutUs/block4.webp");
    background-size: cover;
    background-position: 100%;
}

/************************************* Governance *************************************************/

.governance {
    padding-top: 80px;
    width: var(--content-max-width);
    background-color: #ffffff;
    margin-bottom: var(--margin-content-end);
}

.governance .block1 {
    width: var(--content-max-width);
    height: 560px;
    background-image: url("../images/governance/governance1.jpg");
    background-size: cover;
    background-position: 100%;
}

/************************************* Investors *************************************************/

.investors {
    padding-top: 80px;
    width: var(--content-max-width);
    /* background-color: #ffffff; */
    margin-bottom: var(--margin-content-end);
}

.investors .learn-more-margin {
    margin-top: 20px;
}

.investors .block-content-margin {
    margin-top: 60px;
}

.investors .block1 {
    width: var(--content-max-width);
    height: var(--height-block-content);
    background-image: url("../images/investors/investors1.webp");
    background-size: cover;
    background-position: 100%;
}
.investors .block-container {
    margin-top: 30px;
    width: var(--content-max-width);
    height: var(--height-block-content);
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 50%,
        #202020 50%,
        #202020 100%
    );
}
.investors .block2 {
    width: var(--content-max-width);
    height: var(--height-block-content);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.investors .img-block-cover {
    width: 574px;
    height: 160px;
    background-image: url("../images/investors/investors1.webp");
    background-size: cover;
    background-position: 100%;
}
.investors .col-right-dark {
    height: var(--height-block-content);
    width: 336px;
    /* width: 35%; */
    padding: 0 0 50px 50px;
    background: #202020;
}
.investors .col-left-light {
    width: 624px;
    height: var(--height-block-content);
    color: #000000;
    background-color: #ffffff;
    padding-right: 40px;
}
.investors .borsaValues .borsaRow {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.investors .borsaValues .borsaBlk {
    width: auto;
    margin: 0 25px 0 0;
}
.investors .borsaValues .borsaValues {
    position: relative;
    float: left;
    width: 100%;
    font-family: "Lato", Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}
.investors .borsaValues .titoloB {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.063em;
    line-height: 26px;
    color: #cdcdcd;
    margin-right: 5px;
}
.investors .borsaValues .titoloB.titolo-nyse {
    cursor: pointer;
}
.investors .borsaValues .titoloB:active {
    color: #a6a6a6;
}
.investors .borsaValues .valutaB {
    font-size: 0.688em;
}
.investors .borsaValues .valueBig {
    font-size: 1.5em;
}
.investors .borsaValues .deltaB {
    font-size: 1.125em;
}
.investors .borsaValues .valueMedium {
    font-size: 1.25em;
}
.investors .borsaValues .dividerB {
    width: 16px;
    height: 28px;
    background: url("../images/investors/investor_divider.png") no-repeat 50%
        100%;

    display: inline-block;
    line-height: 26px;
    color: #202020;
    margin: 0;
    padding: 10px 20px 0 0;
    border-top: 2px solid #ffffff;
}
.investors .borsaValues .noteB {
    font-size: 0.438em;
}
.investors .noteB {
    display: inline-block;
    line-height: 26px;
    color: #202020;
    margin: 0;
    padding: 20px 10px 0 0;
    border-top: 2px solid #ffffff;
}

.investors .link-btn-border {
    margin-top: 20px;
    color: #000000;
    text-transform: uppercase;
}

.link-btn-border:hover {
    background-color: #000000;
    color: #ffffff;
}

.link-btn-border,
.link-btna-border a {
    position: relative;
    outline: none;
    overflow: hidden;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    border: 1px solid #000;
    line-height: 14px;
    padding: 17px 20px;
    z-index: 1;
    box-sizing: border-box;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0;
}

/************************************* Header Details *************************************************/

.treatments {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #ffffff;
}

.treatments .header-details {
    max-width: var(--content-max-width);
    width: 100%;
    min-height: 202px;
}

.treatments .container-left {
    max-width: 586px;
    min-height: 202px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.21);
    display: flex;
    justify-content: space-between;
}

.treatments .closebtn {
    height: 75px;
    width: 75px;
    margin-top: 57px;
    margin-left: 81px;
    border-radius: 50%;
    border: 0.759036px solid #cd0000;
    display: flex;
    justify-content: center;
}

.treatments .home-link {
    width: 54px;
    height: 24px;
    margin-top: 127px;
    margin-left: 95px;
    color: #cd0000;
    text-align: center;
}

.treatments .container-left .container-titles {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.treatments .title-top {
    margin-top: 125px;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    text-transform: capitalize;
    color: #cd0000;
}

.treatments .title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    text-align: left;
    text-transform: uppercase;
    color: #000000;
    position: absolute;
    margin: 155px 20px 20px 0px;
}

.treatments .content-details {
    max-width: var(--content-max-width);
    width: 100%;
    /* min-height: 919px; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.treatments .content-details .title-detail {
    margin-top: 19px;
}

.treatments .content-details .content-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 220px;
    min-height: 853px;
    height: 100%;
    padding-bottom: 20px;
    margin-left: 100px;
}
.treatments .content-details .content-left .container-titles-roles {
    margin: 20px 0px;
    width: 100%;
}
.treatments .content-details .content-left .title-role {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-align: justify;
    text-transform: uppercase;
    color: #000000;
}
.treatments .content-details .content-left .role-name {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 24.0178px;
    line-height: 87.99%;
    text-align: justify;
    text-transform: uppercase;
    color: #cd0000;
    margin-left: 70px;
    margin-bottom: 41px;
}
.treatments .content-details .content-left .role-name:last-child {
    margin-bottom: 0px;
}

.treatments .content-details .content-left .wrapper-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.treatments .content-details .content-left .wrapper-links a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
}

.treatments .content-details .content-left .wrapper-links a.active,
.treatments .content-details .content-left .wrapper-links a:hover {
    color: #cd0000;
}

.treatments .content-details .content-left .short-description {
    max-width: 364px;
    font-weight: 600;
    text-transform: uppercase;
}

.treatments .content-details .content-right {
    margin: 33px 103px 33px 0px;
    padding-right: 62px;
}

.treatments .content-details .text {
    margin: 0px;
    max-width: 746px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.treatments .content-details .text:nth-child(2) {
    margin-left: 231px;
    max-width: 515px;
}

.treatments .content-details .img-synopsis {
    position: absolute;
    margin-top: 170px;
    max-width: 609px;
    height: 408px;
    transition: all 0.5s ease;
}

.treatments .content-details .img-synopsis2 {
    display: none;
    max-width: 609px;
    width: 100%;
    height: 408px;
    transition: all 0.5s ease;
    margin-bottom: 20px;
}

.treatments .content-details .square-details {
    margin-top: 65px;
    max-width: 746px;
    display: grid;
    grid-template-columns: fit-content(120px) fit-content(640px);
}

.treatments .content-details .square-details h5 {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 87.99%;
    text-align: justify;
    text-transform: uppercase;
    color: #000000;
    margin-right: 5px;
}

.treatments .content-details .square-details p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.treatments .content-details .project-details {
    max-width: 471px;
    margin-top: 45px;
    text-transform: uppercase;
}

.treatments .content-details .project-details .project-container {
    display: grid;
    grid-template-columns: minmax(auto, 183px) fit-content(287px);
    grid-row-gap: 20px;
    margin: 20px 0px;
}
.treatments .content-details .project-details h4 {
    font-size: 16px;
    font-weight: 600;
}
.treatments .content-details .project-details h5 {
    font-size: 14px;
    font-weight: 600;
}
.treatments .content-details .project-details p {
    margin: 0px;
}
.treatments .content-details .project-details span {
    font-weight: 600;
}

.treatments .content-details .content-right .container-actor {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.treatments .content-details .content-right .img-actor {
    max-width: 228px;
    max-height: 258px;
}
.treatments .content-details .content-right .actor-name {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
    margin-left: 31px;
}

.treatments .content-details .content-right .actor-description {
    max-width: 494px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
    margin-left: 31px;
}

.treatments .content-details .content-right .container-cover-images {
    margin-top: 43px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.treatments .content-details .content-right .container-cover-images div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.treatments .content-details .content-right .container-cover-images .img-cover {
    max-width: 220px;
    height: 273px;
    width: 100%;
    background: linear-gradient(
            89.31deg,
            rgba(0, 0, 0, 0.89) 0.87%,
            rgba(23, 23, 23, 0.72) 16.05%,
            rgba(255, 255, 255, 0) 99.69%
        ),
        url("../images/treatments/cover1.png");
}

.treatments .content-details .content-right .container-cover-images .img-title {
    font-family: Montserrat;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: justify;
    text-transform: uppercase;
    color: #000000;
    margin-top: 14px;
}

.treatments .content-details .content-right .title-reference {
    margin-top: 46px;
    font-size: 14px;
    font-weight: 600;
}

.treatments .content-details .content-right .text-reference {
    max-width: 471px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 18px;
}

.treatments .content-details .content-right .container-cover-images .img-price {
    margin-top: 11px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-align: justify;
    text-transform: uppercase;
    color: #000000;
}

@media screen and (max-width: 1420px) {
    .treatments .content-details .img-synopsis {
        position: absolute;
        margin-top: 170px;
        max-width: 509px;
        height: 408px;
    }
}

@media screen and (max-width: 1340px) {
    .treatments .content-details .img-synopsis {
        display: none;
    }
    .treatments .content-details .img-synopsis2 {
        display: flex;
        height: auto;
    }
    .treatments .content-details .text:nth-child(2) {
        margin-left: 0px;
        max-width: 746px;
    }
    .treatments .content-details .content-left {
        margin: 0px;
    }
    .treatments .content-details .content-right {
        margin: 20px 0px;
    }
}
@media screen and (max-width: 1080px) {
    .treatments .content-details .content-right .container-cover-images {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 1012px) {
    .treatments .container-left {
        justify-content: flex-start;
    }
    .treatments .title-top {
        margin-left: 60px;
    }
    .treatments .title {
        margin-left: 60px;
    }
}

@media screen and (max-width: 900px) {
    .treatments .title-top {
        /* margin-left: -345px; */
        font-size: 20px;
    }
    .treatments .title {
        /* margin-left: -345px; */
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .treatments .container-left {
        justify-content: space-between;
    }
    .treatments .content-details .content-left {
        min-height: auto;
    }
    .treatments .content-details .content-right {
        padding-right: 30px;
    }
    .treatments .title-top {
        font-size: 18px;
        margin-left: 0px;
    }
    .treatments .title {
        position: relative;
        margin: 0px;
        font-size: 20px;
        line-height: 30px;
        margin-left: 0px;
    }
    .treatments .content-details .content-right .container-actor {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .treatments .content-details .content-right .actor-name {
        margin-top: 10px;
        margin-left: 0px;
    }
    .treatments .content-details .content-right .actor-description {
        margin-left: 0px;
    }
    .treatments .content-details .content-right .container-cover-images {
        grid-template-columns: 1fr;
    }
    .treatments .content-details #scroll-1 {
        overflow-y: auto;
    }
}

@media screen and (max-width: 600px) {
    .treatments .content-details .content-right {
        padding-right: 0px;
    }
    .treatments .closebtn {
        margin-left: 20px;
    }
    .treatments .home-link {
        margin-left: 34px;
    }
    .treatments .content-details .content-right .actor-description {
        max-width: 100%;
    }
    .treatments .content-details .content-left .title-role {
        text-align: center;
    }
    .treatments .content-details .content-left .role-name {
        margin-left: 0px;
        text-align: center;
    }
    .treatments .content-details .title-detail {
        text-align: center;
        margin: 0px;
        margin-top: 10px;
        width: 100%;
    }
    .treatments .content-details .text {
        margin-top: 0px;
        padding-top: 0px;
    }
    .treatments .content-details .content-left {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .treatments .content-details .content-left .wrapper-links {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .treatments .content-details .content-left {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .treatments .content-details {
        flex-direction: column;
    }
    .treatments .content-details .content-left .short-description {
        max-width: 100%;
    }

}

@media screen and (max-width: 500px) {
    .treatments .title-top {
        margin-top: 60px;
    }
    .treatments .container-titles {
        padding-left: 20px;
    }
    .treatments .content-details .title-detail {
        text-align: center;
        margin: 0px;
        margin-top: 10px;
        width: 100%;
    }
    .treatments .content-details .text {
        margin-top: 0px;
        padding-top: 0px;
    }
    .treatments .content-details .content-left {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .treatments .content-details .content-left .wrapper-links {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .treatments .content-details .content-left {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .treatments .content-details {
        flex-direction: column;
    }
    .treatments .content-details .content-left .short-description {
        max-width: 100%;
    }
}

/************************************* Login *********************************************************/

.login {
    background: #ffffff;
    height: 900px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.login .container-content {
    max-width: var(--content-max-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.login .img-login {
    margin-top: 60px;
    max-width: 287.22px;
    max-height: 266.88px;
}
.login .login-title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-transform: uppercase;
}
.login .login-text {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-transform: uppercase;
    color: #000000;
    margin: 56px 0px 38px 0px;
}
.login .form-login {
    max-width: 851px;
    width: 100%;
}
.login .form-login form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.login .form-login input {
    max-width: 394px;
    width: 100%;
    height: 37px;
    background: #e7e7e7;
    border: 1px solid #9d9d9d;
    box-sizing: border-box;
    padding: 10px 7px;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #9d9d9d;
}
.login .form-login .btn-link {
    margin-top: 40px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline !important;
    text-transform: capitalize;
    color: #000000;
}
.login .form-login .link-register {
    margin-left: 23px;
}
.login .form-col {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.login .form-col:nth-child(2n) {
    justify-content: flex-start;
}
.login .form-col:nth-child(2n + 1) {
    justify-content: flex-end;
}
.login .form-login .btn-login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    background: #cd0000;
    border: none;
    margin-top: 30px;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .login {
        height: auto;
        padding: 30px 0px 60px 0px;
    }
    .login .img-login {
        margin-top: 0px;
    }
    .login .form-login {
        max-width: 100%;
        margin: 0px;
    }
    .login .login-title {
        text-align: center;
    }
    .login .login-text {
        margin-top: 30px;
        text-align: center;
    }
    .login .form-login .btn-link {
        margin-top: 20px;
    }
    .login .form-login input {
        max-width: 100%;
        margin: 0px 0px 20px 0px;
    }
    .login .form-login form {
        grid-template-columns: 1fr;
    }
}

/************************************* Register *********************************************************/

.register {
    min-height: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.register .register-col {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.register .register-col:nth-child(1) {
    background-color: #000000;
}
.register .register-col:nth-child(2) {
    background: url("../images/register/bg-login.png");
    background-size: cover;
    background-position: 50% 50%;
    justify-content: center;
}
.register .register-col .title-film {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 27px;
    margin: 0 auto;
}

.register .register-col .img-register {
    max-width: 681.12px;
    width: 100%;
    margin: 0 auto;
    /* background-color: red; */
}

.register .register-col .description {
    margin-top: -40px;
    max-width: 446px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
    margin: 0 auto;
}

.register .register-col .container-form-register {
    margin: 0 auto;
    max-width: 603px;
    min-height: 692px;
    width: 100%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}

.register .register-col .container-form-register .title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-transform: uppercase;
    color: #000000;
    margin-top: 66px;
}

.register .register-col .container-form-register .container-fields {
    max-width: 394px;
    width: 100%;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.register .register-col .container-form-register .container-fields input {
    width: 100%;
    height: 37px;
    background: #e7e7e7;
    border: 1px solid #9d9d9d;
    box-sizing: border-box;
    padding: 10px 7px;
    margin-bottom: 15px;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #9d9d9d;
}

.register
    .register-col
    .container-form-register
    .container-fields
    .btn-account {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    background: #cd0000;
    border: none;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #ffffff;
}

.register .register-col .container-form-register .container-description {
    margin-top: 15px;
    max-width: 439px;
}

@media screen and (max-width: 767px) {
    .register {
        grid-template-columns: 1fr;
    }
    .register .register-col {
        padding: 20px 0px;
    }
    .register .register-col .container-form-register .container-fields {
        margin-top: 80px;
    }
    .register
        .register-col
        .container-form-register
        .container-fields
        .btn-account {
        margin: 20px 0px;
    }
    .register .register-col .description {
        margin-top: 0px;
        max-width: 100%;
    }
}

/************************************* Contact *********************************************************/

.contact {
    background: #ffffff;
}

.contact .header-contact {
    width: 100%;
    height: 282px;
    background: url("../images/contact/contact.png");
    background-size: cover;
    background-position: 50% 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .header-contact .header-contact-content {
    max-width: 1080px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact .header-contact .header-contact-content .header-col:nth-child(2) {
    padding-left: 129px;
}

.contact .header-contact .header-contact-content .title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact .header-contact .header-contact-content .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
}

.contact .content-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contact .contact-body {
    max-width: var(--content-max-width);
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0px, 370px) minmax(0px, 800px);
    min-height: 1800px;
    padding-bottom: 20px;
}

.contact .contact-body .content-left {
    padding-left: 128px;
}

.contact .contact-body .content-left .back {
    margin-top: 27px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #000000;
}

.contact .contact-body .content-left .wrapper-links {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact .contact-body .content-left .wrapper-links a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 23px;
}
.contact .contact-body .content-left .wrapper-links a.active,
.contact .contact-body .content-left .wrapper-links a:hover {
    color: #cd0000;
}

.contact .contact-body .content-right .title {
    padding: 98px 0px 62px 0px;
    text-transform: uppercase;
}
.contact .contact-body .content-right .arrow-bottom {
    margin-bottom: 5px;
}
.contact .contact-body .content-right .divider {
    border-bottom: 1px solid #000000;
}

.contact .contact-body .content-right .content-desciption {
    margin-top: 178px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.contact .contact-body .content-right .content-desciption img {
    max-width: 382px;
    height: 249px;
    margin-right: 27px;
    margin-top: 10px;
}
.contact .contact-body .content-right .content-desciption .title-description {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    text-transform: uppercase;
    color: #000000;
}
.contact .contact-body .content-right .content-desciption .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.contact .contact-body .content-right .container-send-message {
    margin-top: 145px;
    width: 100%;
}

.contact .contact-body .content-right .container-send-message .title-message {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    text-transform: uppercase;
    color: #cd0000;
    text-align: center;
}

.contact .contact-body .content-right .container-send-message form {
    margin-top: 30px;
    width: 100%;
}

.contact .contact-body .content-right .container-send-message form .col-336 {
    max-width: 336px;
    width: 100%;
}

.contact .contact-body .content-right .container-send-message form input {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
    padding: 8px 5px;
    border: none;
    outline: none;
    width: 100%;
    border-bottom: 1px solid #000000;
    margin-bottom: 30px;
}

.contact .contact-body .content-right .container-send-message form .lb-message {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    /* color: #000000; */
    color: #757575;
    padding: 8px 5px;
}

.contact
    .contact-body
    .content-right
    .container-send-message
    form
    .input-message {
    border: 1px solid #000000;
    box-sizing: border-box;
    width: 100%;
    height: 182px;
    padding: 8px 5px;
    font-size: 14px;
    line-height: 17px;
}

.contact .contact-body .content-right .container-send-message form .btn-send {
    border: none;
    outline: none;
    background-color: transparent;
    margin-top: 34px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
}

@media screen and (max-width: 1200px) {
    .contact .contact-body {
        grid-template-columns: minmax(0px, 150px) minmax(0px, 800px);
        justify-content: center;
    }
    .contact .contact-body .content-left {
        padding-left: 0px;
    }
}

@media screen and (max-width: 1080px) {
    .contact .header-contact {
        height: auto;
        padding: 20px 0px;
    }
    .contact .header-contact .header-contact-content {
        max-width: 411px;
        grid-template-columns: 1fr;
    }
    .contact .header-contact .header-contact-content .header-col:nth-child(2) {
        padding-left: 0px;
    }
}

@media screen and (max-width: 992px) {
    .contact .contact-body .content-right .content-desciption {
        margin-top: 20px;
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .contact .contact-body {
        min-height: auto;
        grid-template-columns: 1fr;
    }
    .contact .contact-body .content-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0px;
        padding: 0px;
    }
    .contact .contact-body .content-left .wrapper-links {
        margin-top: 30px;
    }
    .contact .contact-body .content-left .wrapper-links a {
        text-align: center;
    }
    .contact .contact-body .content-right .title {
        padding: 20px 0px 5px 0px;
        text-transform: uppercase;
    }
    .contact .contact-body .content-right .container-send-message {
        margin-top: 40px;
    }
    .contact .contact-body .content-right .content-desciption {
        margin-top: 40px;
    }
    .contact .contact-body .content-right .content-desciption img {
        width: 100%;
        height: auto;
        margin-right: 0px;
    }
    .contact
        .contact-body
        .content-right
        .container-send-message
        .title-message {
        font-size: 28px;
    }
}

/************************************* Company *********************************************************/

.company {
    margin: 0 auto;
    max-width: var(--content-max-width);
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-content {
    max-width: var(--content-main-view);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.company .description {
    margin-top: 20px;
    max-width: 565px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-align: justify;
    text-transform: capitalize;
    color: #454545;
}

.company .btn-read-more {
    max-width: 114px;
    margin-top: 23px;
    padding: 10px;
    background: #cd0000;
    border: none;
    text-decoration: none;

    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #ffffff;
}

.company .title-company {
    margin: 200px 0px 90px 0px;
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
}

.company .container-row-company {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 60px 0px;
}

.company .container-row-company .img-left-company {
    max-width: 486px;
    width: 100%;
    height: 273px;
    background: #c4c4c4;
}

.company .container-row-company .container-description {
    max-width: 453px;
    width: 100%;
    display: grid;
}

.company .container-row-company .container-description .title-description {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    text-transform: uppercase;
    color: #000000;
}

.company .container-row-company .container-description .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.company .container-row-company .container-description .link-learn-more {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
}

.company-bg-middle {
    width: 100%;
    height: 512px;
    background: url("../images/company/bg-middle.png");
    background-size: cover;
    background-position: 50% 50%;
}

.company-bg-middle .company-content {
    background: transparent;
}

.company-bg-middle .title {
    margin-top: 124px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-align: justify;
    color: #ffffff;
}

.company-bg-middle .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #ffffff;
}

.company .grid-final {
    width: 100%;
    height: 556px;
    background: url("../images/company/bg-final2.png"),
        url("../images/company/bg-final1.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 50% 100%, 50% 100%;
    background-position: 100% 50%, 0% 50%;
}

.company .grid-final .company-content {
    padding-top: 115px;
    max-width: var(--content-main-view);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin: 0 auto;
}

.company .grid-final .company-content .title {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-align: justify;
    color: #ffffff;
}

.company .grid-final .company-content .description {
    max-width: 493px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-align: justify;
    color: #ffffff;
}

.company .grid-final .company-content .description2 {
    max-width: 493px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-align: justify;
    color: #ffffff;
}

.company .grid-final .company-content .btn-read-more {
    max-width: 150px;
}

@media screen and (max-width: 767px) {
    .company .title-company {
        margin: 30px 0px 10px 0px;
    }
    .company .container-row-company {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .company .container-row-company {
        margin: 30px 0px;
    }
    .company .grid-final {
        background: transparent;
        height: auto;
    }
    .company .grid-final .company-content {
        padding-top: 0px;
        grid-template-columns: 1fr;
    }
    .company .grid-final .company-content .col1 {
        width: 100%;
        height: 556px;
        background: url("../images/company/bg-final2.png");
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
    .company .grid-final .company-content .col2 {
        width: 100%;
        height: 556px;
        background: url("../images/company/bg-final1.png");
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
}

/************************************* Sidenav *********************************************************/

.sidenav .content-left {
    padding-top: 112px;
    max-width: 341px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidenav .content-left .img-sidenav-logo {
    max-width: 274px;
    width: 100%;
    max-height: 309px;
    margin: 0 auto;
}

.sidenav .content-left .sidenav-title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000000;
}
.sidenav .content-left .wrapper-links {
    margin-top: 47px;
    border-top: 1px solid #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.sidenav .content-left .wrapper-links a {
    padding: 26px 0px;
    border-bottom: 1px solid #000000;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
}

.sidenav .content-left .wrapper-links a.active,
.sidenav .content-left .wrapper-links a:hover {
    color: #cd0000;
}

@media screen and (max-width: 767px) {
    .sidenav .content-left .sidenav-title {
        text-align: center;
    }
    .sidenav .content-left {
        max-width: 100%;
        padding-top: 20px;
    }
}

/************************************* Executy Summary *********************************************************/

.mainview {
    margin: 0 auto;
    max-width: var(--content-max-width);
    width: 100%;
    background-color: #ffffff;

    display: grid;
    grid-template-columns: minmax(0px, 420px) minmax(0px, 918px);
    justify-content: space-between;
    padding: 0px 100px;
    padding-bottom: 40px;
}

.mainview .content-right {
    padding-top: 142px;
}

.mainview .content-right .mini-title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
}

.mainview .content-right .title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    text-transform: uppercase;
    color: #cd0000;
}

.mainview .content-right .title2 {
    margin-top: 60px;
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-transform: uppercase;
    color: #000000;
}

.mainview .content-right .mainview-row-container {
    margin: 41px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mainview .content-right .mainview-row-container .mainview-img {
    max-width: 395px;
    width: 100%;
    max-height: 200px;
}

.mainview .content-right .mainview-row-container .container-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mainview .content-right .mainview-row-container .container-content .title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 24px;
}

.mainview
    .content-right
    .mainview-row-container
    .container-content
    .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.mainview
    .content-right
    .mainview-row-container
    .container-content:nth-child(2n) {
    padding-left: 33px;
}
.mainview
    .content-right
    .mainview-row-container
    .container-content:nth-child(2n + 1) {
    padding-right: 33px;
}
.mainview .content-right .container-percentages {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 195px));
    justify-content: space-between;
}
.mainview .content-right .container-percentages .container-values {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 280px;
    padding: 0px 10px;
}

.mainview .content-right .container-percentages .container-values .value {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: bold;
    font-size: 64px;
    line-height: 74px;
    text-transform: capitalize;
    color: #000000;
}

.mainview .content-right .container-percentages .container-values p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.mainview .content-right .container-titles-header2 {
    padding-left: 40px;
    border-left: 4px solid #cd0000;
}

.mainview .content-right .header2-mini-title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
}

.mainview .content-right .header2-title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 59px;
    text-transform: capitalize;
    color: #cd0000;
}

.mainview .content-right .header2-title-description {
    max-width: 578px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-transform: capitalize;
    color: #000000;
}

.mainview .content-right .content2-description {
    max-width: 764px;
    margin-top: 64px;
    padding-left: 40px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
.mainview .content-right .content2-description-normal {
    max-width: 764px;
    margin-top: 20px;
    padding-left: 40px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
.mainview .content-right .content2-analysl-title2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #cd0000;
}

.mainview .content-right .content2-analysl-title3 {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
}

.mainview .content-right .content2-border-left {
    margin: 10px 25px 0px 0px;
    max-width: 75.69px;
    width: 100%;
    height: 2px;
    background: #cd0000;
}

@media screen and (max-width: 1200px) {
    .mainview {
        padding: 0px;
        padding-bottom: 40px;
        grid-template-columns: minmax(0px, 250px) minmax(0px, 100%);
        justify-content: flex-start;
    }
    .mainview .content-right .container-percentages .container-values {
        min-height: 200px;
    }
    .mainview .content-right .container-percentages .container-values .value {
        font-size: 40px;
    }
}
@media screen and (max-width: 992px) {
    .mainview {
        padding: 0px;
        padding-bottom: 40px;
    }
    .mainview .content-right .mainview-row-container {
        flex-direction: column;
    }
    .mainview
        .content-right
        .mainview-row-container
        .container-content:nth-child(2n) {
        padding-left: 0px;
    }
    .mainview
        .content-right
        .mainview-row-container
        .container-content:nth-child(2n + 1) {
        padding-right: 0px;
    }
    .mainview .content-right .mainview-row-container .mainview-img {
        order: 2;
    }
}
@media screen and (max-width: 767px) {
    .mainview {
        grid-template-columns: 1fr;
    }

    .mainview .content-right .container-percentages {
        grid-template-columns: 1fr;
    }
    .mainview .content-right .title {
        font-size: 22px;
    }
    .mainview .content-right .title2 {
        margin-top: 60px;
        font-size: 22px;
    }
    .mainview .content-right .container-percentages .container-values .value {
        font-size: 40px;
    }
    .mainview .content-right .container-percentages .container-values {
        min-height: auto;
    }
    .mainview .content-right {
        padding-top: 40px;
    }
    .mainview .content-right .container-titles-header2 {
        padding-left: 10px;
    }
    .mainview .content-right .header2-title {
        font-size: 25px;
    }
    .mainview .content-right .header2-title-description {
        font-size: 16px;
    }
    .mainview .content-right .content2-description {
        padding: 0px;
        width: 100%;
    }
    .mainview .content-right .content2-description-normal {
        padding: 0px;
        width: 100%;
    }
    .mainview .content-right .content2-border-left {
        max-width: 25.69px;
    }
}

/************************************* About Us *********************************************************/
.mainview .content-right .container-testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
}

.mainview .content-right .container-testimonial .content-testimonial {
    max-width: 614px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.mainview .content-right .container-testimonial .testimonial {
    font-family: Times New Roman;
    font-style: italic;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-align: justify;
    color: #000000;
}

.mainview .content-right .container-testimonial .person {
    font-family: Times New Roman;
    font-style: italic;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-align: justify;
    color: #000000;
}

.mainview .content-right .subtitle {
    margin-top: 35px;
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 87.99%;
    text-transform: uppercase;
    color: #cd0000;
}

.mainview .content-right .margin-mission {
    margin-top: 230px;
}

.mainview .content-right .container-mission {
    position: absolute;
    max-width: 905px;
    background: rgba(69, 69, 69, 0.11);
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
    padding: 55px;
}

.mainview .content-right .about-row-content {
    margin: 30px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mainview .content-right .about-row-content .img-about {
    max-width: 315px;
    max-height: 200px;
}

.mainview .content-right .about-row-content .content-about-data {
    max-width: 453px;
    width: 100%;
    padding-left: 51px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mainview .content-right .about-row-content .content-about-data .title {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
    .mainview .content-right .container-mission {
        position: relative;
        padding: 20px;
    }
    .margin-mission {
        margin-top: 20px !important;
    }
    .mainview .content-right .container-testimonial .testimonial {
        font-size: 22px;
    }
    .mainview .content-right .container-testimonial .person {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .mainview .content-right .container-mission {
        padding: 10px;
    }
    .mainview .content-right .about-row-content .content-about-data {
        padding-left: 10px;
    }
    .mainview .content-right .about-row-content {
        margin: 30px 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .mainview .content-right .about-row-content .img-about {
        order: 2;
    }
    .mainview .content-right .container-testimonial .testimonial {
        max-width: 100%;
    }
    .mainview .content-right .about-row-content .content-about-data {
        max-width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .mainview .content-right .about-row-content .img-about {
        width: 100%;
        max-width: 100%;
    }
}

/************************************* Team 1 *********************************************************/

.mainview .content-right .team-divider {
    border-bottom: 1px solid #000000;
}

.mainview .content-right .team-row-container {
    min-height: 331px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0px;
    border-bottom: 1px solid #000000;
}

.mainview .content-right .team-row-container .team-name {
    font-family: Montserrat;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #000000;
}

.mainview .content-right .team-row-container .employee-position {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #000000;
}

.mainview .content-right .team-row-container .team-img {
    max-height: 200px;
    max-width: 247px;
    margin-bottom: 10px;
}

.mainview .content-right .team-row-container .team-container-description {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.mainview
    .content-right
    .team-row-container
    .team-container-description
    .description {
    padding-left: 33px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.mainview .content-right .team-row-container .team-full-content {
    max-width: 650px;
    display: none;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
    transition: all 2.8 ease;
}

.mainview
    .content-right
    .team-row-container
    .team-container-description
    .col-description {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mainview .content-right .team-row-container .container-more {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.mainview .content-right .team-row-container .team-read-more {
    max-width: 650px;
    margin-top: 0px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
    text-align: right;
}

.mainview .content-right .team-row-container .more1 {
    display: block;
}
.mainview .content-right .team-row-container .more2 {
    display: none;
}

/* .mainview .content-right .team-row-container .team-container-description .col-description .link-read-more:hover{
    color: #cd0000;
} */

@media screen and (max-width: 767px) {
    .mainview .content-right .team-row-container .team-container-description {
        flex-direction: column;
    }
    .mainview .content-right .team-row-container .team-read-more {
        max-width: 650px;
        width: 100%;
        margin-top: 0px;
        position: relative;
    }
    .mainview
        .content-right
        .team-row-container
        .team-container-description
        .col-description {
        width: 100%;
        max-width: 100%;
    }
    .mainview
        .content-right
        .team-row-container
        .team-container-description
        .description {
        padding: 15px 0px 0px 0px;
    }
}

/************************************* Press *********************************************************/

.mainview .content-right .container-headline {
    max-width: 690px;
    width: 100%;
    padding: 20px 0px;
    border-top: 1px solid #000000;
}

.mainview .content-right .container-headline .title-headline {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
}

.mainview .content-right .container-headline .title-headline2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: capitalize;
    color: #000000;
}

.mainview .content-right .container-headline .title-headline2 .author-date {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.mainview .content-right .container-headline .description {
    margin-top: 20px;
}

.mainview .content-right .container-headline .container-buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mainview .content-right .container-headline .container-buttons button {
    border: none;
    outline: none;
    background-color: transparent;
}

/************************************* Company *********************************************************/

.investors {
    margin: 0 auto;
    max-width: var(--content-max-width);
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}

.investors .presentation {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.19) 0%, #000000 89.4%),
        url("../images/investors/bg-investors.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    min-height: 382px;
    color: #ffffff;
}

.investors .presentation .investors-content {
    align-items: flex-start;
}

.investors .presentation .investors-content .title {
    margin-top: 40px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-align: justify;
    color: #ffffff;
}

.investors .presentation .investors-content .description {
    max-width: 493px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-align: justify;
    text-transform: capitalize;
    color: #ffffff;
}

.investors .first-container {
    max-width: var(--content-main-view);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 444px;
    padding: 45px 0px;
}

.investors .first-container:nth-child(2n) .container-description {
    order: 2;
    padding-left: 20px;
    padding-right: 0px;
}

.investors .first-container:nth-child(2n) .square-fdg-diffrence {
    order: 1;
}

.investors .first-container .square-fdg-diffrence {
    background: #c4c4c4;
    max-width: 373px;
    width: 100%;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.investors .first-container .square-fdg-diffrence .title {
    margin: 17px 0px 7px 0px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
}

.investors .first-container .square-fdg-diffrence .description {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: justify;
    color: #000000;
}

.investors .first-container .container-description {
    padding: 0px 20px;
    max-width: 751px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.investors .first-container .container-description .title {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
}

.investors .first-container .container-description .description {
    margin-top: 20px;
    max-width: 719px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: justify;
    color: #000000;
}

.investors .first-container .container-description .link-learn-more {
    margin-top: 45px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #000000;
}

.investors-content {
    max-width: var(--content-main-view);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.investors .container-row-investors {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 60px 0px;
}

.investors .container-row-investors .img-left-investors {
    max-width: 486px;
    max-height: 318px;
    width: 100%;
    background: #c4c4c4;
}

.investors .container-row-investors .container-description {
    max-width: 472px;
    width: 100%;
    display: grid;
    /* padding-left: 20px; */
}

.investors .container-row-investors .container-description .title-description {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
}

.investors .container-row-investors .container-description .description {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: justify;
    color: #000000;
}

.investors .container-row-investors .container-description .link-learn-more {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #000000;
}

.investors-bg-middle {
    width: 100%;
    height: 512px;
    background: url("../images/company/bg-middle.png");
    background-size: cover;
    background-position: 50% 50%;
}

.investors-bg-middle .investors-content {
    max-width: var(--content-main-view);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

.investors-bg-middle .investors-content .simple-container {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.investors-bg-middle .investors-content .simple-container .title {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-align: justify;
    color: #ffffff;
}

.investors-bg-middle .investors-content .simple-container .description {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-align: justify;
    color: #ffffff;
}

.investors-bg-middle .investors-content .btn-read-more {
    color: #ffffff;
}

.investors-bg-middle .investors-content {
    background: transparent;
}

.investors-bg-middle .title {
    margin-top: 124px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-align: justify;
    color: #ffffff;
}

.investors-bg-middle .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #ffffff;
}

.investors .grid-final {
    width: 100%;
    height: 556px;
    background: url("../images/company/bg-final2.png"),
        url("../images/company/bg-final1.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 50% 100%, 50% 100%;
    background-position: 100% 50%, 0% 50%;
}

.investors .grid-final .investors-content {
    padding-top: 115px;
    max-width: var(--content-main-view);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin: 0 auto;
}

.investors .grid-final .investors-content .title {
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 41px;
    text-align: justify;
    color: #ffffff;
}

.investors .grid-final .investors-content .description {
    max-width: 493px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-align: justify;
    color: #ffffff;
}

.investors .grid-final .investors-content .description2 {
    max-width: 493px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-align: justify;
    color: #ffffff;
}

.investors .grid-final .investors-content .btn-read-more {
    max-width: 150px;
}

@media screen and (max-width: 1020px) {
    .investors .container-row-investors .container-description {
        padding-left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .investors .presentation {
        padding: 20px 0px;
    }
    .investors .presentation .investors-content .title {
        font-size: 30px;
    }
    .investors .presentation .investors-content .description {
        max-width: 100%;
        font-size: 16px;
    }
    .investors .first-container {
        flex-direction: column;
    }
    .investors .first-container .container-description {
        padding: 20px 0px;
        order: 1;
    }
    .investors .first-container .square-fdg-diffrence {
        order: 2 !important;
        max-width: 100%;
    }
    .investors-bg-middle .investors-content {
        grid-template-columns: 1fr;
    }
    .investors .container-row-investors {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .investors .container-row-investors {
        margin: 30px 0px;
    }
    .investors .container-row-investors .container-description {
        max-width: 100%;
        padding-left: 0px;
    }
    .investors .grid-final {
        background: transparent;
        height: auto;
    }
    .investors .grid-final .investors-content {
        padding-top: 0px;
        grid-template-columns: 1fr;
    }
    .investors .grid-final .investors-content .col1 {
        width: 100%;
        height: 556px;
        background: url("../images/company/bg-final2.png");
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
    .investors .grid-final .investors-content .col2 {
        width: 100%;
        height: 556px;
        background: url("../images/company/bg-final1.png");
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
}

/************************************* Fdg difference *********************************************************/

.mainview .content-right .fgd-numbers-01 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 240px;
    line-height: 240px;
    color: #454545;
    opacity: 0.1;
}

.mainview .content-right .container-fgdvshollywood {
    margin-top: -100px;
    max-width: 278px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mainview .content-right .fgdvshollywood {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #cd0000;
}

.mainview .content-right .border-red-left {
    margin-top: 10px;
    width: 72px;
    height: 2px;
    background: #cd0000;
}

.mainview .content-right .title-hollywood {
    margin-top: 10px;
    max-width: 397px;
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    color: #000000;
}

.mainview .content-right .fdg-read-more {
    font-family: Gilroy;
    font-size: 18px;
    line-height: 22px;
    color: #cd0000;
}

.mainview .content-right .fdg-difference-description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

@media screen and (max-width: 767px) {
    .mainview .content-right .title-hollywood {
        font-size: 25px;
    }
}

/************************************* Distribution Strategy *********************************************************/

.mainview .content-right .distribution-jetpacks {
    max-width: 764px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 200px));
    justify-content: center;
}

.mainview .content-right .distribution-jetpacks .img-jecpack {
    max-width: 159.48px;
    width: 100%;
    max-height: 105.28px;
}

.mainview .content-right .distibution-title2 {
    margin-top: 150px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 30.2727px;
    line-height: 37px;
    text-transform: uppercase;
    color: #cd0000;
}

.mainview .content-right .distibution-title3 {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    color: #000000;
}

@media screen and (max-width: 767px) {
    .mainview .content-right .distibution-title2 {
        margin-top: 50px;
    }
    .mainview .content-right .distribution-jetpacks {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0px, 200px));
    }
}

@media screen and (max-width: 420px) {
    .mainview .content-right .distribution-jetpacks {
        max-width: 100%;
        grid-template-columns: minmax(0px, 200px);
    }
}

/************************************* Footer *********************************************************/

.mainview .content-right .financial-analysl-first-container {
    display: flex;
    flex-direction: row;
}

.mainview .content-right .financial-analysl-jetpacks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.mainview .content-right .financial-analyst-table {
    margin: 32px 0px 0px 33px;
    width: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.mainview .content-right .financial-analyst-table tbody tr:nth-child(2n + 1) {
    background: #f9f9f9;
}
.mainview .content-right .financial-analyst-table tbody tr:nth-child(2n) {
    background: #ffffff;
}
.mainview .content-right .financial-analyst-table p {
    padding: 13px 0px;
    margin: 0px;
}

.mainview .content-right .financial-analyst-table td:nth-child(1) p {
    padding: 13px 0px 13px 8px;
}

.mainview .content-right .financial-analysl-margin-content2 {
    margin-top: 60px;
}

.mainview .content-right .financial-analyst-table td.active {
    color: #0acf83;
}

.mainview .content-right .financial-analyst-table td.cancel {
    color: #ff0742;
}

.mainview .content-right .financial-analyst-table td.download {
    color: #8000ff;
}

@media screen and (max-width: 992px) {
    .mainview .content-right .financial-analysl-first-container {
        flex-direction: column;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767px) {
    .mainview .content-right .financial-analyst-table {
        margin: 0px;
    }
}
@media screen and (max-width: 420px) {
    .mainview .content-right .financial-analysl-jetpacks {
        max-width: 100%;
        grid-template-columns: minmax(0px, 200px);
        justify-content: center;
    }
}

/************************************* Opportunity *********************************************************/

.mainview .content-right .opportunity-container-description {
    padding: 30px 0px 40px 33px;
    display: flex;
    flex-direction: row;
}

.mainview .content-right .opportunity-img {
    max-height: 332px;
    width: 100%;
    max-width: 372px;
}

.mainview .content-right .opportunity-list {
    padding: 5px 0px 5px 36px;
    display: grid;
    grid-template-columns: minmax(0px, 51px) minmax(0px, 1fr);
}

.mainview .content-right .opportunity-list-icon {
    max-width: 36px;
    max-height: 36px;
}

.mainview .content-right .opportunity-list .title {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #091133;
}
.mainview .content-right .opportunity-list .description {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #5d6970;
}

.mainview .content-right .opportunity-analysl-jetpacks {
    padding-left: 33px;
    display: grid;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    grid-template-columns: repeat(8, minmax(0, 100%));
}

.mainview .content-right .opportunity-analysl-jetpacks img {
    width: 100%;
}

@media screen and (max-width: 1368px) {
    .mainview .content-right .opportunity-analysl-jetpacks {
        padding-left: 0px;
        grid-template-columns: repeat(4, minmax(0, 100%));
    }
}

@media screen and (max-width: 1200px) {
    .mainview .content-right .opportunity-analysl-jetpacks {
        padding-left: 0px;
        grid-template-columns: repeat(6, minmax(0, 100%));
    }
}

@media screen and (max-width: 1030px) {
    .mainview .content-right .opportunity-img {
        max-width: 300px;
        max-height: 300px;
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .mainview .content-right .opportunity-analysl-jetpacks {
        grid-template-columns: repeat(4, minmax(0, 100%));
    }
    .mainview .content-right .opportunity-container-description {
        flex-direction: column;
        row-gap: 20px;
    }
    .mainview .content-right .opportunity-list {
        padding-left: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mainview .content-right .opportunity-list {
        padding: 0px;
    }
    .mainview .content-right .opportunity-analysl-jetpacks {
        padding: 0px;
        grid-template-columns: repeat(3, minmax(0, 100%));
    }
    .mainview .content-right .opportunity-container-description {
        padding: 20px 0px;
    }
}

@media screen and (max-width: 540px) {
    .mainview .content-right .opportunity-img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 420px) {
    .mainview .content-right .opportunity-analysl-jetpacks {
        padding: 0px;
        grid-template-columns: repeat(2, minmax(0, 100%));
    }
    .mainview .content-right .opportunity-analysl-jetpacks img {
        max-width: 100%;
        width: 100%;
    }
}

/************************************* Cash Flow *********************************************************/

.mainview .content-right .cash-flow-row {
    padding-left: 33px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mainview .content-right .cash-flow-row:nth-child(2n) .cash-flow-content {
    order: 2;
}

.mainview .content-right .cash-flow-row .title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    color: #000000;
    text-transform: lowercase;
}

.mainview .content-right .cash-flow-row .description {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.mainview .content-right .cash-flow-row .cash-flow-content {
    max-width: 328px;
    /* margin: 0px 10px; */
}

.mainview .content-right .cash-flow-row .cash-flow-img {
    margin-top: 30px;
    max-width: 375px;
    max-height: 255px;
}

.mainview .content-right .cash-flow-row:nth-child(2n) .cash-flow-img {
    margin-right: 10px;
}

.mainview .content-right .cash-flow-row:nth-child(2n + 1) .cash-flow-img {
    margin-left: 10px;
}

@media screen and (min-width: 1201px) and (max-width: 1300px) {
    .mainview .content-right .cash-flow-row .cash-flow-img {
        max-width: 300px;
        max-height: 200px;
    }
}

@media screen and (max-width: 992px) {
    .mainview .content-right .cash-flow-row {
        padding: 0px;
        flex-direction: column;
    }
    .mainview .content-right .cash-flow-row .cash-flow-content {
        max-width: 100%;
        width: 100%;
        margin: 0px;
        order: 1;
    }
    .mainview .content-right .cash-flow-row .cash-flow-img {
        margin: 20px 0px;
        max-width: 100%;
        max-height: auto;
        width: 100%;
        height: auto;
        order: 2 !important;
    }
}

/************************************* Structure *********************************************************/

.mainview .content-right .structure-img {
    width: 100%;
    margin: 10px 0px 30px 0px;
}

.mainview .content-right .strucure-grid-description {
    padding-left: 40px;
    display: grid;
    grid-template-columns: minmax(0px, 50px) minmax(0px, 1fr) minmax(0px, 50px) minmax(
            0px,
            1fr
        );
}

.mainview .content-right .strucure-grid-description .structure-icon-check {
    max-width: 30px;
    max-height: 38px;
}

.mainview .content-right .strucure-grid-description .description {
    max-width: 291px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

@media screen and (max-width: 767px) {
    .mainview .content-right .strucure-grid-description {
        padding: 0px;
        grid-template-columns: minmax(0px, 50px) minmax(0px, 1fr);
    }
    .mainview .content-right .strucure-grid-description .description {
        max-width: 100%;
    }
}

/************************************* Industry *********************************************************/

.investors .industry-grid-three {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) minmax(0px, 2fr);
    width: 100%;
    min-height: 521px;
}

.investors .industry-grid-three .bg-grid-three {
    background: url("../images/industry/grid-three.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 50%;
    min-height: 521px;
}

.investors .industry-grid-three .first-container {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.investors .industry-grid-three .first-container .industry-date {
    margin-top: 40px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    color: #000000;
}

.investors .industry-grid-three .first-container .description {
    margin-top: 24px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: justify;
    text-transform: capitalize;
    color: #000000;
}

.investors .industry-bg-middle {
    width: 100%;
    background: url("../images/industry/bg-industry2.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.investors .industry-bg-middle .industry-container3 {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) minmax(0px, 2fr);
    min-height: 556px;
}

.investors .industry-bg-middle .industry-container3 .first-container .title {
    max-width: 230px;
    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 55px;
    text-align: justify;
    color: #ffffff;
}

.investors .industry-bg-middle .industry-container3 .first-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.investors .industry-bg-middle .industry-container3 .second-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.investors
    .industry-bg-middle
    .industry-container3
    .second-container
    .description {
    max-width: 751px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: #ffffff;

    font-family: Times New Roman;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: justify;
    color: #000000;
}

.investors .industry-container4 {
    min-height: 521px;
}

.investors .industry-container5 {
    min-height: 521px;
}

@media screen and (max-width: 992px) {
    .investors .industry-grid-three {
        max-height: auto;
        height: auto;
        grid-template-columns: 1fr;
        display: relative;
    }
}

@media screen and (max-width: 992px) {
    .investors .industry-bg-middle .industry-container3 {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 30px 0px;
    }
    .investors .industry-bg-middle .industry-container3 .first-container {
        height: auto;
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

/************************************* Trailers *********************************************************/

.trailers .container-play-movie {
    width: 100%;
    height: calc(100vh - 40px);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: 50% 50%; */

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.trailers .container-play-movie .title {
    font-family: Didot;
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 63px;
    text-align: justify;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 2%;
}

.trailers .container-play-movie .btn-play-video {
    width: 134px;
    height: 50.41px;
    border-radius: 25.2048px;
    outline: none;
    border: none;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 11.4857px;
    line-height: 87.99%;
    text-align: justify;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 9%;
}

.trailers .container-play-movie .btn-play-video .icon-play {
    width: 50.09px;
    height: 50.09px;
    background: #cd0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
}

.trailers .container-play-movie .video-trailer {
    display: none;
    position: fixed;
    background-color: #000;
    width: 100%;
    height: 100%;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    z-index: 10;
}

.trailers .container-play-movie .btn-close-video {
    display: none;
    position: absolute;
    left: 2%;
    top: 7%;
    z-index: 200;
    height: 50px;
    width: 50px;
    overflow: hidden;

    justify-content: center;
    align-items: center;

    border: none;
    outline: none;
    background: #cd0000;
    border-radius: 50%;
    background: transparent;
}

@media screen and (max-width: 767px){
    .trailers .container-play-movie .title {
        font-size: 30px;
    }
    .trailers .container-play-movie .btn-play-video {
        margin-bottom: 30%;
    }
}

/************************************* Footer *********************************************************/

.footer {
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.8)
    );
    background-color: #303030;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer .social-link {
    color: #fff;
}

.footer .icon {
    font-size: 25px;
    margin: 30px 30px;
    border: solid 1px #fff;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transition: all ease 1s;
}

.footer .icon:hover {
    border-color: #cc0000;
    color: #cc0000;
    transition: all ease 1s;
}

@media only screen and (max-width: 502px) {
    .footer .icon {
        font-size: 25px;
        margin: 30px 10px;
        border: solid 1px #fff;
        padding: 10px;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        transition: all ease 1s;
    }
}

@media only screen and (max-width: 345px) {
    .footer .icon {
        font-size: 20px;
        margin: 30px 10px;
        border: solid 1px #fff;
        padding: 10px;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        transition: all ease 1s;
    }
}

.line {
    border-bottom: solid 1px #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all ease 1s;
}

.footer-link {
    text-decoration: none;
    color: #fff;
}

.footer-link:hover {
    text-decoration: none;
    border-color: #cc0000;
    color: #cc0000;
    transition: all ease 0.5s;
}

.footer .icon-single {
    font-size: 20px;
    border: solid 1px #fff;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.footer .description {
    text-align: justify;
    padding: 40px 25px;
    font-size: 10px;
    line-height: 12px;
    color: #bbbb;
    max-width: 680px;
    margin-bottom: 15px;
}

.footer .description p {
    text-align: center;
}

.footer .service {
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.2) 95%,
        rgba(0, 0, 0, 0.4)
    );
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    padding: 20px 0;
    display: flex;
    background-color: #cc0000;
}

.footer .service ul {
    margin: auto;
}

.footer .service li {
    display: inline;
    margin: 40px 0px;
}

.footer .service li a {
    font-size: 12px;
    color: white;
    text-align: left;
    padding: 20px;
    text-decoration: none;
    text-transform: capitalize;
}

@media screen and (max-width: 767px) {
    .footer .description {
        max-width: 100%;
        width: 100%;
        padding: 0px;
    }
    .footer .service .container ul {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 40px;
    }
    .footer .service li {
        margin: 0px;
    }
    .footer .service li a {
        padding: 0px;
        margin: 0px;
    }
}

@media screen and (max-width: 540px) {
    .footer .service .container ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
