.presentation {
  padding-top: 145px;
  padding-bottom: 40px;
  background-color: #000;
}

.presentation .container {
  display: flex;
  justify-content: flex-end;
}

.presentation .container>.description {
  margin-top: 190px;
  border-top: 1px solid #666666;
  padding-right: 45%;
  padding-top: 40px;
  width: 100%;
  position: relative;
}

.presentation .container>.description.highlight-mod {
  padding-right: 0;
}

@media (max-width: 1180px) {
  .presentation .container>.description {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .presentation .container>.description {
    margin-top: 130px;
    padding-top: 25px;
  }
}

.presentation .container>.description p {
  font-size: 22px;
  line-height: 42px;
  color: #FFFFFF;
}

.presentation .container>.description h1 {
  font-size: 36px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 580px;
  min-height: 100px;
}

@media (max-width: 767px) {
  .presentation .container>.description h1 {
    font-size: 28px;
    min-height: 40px;
  }
}

.presentation .container>.description h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 8px;
}

.presentation .container>.description h4 a {
  color: #FFFFFF;
}

.presentation .container>.description .back-to-blog {
  font-size: 12px;
  font-weight: 700;
  padding-left: 68px;
  color: #666666;
  background-image: url(../assets/arrow-back-gray.svg);
  background-position: left center;
  background-repeat: no-repeat;
  text-transform: uppercase;
}

.presentation .container>.description .back-to-blog.right {
  position: absolute;
  right: 0;
  bottom: 10px;
}

@media (max-width: 767px) {
  .presentation .container>.description .back-to-blog.right {
    display: none;
  }
}

.presentation .container>.description .highlight .grid {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 30px;
}

@media (max-width: 767px) {
  .presentation .container>.description .highlight .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.presentation .container>.description .highlight .grid .image {
  margin-left: calc((100vw - 1180px + 15px)/2*-1);
}

@media (max-width: 767px) {
  .presentation .container>.description .highlight .grid .image {
    width: calc(100% + 30px);
    margin: -15px;
  }
}

.presentation .container>.description .highlight .grid .image figure {
  width: 100%;
}

.presentation .container>.description .highlight .grid .image figure img {
  width: 100%;
}

.presentation .container>.description .highlight .grid .description {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.presentation .container>.description .highlight .grid .description h2 {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 500;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.presentation .container>.description .highlight .grid .description p {
  font-size: 14px;
  line-height: 170%;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .presentation .container>.description .highlight .grid .description p {
    margin-bottom: 30px;
  }
}

.presentation .container>.description .highlight .grid .description .button {
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.presentation .container>.description .highlight .grid .description .button.center {
  margin: 0 auto;
}

.presentation .container>.description .highlight .grid .description .button:hover {
  background-color: #ffffff;
  color: #000;
}

.filter {
  padding-top: 80px;
}

@media (max-width: 767px) {
  .filter {
    padding-top: 30px;
  }
}

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

@media (max-width: 767px) {
  .filter .group-filter {
    flex-direction: column;
  }
}

.filter .group-filter .title h1 {
  font-size: 36px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 767px) {
  .filter .group-filter .title h1 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .filter .group-filter .title {
    padding-bottom: 30px;
  }
}

.filter .group-filter form {
  display: flex;
}

@media (max-width: 767px) {
  .filter .group-filter form {
    flex-direction: column;
  }
}

.filter .group-filter form select {
  width: 330px;
  font-size: 18px;
  padding-left: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .filter .group-filter form select {
    width: 100%;
    margin-bottom: 30px;
  }
}

.filter .group-filter form select:focus {
  outline: none;
}

.filter .group-filter form input {
  width: 330px;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  margin-left: 25px;
  border: 1px solid #000;
}

@media (max-width: 767px) {
  .filter .group-filter form input {
    width: 100%;
    margin-left: 0px;
  }
}

.filter .group-filter form input.search {
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-image: url(../assets/search.svg);
}

.filter .group-filter form input:focus {
  outline: none;
}

.filter .group-filter form input::placeholder {
  opacity: 1;
  color: #000;
}

.filter .group-filter form.only-select select {
  width: 230px;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .filter .group-filter form.only-select select {
    width: 100%;
    margin-left: 0px;
  }
}

.blog-list {
  padding-bottom: 65px;
}

@media (max-width: 767px) {
  .blog-list {
    padding-bottom: 50px;
    display: none;
  }
}

.blog-list .blog-item a {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  width: 100%;
  max-width: 915px;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
}

@media (max-width: 767px) {
  .blog-list .blog-item a {
    grid-template-columns: 1fr;
    border: none;
    padding-bottom: 0px;
  }
}

.blog-list .blog-item a .image {
  width: 90%;
}

.blog-list .blog-item a .image figure {
  width: 100%;
}

.blog-list .blog-item a .image figure img {
  width: 100%;
}

.blog-list .blog-item a .description {
  padding-top: 10px;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .blog-list .blog-item a .description {
    padding-left: 0px;
  }
}

.blog-list .blog-item a .description h1 {
  font-size: 28px;
  line-height: 120%;
  color: #000;
  font-weight: 400;
  margin-bottom: 15px;
}

.blog-list .blog-item a .description h2 {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #000;
}

.blog-list .blog-item a .description p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .blog-list .blog-item a .description p {
    display: none;
  }
}

.blog-list .blog-item a .description h4 {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 170%;
}

.blog-list .load-more {
  padding-top: 50px;
}

.blog-list .load-more .button {
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #000;
  transition: all 0.3s ease;
}

.blog-list .load-more .button.center {
  margin: 0 auto;
}

.blog-list .load-more .button:hover {
  background-color: #000;
  color: #FFFFFF;
}

.blog-list-small {
  display: none;
}

@media (max-width: 767px) {
  .blog-list-small {
    padding-bottom: 50px;
    display: block;
  }
}

.blog-list-small ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.blog-list-small li {
  padding: 8px 30px;
  border-bottom: 1px dotted #000;
}

.blog-list-small li a {
  text-decoration: none;
  grid-template-columns: 1fr;
}

.blog-list-small li a h1 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  line-height: 170%;
}

.blog-list-small li a h2 {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 170%;
  margin-top: 20px;
  ;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.blog-list-small li a h4 {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 170%;
}

.post-body {
  padding-bottom: 65px;
}

.post-body .post-container {
  width: 100%;
  /* max-width: 680px; */
  padding-top: 65px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
}

.post-body .post-container h1 {
  font-size: 28px;
  line-height: 170%;
  font-weight: 500;
  margin-bottom: 40px;
}

.post-body .post-container h2 {
  font-size: 28px;
  line-height: 170%;
  font-weight: 500;
  margin-bottom: 10px;
}

.post-body .post-container ul {
  padding-left: 20px;
  padding-bottom: 35px;
}

.post-body .post-container ul li {
  font-size: 18px;
  line-height: 170%;
  font-weight: 400;
  position: relative;
}

.post-body .post-container ul li::before {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 15px;
  left: -20px;
}

.post-body .post-container figure.wp-block-gallery ul.blocks-gallery-grid {
  padding: 0px;
  margin: 0px;
  width: 100%;
  list-style: none;
  display: block;
  padding-bottom: 10px;
}

.post-body .post-container figure.wp-block-gallery ul.blocks-gallery-grid li {
  padding: 0px;
  margin: 0px;
  width: 100%;
}

.post-body .post-container figure.wp-block-gallery ul.blocks-gallery-grid li::before {
  display: none;
}

.post-body .post-container figure.wp-block-gallery ul.blocks-gallery-grid li figure img {
  margin-bottom: 65px;
}

.post-body .post-container figure.wp-block-gallery ul.blocks-gallery-grid li figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  border: none;
  color: #000;
  text-align: left;
  padding: 0px;
  font-size: 18px;
  font-style: italic;
  background: none;
  margin-bottom: 15px;
}

.post-body .post-container figure.wp-block-gallery ul.bullets {
  width: 100%;
  max-width: 875px;
  position: absolute;
  bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 50%;
  transform: translateX(-50%);
}

.post-body .post-container figure.wp-block-gallery ul.bullets li {
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #000;
  margin: 0 10px 0 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.post-body .post-container figure.wp-block-gallery ul.bullets li.active,
.post-body .post-container figure.wp-block-gallery ul.bullets li.slick-active {
  background-color: #000;
}

.post-body .post-container figure.wp-block-gallery ul.bullets li button {
  font-size: 1px;
  display: none;
}

.post-body .post-container p {
  font-size: 18px;
  line-height: 170%;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .post-body .post-container p {
    margin-bottom: 30px;
  }
}

.post-body .post-container figure {
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .post-body .post-container figure {
    margin-bottom: 30px;
  }
}

.post-body .post-container figure img {
  width: 70%;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .post-body .post-container figure img {
    width: 100%;
  }
}

.post-body .post-container figure figcaption {
  width: 100%;
  position: relative;
  padding-top: 15px;
}

.post-body .post-container figure figcaption:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  display: block;
}

.post-body .post-container blockquote {
  padding-left: 230px;
}

@media (max-width: 767px) {
  .post-body .post-container blockquote {
    padding-left: 0px;
  }
}

.post-body .post-container blockquote p {
  border-left: 10px solid #000;
  padding-left: 25px;
  font-weight: 500;
}

.post-body .post-container .button {
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #000;
  background-color: #000;
}

.post-body .back-to-blog {
  font-size: 12px;
  font-weight: 700;
  padding-left: 68px;
  color: #000;
  background-image: url(../assets/arrow-back.svg);
  background-position: left center;
  background-repeat: no-repeat;
  text-transform: uppercase;
}

.share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.share span {
  padding-bottom: 5px;
}

.share p {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-right: 20px;
  padding-bottom: 5px;
}

.share a {
  background-color: rgb(255, 255, 255);
  border-radius: 0px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px;
  margin-right: 10px;
}

.home-blog {
  padding-top: 75px;
  padding-bottom: 50px;
  background-color: #F2F2F2;
}

@media (max-width: 767px) {
  .home-blog {
    padding-top: 60px;
  }
}

.home-blog .title h1 {
  font-size: 28px;
  color: #000;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .home-blog .title h1 {
    text-align: left;
  }
}

.home-blog .carousel {
  width: 100%;
  max-width: 1160px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0px auto 40px;
  position: relative;
}

@media (max-width: 767px) {
  .home-blog .carousel {
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px auto 10px;
  }
}

.home-blog .carousel .item {
  padding: 0 12px;
}

@media (max-width: 767px) {
  .home-blog .carousel .item {
    padding: 0;
    padding-bottom: 30px;
    display: none;
  }

  .home-blog .carousel .item:nth-child(-n+3) {
    display: block;
  }
}

.home-blog .carousel .item a,
.home-blog .carousel .item a:focus,
.home-blog .carousel .item a:hover {
  outline: none;
}

.home-blog .carousel .item figure {
  margin-bottom: 20px;
  width: 100%;
}

.home-blog .carousel .item figure img {
  width: 100%;
}

.home-blog .carousel .item h2 {
  font-size: 28px;
  color: #000;
  font-weight: 400;
  padding-right: 50px;
  margin-bottom: 15px;
}

.home-blog .carousel .item h4 {
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.home-blog .carousel .slick-arrow {
  height: 60px;
  width: 30px;
  position: absolute;
  top: 70px;
  background-repeat: no-repeat;
  background-position: center;
}

.home-blog .carousel .slick-arrow.slick-prev {
  left: 0;
  background-image: url(../assets/arrow-left.svg);
}

.home-blog .carousel .slick-arrow.slick-next {
  right: 0;
  background-image: url(../assets/arrow-right.svg);
}

.home-blog .button {
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #000;
  transition: all 0.3s ease;
}

.home-blog .button.center {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .home-blog .button.center {
    margin: 0;
  }
}

.home-blog .button:hover {
  background-color: #000;
  color: #FFFFFF;
}

.newsletter {
  padding: 30px 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.newsletter .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .newsletter .grid {
    grid-template-columns: 1fr;
  }
}

.newsletter .description {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .newsletter .description {
    padding: 0 15px;
    justify-content: flex-start;
  }
}

.newsletter .description h1 {
  font-size: 32px;
  line-height: 120%;
  color: #FFFFFF;
  font-weight: 400;
  max-width: 320px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .newsletter .description h1 {
    padding-bottom: 20px;
  }
}

.newsletter .form {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .newsletter .form {
    padding: 0 15px;
  }
}

.newsletter .form form {
  width: 100%;
  max-width: 530px;
  background-color: #000;
  padding: 50px 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .newsletter .form form {
    padding: 20px;
  }
}

.newsletter .form form .group-input {
  position: relative;
  height: 35px;
  width: 100%;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 10px;
}

.newsletter .form form .group-input label {
  position: absolute;
  height: 100%;
  width: 70px;
  top: 11px;
  left: 15px;
  font-size: 14px;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .newsletter .form form .group-input label {
    left: 0px;
  }
}

.newsletter .form form .group-input span {
  position: initial;
  text-align: right;
}

.newsletter .form form .group-input input {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 80px;
  font-size: 14px;
  color: #FFFFFF;
  background: transparent;
  border: none;
}

@media (max-width: 767px) {
  .newsletter .form form .group-input input {
    padding-left: 60px;
  }
}

.newsletter .form form .group-input input:focus {
  outline: none;
}

.newsletter .form form .check {
  position: relative;
  padding-left: 25px;
  padding-top: 10px;
  cursor: pointer;
}

.newsletter .form form .check::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  border: 1px solid #ffffff;
  height: 16px;
  width: 16px;
}

.newsletter .form form .check.on::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 15px;
  background-color: #ffffff;
  height: 8px;
  width: 8px;
}

.newsletter .form form .check p {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 130%;
}

.newsletter .form form input[type=checkbox] {
  display: none;
}

.newsletter .form form .wpcf7-response-output {
  color: #fff;
  border: 1px solid #fff;
  margin: 0;
  padding: 10px;
  line-height: 110%;
  font-weight: 300;
}

.newsletter .form form .wpcf7-list-item-label {
  display: none;
}

.newsletter .form form .ajax-loader {
  display: none;
}

.newsletter .form form .button {
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #ffffff;
  margin-top: 20px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter .form form .button:focus {
  outline: none;
}

.newsletter .form form .button.center {
  margin: 0 auto;
}

.newsletter .form form .button:hover {
  background-color: #ffffff;
  color: #000;
}

.work-with-us {
  position: relative;
}

.work-with-us>img {
  width: 100%;
}

.bank-work-image {
  width: 100%;
}

.bank-work-button {
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.u-section-2 .u-image-1 {
  min-height: 320px;
  background-image: url("../assets/photos/talents-bank.jpg");
  background-position: 50% 50%;
}

@media (min-width: 991px) {
  .bank-work {
    padding: 35px 150px;
  }
}