/*
 * Globals
 */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@font-face {
  font-family: "Proxima Nova Bd";
  src: local("Proxima Nova Bold"), local("ProximaNova-Bold"), url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff"), url("../fonts/ProximaNova-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova Rg";
  src: local("Proxima Nova Regular"), local("ProximaNova-Regular"), url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Links */
a {
  color: #313D85;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}
a:focus, a:hover {
  color: #313D85;
  text-decoration: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none !important;
}

/*
 * Base structure
 */
body,
html {
  height: 100%;
}

body {
  background: #FFF;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

main {
  overflow: hidden;
}

p,
small {
  color: #000;
}

small {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}

.bg-blue {
  background: #313D85;
}
.bg-blue p,
.bg-blue h2,
.bg-blue i {
  color: #FFF !important;
}

.bg-cyan {
  background: #66C9BA;
}

.bg-red {
  background: #E53E51;
}

.bg-yellow {
  background: #F4B223;
}

.bg-bg {
  background: #FFF;
}

.bg-block {
  background: url("../img/block.png") repeat;
  position: relative;
}
.bg-block:after {
  content: "";
  background-image: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.bg-block > div {
  position: relative;
  z-index: 1;
}

.bg-pattern {
  position: relative;
  overflow: hidden;
}
.bg-pattern:before {
  content: "";
  background: url("../img/pattern.png") repeat;
  transform: rotate(15deg);
  position: absolute;
  width: 300%;
  height: 200%;
  z-index: -1;
  left: -20%;
}
@media (max-width: 767px) {
  .bg-pattern:before {
    left: -130%;
  }
}

.button {
  color: #FFF !important;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  border-radius: 6px;
  text-decoration: none;
  padding: 12px 20px 10px;
}
.button i {
  margin-right: 4px;
}
.button.shadow {
  box-shadow: 0px 60px 24px rgba(0, 0, 0, 0.01), 0px 34px 20px rgba(0, 0, 0, 0.05), 0px 15px 15px rgba(0, 0, 0, 0.09), 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.button:hover {
  color: #F4B223 !important;
  font-weight: 700;
  background: #FFF;
}
.button:active {
  color: #FFF;
}

/*
 * Navbar
 */
.navbar {
  background-color: #333;
}
.navbar .navbar-brand img {
  height: 24px;
}
.navbar .nav-link {
  color: #FFF;
  font-family: "Proxima Nova Rg";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin: 5px 0 0;
  padding: 0;
}

i.bi-chevron-down {
  color: #313D85;
  font-size: 50px;
}

h2 {
  color: #313D85;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 800;
  }
}

/*--------------------------------------------------------------
 # Hero Section
 --------------------------------------------------------------*/
#hero {
  background: url("../img/hero-bg.png") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@media (max-width: 600px) {
  #hero {
    background: url("../img/hero-bg_mobile.png") no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
}
#hero .hero-container {
  height: 100vh;
}
#hero .hero-container .logo-sjkp {
  width: 287px;
}
@media (max-width: 575px) {
  #hero .hero-container .vertical-middle {
    width: 80%;
  }
}
#hero h1 {
  color: #313D85;
  margin: 0 0 10px;
  font-size: 49px;
  font-weight: 800;
  line-height: 50px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  #hero h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
#hero p {
  color: #B2282F;
  font-weight: 700;
  font-size: 26px;
  line-height: 37px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  #hero p {
    font-size: 25px;
    line-height: 30px;
  }
}

/*--------------------------------------------------------------
 # Intro Section
 --------------------------------------------------------------*/
#intro {
  background: url("../img/intro-bg.png") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@media (max-width: 600px) {
  #intro {
    background: url("../img/intro-bg_mobile.png") no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
}
#intro > div {
  height: 100vh;
}
#intro p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: justify;
}
#intro h2 {
  text-align: left;
}
@media (max-width: 575px) {
  #intro h2 {
    text-align: center;
    font-size: 28px;
    line-height: 35px;
    font-weight: 800;
  }
}

#second {
  background: url("../img/second-bg.png") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@media (max-width: 600px) {
  #second {
    background: url("../img/second-bg_mobile.png") no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
}
#second > div {
  height: 100vh;
}
#second p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: justify;
}
#second h2 {
  text-align: left;
}
@media (max-width: 575px) {
  #second h2 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 800;
  }
}
#second h3 {
  color: #E53E51;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}
#second a.button.shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

#third p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
#third h2 {
  font-weight: 800;
  font-size: 35px;
  line-height: 35px;
}
@media (max-width: 800px) {
  #third h2 {
    font-size: 30px;
  }
}
#third h3 {
  color: #313D85;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 35px;
}
#third ul {
  padding-left: 15px;
  color: #000;
}
#third ul li {
  padding-left: 10px;
}
#third ul li p {
  margin-bottom: 5px;
}
#third ul.icon li {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 10px;
}
#third ul.icon li::marker {
  content: "\f4c9";
  color: #313D85;
  font-family: bootstrap-icons !important;
  font-size: 13px;
}
@media (max-width: 767px) {
  #third ul.vertical-middle {
    position: inherit;
  }
}
#third .left-wrapper {
  width: 100%;
}
@media (max-width: 575px) {
  #third .left-wrapper {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #third .right-wrapper img {
    right: 5%;
  }
}
#third .man-with-idea {
  position: absolute;
  right: 10%;
  bottom: 0;
}
@media (max-width: 800px) {
  #third .man-with-idea {
    width: 118px;
  }
}

#fourth .flow p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
#fourth .flow p a {
  color: #FF000D;
  text-decoration: none;
}
#fourth .flow p a:hover {
  text-decoration: underline;
}
#fourth .flow > div {
  position: relative;
}
#fourth .flow > div:after {
  content: "\f135";
  color: #313D85;
  font-family: bootstrap-icons !important;
  position: absolute;
  right: -10%;
  font-size: 50px;
  top: 50%;
  transform: translate(-50%, -50%);
}
#fourth .flow > div:nth-child(3):after {
  content: "\f124";
  right: inherit;
  bottom: 0;
  top: inherit;
}
#fourth .flow > div:nth-child(n+4):after {
  content: "\f12c";
  right: inherit;
  left: 0;
}
#fourth .flow > div:last-child:after {
  display: none;
}
@media (max-width: 767px) {
  #fourth .flow > div:after {
    content: "\f124" !important;
    right: inherit !important;
    left: inherit !important;
    top: inherit !important;
  }
}
@media (max-width: 991px) {
  #fourth .flow > div:nth-child(2n):after {
    content: "\f124";
    right: inherit;
    left: inherit;
    top: inherit;
    bottom: 5%;
  }
  #fourth .flow > div:nth-child(3):after {
    content: "\f12c";
    right: inherit;
    left: 0;
    top: 50%;
  }
  #fourth .flow > div:nth-child(5):after {
    content: "\f135";
    left: inherit;
    right: -10%;
    top: 30%;
  }
}
#fourth .bg-blue p {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
}
@media (max-width: 575px) {
  #fourth .bg-blue p {
    text-align: center;
  }
}
#fourth .logo {
  padding: 0;
  margin: 0;
}
#fourth .logo li {
  background: #FFF;
  text-align: center;
  display: inline-block;
  height: 100px;
  width: 196px;
  border-radius: 10px;
  position: relative;
  margin: 5px;
}
@media (max-width: 528px) {
  #fourth .logo li {
    width: 130px;
  }
}
@media (max-width: 1063px) {
  #fourth div.vertical-middle {
    position: relative;
    padding: 20px 0 10px;
  }
}
#fourth .video h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
}
@media (max-width: 575px) {
  #fourth .video h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
#fourth .video iframe {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
#fourth .terma h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 575px) {
  #fourth .terma h2 {
    font-weight: 800;
    line-height: 36px;
  }
}
#fourth .terma h3 {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}
@media (max-width: 575px) {
  #fourth .terma h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
  }
}
#fourth .terma .terma-wrapper {
  position: relative;
  display: flex;
  margin: 20px auto;
}
#fourth .terma .terma-wrapper > div {
  padding: 16px;
  border-radius: 10px;
  width: 100%;
  text-align: left;
}
#fourth .terma .terma-wrapper > div p {
  margin-bottom: 0;
  font-size: 18px;
  font-style: normal;
  line-height: 20px;
  text-align: left;
  display: inline-block;
  vertical-align: -moz-middle-with-baseline;
}
#fourth .terma .terma-wrapper > div:first-child {
  background: #313D85;
  position: relative;
  margin-right: 10px;
  max-width: 160px;
  height: 72px;
}
#fourth .terma .terma-wrapper > div:first-child p {
  color: #FFF;
  font-weight: 700;
}
#fourth .terma .terma-wrapper > div:first-child:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 30px solid #1A0065;
  border-bottom: 25px solid transparent;
  display: inherit;
  position: absolute;
  right: -30px;
  top: 10px;
}
#fourth .terma .terma-wrapper > div:last-child {
  background: #E0E0E0;
  padding-left: 30px;
  padding-right: 30px;
}
#fourth .terma .terma-wrapper > div:last-child p {
  font-weight: 500;
}
@media (max-width: 575px) {
  #fourth .terma .terma-wrapper {
    display: block;
  }
  #fourth .terma .terma-wrapper > div:first-child {
    margin: 0 0 -10px;
    z-index: -1;
    padding: 16px 0 23px;
    max-width: inherit;
    max-height: inherit;
  }
  #fourth .terma .terma-wrapper > div:first-child p {
    text-align: center;
    width: 100%;
  }
  #fourth .terma .terma-wrapper > div:first-child:after {
    display: none;
  }
  #fourth .terma .terma-wrapper > div:last-child p {
    text-align: justify;
  }
}

#fifth {
  background: url("../img/footer-bg.png") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100vh;
}
#fifth h2 {
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}
@media (max-width: 575px) {
  #fifth h2 {
    font-weight: 800;
    line-height: 36px;
  }
}
#fifth p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
#fifth a {
  color: #B2282F;
}
@media (max-width: 575px) {
  #fifth .vertical-middle {
    width: 80%;
  }
}

.banner {
  background: #E0E0E0;
}
.banner img {
  width: 100%;
  margin: 0 auto;
}
.banner img.desktop {
  max-width: 1296px;
}
.banner img.mobile {
  max-width: 390px;
}

/* fix blank or flashing items on carousel */
.carousel-wrap .owl-carousel .owl-nav i {
  color: #313D85;
  font-size: 50px;
}
.carousel-wrap .owl-carousel .owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
}
.carousel-wrap .owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.carousel-wrap .owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel-wrap .owl-carousel .owl-nav .owl-next {
  right: 20px;
}
.carousel-wrap .owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel-wrap .owl-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 6px;
  display: inline-block;
  margin: 3px;
}
.carousel-wrap .owl-carousel .owl-dots .owl-dot span {
  background: #E0E0E0;
  height: 100%;
  display: block;
  transition: 0.4s ease all;
  border-radius: 10px;
}
.carousel-wrap .owl-carousel .owl-dots .owl-dot.active span {
  background: #313D85;
}

/*--------------------------------------------------------------
 # Back to top button
 --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 998;
  background: #000;
  color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  transition: all 0.3s;
}
.back-to-top i {
  font-size: 24px;
  color: #FFF;
  line-height: 0;
}
.back-to-top:hover {
  background: #FFF;
}
.back-to-top:hover i {
  color: #000;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.social-share-button {
  background: transparent;
  color: #FFF;
  padding: 2px 1rem;
  margin: 0 auto;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border: 1px solid #FFF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: block;
  transition: background-color 0.3s ease-in-out;
}
.social-share-button:active, .social-share-button:focus, .social-share-button:hover {
  background: #F4B223;
  color: #313D85;
  border-color: #F4B223;
}
.social-share-button:active i, .social-share-button:focus i, .social-share-button:hover i {
  color: #313D85;
}
.social-share-button[data-style=ghost] {
  background-color: transparent;
  border: 1px solid #FFF;
  margin: 0 0 0 auto;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
}
.social-share-button[data-style=ghost]:active, .social-share-button[data-style=ghost]:focus, .social-share-button[data-style=ghost]:hover {
  background-color: #F4B223;
  color: #000;
  border: 1px solid #F4B223;
}
.social-share-button[data-style=ghost]:active svg path, .social-share-button[data-style=ghost]:focus svg path, .social-share-button[data-style=ghost]:hover svg path {
  fill: #000;
}

.share-container {
  z-index: -1;
  top: 0;
  height: 100%;
}
.share-container > div {
  transition: height 0.2s ease-in 0s;
  height: 0;
}
.share-container > div > div {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 9px;
}
.share-container > div > div a {
  height: 50px;
  position: relative;
  width: 80px;
  color: #E0E0E0;
}
.share-container > div > div a i[slot*=facebook] {
  color: #039be5;
  font-size: 23px;
}
.share-container > div > div a i[slot*=twitter] {
  font-size: 14px;
  background: #03a9f4;
  border-radius: 20px;
  padding: 0;
  width: 24px;
  height: 24px;
}
.share-container > div > div a i[slot*=whatsapp] {
  background: #40c351;
  font-size: 30px;
  border-radius: 20px;
  padding: 0;
  width: 24px;
  height: 24px;
  text-shadow: 0px 1px #999;
  color: #fff;
  line-height: 20px;
}
.share-container > div > div a i[slot*=telegram] {
  color: #29b6f6;
  font-size: 23px;
}
.share-container > div > div a i[slot*=copy] {
  background: #0056B3;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  padding: 0;
  width: 24px;
  height: 24px;
  font-size: 12px;
}
.share-container > div > div a p {
  color: #333;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
}
.share-container > div > div a:hover {
  color: #66C9BA;
}
.share-container.show {
  z-index: 1000;
}
.share-container.show .web-social-share-backdrop {
  opacity: 0.25;
}
.share-container.show > div {
  height: 80px;
}
.share-container .web-social-share-backdrop {
  opacity: 0;
  transition: opacity 0.1s linear 0s;
  background-color: #000;
  z-index: -1;
  transform: translate3d(0, 0, 2px);
  left: 0;
  top: 0;
  position: fixed;
  height: 100% !important;
  width: 100%;
}

/*
 * Footer
 */
footer .footer {
  position: relative;
}
footer p {
  font-weight: 800;
  margin: 0 auto 20px;
}
footer h2 {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vertical-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=style.css.map */