html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img,
picture {
    max-width: 100%;
    display: block;
}

@font-face {
    font-family: MyriadPro-Regular;
    src: url(/fonts/MyriadPro-Regular.otf);
}

@font-face {
    font-family: MyriadPro-Black;
    src: url(/fonts/myriad-pro-black.otf);
}

@font-face {
    font-family: MyriadPro-SemiBold;
    src: url(/fonts/myriad-pro-semibold.ttf);
}

@font-face {
    font-family: Gotham-Medium;
    src: url(/fonts/gotham-medium-webfont.ttf);
}

@font-face {
    font-family: Gotham-Bold;
    src: url(/fonts/Gotham-Bold.otf);
}

@font-face {
    font-family: Gotham-Book;
    src: url(/fonts/Gotham-Book.otf);
}

@font-face {
    font-family: sepet;
    src: url(/fonts/Sepet.ttf);
}

@font-face {
    font-family: gotham-light;
    src: url(/fonts/Gotham-Light.otf);
}

body {
    overflow-x: hidden;
    background-color: white;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#header {
    width: 100%;
    position: fixed;
    top: 0;
    color: white;
    background-color: #f7911d;
    z-index: 15;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100px;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-left: 10px;
}
.logo-2 {
    width: 70%;
    margin: 0 auto;
    margin-top: -10%;
}

#menu ul {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    list-style-type: none;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

#menu a {
    color: white;
    text-decoration: none;
    font-family: MyriadPro-SemiBold, sans-serif;
    font-size: 1em;
}

#menu a:hover {
    transition: 0.25s;
    color: lightblue;
}

.mobile-menu {
    display: flex;
    /* SHOWN ONLY ON MOBILE*/
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
}

#toggle {
    width: 100%;
    position: fixed;
    z-index: 10;
    width: 2em;
    height: 2.5em;
    top: 0;
    right: 0;
    margin: 5px 10px 0 10px;
    cursor: pointer;
}

#toggle span {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    height: 0.3em;
    margin: 1em 0 0 0;
    background: #f7941d;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

#toggle span:before,
#toggle span:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 0.3em;
    background: #f7941d;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

#toggle span:before {
    margin: -0.7em 0 0 0;
}

#toggle span:after {
    margin: 0.7em 0 0 0;
}

#toggle.open span {
    background-color: transparent;
}

#toggle.open span:before,
#toggle.open span:after {
    margin: 0;
    background: #f7941d;
}

#toggle.open span:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

#toggle.open span:after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#menu {
    font-family: Gotham-Bold, sans-serif;
    font-weight: bold;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #12232c;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

#menu.opened {
    visibility: visible;
    opacity: 1;
    background-image: url(/assets/home/mobilee-background.png);
    background-size: cover;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

#menu ul {
    text-transform: uppercase;
    list-style: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#menu ul li {
    display: block;
    width: 90%;
    height: 65px;
    margin: 0 auto 0.5em auto;
}

#menu ul li:after {
    content: " ";
    position: absolute;
    width: 0%;
    height: 65px;
    margin: -65px 0 0 5%;
    left: 0;
}

#menu ul li:hover:after {
    width: 90%;
}

#menu ul li a {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    margin: 0 auto;
    color: white;
    text-decoration: none;
    transition: 0.25s ease-out;
}

#menu ul li a:hover {
    color: lightgreen;
    transition: 0.5s ease-out;
}

#menu ul li a span {
    font-size: 1.5em;
}
#toggle span {
    background: black;
}

#toggle span:before,
#toggle span:after {
    background: black;
}

.second-title {
    width: 75%;
    margin: 50px auto;
}

.div-curcubeu {
    padding: 25px 0;
    width: 100%;
    height: 25vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url("/assets/UPDATE/home/curcubeu.png");
    background-color: #f7911d;
}

.bic-pencils {
    width: 100%;
}

.div-info {
    background-color: #94c944;
    padding: 25px 0;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-p {
    font-family: MyriadPro-SemiBold, sans-serif;
    color: #58266f;
    text-align: center;
    font-size: 1.2em;
    margin: 0 auto;
    width: 90%;
}

.info-span {
    color: #e8298a;
    font-family: MyriadPro-Black, sans-serif;
}

.about-project-btn {
    background-color: #f7911d;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: MyriadPro-SemiBold, sans-serif;
    font-size: 1.2em;
    margin: 0 auto;
    margin: 25px 0;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
.textdecoration {
    text-decoration: none;
}
.disclaimer-1,
.disclaimer-2 {
    text-align: justify;
    text-align-last: center;
    color: #58266f;
    font-family: MyriadPro-Regular, sans-serif;
    font-size: 0.75em;
    margin: 5px auto;
    width: 95%;
}

.desktop-menu {
    display: none;
}

.orange-bar {
    height: 15px;
    width: 100%;
}

.citeste-mai-multe {
    display: block;
    margin: 0 auto;
    margin-bottom: 5%;
    margin-top: 5%;
    width: 75%;
}

.images__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 7.5%;
    margin-top: 7.5%;
}
.container__middle_part {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 10% 0 10% 0;
}

@media only screen and (min-width: 768px) {
    .second-title {
        width: 55%;
    }
    .bic-pencils {
        width: 75%;
        margin: 0 auto;
    }

    .info-p {
        font-size: 1.75em;
    }
    .about-project-btn {
        font-size: 2.5em;
    }
    .disclaimer-1,
    .disclaimer-2 {
        font-size: 1em;
    }
}

@media only screen and (min-width: 1200px) {
    #header {
        position: relative;
    }
    .mobile-menu {
        display: none;
    }
    .desktop-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        margin-right: 10%;
        gap: 15px;
    }
    .desktop-menu a {
        color: white;
        font-family: MyriadPro-SemiBold, sans-serif;
        text-decoration: none;
    }
    .desktop-menu a:nth-child(1) {
        color: black;
    }
    .vLine {
        width: 2px;
        height: 15px;
        background-color: black;
    }
    .logo {
        width: 250px;
        margin-left: 15%;
        position: relative;
        z-index: 150;
    }

    .div-curcubeu {
        background-size: 100% 100%;
        position: relative;
        margin-top: -3%;
    }
    .second-title {
        width: 30%;
        margin-top: 2%;
    }
    .bottom-container {
        display: flex;
        z-index: 1;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-around;
        width: 100%;
        margin-top: -50px;
        background-image: url("/assets/home/bottom-background.png");
        background-repeat: no-repeat;
        background-position: right;
        background-size: 97% 100%;
    }
    .div-info {
        background-color: transparent;
        width: 50%;
    }
    .bic-pencils {
        width: 40%;
        z-index: 9999;
    }
}

@media only screen and (min-width: 1360px) {
    .second-title {
        width: 35%;
    }
    .div-curcubeu {
        margin-top: -2%;
    }
}
@media only screen and (min-width: 1400px) {
    .div-curcubeu {
        margin-top: -1%;
    }
}
@media only screen and (min-width: 1530px) {
    .second-title {
        width: 32%;
    }
    .div-curcubeu {
        margin-top: -1%;
    }
    .div-info {
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 1800px) {
    .div-info {
        margin-bottom: 100px;
    }
    .second-title {
        width: 29%;
    }
}

/* NEW UPDATE */

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.text-1 {
    width: 80%;
    margin: 0 auto;
    margin-top: 5%;
}
.bottom-container {
    background-color: #f7911d;
}
.column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    margin-top: -10%;
}
.text-modify {
    text-align: center;
    font-size: 1rem;
    font-family: MyriadPro-Regular;
    width: 70%;
}
.orange {
    font-family: MyriadPro-SemiBold, sans-serif;
    color: #f7911d;
}
.ph {
    width: 80%;
    margin: 0 auto;
}
.bold {
    font-family: MyriadPro-Black;
}
.ph-2 {
    width: 70%;
}
.ph2-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* row pe desktop */
.container_bottom {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}
.photo-1 {
    width: 50%;
}
.__3rd__container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.ph3-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.photo-2 {
    width: 50%;
}
.photo_ambitie {
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
}
.row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.avion {
    width: 15%;
}
.last__container {
    margin-bottom: 50px;
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    background-color: #f0f0f0;
    background-image: url("/assets/UPDATE/home/footer-image.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.text-modify-for-footer {
    font-size: 14px;
    width: 65%;
    font-family: MyriadPro-SemiBold;
}

@media (min-width: 760px) {
    .logo-2 {
        width: 40%;
        margin: 0 auto;
        margin-top: 0px;
        margin-top: -7%;
    }
    .text-1 {
        width: 65%;
    }
    .text-modify {
        font-size: 1.5rem;
    }
    .text-modify-for-footer {
        font-size: 1rem;
    }
    .row {
        gap: 1rem;
    }
}

@media (min-width: 1020px) {
    .orange-bar {
        height: 25px;
    }
    .div-curcubeu {
        height: 50vh;
    }
    .text-1 {
        width: 40%;
    }
    .text-container {
        gap: 0;
        flex-direction: row;
        margin-bottom: 3%;
    }
    .second-title {
        width: 40%;
        margin-top: 10%;
    }
    .logo-2 {
        width: 30%;
        margin-top: -5%;
    }
    .sageata-nor {
        margin-top: 3%;
    }
}

@media (min-width: 1200px) {
    .logo-2 {
        position: relative;
        z-index: 150;
    }
    .second-title {
        margin-top: 7%;
    }
    .text-container {
        margin-bottom: 10%;
    }
    .about-project-btn {
        font-size: 1.5rem;
    }
    .ph {
        width: 50%;
    }
    .photo-1 {
        width: 30%;
    }
    .text-modify {
        font-size: 1.5rem;
        width: 40%;
    }
    .text-modify-for-footer {
        font-size: 1rem;
    }
    .ph-2 {
        width: 60%;
    }
    .container_bottom {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 0%;
    }
    .photo-2 {
        width: 30%;
    }
    .a_inceput_simplu {
        width: 80%;
    }
    .ph3-container {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: -8%;
        margin-left: 2%;
    }
    .text-modify {
        width: 60%;
    }
    .ph2-container {
        width: 100%;
    }
    .column {
        gap: 1rem;
    }
    .photo_ambitie {
        width: 70%;
    }
    .text-modify-ph2 {
        text-align: left;
        width: 80%;
    }
    .ph2-container {
        align-items: flex-start;
        margin-left: 5%;
    }
    .photo-1 {
        width: 40%;
        margin-right: 10%;
    }
    .ph2 {
        width: 65%;
    }
    .avion {
        width: 10%;
    }
    .photo_ambitie {
        margin-top: 0%;
    }
    .text-modify-row {
        text-align: left;
    }
    .text-modify-ph3 {
        text-align: right;
        width: 60%;
    }
    .photo-2 {
        width: 25%;
    }
    .text-modify-for-footer {
        font-size: 1.75rem;
    }
    .footer {
        height: 300px;
    }
}

@media (min-width: 1300px) {
    .second-title {
        width: 33%;
    }
    .logo-2 {
        width: 25%;
    }
    .text-container {
        margin-bottom: 5%;
    }
    .footer {
        background-size: 100% 100%;
    }
}
@media (min-width: 1600px) {
    .text-modify {
        font-size: 2rem;
    }
}

@media (min-width: 1900px) {
    .text-modify {
        font-size: 2.25rem;
    }
    .text-modify-for-footer {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .citeste-mai-multe {
        width: 55%;
        margin-top: 2%;
        margin-bottom: 5%;
    }
}
