@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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%;
  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;
}

@font-face {
  font-family: "Canaro";
  src: url("../fonts/canaro-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canaro";
  src: url("../fonts/canaro-book-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canaro";
  src: url("../fonts/canaro-light-webfont.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canaro";
  src: url("../fonts/canaro-medium-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* ------------------------------ //NOTE COLORS ----------------------------- */
/* ----------------------------- //NOTE GLOBALS ----------------------------- */
* {
  color: #2b3545;
  outline: none;
  font-family: "Canaro", sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}

input::-moz-placeholder {
  font-family: "Canaro", sans-serif;
  font-weight: 500;
}

a,
p,
input,
input::placeholder,
strong,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Canaro", sans-serif;
  font-weight: 500;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
  padding: 0 10px;
  width: 100%;
  margin: 0 auto;
}
.container-fluid {
  max-width: 1700px;
}
.container-section {
  max-width: 1466px;
  margin: 0 auto;
  width: 100%;
}
.container-full {
  max-width: 1564px;
  margin: 0 auto;
  width: 100%;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: transparent;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: transparent;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  /* Firefox 18- */
  color: transparent;
}

/* ------------------------- //NOTE OPEN MODAL MENU ------------------------- */
/* -------------------------- //NOTE STICKY FOOTER -------------------------- */
html {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
}
body.open {
  overflow: hidden;
}

body,
html {
  height: 100%;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* ----------------------------- //NOTE SECTION ----------------------------- */
.section__title {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
  z-index: 1;
}
.section__title-inner {
  max-width: 55vw;
  width: 100%;
  color: #fff;
  line-height: 150%;
  letter-spacing: 6px;
  padding-right: 70px;
  font-weight: 700;
}

strong {
  font-weight: 700;
  color: inherit;
}

.innerCircle {
  position: relative;
  animation: rotatecircle 1s infinite linear;
  -webkit-animation: rotatecircle 15s infinite linear;
}
@keyframes rotatecircle {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* ------------------------------ //NOTE HOVER ------------------------------ */
.hover {
  transition: all 0.3s ease;
}
.hover:hover, .hover:focus {
  transform: translateY(-4px);
}

.header {
  position: fixed;
  top: 0;
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100px;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
  /* Dropdown Styles */
}
.header__btn {
  display: none;
  background-color: transparent;
  outline: none;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
}
.header__btn svg {
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.header__wrapp {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  max-width: 327px;
  display: flex;
}
.header__logo a {
  display: flex;
  max-width: 150px;
}
.header__logo a img {
  max-width: 250px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__nav.mobile {
  display: none;
}
.header__nav ul {
  display: flex;
  align-items: center;
}
.header__nav ul li + li {
  margin-left: 15px;
}
.header__nav ul a {
  color: #2b3545;
  text-decoration: none;
  padding: 25px 0;
}
.header__nav ul li:last-child {
  padding: 10px 16px;
  background: #FF4300;
  box-shadow: -2.27px 2.27px 2.84px rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  margin-left: 60px;
}
.header__nav ul li:last-child a {
  color: #fff;
}
.header .container {
  overflow: unset;
}
.header .dropdown {
  position: relative;
}
.header .dropdown:hover .dropdown-menu {
  display: block;
}
.header .dropdown-menu {
  display: none;
  position: absolute;
  z-index: 99;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header .dropdown-menu li {
  display: block;
  padding: 10px 0 !important;
}
.header .dropdown-menu li a {
  color: #333;
  padding: 10px;
  display: block;
  text-decoration: none;
  text-align: center;
}
.header .dropdown-menu li a:hover {
  background-color: #ddd;
}
.header .dropdown-menu li:last-child {
  padding: inherit;
  background: unset;
  box-shadow: unset;
  border-radius: unset;
  margin-left: unset;
}
.header .dropdown-menu li:last-child a {
  color: rgb(43, 53, 69);
  text-align: center;
}

.footer {
  padding: 50px 0;
}
.footer__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer__logo img {
  max-width: 229px;
}
.footer__nav ul {
  display: flex;
  justify-content: space-between;
}
.footer__nav ul li + li {
  margin-left: 15px;
}
.footer__nav ul a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18.15px;
  line-height: 22px;
  color: #293546;
}
.footer__copy {
  flex: 0 0 100%;
  text-align: center;
}

/* ------------------------------- //NOTE HERO ------------------------------ */
.hero {
  min-height: 760px;
  background-image: url("../img/Galp-herobanner.png");
  background-position: 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 100px;
}
.hero--main {
  min-height: 460px;
  justify-content: flex-start;
  background-image: url("../img/Galp-herobanner-main.png");
}
.hero--2022 {
  background-image: url("../img/background-blue-wide.png");
}
.hero--2022 .chellenges {
  background-image: none;
}
.hero--2022 .chellenges .card__item {
  flex: 0 0 25%;
}
.hero--2022 .chellenges .card__item:nth-child(3) .card__item-main {
  background-color: #faaa14;
}
.hero--2022 .chellenges .card__item:nth-child(3) .card__title {
  color: #faaa14;
}
.hero--2022 .chellenges .card__item:nth-child(4) .card__item-main {
  background-color: #1e6ec8;
}
.hero--2022 .chellenges .card__item:nth-child(4) .card__title {
  color: #1e6ec8;
}
.hero__wrapp {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 212px;
}
.hero__wrapp--main {
  margin-top: 0;
}
.hero__title {
  width: 100%;
  margin: 0 auto;
  position: relative;
  left: 0;
  z-index: 2;
  height: 50px;
}
.hero__title::after {
  content: "";
  width: 100vw;
  height: 45px;
  background-color: #Fa551e;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
}
.hero__title-row {
  font-size: 16px;
  max-width: 1280px;
  padding: 0 10px;
  display: flex;
  margin: 0 auto;
  height: 45px;
  align-items: center;
  color: #fff;
}
.hero__title-row a {
  color: inherit;
}
.hero__title-row .title-inner {
  max-width: 100%;
  display: flex;
  width: 100%;
  justify-content: center;
  color: #fff;
  letter-spacing: 9px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.hero__title-row .title-inner a {
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 35px;
  position: absolute;
  right: 0;
  top: -23px;
  background-color: #Fa551e;
  box-shadow: -8px 7px 12px -4px rgba(0, 0, 0, 0.43);
  border-radius: 15px;
}
.hero__title-apply {
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 28px 35px;
  /* position: absolute; */
  right: 27vw;
  top: -14px;
  background-color: #Fa551e;
  box-shadow: -8px 7px 12px -4px rgba(0, 0, 0, 0.43);
  border-radius: 15px;
  color: #fff;
  display: block;
  max-width: 201px;
  margin: 0 auto;
  margin-top: 30px;
}
.hero__title-img {
  max-width: 585px;
  width: 100%;
  padding-top: 35px;
  margin: 0 auto;
}
.hero__title-img .year-date {
  text-align: center;
  color: #fff;
  font-size: 96px;
}
.hero__footer {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 107px;
}
.hero__footer img {
  max-width: 225px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---------------------------- //NOTE INOVATION ---------------------------- */
.inovation {
  min-height: 502px;
  background: #FF4300;
  padding: 80px 0;
}
.inovation--main {
  background: url("../img/blue-bg-main.png") no-repeat center center;
  background-size: cover;
}
.inovation#about {
  background: #28B446;
}
.inovation__wrapper {
  display: flex;
  gap: 25px;
}
.inovation .left {
  font-style: normal;
  font-weight: 500;
  font-size: 33.39px;
  line-height: 43px;
  color: #FFFFFF;
  flex: 0 0 60%;
}
.inovation .left--main {
  flex: 0 0 100%;
  text-align: center;
}
.inovation .left span {
  display: block;
  color: #fff;
  padding-top: 25px;
  font-size: 25px;
}
.inovation .left span a {
  color: inherit;
  position: relative;
  top: 0;
}
.inovation .left span a:hover {
  top: -4px;
}
.inovation .right {
  font-style: normal;
  font-weight: 500;
  font-size: 25.7px;
  line-height: 36px;
  color: #FFFFFF;
}
.inovation__video {
  width: 100vw;
  height: 790px;
  -o-object-fit: none;
     object-fit: none;
}
.inovation.apply {
  padding: 70px 0;
  margin-top: -3px;
  min-height: auto;
  background-image: url(../img/Galp-herobanner.png);
  background-position: 46% 30%;
  background-position: 57% 30%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inovation.apply--bg-main {
  background-image: url(../img/cta-bg-main.png) !important;
}
.inovation.apply .apply_now__btn {
  margin: 0;
}
.inovation.apply .right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.inovation.apply .left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.inovation.apply .left span {
  max-width: 685px;
  font-weight: 600;
  font-size: 43.39px;
  line-height: 53px;
  /* identical to box height */
  color: #FFFFFF;
}

.video-js {
  max-width: 800px !important;
  width: 100%;
  margin: 0 auto;
  height: 450px;
}

/* ---------------------------- //NOTE CHALLENGES --------------------------- */
.chellenges {
  background-image: url("../img/Galp-herobanner1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 50px;
  margin-top: -3px;
}
.chellenges--main {
  background-image: url("../img/background-5.png");
}
.chellenges--2022 .sliders {
  width: 80%;
  margin: 20px auto;
}
.chellenges--2022 .sliders img {
  width: 100%;
  height: auto;
}
.chellenges--2022 .card__item {
  flex: 0 0 25% !important;
}
.chellenges--2022 .card__item .card__img {
  width: 100%;
  margin-bottom: 25px;
}
.chellenges--2022 .card__item:nth-child(3) .card__item-main {
  background-color: #faaa14 !important;
}
.chellenges--2022 .card__item:nth-child(3) .card__title {
  color: #faaa14 !important;
}
.chellenges--2022 .card__item:nth-child(4) .card__item-main {
  background-color: #1e6ec8 !important;
}
.chellenges--2022 .card__item:nth-child(4) .card__title {
  color: #1e6ec8 !important;
}
.chellenges .container {
  position: relative;
}
.chellenges__btns .prev {
  left: -35px;
  transform: rotate(181deg);
}
.chellenges__btns .next {
  right: -35px;
}
.chellenges .slick-list {
  min-height: 670px;
}
.chellenges__title {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 55px;
  line-height: 150%;
  text-transform: uppercase;
}
.chellenges .card {
  display: flex;
}
.chellenges .card__item {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 3px;
}
.chellenges .card__item-main {
  max-width: 60%;
  min-height: 350px;
  width: 100%;
  border-radius: 15px;
  padding: 15px;
}
.chellenges .card__item-main img {
  max-width: 145px;
  margin: 0 auto;
  display: block;
}
.chellenges .card__front-wrapp {
  position: relative;
  top: -164px;
  border-radius: 15px;
}
.chellenges .card__item-front {
  background-color: #fff;
  padding: 20px;
  position: relative;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 100%;
  min-width: 267px;
  max-width: 267px;
}
.chellenges .card__item-front::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(0% 0%, 61% 0, 79% 47%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 61% 0, 79% 47%, 100% 100%, 0% 100%);
  height: 46px;
  width: 96px;
  background: #fff;
  border-top-left-radius: 15px;
  top: -45px;
  left: 0;
}
.chellenges .card__item-front:before {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(0% 0%, 61% 0, 79% 47%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 61% 0, 79% 47%, 100% 100%, 0% 100%);
  height: 46px;
  width: 96px;
  background: #fff;
  border-top-left-radius: 15px;
  top: -45px;
  right: 0;
  transform: scale(-1, 1);
}
.chellenges .card__title {
  font-size: 20px;
  color: #c8471d;
  padding-bottom: 10px;
}
.chellenges .card__subtitle {
  font-size: 17px;
}
.chellenges .card .text_acc_ .title {
  font-size: 22px;
  color: #c8471d;
  padding-bottom: 10px;
  cursor: pointer;
}
.chellenges .card .text_acc_ .answer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.chellenges .card .text_acc_ .answer {
  line-height: 120%;
}
.chellenges .card .text_acc_ .answer li {
  padding: 5px 0;
  border-bottom: 1px solid grey;
}
.chellenges .card .text_acc {
  padding: 10px 0;
}
.chellenges .card .text_acc .title {
  font-size: 22px;
  color: #c8471d;
  padding-bottom: 10px;
  cursor: pointer;
}
.chellenges .card .text_acc .answer:not(.answer--main) {
  display: none;
  line-height: 120%;
}
.chellenges .card .text_acc .answer:not(.answer--main) p {
  font-weight: 700;
}
.chellenges .card .text_acc .answer:not(.answer--main) li {
  padding: 5px 0;
  border-bottom: 1px solid grey;
  position: relative;
  padding-left: 10px;
}
.chellenges .card .text_acc .answer:not(.answer--main) li:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  left: 0;
  top: 0;
  background-color: #2b3545;
  width: 5px;
  height: 5px;
  left: -1px;
  top: 11px;
  border-radius: 100%;
}
.chellenges .card .text_acc .answer--main {
  display: none;
}
.chellenges .card .text_acc .answer--main p {
  font-weight: bold;
}
.chellenges .card .text_acc .answer--main p a {
  font-weight: 400;
  color: #fff;
}

.card__item:nth-child(1) .card__item-main {
  background-color: #c8471d;
}
.card__item:nth-child(1) .card__title,
.card__item:nth-child(1) .card__item-front .title {
  color: #c8471d;
}
.card__item:nth-child(2) .card__item-main {
  background-color: #00841c;
}
.card__item:nth-child(2) .card__title,
.card__item:nth-child(2) .card__item-front .title {
  color: #00841c;
}
.card__item:nth-child(3) .card__item-main {
  background-color: #502d7f;
}
.card__item:nth-child(3) .card__title,
.card__item:nth-child(3) .card__item-front .title {
  color: #502d7f;
}
.card__item:nth-child(4) .card__item-main {
  background-color: #faaa14;
}
.card__item:nth-child(4) .card__title,
.card__item:nth-child(4) .card__item-front .title {
  color: #faaa14;
}
.card__item:nth-child(5) .card__item-main {
  background-color: #1e6ec8;
}
.card__item:nth-child(5) .card__title,
.card__item:nth-child(5) .card__item-front .title {
  color: #1e6ec8;
}
.card__item--main .card__item-main {
  background-color: unset !important;
  min-width: 267px;
  max-width: 267px;
}
.card__item--main .card__front-wrapp .card__item-title {
  font-size: 18px;
  padding: 15px;
  background-color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 22px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.card__item--main .card__front-wrapp .card__item-title span {
  font-weight: 300;
}
.card__item--main .card__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 25px 15px;
}
.card__item--main .card__bottom p, .card__item--main .card__bottom li {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
}
.card__item--main .card__bottom ul {
  list-style-type: "• ";
}
.card__item--main .card__bottom ul li {
  margin-left: 15px;
}
.card__item--main .card__bottom ul li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: #fff 1px solid;
}
.card__item--main:nth-child(1) .card__item-title {
  color: #c8471d;
}
.card__item--main:nth-child(1) .card__bottom {
  background-color: #c8471d;
}
.card__item--main:nth-child(2) .card__item-title {
  color: #00841c;
}
.card__item--main:nth-child(2) .card__bottom {
  background-color: #00841c;
}
.card__item--main:nth-child(3) .card__item-title {
  color: #502d7f;
}
.card__item--main:nth-child(3) .card__bottom {
  background-color: #502d7f;
}
.card__item--main:nth-child(4) .card__item-title {
  color: #faaa14;
}
.card__item--main:nth-child(4) .card__bottom {
  background-color: #faaa14;
}
.card__item--main:nth-child(5) .card__item-title {
  color: #1e6ec8;
}
.card__item--main:nth-child(5) .card__item-title span {
  color: #1e6ec8;
}
.card__item--main:nth-child(5) .card__bottom {
  background-color: #1e6ec8;
}

/* ------------------------------ //NOTE APPLY ------------------------------ */
.apply {
  padding: 100px 0;
}
.apply__title {
  color: #28B446;
  text-align: center;
  font-weight: 600;
  font-size: 33px;
  line-height: 40px;
  padding-bottom: 50px;
}
.apply__wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}
.apply__text-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  align-items: center;
}
.apply__text-wrap .apply__text {
  flex: 1 0 30%;
}
.apply__text {
  font-size: 18px;
  color: #2b3545;
  line-height: 150%;
  max-width: 507px;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
}
.apply__text strong {
  font-weight: 700;
}
.apply__text span {
  font-weight: 400;
}
.apply__logo {
  max-width: 310px;
  margin: 0 50px;
}
.apply__logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.apply__btn {
  color: #fff;
  background: #28B446;
  box-shadow: -2.27px 2.27px 2.84px rgba(0, 0, 0, 0.6);
  display: block;
  max-width: 200px;
  padding: 22px 35px;
  text-align: center;
  border-radius: 15px;
  margin: 0 auto;
  margin-top: 78px;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 28px 35px;
  margin-bottom: 10px;
}
.apply__btn a {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

/* ----------------------------- //NOTE TIMELINE ---------------------------- */
.timeline {
  padding: 70px 0;
  background-image: url("../img/background-6-main.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}
.timeline__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
  position: relative;
}
.timeline__wrapper h2 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.timeline__logos {
  display: flex;
  flex-direction: row;
  position: absolute;
  gap: 10px;
  bottom: 25px;
  left: 0;
}
.timeline__logos img {
  max-height: 50px;
}
.timeline__title {
  font-weight: 600;
  font-size: 33px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}
.timeline svg {
  width: 99%;
  position: absolute;
  top: 25%;
}
.timeline__top, .timeline__bottom {
  font-size: 16vw;
  letter-spacing: 4vw;
  line-height: 64%;
  color: #D63A00;
}
.timeline__bottom {
  font-size: 14vw;
  letter-spacing: 0.5vw;
  line-height: 73%;
  text-align: center;
}
.timeline .container:not(.container.mobile) {
  position: relative;
}
.timeline .container.mobile {
  display: none;
}
.timeline__btns .prev,
.timeline__btns .next {
  background-image: url(../img/right.svg);
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  filter: invert(100%);
  position: absolute;
  top: 36%;
}
.timeline__btns .prev.slick-disabled,
.timeline__btns .next.slick-disabled {
  opacity: 0.5;
}
.timeline__btns .prev {
  left: -35px;
  transform: rotate(181deg);
}
.timeline__btns .next {
  right: -35px;
}
.timeline.swipe .timeline__container {
  margin: 0 auto;
  max-width: 1466px;
}
.timeline.swipe .timeline__wrapp {
  display: flex;
  width: 1564px;
}
.timeline.swipe .timeline__item {
  display: inline;
  width: 289px !important;
  height: 289px !important;
  padding-left: 90px;
  padding-right: 79px;
}
.timeline.swipe .timeline__item:first-child {
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
}
.timeline.swipe .timeline__item:not(:first-child) {
  margin-left: -60px;
}
.timeline__item {
  background-color: #Fa551e;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  width: 300px;
  height: 300px;
  padding-left: 90px;
  padding-right: 79px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.timeline__item[data-slick-index="0"] {
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
}
.timeline__item .top,
.timeline__item .bottom {
  color: #FFF;
  padding: 25px 0;
  font-weight: 700;
  text-align: center;
}
.timeline__item .top {
  border-bottom: 1px solid #fff;
}
.timeline .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.timeline .slick-dots li + li {
  margin-left: 15px;
}
.timeline .slick-dots li.slick-active {
  opacity: 0.3;
}
.timeline .slick-dots button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  background-color: #c8471d;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
}
.timeline__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 1000px;
}
.timeline__inner .card_wrap {
  position: absolute;
  height: 150px;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  width: 100%;
}
.timeline__inner .card_wrap .title {
  color: #fff;
  padding: 20px 5px;
  line-height: 120%;
  font-size: 19px;
}
.timeline__inner .card_wrap .text {
  color: #fff;
  padding-left: 20px;
  line-height: 120%;
  font-size: 17px;
}
.timeline__card {
  min-height: 400px;
  position: relative;
}
.timeline__card:nth-child(even) .card_wrap {
  bottom: -20px;
  flex-direction: column-reverse;
}
.timeline__card:nth-child(even) .devider {
  bottom: 40px;
}
.timeline__card .devider {
  height: 125px;
  width: 2px;
  background: aliceblue;
  position: absolute;
  bottom: 59%;
}

/* ------------------------------- //NOTE FAQ ------------------------------- */
.faq {
  padding: 140px 0 100px;
  background-image: url("../img/background-faq-main.png");
}
.faq__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.faq__inner .faq__title {
  padding-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 91.45px;
  line-height: 111px;
}
.faq__inner a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 33px;
  line-height: 40px;
  color: #FFFFFF;
}
.faq__cta {
  display: flex;
  justify-content: flex-end;
}
.faq__cta a {
  color: #FFF;
  font-size: 30px;
  padding: 35px 0;
  font-weight: 700;
}
.faq__a, .faq__q {
  color: #Fa551e;
  line-height: 150%;
}
.faq__a {
  transition: all 0.7s ease;
  color: #2b3545;
  font-weight: 400;
  height: 0;
  opacity: 0;
  z-index: -1;
}
.faq__a p {
  display: none;
}
.faq__q {
  cursor: pointer;
  font-weight: 700 !important;
}
.faq__wrapp {
  width: 100%;
}
.faq__wrapp li {
  position: relative;
  background: #fff;
  margin-bottom: 35px;
  padding: 15px 25px;
  border-radius: 15px;
}
.faq__wrapp li:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 10px;
  top: 21px;
  background-image: url(../img/right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.faq__wrapp li.open:after {
  transform: rotate(90deg);
}
.faq__wrapp li.open .faq__a {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  opacity: 1;
  z-index: 1;
}
.faq__wrapp li.open .faq__a p {
  display: block;
  padding: 25px 25px 40px;
}
.faq__title {
  font-size: 30px;
  padding-bottom: 10px;
  color: #FFF;
  line-height: 150%;
}
.faq__subtitle {
  font-size: 20px;
  padding-bottom: 50px;
  color: #FFF;
  line-height: 150%;
}

/* ----------------------------- //NOTE SUCCESS ----------------------------- */
.succsess {
  padding: 74px 0;
  background-image: url("../img/comments-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
.succsess .container {
  position: relative;
}
.succsess__title {
  font-weight: 600;
  font-size: 33px;
  line-height: 40px;
  color: #FFFFFF;
  text-align: center;
}
.succsess__wrapp {
  padding: 50px 0;
}
.succsess__wrapp p {
  color: #Fa551e;
}
.succsess__slider {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.succsess__btns .prev,
.succsess__btns .next {
  background-image: url(../img/right.svg);
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  position: absolute;
  top: 50%;
}
.succsess__btns .prev.slick-disabled,
.succsess__btns .next.slick-disabled {
  opacity: 0.5;
}
.succsess__btns .prev {
  left: 0;
  transform: rotate(181deg);
}
.succsess__btns .next {
  right: 0;
}
.succsess__wrapper {
  margin-top: 50px;
}
.succsess__wrapper .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 5px;
  height: 5px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #2b3545;
  border-radius: 100%;
}
.succsess__wrapper .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.succsess__wrapper .slick-dots li + li {
  margin-left: 10px;
}
.succsess__wrapper .slick-dots li.slick-active button {
  width: 14px !important;
  height: 14px !important;
}
.succsess__wrapper .slide svg {
  width: 35px;
  height: 35px;
}
.succsess__wrapper .slide__wrapp {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.succsess__wrapper .slide__wrapp p {
  line-height: 120%;
  padding: 20px 10px 35px;
  font-size: 18px;
  color: #fff;
}
.succsess__wrapper .slide__name {
  padding: 10px;
  font-size: 18px;
  color: #fff;
}
.succsess__wrapper .slide__sub {
  padding: 10px;
  font-size: 18px;
  color: #fff;
}

/* ------------------------------ //NOTE ABOUT ------------------------------ */
.about {
  padding: 100px 0;
  background-color: #Fa551e;
}
.about__title {
  font-size: 30px;
  padding-bottom: 10px;
  color: #FFF;
  line-height: 150%;
}
.about__text {
  color: #FFF;
  line-height: 150%;
  font-weight: 700;
  max-width: 50%;
  margin-top: 50px;
}
.about__text + .about__text {
  margin-top: 35px;
  text-align: right;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
}
.about__video {
  padding-top: 50px;
  margin: 0 auto;
}

/* ---------------------------- //NOTE APPLY NOW ---------------------------- */
.apply_now {
  padding: 100px 0;
  background-image: url("../img/Galp-background_3.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.apply_now__title {
  font-size: 30px;
  padding-bottom: 10px;
  color: #FFF;
  line-height: 150%;
  font-weight: 700;
}
.apply_now__btn {
  display: block;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 35px;
  right: 27vw;
  top: -9px;
  background-color: #Fa551e;
  box-shadow: -8px 7px 12px -4px rgba(0, 0, 0, 0.43);
  border-radius: 15px;
  color: #fff;
  margin: 75px auto 25px;
  max-width: 205px;
}

/* ----------------------------- //NOTE DIVIDER ---------------------------- */
.divider {
  height: 100px;
  background-color: transparent;
}

/* ----------------------------- //NOTE CONTACTS ---------------------------- */
.contacts {
  padding: 100px 0;
}
.contacts__title {
  padding-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 60.45px;
  line-height: 111px;
}
.contacts form {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.contacts form label {
  display: flex;
  flex-direction: column;
}
.contacts form label span {
  padding-bottom: 15px;
}
.contacts form input {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid;
}
.contacts form textarea {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid;
  padding: 10px 15px;
}
.contacts form .btn {
  display: block;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 35px;
  right: 27vw;
  top: -9px;
  border: none;
  background-color: #Fa551e;
  box-shadow: -8px 7px 12px -4px rgba(0, 0, 0, 0.43);
  border-radius: 15px;
  color: #fff;
  margin: 75px auto 25px;
  max-width: 205px;
  width: 100%;
  cursor: pointer;
}
.contacts form .form__row {
  display: flex;
  gap: 35px;
}
.contacts form .form__row label {
  width: 100%;
}
.contacts form .form__row label span {
  padding-bottom: 15px;
}
.contacts form .form__row input {
  width: 100%;
  margin-bottom: 35px;
}

.chellenges .card .text_acc .title--main {
  color: #fff;
}

.info-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
  background: #fff;
  margin-bottom: 35px;
  padding: 15px 25px;
  border-radius: 15px;
}
.info-container--block {
  margin-bottom: 40px;
}

.info-orange {
  color: #Fa551e;
  line-height: 32px;
}
.info-orange--gap {
  margin-bottom: 15px;
}
.info-orange--bold {
  font-weight: 700;
}
.info-orange--title {
  margin-bottom: 15px;
}
.info-orange--text {
  margin-bottom: 5px;
}
.info-orange--text a {
  color: #Fa551e !important;
  font-size: inherit;
}
.info-orange--list {
  list-style: disc;
  padding-left: 25px;
}
.info-orange--list li:not(last-child) {
  margin-bottom: 5px;
}

@media only screen and (min-width: 1900px) {
  .timeline::before {
    right: 0;
  }
}
@media only screen and (max-width: 1899px) {
  .timeline::before {
    right: 0;
  }
}
@media only screen and (max-width: 1615px) {
  .timeline::before {
    display: none;
  }
  .timeline:after {
    width: 100vw;
  }
}
@media only screen and (max-width: 1450px) {
  .timeline__inner {
    width: 68vw;
  }
}
@media only screen and (max-width: 1350px) {
  .chellenges--2022 .card__item {
    flex: 0 0 31% !important;
  }
  .chellenges .card {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 100px;
  }
  .chellenges .card__item {
    flex: 0 0 31%;
    margin-top: -100px;
  }
  .hero--2022 .chellenges {
    background-image: none;
  }
  .hero--2022 .chellenges .card__item {
    flex: 0 0 31%;
  }
}
@media only screen and (max-width: 1300px) {
  .chellenges {
    position: relative;
  }
  .chellenges__wrapper {
    max-width: 90vw;
    margin: 0 auto;
  }
  .chellenges__btns .prev {
    left: 0;
    z-index: 9999;
  }
  .chellenges__btns .next {
    right: 0;
    z-index: 9999;
  }
}
/* ------------------------------- //LINK 1160 ------------------------------- */
@media only screen and (max-width: 1160px) {
  .header__nav {
    display: none;
  }
  .header__nav ul:not(.dropdown-menu) li + li {
    margin-left: 0;
  }
  .header__nav ul:not(.dropdown-menu) li:last-child {
    margin: auto;
    width: 200px;
    text-align: center;
  }
  .header__nav.mobile {
    transition: all 1s ease;
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    left: -1000vw;
    width: calc(100vw - 20%);
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__nav.mobile ul:not(.dropdown-menu) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header__nav.mobile ul:not(.dropdown-menu) a,
  .header__nav.mobile ul:not(.dropdown-menu) li {
    padding: 25px 0;
  }
  .header__btn {
    display: block;
  }
  .header__btn.close #menu {
    opacity: 1;
    z-index: 1;
  }
  .header__btn.close #close {
    opacity: 0;
    z-index: -1;
  }
  .header__btn.open #menu {
    opacity: 0;
    z-index: -1;
  }
  .header__btn.open #close {
    opacity: 1;
    z-index: 1;
  }
  .chellenges .card__item-main {
    max-width: 250px;
  }
  .chellenges .card__item-front {
    min-width: 367px;
    max-width: 367px;
  }
  .chellenges .card__item {
    flex: 0 0 48%;
  }
  .chellenges--2022 .card__item {
    flex: 0 0 48% !important;
  }
  .hero--2022 .chellenges {
    background-image: none;
  }
  .hero--2022 .chellenges--2022 .card__item {
    flex: 0 0 48% !important;
  }
  .hero--2022 .chellenges .card__item {
    flex: 0 0 48%;
  }
  .timeline .timeline__logos {
    display: none;
  }
  .timeline .apply_now__btn {
    margin: 0 auto;
  }
}
/* ------------------------------- //LINK 991 ------------------------------- */
@media only screen and (max-width: 991px) {
  .hero__title::after {
    width: 100vw;
  }
  .hero__title-row {
    max-width: 100%;
    width: 100%;
  }
  .hero .title-inner {
    max-width: 100%;
    width: 100%;
  }
  .inovation__wrapper {
    flex-direction: column;
  }
  .inovation__video {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .apply__text-wrap {
    flex-direction: column;
  }
  .timeline__inner {
    flex-direction: column;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    align-items: center;
  }
  .timeline__card {
    min-height: 150px;
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
  .timeline:after {
    content: "";
    top: 47%;
    left: 0;
    transform: translateY(50%) rotate(90deg);
  }
  .timeline__card:nth-child(even) .card_wrap {
    text-align: end;
  }
  .timeline__card:nth-child(even) .devider {
    left: 60%;
    transform: rotate(90deg);
  }
  .timeline__card:nth-child(even) .card_wrap {
    flex-direction: column;
    padding-top: 20px;
  }
  .timeline__card .devider {
    height: 125px;
    width: 2px;
    background: aliceblue;
    position: absolute;
    bottom: 59%;
    transform: rotate(90deg);
    left: 40%;
  }
  .timeline__mobile {
    min-height: 900px;
  }
}
@media only screen and (max-width: 825px) {
  .chellenges .card__item {
    flex: 0 0 100%;
  }
  .chellenges--2022 .card__item {
    flex: 0 0 100% !important;
  }
  .hero--2022 .chellenges .card__item {
    flex: 0 0 100%;
  }
  .succsess__slider {
    max-width: 500px;
  }
}
@media only screen and (max-width: 740px) {
  .chellenges__title {
    font-size: 20px;
  }
  .footer__wrapp {
    flex-direction: column;
  }
  .footer__nav {
    padding: 35px 0;
  }
  .footer__nav ul {
    justify-content: center;
    align-items: center;
  }
  .timeline__inner .card_wrap .title {
    max-width: 150px;
  }
  .timeline__card:nth-child(even) .card_wrap {
    flex-direction: column;
    padding-top: 20px;
  }
  .timeline__card:nth-child(even) .card_wrap .title {
    margin-left: auto;
  }
  .timeline:after {
    display: none;
  }
  .timeline__inner .card_wrap {
    align-items: center;
    position: static;
    height: 150px;
    display: flex;
    flex-direction: column;
    min-width: 190px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .timeline__card:nth-child(even) .card_wrap .title {
    margin-left: 0;
  }
  .timeline__card .devider {
    display: none;
  }
  .timeline__inner .card_wrap .title {
    max-width: 100%;
    text-align: center;
  }
  .timeline__inner .card_wrap {
    position: static;
  }
  .timeline__inner .card_wrap .text {
    padding-left: 0;
    text-align: center;
  }
  .apply__text {
    text-align: center;
  }
  .chellenges__btns .prev,
  .chellenges__btns .next {
    top: 300px;
  }
}
@media only screen and (max-width: 560px) {
  .succsess__btns {
    display: none;
  }
  .header__logo a img {
    max-width: 200px;
  }
  .faq__inner .faq__title {
    font-size: 60px;
  }
  .contacts form .form__row {
    gap: 0;
    flex-direction: column;
  }
  .timeline__mobile {
    min-height: auto;
  }
  .year-date {
    font-size: 46px !important;
  }
}
@media only screen and (max-width: 500px) {
  .hero__title::after {
    height: 70px;
    top: -11px;
  }
  .hero .title-inner {
    line-height: 120%;
  }
  .hero__footer img {
    width: 100%;
  }
  .footer__nav ul {
    flex-direction: column;
  }
  .footer__nav li {
    padding: 15px 0;
  }
  .footer__nav ul li + li {
    margin-left: 0;
  }
  .inovation .left {
    font-style: normal;
    font-weight: 500;
    font-size: 23.39px;
    line-height: 34px;
    color: #FFFFFF;
    flex: 0 0 60%;
  }
  .inovation.apply .left span {
    font-size: 30.39px;
    line-height: 120%;
    text-align: center;
  }
  .inovation.apply {
    background-position: center center;
  }
}
@media only screen and (max-width: 450px) {
  .chellenges .card__item-front {
    min-width: 325px;
    max-width: 325px;
  }
  .chellenges .card__item-main {
    max-width: 30%;
  }
  .chellenges__btns .prev,
  .chellenges__btns .next {
    top: 25%;
  }
  .chellenges .card__item-front {
    min-width: 280px;
    max-width: 280px;
  }
  .chellenges .card__item-main {
    max-width: 60%;
  }
  .faq__wrapp li.open .faq__a p {
    padding: 25px 0 40px;
  }
}
@media only screen and (max-width: 376px) {
  .chellenges__btns .prev,
  .chellenges__btns .next {
    top: 284px;
  }
}/*# sourceMappingURL=style.css.map */