@charset "UTF-8";

@font-face {
    font-family: "Barlow";
    src: url("./sass/fonts/Barlow/Barlow-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Barlow";
    src: url("./sass/fonts/Barlow/Barlow-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    src: url("./sass/fonts/Noto_Sans/NotoSans-Light.ttf") format("truetype");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    src: url("./sass/fonts/Noto_Sans/NotoSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    src: url("./sass/fonts/Noto_Sans/NotoSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./sass/fonts/Nunito/static/Nunito-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./sass/fonts/Nunito/static/Nunito-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

.font-notosans {
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif !important;
}

.font-nunito {
    font-family: "Nunito", Tahoma, Verdana, sans-serif !important;
}

.font-barlow {
    font-family: "Barlow", Tahoma, Verdana, sans-serif !important;
}

.indorama__button {
    display: flex;
    align-items: center;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    border: none;
    padding: 8px 48px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 14px;
}

.indorama__button img {
    margin-left: 10px;
    height: 15px;
}

.indorama__button--blue {
    border: #4691d0 solid 2px;
    color: white;
    background-color: #4691d0;
}

.indorama__button--blue:hover {
    background-color: white;
    color: #4691d0;
}

.indorama__button--green {
    border: #06bfa4 solid 2px;
    color: white;
    background-color: #06bfa4;
}

.indorama__button--green:hover {
    background-color: white;
    color: #06bfa4;
}

.indorama__button--light-green {
    border: #8cc63f solid 2px;
    color: white;
    background-color: #8cc63f;
}

.indorama__button--light-green:hover {
    background-color: white;
    color: #8cc63f;
}

.indorama__secondary__button {
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 18px;
    padding: 12px 34px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: ease-in 0.1s;
    border-radius: 2px;
    position: relative;
}

.indorama__secondary__button img {
    transition: 0.5s;
    position: absolute;
    top: 17px;
    right: 20px;
    height: 17px;
    width: Auto;
}

.indorama__secondary__button:hover img {
    right: 13px;
}

.indorama__secondary__button--blue-border {
    color: #4691d0;
    background-color: white;
}

.indorama__secondary__button--green-border {
    color: white;
    background-color: #06bfa4;
}

.indorama__secondary__button--white {
    padding-left: 0;
    color: white;
}

.indorama__secondary__button--green {
    padding-left: 0;
    color: #06bfa4;
}

.text__with__image {
    max-width: 100%;
}

@media screen and (min-width: 1024px) {
    .text__with__image {
        width: 500px;
    }
}

.text__with__image h3 {
    margin-left: 20px;
}

.text__with__image p {
    padding: 15px 0;
}

.text__with__image--white h3 {
    color: white;
}

.text__with__image--white p {
    color: white;
}

.text__with__image--white a {
    color: white;
}

.text__with__image--green h3 {
    color: #06bfa4;
}

.text__with__image--green a {
    color: #06bfa4;
}

.title-logo {
    display: flex;
}

.title-logo img {
    margin-right: 5px;
    height: 50px;
    width: auto;
}

.grid-3-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 1200px;
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 1024px) {
    .grid-3-images {
        height: 700px;
    }
}

.grid-3-images img {
    object-fit: cover;
    width: 100%;
}

.grid-6-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}

@media screen and (max-width: 768px) {
    .grid-6-images {
        margin-bottom: 50px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
}

.grid-6-images div {
    height: 350px;
}

@media screen and (min-width: 2200px) {
    .grid-6-images div {
        height: 500px;
    }
}

.grid-6-images img {
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}

.green-line {
    width: 100px;
    height: 2px;
    border-radius: 2px;
    background-color: #06bfa4;
}

.icon-section {
    width: 100px;
}

.icon-section img {
    width: 100%;
    height: 100%;
}

.sticky-bottom {
    width: 100%;
    position: relative;
}

.sticky-bottom h3 {
    position: absolute;
    bottom: 0;
}

.gradient-background-white-blue {
    background: rgb(240, 247, 255);
    background: linear-gradient(90deg,
    rgb(240, 247, 255) 30%,
    rgb(70, 145, 208) 100%);
}

.gradient-background-blue-green {
    background: rgb(70, 145, 208);
    background: linear-gradient(90deg,
    rgb(70, 145, 208) 10%,
    rgb(6, 191, 164) 55%);
}

.gradient-background-green-blue {
    background: rgb(6, 191, 164);
    background: linear-gradient(90deg,
    rgb(6, 191, 164) 0%,
    rgb(70, 145, 208) 100%);
}

.technical-tag-list {
    display: flex;
    gap: 50px;
    color: #06bfa4;
}

@media screen and (max-width: 768px) {
    .technical-tag-list {
        flex-direction: column;
    }
}

.technical-tag-list .technical-tag-item h2 {
    font-size: 25px;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
}

.technical-tag-list .technical-tag-item img {
    max-width: 150px;
}

@media screen and (max-width: 768px) {
    .technical-tag-list .technical-tag-item img {
        height: 30%;
    }
}

.company-link-item {
    margin: 40px 0;
    width: 800px;
    max-width: 100%;
}

.company-link-item .company-logo {
    margin-bottom: 25px;
}

.company-link-item .company-logo h1 {
    margin: 0;
}

/* .company-link-item .company-logo img {
  height: 70px;
  width: auto;
} */

.company-image {
    max-width: 300px;
}

.company-link-item .company-text {
    margin-bottom: 30px;
    color: #666666;
    max-width: 100%;
}

.dashed-line {
    border: none;
    border-top: 2px dashed #bcc0c2;
    height: 1px;
    width: 100%;
}

.company-logo {
    margin-bottom: 30px;
}

.company-logo img {
    width: 300px;
    height: auto;
}

.company-logo h1 {
    font-size: 45px;
    color: #043572;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

.company-description {
    padding-right: 5%;
    max-width: 100%;
}

.company-description ul {
    list-style: none;
    margin-left: 40px;
}

.company-description ul li {
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 15px;
    color: #666666;
}

.company-description ul li::before {
    content: "•";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #06bfa4;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

.company-description .pet-recycling {
    display: flex;
    max-width: 100%;
}

.company-description .pet-recycling img {
    width: auto;
    height: 100px;
    margin-right: 10px;
}

.company-description .pet-recycling p {
    font-size: 14px;
    padding: 15px;
}

@font-face {
    font-family: "Barlow";
    src: url("./sass/fonts/Barlow/Barlow-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Barlow";
    src: url("./sass/fonts/Barlow/Barlow-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    src: url("./sass/fonts/Noto_Sans/NotoSans-Light.ttf") format("truetype");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    src: url("./sass/fonts/Noto_Sans/NotoSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "NotoSans";
    src: url("./sass/fonts/Noto_Sans/NotoSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./sass/fonts/Nunito/static/Nunito-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./sass/fonts/Nunito/static/Nunito-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

.d-flex {
    display: flex;
}

.bold-text {
    font-weight: bold;
}

.light-text {
    font-weight: lighter;
}

.m-b-medium {
    margin-bottom: 70px;
}

.m-b-small {
    margin-bottom: 30px;
}

.center-div {
    text-align: center;
}

.m-l-medium {
    margin-left: 55px;
}

@media screen and (max-width: 768px) {
    .m-l-medium {
        margin-left: 0;
    }
}

.grid-4-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 100px;
}

@media screen and (max-width: 1024px) {
    .grid-4-item {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

.primary-color {
    color: #4691d0;
}

.secondary-color {
    color: #06bfa4;
}

.secondary-dark {
    color: #043572;
}

.row {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .row {
        flex-direction: column;
    }
}

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

@media screen and (max-width: 1024px) {
    .row-align-center {
        display: block;
    }
}

.col-2 {
    flex-basis: 50%;
}

.col-3 {
    flex-basis: 33%;
}

.hero-container {
    padding: 5%;
    background-image: url("./Assets/Images/Backgrounds/BackgroundMain.png");
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1024px) {
    .hero-container {
        display: flex;
        justify-content: center;
    }
}

.hero-container .hero-title-section {
    margin: 130px 100px 0 3%;
    width: 600px;
    max-width: 100%;
}

@media screen and (max-width: 1024px) {
    .hero-container .hero-title-section {
        margin-right: 0;
    }
}

.hero-container .hero-title-section h1 {
    padding: 40px 0;
    color: #4691d0;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 45px;
    line-height: 1.2;
}

.hero-container .hero-title-section p {
    padding-bottom: 30px;
}

.hero-container .animation-section {
    padding: 0;
    margin: 0 auto;
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    .hero-container .animation-section {
        margin-top: 50px;
    }
}

.hero-container .animation-section video {
    width: 100%;
    height: auto;
}

.icons-section {
    height: 100%;
    padding: 5% 0;
    text-align: center;
    color: #043572;
}

.icons-section h2 {
    font-weight: normal;
}

.icons-list {
    margin: 80px 50px;
}

.icons-line {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .icons-line {
        flex-wrap: wrap;
    }
}

.icons-line:nth-child(1) {
    border-bottom: dashed 2px lightgray;
}

.icon-box {
    padding: 15px;
    width: 250px;
    border-right: dashed 2px lightgray;
    border-radius: 5px;
    transition: 0.5s;
}

.icon-box p {
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: #043572;
}

.icon-box img {
    margin-bottom: 10px;
    width: 60%;
}

.icon-box:hover {
    color: white;
    background-color: #4691d0;
    transform: scale(1.05);
}

.icon-box:hover img {
    filter: brightness(0) invert(1);
}

.icon-box:hover p {
    color: white;
}

@media screen and (min-width: 1024px) {
    .icon-box:last-child {
        border: none;
    }
}

@media screen and (max-width: 1024px) {
    .icon-box {
        border-right: none;
        border-bottom: dashed 2px lightgray;
    }

    .icon-box:nth-child(1) {
        border-right: dashed 2px lightgray;
    }

    .icon-box:nth-child(3) {
        border-right: dashed 2px lightgray;
    }

    .icon-box:nth-child(5) {
        border-right: dashed 2px lightgray;
    }

    .icons-line:nth-child(1) {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .icon-box {
        border-right: none;
    }

    .icon-box:nth-child(1) {
        border-right: none;
    }

    .icon-box:nth-child(3) {
        border-right: none;
    }

    .icon-box:nth-child(5) {
        border-right: none;
    }

    .icons-line:nth-child(1) {
        display: none;
    }
}

.Engineered-Polymers-Section {
    background-image: url("./Assets/Images/Backgrounds/Background1.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
    padding: 5% 5% 0 5%;
}

@media screen and (max-width: 1024px) {
    .Engineered-Polymers-Section {
        flex-wrap: wrap;
        padding: 5%;
    }
}

.Engineered-Polymers-Section h2 {
    padding-bottom: 70px;
    color: white;
    font-family: "Calibri", "Trebuchet MS", Helvetica, sans-serif;
}

.Engineered-Polymers-Section .image-section {
    width: 900px;
    max-width: 100%;
}

.Engineered-Polymers-Section .image-section img {
    width: 100%;
}

.Engineered-Polymers-Section .text__with__image img {
    width: 25%;
}

.Pet-Packaging-Section {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .Pet-Packaging-Section {
        flex-direction: column;
    }
}

.Pet-Packaging-Section .image-section {
    flex-basis: 50%;
}

.Pet-Packaging-Section .image-section img {
    max-width: 100%;
    display: block;
}

.Pet-Packaging-Section h2 {
    padding-bottom: 70px;
    color: #043572;
}

.Pet-Packaging-Section .text-section {
    flex-basis: 50%;
    padding: 3% 3%;
}

.Pet-Packaging-Section .text__with__image img {
    width: 20%;
}

.Technical-Polymers-Section {
    background-image: url("./Assets/Images/Backgrounds/backgroundPolymer.png");
    background-size: cover;
    padding: 10%;
}

.Technical-Polymers-Section h2 {
    font-size: 50px;
    margin-bottom: 150px;
    color: #043572;
}

@media screen and (max-width: 768px) {
    .Technical-Polymers-Section h2 {
        margin-bottom: 50px;
    }
}

.Technical-Polymers-Section .indorama__secondary__button {
    margin-top: 40px;
}

.Technical-Polymers-Section .indorama-card {
    transition: 0.5s;
    width: 500px;
    padding: 50px;
    background-color: white;
}

@media screen and (max-width: 1024px) {
    .Technical-Polymers-Section .indorama-card {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .Technical-Polymers-Section .indorama-card {
        padding: 20px;
    }
}

.Technical-Polymers-Section .indorama-card h3 {
    color: #4691d0;
}

.Technical-Polymers-Section .indorama-card img {
    margin-right: 15px;
    height: 80px;
    width: auto;
}

.Technical-Polymers-Section .indorama-card p {
    padding: 20px 0;
}

.Technical-Polymers-Section .indorama-card a {
    color: #4691d0;
}

.Technical-Polymers-Section .indorama-card:hover {
    background-color: #4691d0;
    color: white;
}

.Technical-Polymers-Section .indorama-card:hover p {
    color: white;
}

.Technical-Polymers-Section .indorama-card:hover img {
    filter: brightness(0) invert(1);
}

.Technical-Polymers-Section .indorama-card:hover h3 {
    color: white;
}

.Technical-Polymers-Section .indorama-card:hover a {
    color: white;
}

.Technical-Polymers-Section .indorama-card-list {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .Technical-Polymers-Section .indorama-card-list {
        flex-wrap: wrap;
    }
}

.Textile-Polymers-Section {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .Textile-Polymers-Section {
        flex-direction: column;
    }
}

.Textile-Polymers-Section h2 {
    color: white;
}

.Textile-Polymers-Section .title-logo {
    margin-bottom: 60px;
}

.Textile-Polymers-Section .text-icon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

@media screen and (max-width: 768px) {
    .Textile-Polymers-Section .text-icon-list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

.Textile-Polymers-Section .text__with__image {
    width: 350px;
}

@media screen and (max-width: 768px) {
    .Textile-Polymers-Section .text__with__image {
        width: 100%;
    }
}

.Textile-Polymers-Section .text__with__image h3 {
    margin-left: 0;
}

.Textile-Polymers-Section .text__with__image img {
    margin-right: 15px;
    width: 25%;
}

@media screen and (min-width: 2200px) {
    .Textile-Polymers-Section .text__with__image {
        margin-bottom: 70px;
    }
}

.Textile-Polymers-Section .text-section {
    background-image: url("./Assets/Images/Backgrounds/Background2.png");
    background-size: cover;
    background-repeat: no-repeat;
    flex-basis: 60%;
    padding: 5%;
}

.Textile-Polymers-Section .image-section {
    width: 100%;
    flex-basis: 40%;
}

.Textile-Polymers-Section .image-section img {
    width: 100%;
    display: block;
}

.Textile-Polymers-Section .indorama__secondary__button {
    margin-top: 40px;
}

.Taylored-Polymers-Section {
    padding: 5%;
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 1024px) {
    .Taylored-Polymers-Section {
        flex-direction: column;
    }
}

.Taylored-Polymers-Section .title-logo {
    margin-bottom: 40px;
}

.Taylored-Polymers-Section .text__with__image img {
    width: 35%;
}

.Taylored-Polymers-Section .grid-section {
    width: 100%;
}

.Taylored-Polymers-Section .text-section {
    padding: 3% 0 0% 7%;
}

@media screen and (max-width: 1024px) {
    .Taylored-Polymers-Section .text-section {
        padding: 5%;
    }
}

.Taylored-Polymers-Section h2 {
    color: #043572;
    margin-bottom: 40px;
}

.Taylored-Polymers-Section .img-1 {
    grid-area: 1/1/2/3;
}

@media screen and (max-width: 768px) {
    .Taylored-Polymers-Section .img-1 {
        grid-area: 1/1/2/2;
    }
}

.Taylored-Polymers-Section .img-2 {
    grid-area: 1/3/2/6;
}

@media screen and (max-width: 768px) {
    .Taylored-Polymers-Section .img-2 {
        grid-area: 2/1/3/2;
    }
}

.Taylored-Polymers-Section .img-3 {
    grid-area: 2/1/3/4;
}

@media screen and (max-width: 768px) {
    .Taylored-Polymers-Section .img-3 {
        grid-area: 3/1/4/2;
    }
}

.Taylored-Polymers-Section .img-4 {
    grid-area: 2/4/3/6;
}

@media screen and (max-width: 768px) {
    .Taylored-Polymers-Section .img-4 {
        grid-area: 4/1/5/2;
    }
}

.Taylored-Polymers-Section .img-5 {
    grid-area: 3/1/4/3;
}

@media screen and (max-width: 768px) {
    .Taylored-Polymers-Section .img-5 {
        grid-area: 5/1/6/2;
    }
}

.Taylored-Polymers-Section .img-6 {
    grid-area: 3/3/4/6;
}

@media screen and (max-width: 768px) {
    .Taylored-Polymers-Section .img-6 {
        grid-area: 6/1/7/2;
    }
}

.Film-Sheet-Section {
    background-color: #4691d0;
}

.Film-Sheet-Section h2 {
    padding-bottom: 70px;
}

.Film-Sheet-Section .text-section {
    flex-basis: 50%;
    padding: 4% 4% 4% 4%;
    margin: 0 auto;
}

.Film-Sheet-Section .image-section {
    flex-basis: 50%;
    width: 100%;
}

.Film-Sheet-Section .image-section img {
    width: 100%;
    display: block;
}

.Film-Sheet-Section h2 {
    color: white;
}

.Film-Sheet-Section .text__with__image img {
    width: 20%;
}

.Protecting-As-We-Perform-Section {
    padding: 5% 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg,
    rgb(255, 255, 255) 42%,
    rgba(6, 191, 164, 0.0788909314) 100%);
    margin-top: 100px;
    text-align: center;
}

.Protecting-As-We-Perform-Section .logo-section {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.Protecting-As-We-Perform-Section .logo-section img {
    width: 100%;
}

.Protecting-As-We-Perform-Section .content-container {
    padding: 5%;
    margin: 5% 15%;
    border: solid 2px #06bfa4;
}

@media screen and (max-width: 768px) {
    .Protecting-As-We-Perform-Section .content-container {
        margin: 5% 5%;
    }
}

.Protecting-As-We-Perform-Section h2 {
    font-size: 50px;
}

.Protecting-As-We-Perform-Section p {
    font-size: 19px;
}

.Protecting-As-We-Perform-Section .green-line {
    margin: 50px auto;
}

.Protecting-As-We-Perform-Section .text-area {
    margin: 0 auto;
    padding: 40px 0 50px 0;
    width: 750px;
    max-width: 100%;
}

.Protecting-As-We-Perform-Section .text-area p:nth-child(2) {
    margin: 35px auto 0 auto;
    width: 70%;
    color: #06bfa4;
}

.Protecting-As-We-Perform-Section .circular-economy-wrapper {
    margin: 0 auto;
    width: 1100px;
    max-width: 100%;
}

.Protecting-As-We-Perform-Section .circular-economy-wrapper img {
    width: 100%;
}

.Protecting-As-We-Perform-Section .sub-text {
    margin: 0 auto;
    width: 800px;
    max-width: 100%;
}

.Protecting-As-We-Perform-Section .sub-text h3 {
    font-weight: lighter;
    padding: 20px 0;
}

.Protecting-As-We-Perform-Section .bottles-image {
    width: 900px;
    max-width: 100%;
    margin: 70px auto 0 auto;
}

.Protecting-As-We-Perform-Section .bottles-image img {
    height: 100%;
    width: 100%;
}

.Protecting-As-We-Perform-Section .source-text {
    color: #999999;
    margin: 20px auto;
}

.Sustainable-Developement-Section {
    background-image: url("./Assets/Images/Backgrounds/Background3.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding: 5%;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    .Sustainable-Developement-Section {
        background-image: none;
        flex-direction: column;
    }
}

.Sustainable-Developement-Section .image-section {
    text-align: center;
    padding: 0 10%;
}

.Sustainable-Developement-Section .image-section img {
    width: auto;
    height: 150px;
}

.Sustainable-Developement-Section .text-section {
    width: 700px;
    max-width: 100%;
}

.Sustainable-Developement-Section .text-section p:nth-child(1) {
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.Map-Section {
    padding: 5% 0;
    position: relative;
}

.Map-Section .background-image {
    position: absolute;
    bottom: 0;
}

.Map-Section .background-image img {
    width: 100%;
    opacity: 0.25;
}

.Map-Section .title-section {
    text-align: center;
    margin-bottom: 100px;
}

.Map-Section .title-section p {
    color: white;
    font-size: "Nunito", Tahoma, Verdana, sans-serif;
    margin-bottom: 25px;
}

.Map-Section .title-section h2 {
    color: white;
    font-weight: bold;
    font-size: 54px;
}

.d-flex {
    display: flex;
}

.bold-text {
    font-weight: bold;
}

.light-text {
    font-weight: lighter;
}

.m-b-medium {
    margin-bottom: 70px;
}

.m-b-small {
    margin-bottom: 30px;
}

.center-div {
    text-align: center;
}

.m-l-medium {
    margin-left: 55px;
}

@media screen and (max-width: 768px) {
    .m-l-medium {
        margin-left: 0;
    }
}

.grid-4-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 100px;
}

@media screen and (max-width: 1024px) {
    .grid-4-item {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

.primary-color {
    color: #4691d0;
}

.secondary-color {
    color: #06bfa4;
}

.secondary-dark {
    color: #043572;
}

.row {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .row {
        flex-direction: column;
    }
}

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

@media screen and (max-width: 1024px) {
    .row-align-center {
        display: block;
    }
}

.col-2 {
    flex-basis: 50%;
}

.col-3 {
    flex-basis: 33%;
}

footer {
    background-color: #00143a;
    padding: 50px;
    color: white;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.policy-footer {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

footer p {
    color: white;
}

.policy-footer a {
    text-decoration: underline;
}

footer .bradley-link a {
    display: block;
    font-size: 14px;

    font-weight: lighter;
    color: white;
}

.media-footer-links {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .media-footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

.media-footer-links img {
    max-width: 30px;
}

.media-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-around;
}

@media screen and (max-width: 768px) {
    .site-footer {
        flex-direction: column;
    }
}

.site-footer ul {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .site-footer ul {
        flex-direction: column;
    }
}

.site-footer ul li {
    list-style-type: none;
    font-weight: bold;
    font-size: 14px;
    margin: auto;
    cursor: pointer;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
}

.site-footer ul li a {
    color: white;
}

.site-footer ul li::after {
    content: "";
    width: 0%;
    height: 1px;
    display: block;
    transition: 0.5s;
}

.site-footer ul li:hover::after {
    width: 100%;
    background-color: white;
}

header {
    position: fixed;
    z-index: 3;
    width: 100%;
    background-color: transparent;
    transition: 0.5s;
    box-shadow: 0 1px 7px 0 hsla(0deg, 0%, 100%, 0.15);
}

.header-menu {
    max-width: 1920px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .header-menu {
        padding: 10px 0;
        justify-content: space-around;
    }
}

nav {
    padding: 5px 15px;
}

nav .menu {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1024px) {
    nav .menu {
        gap: 10px;
    }
}

nav li {
    list-style-type: none;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

nav a::after {
    content: "";
    width: 0%;
    height: 1px;
    display: block;
    transition: 0.5s;
}

nav .a-hover:hover::after {
    width: 100%;
    background-color: #043572;
}

nav li a {
    color: #043572;
}

.sub-menu {
    color: #043572;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

nav .corporate-link {
    display: block;
    max-width: 120px;
    margin-left: auto;
    text-align: right;
    font-size: 12px;
    font-weight: lighter;
    color: #043572;
}

@media screen and (max-width: 1024px) {
    .corporate-link {
        margin-bottom: 15px;
    }

    nav {
        background-color: white;
        box-shadow: 2px 2px 5px lightgray;
        padding: 30px 0;
        position: absolute;
        top: 130px;
        width: 100%;
        margin-right: -200%;
        transition: all ease-in 0.4s;
    }

    nav ul {
        flex-direction: column;
        justify-content: center;
        text-align: left;
        gap: 5px;
    }

    nav ul li {

        margin: 0 40px 0 20px;
        transition: 0.5s;
    }

    nav .corporate-link {
        margin-left: 20px;
        text-align: left;
    }
}

.nav-active {
    margin-right: 0;
}

.burger {
    margin: auto 0;
    display: none;
    cursor: pointer;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1024px) {
    .burger {
        display: flex;
    }
}

.open .menu-btn_burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.open .menu-btn_burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.open .menu-btn_burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

.menu-btn_burger {
    width: 50px;
    height: 6px;
    background-color: #043572;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn_burger::before,
.menu-btn_burger::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    background-color: #043572;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn_burger::before {
    transform: translateY(-16px);
}

.menu-btn_burger::after {
    transform: translateY(16px);
}

.page-id-58 nav li a,
.page-id-54 nav li a {
    color: white;
}

@media screen and (max-width: 1024px) {

    .page-id-58 nav li a,
    .page-id-54 nav li a {
        color: #043572;
    }
}

.page-id-58 nav li:hover::after,
.page-id-54 nav li:hover::after {
    width: 100%;
    background-color: white;
}

@media screen and (max-width: 1024px) {

    .page-id-58 nav li:hover::after,
    .page-id-54 nav li:hover::after {
        background-color: #043572;
    }
}

.page-id-58 nav p,
.page-id-54 nav p {
    color: white;
}

@media screen and (max-width: 1024px) {

    .page-id-58 nav p,
    .page-id-54 nav p {
        color: #043572;
    }
}

.navScroll nav li a {
    color: #043572;
}

.navScroll nav li:hover::after {
    width: 100%;
    background-color: #043572;
}

.navScroll nav p {
    color: #043572;
}

.site-branding {
    max-width: 250px;
    width: 100%;
}

.site-branding img {
    width: 100%;
    height: auto;
}

.sub-menu {
    position: absolute;
    overflow-y: scroll;
    top: 40px;
    left: 0;
    max-height: 800px;
    display: none;
    background-color: white;

    border-radius: 0 0 10px 10px;
    animation: opacityTranslateFromTop 0.5s;
}


.sub-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 20px;
}

.sub-menu::-webkit-scrollbar {
    width: 5px;
    background-color: lightgray;
    border-radius: 20px;
}

.sub-menu::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: #06bfa4;
}


/* .sub-menu ul li::before {
  content: "•";
  color: #043572;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
} */
@media screen and (max-width: 1024px) {
    .sub-menu {
        position: static;
        padding: 0;
        font-size: 16px;
        width: 100%;
    }

    .sub-menu li::after {
        display: none;
    }
}

.page-id-58 .menu-with-sub-menu:hover a,
.page-id-54 .menu-with-sub-menu:hover a {
    color: #043572 !important;
}

.dropdown-icon {
    position: absolute;
    top: 14px;
    right: -18px;
}

.menu > li > a {
    font-size: 0.9rem;
}

.menu-with-sub-menu {
    position: relative;
    transition: 0.5s;
    padding: 10px;
}

.menu-with-sub-menu:hover {
    background-color: white;
    border-radius: 10px 10px 0 0;
}

.menu-with-sub-menu:hover .sub-menu {
    display: block;
}

.menu-with-sub-menu:hover .dropdown-icon {
    display: none;
}

@media screen and (max-width: 1024px) {
    .menu-with-sub-menu {
        position: static;
        padding: 0;
        font-size: 16px;
    }

    .menu-with-sub-menu .dropdown-icon {
        display: none;
    }
}

@keyframes opacityTranslateFromTop {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-li {
    padding: 10px;
}

@media screen and (max-width: 1024px) {
    .menu-li {
        padding: 0;
    }
}

.dropdown-icon {
    fill: #043572;
}

.page-id-58 .dropdown-icon,
.page-id-54 .dropdown-icon {
    fill: white;
}

.page-id-58 .corporate-link,
.page-id-54 .corporate-link {
    color: white;
}

@media screen and (max-width: 1024px) {

    .page-id-58 .corporate-link,
    .page-id-54 .corporate-link {
        color: #043572;
    }
}

.map-container {
    position: relative;
    padding: 0 150px;
}

@media screen and (max-width: 768px) {
    .map-container {
        padding: 0 20px;
    }
}

.map-container img {
    width: 100%;
}

.map-container .country-circle:nth-child(2) {
    top: 17%;
    right: 51.3%;
}

@media screen and (max-width: 1500px) {
    .map-container .country-circle:nth-child(2) {
        right: 51%;
    }
}

@media screen and (max-width: 768px) {
    .map-container .country-circle:nth-child(2) {
        top: 17%;
        right: 51%;
    }
}

.map-container .country-circle:nth-child(3) {
    top: 20%;
    right: 50%;
}

@media screen and (max-width: 1500px) {
    .map-container .country-circle:nth-child(3) {
        right: 50%;
    }
}

@media screen and (max-width: 768px) {
    .map-container .country-circle:nth-child(3) {
        top: 20%;
        right: 50%;
    }
}

.map-container .country-circle:nth-child(4) {
    top: 25%;
    right: 46.5%;
}

@media screen and (max-width: 1500px) {
    .map-container .country-circle:nth-child(4) {
        right: 46%;
    }
}

@media screen and (max-width: 768px) {
    .map-container .country-circle:nth-child(4) {
        top: 25%;
        right: 45%;
    }
}

.map-container .country-circle:nth-child(5) {
    top: 27%;
    left: 21.5%;
}

@media screen and (max-width: 1500px) {
    .map-container .country-circle:nth-child(5) {
        left: 23%;
    }
}

@media screen and (max-width: 768px) {
    .map-container .country-circle:nth-child(5) {
        top: 23%;
        left: 18%;
    }
}

.map-container .country-circle:nth-child(6) {
    top: 32%;
    left: 19%;
}

@media screen and (max-width: 1500px) {
    .map-container .country-circle:nth-child(6) {
        top: 31%;
        left: 20%;
    }
}

@media screen and (max-width: 768px) {
    .map-container .country-circle:nth-child(6) {
        top: 30%;
        left: 15%;
    }
}

.map-container .country-circle:nth-child(7) {
    top: 36.5%;
    left: 16.2%;
}

@media screen and (max-width: 1500px) {
    .map-container .country-circle:nth-child(7) {
        top: 36%;
        left: 17.6%;
    }
}

@media screen and (max-width: 768px) {
    .map-container .country-circle:nth-child(7) {
        top: 34%;
        left: 11.5%;
    }
}

.country-circle {
    cursor: pointer;
    position: absolute;
    background-color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .country-circle {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 425px) {
    .country-circle {
        width: 10px;
        height: 10px;
    }
}

.country-circle:hover .country-card {
    display: block;
}

.country-circle:after {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    border: 5px solid white;
}

.country-card {
    transition: 0.5s;
    display: none;
    top: -80px;
    left: 24px;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 350px;
    padding: 35px 0;
    border-radius: 5px;
    text-align: center;
    background-color: white;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.country-card h2 {
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    color: #4691d0;
    font-size: 17px;
    font-weight: bold;
}

.country-card ::after {
    content: "";
    z-index: 2;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    top: 100%;
    left: 50%;
    margin: -15px 0 0 -25px;
    transform: rotate(45deg);
}

.main-technical-container {
    padding: 5%;
    background-image: url("./Assets/Images/Backgrounds/BackgroundTechnical.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

.main-technical-container .technical-header {
    margin-top: 130px;
}

.main-technical-container h1 {
    font-size: 45px;
    color: #043572;
    margin-bottom: 70px;
}

.main-technical-container h2 {
    font-size: 25px;
}

.main-technical-container .technical-text {
    font-size: 15px;
    margin: 30px 0 50px 0;
    color: #666666;
}

.main-technical-container .company-links {
    margin-top: 100px;
}

.main-technical-container .dashed-line {
    margin: 30px 0;
}

.main-technical-logo {
    text-align: center;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .main-technical-logo {
        display: none;
    }
}

.main-technical-logo img {
    height: 700px;
    width: auto;
}

@media screen and (max-width: 1500px) {
    .main-technical-logo img {
        height: 500px;
    }
}

.main-technical-container-3 {
    padding: 5%;
    background-image: url("./Assets/Images/Backgrounds/BackgroundTechnical.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.main-technical-container-3 .row {
    margin-top: 130px;
}

.main-technical-container-3 .company-logo {
    margin-bottom: 70px;
}

.main-technical-container-3 .technical-tag-list {
    margin-bottom: 40px;
}

.main-technical-container-3 p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
}

.main-technical-container-3 .pet-recycling {
    width: 100%;
}

.main-technical-container-3 .company-information {
    margin: 40px 40px 40px 0;
    padding-right: 40px;
    border-right: 2px dashed #bcc0c2;
}

@media screen and (max-width: 1024px) {
    .main-technical-container-3 .company-information {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }
}

.main-technical-container-3 .company-information .company-image {
    height: 70px;
    margin-bottom: 30px;
}

.main-technical-container-3 .company-information .company-image img {
    height: 100%;
    width: auto;
}

.main-technical-container-3 .company-information:last-child {
    border-right: none;
}

.main-technical-container-5 {
    padding: 5%;
    background-image: url("./Assets/Images/Backgrounds/BackgroundTechnical.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.main-technical-container-5 .technical-header {
    margin-top: 130px;
}

.main-technical-container-5 .company-logo {
    margin-bottom: 40px;
}

.main-technical-container-5 p {
    font-size: 15px;
    color: #666666;
}

.main-technical-container-5 .sub-text p {
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #06bfa4;
}

.main-technical-container-5 .company-image {
    margin: 25px 0;
}

.main-technical-container-5 .company-image img {
    width: 500px;
    height: 100%;
    margin-right: 10px;
    max-width: 100%;
}

svg {
    width: 70px;
    height: auto;
}

.main-download-container {

    background-image: url("./Assets/Images/Backgrounds/BackgroundTechnical.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.main-download-container p {
    font-size: 15px;
    color: #666666;

}

.main-download-container .pet-recycling {
    width: 500px;
}

.main-download-container .company-description {
    width: 700px;
}

.main-download-container .company-logo {
    margin-top: 130px;
}

.download-links-list {
    border-left: 2px dashed #bcc0c2;
    padding: 0 5%;
}

@media screen and (max-width: 1024px) {
    .download-links-list {
        padding: 15px;
        margin-top: 30px;
        border-left: none;
        border-top: 2px dashed #bcc0c2;
    }
}

.download-links-list .download-link {
    cursor: pointer;
    padding: 0;
    display: flex;
    gap: 20px;
}

.download-links-list .download-link .svg-container {
    width: 40px;
    min-width: 40px;
    max-width: 100%;
}

.download-links-list .download-link .svg-container svg {
    height: auto;
    width: 100%;
    border-radius: 6px;
}

.download-links-list .download-link p:nth-child(1) {
    font-weight: bold;
    font-size: 17px;
}

.contact-us-container {
    padding: 5% 10%;
    background-image: url("./Assets/Images/Backgrounds/Contact us background.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-us-content {
    margin-top: 130px;
    width: 600px;
    max-width: 100%;
}

.contact-us-content .title-section {
    width: 300px;
    max-width: 100%;
}

.contact-us-content .title-section h1 {
    color: #043572;
    font-weight: bold;
    font-size: 35px;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
}

.contact-us-content .title-section p {
    color: #06bfa4;
    font-weight: bold;
    font-size: 25px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

.contact-us-form-container {
    margin-top: 50px;
}

.contact-us-form-container .row {
    flex-wrap: wrap;
}

.contact-us-form-container .contact-us-form {
    margin-bottom: 30px;
}

.contact-us-form-container .contact-us-form:nth-child(1) p:nth-child(2) {
    color: #06bfa4;
}

.contact-us-form-container .contact-us-form:nth-child(1) input[type="submit"] {
    background-color: #06bfa4;
    color: white;
    border: solid 2px #06bfa4;
    transition: 0.5s;
}

.contact-us-form-container .contact-us-form:nth-child(1) input[type="submit"]:hover {
    background-color: white;
    color: #06bfa4;
}

.contact-us-form-container .contact-us-form:nth-child(2) p:nth-child(2) {
    color: #4691d0;
}

.contact-us-form-container .contact-us-form:nth-child(2) input[type="submit"] {
    background-color: #4691d0;
    color: white;
    border: solid 2px #4691d0;
    transition: 0.5s;
}

.contact-us-form-container .contact-us-form:nth-child(2) input[type="submit"]:hover {
    background-color: white;
    color: #4691d0;
}

.contact-us-form-container .contact-us-form:nth-child(3) p:nth-child(2) {
    color: #999999;
}

.contact-us-form-container .contact-us-form:nth-child(3) input[type="submit"] {
    background-color: #999999;
    color: white;
    border: solid 2px #999999;
    transition: 0.5s;
}

.contact-us-form-container .contact-us-form:nth-child(3) input[type="submit"]:hover {
    background-color: white;
    color: #999999;
}

.contact-us-form-container .contact-us-form .row {
    flex-wrap: wrap;
}

.contact-us-form-container p:nth-child(2) {
    font-weight: bold;
    font-size: 17px;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    margin-bottom: 15px;
}

form p:nth-child(2) {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
    color: #4691d0;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
}

form input[type="text"] {
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 12px;
}

form input[type="email"] {
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 12px;
}

form .text-area-form {
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 12px;
    resize: none;
}

form input[type="submit"] {
    font-size: 17px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    padding: 10px 100px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

form .wpcf7-response-output {
    font-size: 17px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    border-radius: 5px;
}

form .wpcf7-not-valid-tip {
    font-size: 17px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    margin-bottom: 15px;
}

form .wpcf7-list-item {
    margin-left: 0;
    margin-bottom: 15px;
}

form input[type="submit"] {
    background-color: #4691d0;
    color: white;
    border: solid 2px #4691d0;
    transition: 0.5s;
}

form input[type="submit"]:hover {
    background-color: white;
    color: #4691d0;
}

form .CV-input::-webkit-file-upload-button {
    display: none;
}

form .CV-input {
    width: 100%;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

form .CV-input::before {
    content: "Upload your CV here";
    display: inline-block;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    margin: 15px 10px 15px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 10pt;
    transition: 0.5s;
}

form .CV-input:hover::before {
    border-color: #4691d0;
    background-color: #4691d0;
    color: white;
}

.page-id-58 .wpcf7-list-item-label {
    color: black !important;
}

.About-us-container {
    background-image: url("./Assets/Images/Backgrounds/Background about us.png");
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;

    position: relative;
}

.About-us-container .about-us-header-container {
    color: white;
}

.About-us-container .about-us-header-container .title-section h1 {
    font-family: "Calibri", "Trebuchet MS", Helvetica, sans-serif;
}

.About-us-container .about-us-header-container .title-section p {
    color: white;
    font-size: 17px;
}

.About-us-container .about-us-header-container .header-icon-list {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.About-us-container .about-us-header-container .header-icon-list .header-icon-item p {
    color: white;
    font-size: 22px;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    font-weight: bold;
}

.About-us-container .about-us-header-container .header-icon-list .header-icon-item img {
    height: 40%;
}


.About-us-container .about-us-content {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg,
    rgb(255, 255, 255) 59%,
    rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    padding: 5% 5% 35% 5%;
}

@media only screen and (max-width: 768px) {
    .About-us-container .about-us-content {
        background: #ffffff; /* Fond blanc pour les appareils mobiles */
    }
}

.About-us-container .about-us-content h2 {
    color: #8cc63f;
}

.About-us-container .about-us-content p {
    font-size: 16px;
}

.About-us-container .about-us-content h2:nth-child(1) {

    padding: 0 40px;
}

@media screen and (max-width: 1024px) {
    .About-us-container .about-us-content h2:nth-child(1) {
        padding: 0;
    }
}

.About-us-container .about-us-content p:nth-child(2) {
    margin-bottom: 40px;
    padding: 0 40px;
}

@media screen and (max-width: 1024px) {
    .About-us-container .about-us-content p:nth-child(2) {
        padding: 0;
    }
}

.About-us-container .about-us-content p:nth-child(3) {
    background-color: #e8f4d9;
    padding: 25px 35px;
    margin-bottom: 40px;
    font-weight: bold;
    border-radius: 5px;
    color: black;
}

.About-us-container .about-us-content h2:nth-child(4) {
    padding: 0 40px;
    margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
    .About-us-container .about-us-content h2:nth-child(4) {
        padding: 0;
    }
}

.About-us-container .about-us-content p:nth-child(5) {
    padding: 0 40px;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .About-us-container .about-us-content p:nth-child(5) {
        padding: 0;
    }
}

.About-us-container .about-us-content p:nth-child(6) {
    padding: 0 40px;
    font-weight: bold;

}

@media screen and (max-width: 1024px) {
    .About-us-container .about-us-content p:nth-child(6) {
        padding: 0;
    }
}

.About-us-container .about-us-content button {
    margin: 0 auto;
}

.About-us-container .about-us-front-image {
    position: absolute;
    bottom: -5px;
    left: 0;
}

.About-us-container .about-us-front-image img {
    width: 100%;
}

.carrers-position-background {
    background-image: url("./Assets/Images/Backgrounds/backgroundCarreers.png");
}

.Careers-Position-container {
    padding: 5% 0;
    max-width: 90%;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
}

.Careers-Position-header {
    margin-top: 130px;
}

.Careers-Position-header h1 {
    font-size: 45px;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
    color: #043572;
    margin-bottom: 50px;
}

.Careers-Position-header p:nth-of-type(1) {
    font-size: 25px;
    color: #06bfa4;
    font-weight: bold;
    margin-bottom: 40px;
}

.Careers-Position-header .image-section {
    padding: 0 5%;
}

@media screen and (max-width: 1024px) {
    .Careers-Position-header .image-section {
        margin: 30px auto;
    }
}

.Careers-Position-header .image-section img {
    height: 500px;
}

@media screen and (max-width: 1024px) {
    .Careers-Position-header .image-section img {
        height: 400px;
        margin-top: 30px;
    }
}

.Carreers-Position-content h2 {
    margin-top: 25px;
    font-size: 25px;
    font-weight: bold;
    color: #4691d0;
}

.job-post-list {
    margin-top: 50px;
}

.job-post-card {
    background-color: white;
    padding: 20px 40px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .job-post-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

.job-post-card h3 {
    font-size: 24px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    margin-bottom: 10px;
}

.job-post-card a {
    display: flex;
    justify-content: center;
    width: 230px;
}

.taxonomy-list {
    margin: 10px 0 20px 0;
    display: flex;
    font-size: 16px;
    gap: 25px;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .taxonomy-list {
        flex-direction: column;
        align-items: flex-start;
    }
}

.taxonomy-list .taxonomy-item {
    display: flex;
}

.taxonomy-list .taxonomy-item img {
    margin-right: 5px;
    height: 20px;
}

.taxonomy-list .taxonomy-item p {
    line-height: 1.1;
    color: black;
}

.post-filter-container {
    margin-top: 50px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

.post-filter-container .form-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.post-filter-container label {
    font-size: 16px;
    font-weight: bold;
    color: #2d2d2d;
}

.post-filter-container select {
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    margin-top: 10px;
    display: block;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
    padding: 10px 50px;
}

@media screen and (max-width: 768px) {
    .post-filter-container select {
        width: 100%;
    }
}

.post-filter-container button {
    margin-top: 30px;
}

.indorama-bottle-container {
    background-image: url("./Assets/Images/Backgrounds/BottleBackground.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: monospace;
    padding: 5%;
    text-align: center;
    margin-bottom: 100px;
}

.indorama-bottle-container h3 {
    color: #043572;
    margin-bottom: 35px;
    font-size: 40px;
}

.indorama-bottle-container p {
    color: #043572;
    font-size: 20px;
    margin-bottom: 35px;
}

#bottle-num {
    font-size: 50px;
    position: relative;
    font-weight: bold;
    letter-spacing: 15px;
}

@media screen and (max-width: 768px) {
    #bottle-num {
        font-size: 20px;
    }
}

.indorama-bottle-counter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-post-container {
    padding: 5%;
    background-image: url("./Assets/Images/Backgrounds/backgroundCarreers.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.single-post-container .single-post-header {
    margin-top: 130px;
}

.single-post-container .single-post-header h2 {
    font-size: 45px;
    margin-bottom: 30px;
    color: #043572;
}

.single-post-container .single-post-content {
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    color: #666666;
}

.single-post-container .single-post-content h3 {
    color: black;
}

.single-post-container .single-post-content p {
    width: 1100px;
    max-width: 100%;
}

.single-post-container .single-post-content ul {
    list-style: none;
    margin-left: 40px;
}

.single-post-container .single-post-content ul li {
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-size: 15px;
    color: #666666;
}

.single-post-container .single-post-content ul li::before {
    content: "•";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #06bfa4;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

.single-post-container .single-post-content a {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 250px;
    align-items: center;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    position: relative;
}

h2 {
    font-size: 45px;
    line-height: 1;
    font-family: "Calibri", "Trebuchet MS", Helvetica, sans-serif;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 38px;
    }
}

h3 {
    font-size: 35px;
    font-family: "Nunito", Tahoma, Verdana, sans-serif;
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 28px;
    }
}

h4 {
    font-size: 40px;
    font-family: "Calibri", "Trebuchet MS", Helvetica, sans-serif;
}

p {
    font-size: 15px;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    color: #666666;
}

a {
    text-decoration: none;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
    font-weight: bold;
}

.news-letter-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: #0d1f45 solid 2px;
}

@media screen and (max-width: 1024px) {
    .news-letter-section {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }
}

.news-letter-section .title p {
    font-size: 20px;
}

.news-letter-button {
    display: block;
    background-color: #133174;
    border: none;
    padding: 15px 45px;
    color: white;
}

.news-letter-button {
    font-size: 15px;
}

.brands-page-container h1 {
    font-size: 45px;
    color: #043572;
    font-family: "NotoSans", Arial, Helvetica, sans-serif, Tahoma, Verdana,
    sans-serif;
}

.brands-page {
    background-image: url("./Assets/Images/Backgrounds/BackgroundTechnical.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.brands-page-container {
    max-width: 1700px;
    padding: 250px 30px 130px 30px;

    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin: 0 auto;
}

.brands-title {
    margin-bottom: 150px;
}

.brands-title h1 {
    margin-bottom: 30px;
}

.brands-title-description {
    max-width: 500px;
}

.brands-page-right-image {
    width: 100%;
    max-width: 650px;
}

.brands-page-right-image img {
    width: 100%;
}

.brand-description p {
    margin-bottom: 30px;
}

.brand-description {
    margin-bottom: 30px;
}

.brand-container {
    position: relative;
    max-width: 580px;
    margin-bottom: 100px;
    margin-top: 40px;
}

.brand-image {
    max-width: 350px;
    margin-bottom: 30px;
}

.brand-image img {
    width: 100%;
}

.hidden-on-desktop {
    display: none;
}

@media screen and (max-width: 1024px) {
    .hidden-on-mobile {
        display: none;
    }

    .hidden-on-desktop {
        display: block;
    }
}

.brands-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.company-description li {
    margin-bottom: 6px;
}

.company-description p {
    margin-bottom: 15px;
}