html {
  overflow-x: hidden;
}
:root, body {
  font-family: "Manrope", "Poppins", "sans-serif";
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0;
  padding: 0;
  margin:  0;
  background-color: #fff;
}
a {
  text-decoration: none !important;
}
#page {
  position: relative;
  max-width: 100vw;
}
#default-hero {
  position: relative;
  width: 100%;
  padding: 0;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.section-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.section-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}
.section-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .section-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .section-left {
    align-items: center;
    width: 100%;
  }
  .section-right {
    align-items: center;
    width: 100%;
  }
}
.gradient-blue {
  background: transparent linear-gradient(55deg, #000524 0%, #1C6071 100%) 0% 0% no-repeat padding-box;
}
.gradient-blue-41 {
  background: transparent linear-gradient(41deg, #000524 0%, #1C6071 100%) 0% 0% no-repeat padding-box;
}
.gradient-blue.reverse {
  background: transparent linear-gradient(280deg, #000524 0%, #1C6071 100%) 0% 0% no-repeat padding-box;
}
svg {
  width: 30px;
  height: 30px;
}

.container {
  padding: 0;
}
@media (max-width: 576px) {
  .container {
    max-width: 85vw !important;
  }
}
@media (min-width: 993px) {
  .mobile {
    display: none!important;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1550px !important;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1550px !important;
  }
}
@media (min-width: 2000px) {
  .container {
    max-width: 1710px !important;
  }
}
@media (min-width: 2300px) {
  .container {
    max-width: 1920px !important;
  }
}
@media (max-width: 992px) {
  .desktop {
    display: none!important;
  }
}


/* Buttons */
#utsi-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 15px;
  margin-top: 2em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  border: unset;
}
#utsi-btn .btn-title {
  display: inline-flex;
  align-items: center;
  text-align: center;
  color: #fff !important;
  padding: 0.5em 1em 0.5em 1.5em;
  text-decoration: none;
}
#utsi-btn .svg-wrapper {
  display: inline-flex;
  align-items: center;
  text-align: center;
  margin-right: 1em;
  color: #fff;
  width: 36px;
  height: 36px;
}
#utsi-btn .svg-wrapper svg {
  width: 100%;
  height: 100%;
}
#utsi-btn.home {
  font-size: 23px;
  margin-top: 4em;
}
#utsi-btn.home .svg-wrapper {
  width: 55px;
  height: 55px;
}
#utsi-btn.gradient-blue .svg-wrapper {
  width: 50px;
  height: 50px;
}
#utsi-btn.transparent {
  border: 1px solid #fff;
}
#utsi-btn.light {
  background-color: #fff;
  margin: 2em 15px 0 15px;
  border-bottom: 1px solid #000;
}
#utsi-btn.light .btn-title {
  color: #000 !important;
  padding: 0 1em 0 0;
}
#utsi-btn.light .svg-wrapper {
  color: #000;
  margin: 0;
}
#utsi-btn.white {
  background-color: #fff;
}
#utsi-btn.white .btn-title {
  color: #1C6071 !important;
}
#utsi-btn.white .svg-wrapper {
  color: #1C6071;
}
#utsi-btn.red .btn-title {
  background-color: #DF2631;
  padding: 0.5em 1.5em;
}
#utsi-btn.red .svg-wrapper {
  color: #000;
  background-color: #fff;
  padding: 0em 0.5em;
  margin-right: 0;
}
#utsi-btn .svg-wrapper.with-border{
  border: 2px solid #000;
}
#utsi-btn .svg-wrapper.right {
  transform: translateX(0);
  transition: transform 0.2s ease-in-out;
}
#utsi-btn:hover .svg-wrapper.right {
  transform: translateX(25%);
  transition: transform 0.2s ease-in-out;
}
#utsi-btn .svg-wrapper.down {
  transform: translate3d(-30%,30%,0);
  transition: transform 0.2s ease-in-out;
}
#utsi-btn:hover .svg-wrapper.down {
  transform: translate3d(0%,0%,0);
  transition: transform 0.2s ease-in-out;
}
@media (max-width: 992px) {
  #utsi-btn.home {
    font-size: 15px;
    margin: 2em auto 1em auto;
  }
  #utsi-btn.home .svg-wrapper {
    width: 36px;
    height: 36px;
  }
}

/* Animations */
.revealing-wrapper .active .icon-wrapper svg {
  transform: rotate(-90deg);
  transition:  transform 0.5s;
}
.revealing-wrapper .icon-wrapper svg {
  transform: rotate(90deg);
  transition:  transform 0.5s;
}
.revealing-wrapper .revealing-title {
  cursor: pointer;
}
.revealing-wrapper #grow {
  -moz-transition: height .5s;
  -ms-transition: height .5s;
  -o-transition: height .5s;
  -webkit-transition: height .5s;
  transition: height .5s;
  height: 0;
  overflow: hidden;
}

/* 404 */
#page-404 {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15vh 0 10vh 0;
}
#page-404 .title {
  font-family: 'Poppins';
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0.5em 0;
  padding: 0;
}
#page-404 .content {
  font-family: 'Poppins';
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
  padding: 0;
}
#page-404 #utsi-btn {
  margin-top: 2em;
}
