@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Source+Sans+Pro:ital,wght@0,400;1,600&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Source Sans Pro", sans-serif;
}
body * {
  box-sizing: border-box;
}

.font-bold {
  font-weight: 700;
}

body::-webkit-scrollbar {
  width: 1px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #2A2A2A; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #00308E; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid #2A2A2A; /* creates padding around scroll thumb */
}

.shapes-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

.container {
  padding: 0 19px;
  width: 100%;
  padding-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .container {
    width: 860px;
    padding: 0;
    padding-bottom: 100px;
  }
}
.container .breadcrumbs {
  padding-top: 32px;
}
.container .breadcrumbs a, .container .breadcrumbs p, .container .breadcrumbs svg {
  display: inline;
  margin: 0 4px 0 0;
  text-decoration: none;
}
.container .logo-cont {
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.container .logo-cont a {
  margin-right: 40px;
}

.circle-ot {
  width: 40vmin;
  height: 40vmin;
  display: block;
  position: absolute;
  background: #FDFE00;
  border-radius: 100%;
  z-index: 0;
  top: -19%;
  left: -5%;
  transition: 0.2s ease;
  animation: levitate 4s infinite linear;
}

.blue-rect-ot {
  width: 13vmin;
  height: 29.6vmin;
  display: block;
  position: absolute;
  background: #00308E;
  z-index: 0;
  top: 27%;
  left: 0%;
  transition: 0.2s ease;
  transform: skewY(-16deg);
  animation: levitate-blue 3s infinite linear;
}

.bs-rect-ot {
  width: 32vmin;
  height: 12vmin;
  display: block;
  position: absolute;
  background: #2A2A2A;
  z-index: 0;
  top: 3%;
  right: 0%;
  border-radius: 10px 0px 0px 10px;
  transition: 0.2s ease;
  animation: levitate 6s infinite linear;
}

@keyframes levitate {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, 0px);
  }
}
@keyframes levitate-blue {
  from {
    transform: translate(0, 0px) skewY(-16deg);
  }
  65% {
    transform: translate(0, 15px) skewY(-16deg);
  }
  to {
    transform: translate(0, 0px) skewY(-16deg);
  }
}
.accordion-cont {
  width: 100vw;
  position: absolute;
  top: calc(100% - 74px);
  background: #F7F8F8;
}
.accordion-cont-oppener {
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.accordion-cont-oppener svg {
  margin-left: 10px;
  transition: 0.3s ease;
  transform-origin: center;
}
.accordion-cont-oppener svg * {
  transition: 0.3s ease;
  transform-origin: center;
  opacity: 1;
}
.accordion-cont-oppener.opened .vertical {
  transform: rotate(90deg);
}
.accordion-cont-oppener.opened .horizontal {
  transform: rotate(180deg);
  opacity: 0;
}
.accordion-cont-content {
  transform: scaleY(1);
  transform-origin: top;
  height: auto;
  opacity: 1;
  transition: 0.2s ease;
  display: flex;
}
.accordion-cont-content * {
  transition-delay: 0.2s;
  transition: 0.05s ease;
  opacity: 1;
}
.accordion-cont-content .content-left, .accordion-cont-content .content-right {
  flex: 1 0 auto;
  padding-bottom: 16px;
}
.accordion-cont-content a {
  font-size: 14px;
  text-decoration: none;
  color: #00308E;
}
.accordion-cont-content p, .accordion-cont-content h4 {
  margin-top: 0;
  font-size: 14px;
}
.accordion-cont-content h4 {
  margin-bottom: 10px;
}
.accordion-cont-content .content-left p {
  margin-bottom: 0px;
}
.accordion-cont-content .content-right {
  display: flex;
  flex-direction: column;
}
.accordion-cont-content .content-right p {
  margin-bottom: 4px;
}
.accordion-cont-content .content-right .policy-terms {
  margin-top: auto;
}
.accordion-cont-content .content-right .policy-terms a {
  text-decoration: none;
  margin-right: 10px;
  color: #00308E;
}
.accordion-cont-content .content-right .policy-terms a:not(:last-child):after {
  content: "|";
  margin-left: 16px;
}
.accordion-cont-content a {
  display: inline-block;
  margin: 8px 0 0 0;
}
.accordion-cont-content.hidden {
  transform: scaleY(0);
  transform-origin: top;
  height: 0;
  transition: 0.2s ease;
}
.accordion-cont-content.hidden * {
  opacity: 0;
}

@media only screen and (max-width: 766px) {
  .circle-ot {
    z-index: 0;
    top: -16%;
    left: 4%;
  }
  .bs-rect-ot {
    width: 30vmin;
    height: 14vmin;
    bottom: 15%;
    right: -27%;
  }
  .blue-rect-ot {
    left: -11%;
    top: 50%;
  }
  .accordion-cont {
    padding: 0 1rem;
  }
  .accordion-cont-content {
    flex-direction: column;
  }
  .accordion-cont-content .content-left {
    margin-bottom: 20px;
  }
  .accordion-cont-content .content-left, .accordion-cont-content .content-right {
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 765px) and (orientation: landscape) {
  .bs-rect-ot {
    bottom: 24%;
  }
  .blue-rect-ot {
    bottom: 23%;
  }
}
@media only screen and (min-width: 800px) and (max-width: 960px) and (orientation: landscape) {
  .bs-rect-ot {
    bottom: 23%;
  }
  .blue-rect-ot {
    bottom: 24%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1439px) {
  .accordion-cont {
    padding: 0 1.82rem;
  }
}
/* Wide*/
@media only screen and (min-width: 1440px) {
  .circle-ot {
    top: -34%;
  }
  .accordion-cont {
    padding: 0 12.8rem;
  }
}/*# sourceMappingURL=others.css.map */