@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
  color: #232323;
  position: relative;
}

section {
  background-color: #eeeeee;
}
section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}
section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}

.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

.media-container-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

@media (min-width: 992px) {
  .media-container-row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.custom-figure img, .custom-figure iframe {
  display: block;
  width: 100%;
}

.custom-figure {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.custom-figure img, .card-img img {
  width: 100%;
}

.custom-fullscreen {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #DCCBC0;
  margin: 0 auto;
}

.footer {
  padding-top: 80px;
  padding-bottom: 50px;
  background: #121f41;
  background: -webkit-linear-gradient(to right, #F8F7F2, #fcf4d0, #d8d6ce);
  background: -o-linear-gradient(to right, #F8F7F2, #fcf4d0, #d8d6ce);
  background: -moz-linear-gradient(to right, #F8F7F2, #fcf4d0, #d8d6ce);
  background: linear-gradient(to right, #F8F7F2, #fcf4d0, #d8d6ce);
}
.footer .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.custom-iconfont {
  font-size: 1.6rem;
  color: #272114;
}
.custom-iconfont:hover {
  font-size: 1.6rem;
  color: #fffb29;
  background-image: linear-gradient(to left, #FFCC29, #f7eb81, #ffee03);
  background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  color: #FFCC29;
}
.soc-item {
  margin: 0 .5rem;
}
.social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.media-container-row {
  word-break: break-word;
}

.custom-title {
  color: #132740;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
}
.custom-text {
  color: #242323;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
.custom-footer {
  color: #242323;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}

.bg-cst{
  background: linear-gradient(#132740, #132740) padding-box, linear-gradient(to right, #F8F7F2, #fcf4d0, #d8d6ce) border-box;
	/* border-radius: 50em; */
  border: 40px solid transparent;
}

/* Arrow-down Animated */
.cst-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.cst-arrow{
  padding-top: 60px;
  color: #ffd77b;
  position: relative;
}
.cst-arrow:before, .cst-arrow::after{
  display: block;
  color: #FBC23A;
  animation: animar 1.1s linear infinite;
}
@keyframes animar {
  0% {
    transform: translate(0px, 20px);
    opacity: 0.7;
  }
  50% {
    transform: translate(0px, 40px);
    opacity: 1;
  }
  100% {
    transform: translate(0px, 80px);
    opacity: 0;
  }
}
