@import url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #023D8D;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

section.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px;
  margin: auto;
  width: 100%;
  z-index: 99;
}
section.header header {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.header header .l-di img {
  width: 130px;
}
section.header header .r-di {
  display: flex;
  align-items: center;
  gap: 50px;
}
section.header header .r-di .search-box {
  width: 206.751px;
  height: 55px;
  border-radius: 27.766px;
  border: 1px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
section.header header .r-di .search-box input {
  background: transparent;
  outline: none;
  border: none;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 130px;
}
section.header header .r-di .search-box input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
  /* Firefox */
}
section.header header .r-di .search-box input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
  /* Firefox */
}
section.header header .r-di .search-box input::placeholder {
  color: #ffffff;
  opacity: 1;
  /* Firefox */
}
section.header header .r-di .search-box input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #ffffff;
}
section.header header .r-di .search-box button {
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
section.header header .r-di a {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
section.header header .r-di button {
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
section.header header .r-di:last-child {
  margin-right: 50px;
}
section.header nav {
  border-radius: 15px;
  background: #FFF;
  box-shadow: -20px 0px 40px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 24px;
  display: none;
}
section.header nav.show {
  display: block;
}
section.header nav ul li:first-child a {
  text-align: end;
  padding: unset;
}
section.header nav ul li:first-child a:hover {
  background: transparent;
  cursor: pointer;
}
section.header nav ul li a {
  color: #092F63;
  font-family: Roboto;
  font-size: 36px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  display: block;
  padding: 10px 24px;
  border-radius: 15px;
}
section.header nav ul li a:hover {
  color: #ffffff;
  background: #092F63;
}
section.header nav ul li ul {
  display: none;
  position: absolute;
  left: -85%;
  top: 25%;
  border-radius: 15px;
  background: #FFF;
  box-shadow: -20px 0px 40px 0px rgba(0, 0, 0, 0.25);
}
section.header nav ul li ul li:first-child a {
  text-align: unset;
  padding: 10px 24px;
}
section.header nav ul li ul li:first-child a:hover {
  background: #092F63;
  cursor: pointer;
}
section.header nav ul li ul li a {
  font-size: 24px;
}
section.header nav ul li:hover ul {
  display: block;
}
section.hidden {
  display: none;
}

section.title {
    background-image: url("../img/background-image.png");
    background-position: center;
    max-width: 1440px;
    margin: auto;
    padding: 80px;
    position: relative;
    overflow: hidden;
}
section.title .img-dec.dec-1 {
    position: absolute;
    left: 0;
    top: -10px;
}
section.title h1 {
    color: #FFF;
    font-family: Roboto;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 120px;
}

@media (max-width: 768px) {
    section.title {
        padding: 40px 16px;
    }
    section.title .img-dec.dec-1 {
        left: -100px;
    }
    section.title .img-dec.dec-1 svg {
        width: 400px;
    }
    section.title .img-dec.dec-2 {
        display: none;
    }
    section.title h1 {
        font-size: 40px;
        margin-top: 75px;
    }
}

section.sect-1 {
    background-color: #ffffff;
    max-width: 1440px;
    margin: auto;
    padding-bottom: 100px;
    padding-top: 60px;
}
section.sect-1 .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    padding: 0 36px;
    border-radius: 15px;
}
section.sect-1 .wrapper .cont img {
    width: 100%;
    border-radius: 15px;
}
@media (max-width: 768px) {
    section.sect-1 .wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
section.sect-2 {
    padding: 40px 80px;
}
section.sect-2 .wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}
section.sect-2 .wrapper video {
    width: 100%;
}