:root {
  --Yellowclr1: #fa9a00;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--Yellowclr1);
}

a:hover {
  color: var(--Yellowclr1);;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top svg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--Yellowclr1);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top svg:hover {
  background: #fce18b;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(13, 47, 129, 0.9);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
  max-width:220px;
}

/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--Yellowclr1);;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid var(--Yellowclr1);;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #282828;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: var(--Yellowclr1);
}

.nav-menu .drop-down > a:after {
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-register-btn {
  margin-left: 25px;
  background: var(--Yellowclr1);
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #fff;
  font-weight: 600;
}

.get-register-btn:hover {
  background: #0D2F81;
  color: #fff;
}
/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: var(--Yellowclr1);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  font-weight: bold;
  width: 220px;
}

.get-started-btn:hover {
  background: #0D2F81;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top svg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--Yellowclr1);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top svg:hover {
  background: #fce18b;
  color: #fff;
}

.card{
  margin-top: -50px;
  width: 100%;
  opacity: 0.9;
  -webkit-box-shadow: 10px -7px 8px -7px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px -7px 8px -7px rgba(0,0,0,0.75);
  box-shadow: 10px -7px 8px -7px rgba(0,0,0,0.75);
  background-color: white;
  margin-left: 90px;
}
  .currencylabel{
  margin-top: 15px;
  font-weight: bold;
  color:#0D2F81;
}
.flagdiv {
  width: 35px;
}

.flagtextdiv{
  font-weight: 900;
}
.CalculateSend{
    background-color: #0D2F81;
    color: var(--Yellowclr1);
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.4rem;
    width: 150px;
    height: 40px;
    border: none;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .grez-image{
    position: absolute;
    cursor: pointer;
    margin-left: -77px;
    padding: 20px;
    margin-top: -60px;
    z-index: 99;
  }

.c-grez-image::after {
  content: '';
  width: 50px; height: 50px;
  border-radius: 100%;
  border: 6px solid #0D2F81;
  position: absolute;
  z-index: 2;
  padding: 20px;
  margin-top: -10px;
  margin-left: -25px;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
@keyframes ring {
  0% {
      width: 50px;
      height: 50px;
      opacity: 1;
  }
  100% {
      width: 150px;
      height: 150px;
      opacity: 0;
  }
}
.ck_paddingRight {
  padding-left: 30px;
  padding-right: 0px;
}
.ck_paddingLeft {
  padding-left: 5px;
  padding-right: 5px;
}
.lastresultGreen {
    color: green;
    font-weight: bold;
    margin-left: 50px;
}
.lastresult {
    color: red;
    font-weight: bold;
    margin-left: 50px;
}
.resultLabelName{
  margin-left: 25px;
  color:#0D2F81;
}
.resultlabel{
  color:#0D2F81;
}
.calculadorSaving{
  color:var(--Yellowclr1);
  font-weight: 600;
  font-size: 20px;
  padding-top: 7px;
}
.calculadorResult{
  color:var(--Yellowclr1);
  font-size: 20px;
  padding-top: 7px;

}

.cliens {
    padding: 12px 0;
    text-align: center;
}

 .download-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    padding: 8px 24px 10px 46px;
    border-radius: 3px;
    transition: 0.5s;
    color: #fff;
    background: #47536e;
    position: relative;
}

.download-btn:hover {
    background: #0D2F81;
}
 .download-btn i {
    font-size: 20px;
    position: absolute;
    left: 18px;
    top: 8.5px;
}
#hero {
  background: url("/assets/alps.jpg") no-repeat ;
  background-size: cover;
}
#hero .info-box{
  padding: 10px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;

  border-bottom: 5px solid #fff;
}
#hero .info-box:hover {
  transform: translateY(-10px);
  border-color: #0D2F81;
}


#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero .money {
  color: gray;
  margin: 0 0 10px 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 56px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(var(--Yellowclr1) 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 153, 97, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--Yellowclr1);
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
  .Info .arrowLabelInfo{
      display: none;
  }
  .Info .arrowLabel{
    display: none;
  }
}

@media(max-width: 900px){
  .Info .arrowLabelInfo{
      display: none;
  }
  .Info .arrowLabel{
    display: none;
  }
}

@media (max-width: 578px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-top: -50px;
  }
  #hero .info {
    display: none;
  }
  #hero .logo{
    margin-left: -80px;
    margin-bottom: -50px;
  }
  #hero .money{
    font-size: 28px;
    line-height: 36px;
  }
  #hero .card{
    width: 40%;
    height: 100%;
    margin-top: -580px;
    margin-left: 50px;
  }

  .CalculateSend{
    display: none;
  }
  .col-md-12{
    display: none;
  }
  #hero .info-box{
    width: 100%;
    margin-left: -30px;
    margin-bottom: -90px;
  }
  .Info .arrowLabelInfo{
    display: none;
  }
  .Info .arrowLabel{
    display: none;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
    background: linear-gradient(rgba(215, 236, 245, 0.7), rgba(103, 176, 209, 0.7)) center center;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #0D2F81;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009ddb;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  margin-top: 20px;
  color: #777777;
  font-size: 20px;
}

.Info{
  background: linear-gradient(#f5f9fc, #def1ff);
}

.hoverpointer:hover {
    cursor: pointer;
}

.hoverpointer::after {
  content: '';
  width: 50px; height: 50px;
  border: 6px solid green;
  position: absolute;
  z-index: 2;
  padding: 20px;
  border-radius: 10px;
  margin-left: 130px;
  margin-top: -30px;
  transform: translate(-50%, -50%);
  animation: box 1.5s infinite;
}

@keyframes box {
  0% {
      width: 250px;
      height: 50px;
      opacity: 1;
  }
  100% {
      width: 350px;
      height: 150px;
      opacity: 0;
  }
}


.calculate:hover {
  cursor: pointer;
}

#hero .calculate{
    padding: 10px;
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    border-radius: 18px;
  }
  #hero .calculate:hover {
    transform: translateY(-10px);
    border-color: 5px solid #0D2F81;
  }
.Info .arrowLabel{
  position: absolute;
  left: 130px;
  top: 1px;
  color:green;
  font-weight: bold;
  display: none;
}
.Info .arrowLabelInfo{
  color:green;
  font-weight: bold;
  display: none;
}
.Info .pText{
   margin-top: 35px;
   font-size: 25px;
}
.Info .hr{
  width: calc(100% - 200px);
  border-top: 2px dotted #0376bb;
  position: absolute;
}
.Info .hrSecond{
  border-top: 2px dotted #0D2F81;
  position: absolute;
  margin-top: 39px;
}
.Info .GraphTextExchange{
  position: absolute;
  left: 183px;
  top: 5px;
  font-size: 22px;
  color: white;
  font-weight: 400;
  max-width: 130px;
  line-height: 18px;
}
.Info .exchangeDiv{
  position: absolute;
  left: 185px;
  top: 5px;
  font-size: 22px;
  color: white;
  font-weight: 400;
  max-width: 130px;
  line-height: 18px;
}
.Info .rankingDiv{
  position: absolute;
  left: 40px;
  top: 195px;
  font-size: 20px;
  color: white;
  font-weight: 400;
  max-width: 130px;
  line-height: 18px;
}

.Info .GraphArrow{
  margin-left: 10px;
  margin-top: -510px;
  display: none;
}
.Info .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.Info .content p:last-child {
  margin-bottom: 0;
}

.Info .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #0D2F81;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0D2F81;
}

.Info .content .btn-learn-more:hover {
  background: #0D2F81;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Trust
--------------------------------------------------------------*/
.Trust{
    background: url("/assets/m5.jpg") no-repeat ;
    background-size: cover;
    color: #fff;
    opacity: 0.9;
}
.Trust h1,h2{
  font-weight: bold;
}
.Trust .trustlink{
  color: var(--Yellowclr1);
  font-weight: bold;
}

.Trust .membersImg{
  border-radius: 50%;
  width: 40%;
  border: 2px solid #0376bb;
}
.icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #f8f9fa;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid var(--Yellowclr1);
}

 .icon-box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

 .icon-box h4 {
  margin-bottom: 15px;
  font-size: 24px;
}

 .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.icon-box:hover {
  transform: translateY(-10px);
  border-color: #0D2F81;
}

/*--------------------------------------------------------------
# HowToStart
--------------------------------------------------------------*/
.HowToStart .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 20px;
  color: #0D2F81;
}

.HowToStart .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--Yellowclr1);
}

.HowToStart .icon-box li {
  font-size: 15px;
  color: #848484;
  margin-bottom: 10px;
}

.HowToStart .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.table-a:hover{
  text-decoration:underline;
  text-decoration-color : var(--Yellowclr1);
  transition: all 0.3s ease-in-out 0s;
}
.team {
  background: #f5f9fc;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: linear-gradient(360deg, #0376bb 0%, rgba(3, 118, 187, 0.9) 35%, rgba(3, 118, 187, 0.8) 100%);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover .member-img {
  transform: scale(1.1);
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
}
@media (max-width: 992px) {
  .team .member {
    margin-bottom: 100px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0D2F81;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--Yellowclr1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00b371;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #00b371;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: var(--Yellowclr1);
}
.icon-box td, th{
  font-size: 20px;
}
.HowToStart .nav-link {
  border: 1px solid #0D2F81;
  padding: 15px;
  transition: 0.3s;
  color: #0D2F81;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.HowToStart .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.HowToStart .nav-link:hover {
  color: #0D2F81;
}

.HowToStart .nav-link.active {
  background: #0D2F81;
  color: #fff;
  border-color: #0D2F81;
}

@media (max-width: 768px) {
  .HowToStart .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .HowToStart .nav-link {
    padding: 15px;
  }
}

.HowToStart .tab-content {
  margin-top: 30px;
}

.HowToStart .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.HowToStart .tab-pane ul {
  list-style: none;
  padding: 0;
}

.HowToStart .tab-pane ul li {
  padding-bottom: 10px;
  font-size: 20px;
}

.HowToStart .tab-pane p:last-child {
  margin-bottom: 0;
}
.clients{
    background: linear-gradient(rgba(215, 236, 245, 0.7), rgba(103, 176, 209, 0.7)), url("/assets/alps.jpg") center center;
}
.clients .clients-wrap {
  border-top: 1px solid #f1eeed;
  border-left: 1px solid #f1eeed;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #f1eeed;
  border-bottom: 1px solid #f1eeed;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

.ml5 {
  position: relative;
  font-weight: 500;
  font-size: 1.9em;
  color: #fff;
}

.ml5 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
  line-height: 1em;
}

.ml5 .line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transform-origin: 0.5 0;
}

.ml5 .letters {
  display: inline-block;
  opacity: 0;
}
.imprint .icon-box {
  padding: 20px;
  color: #5f687b;
  background: #f9f9fa;
  border-radius: 4px;
  border: 1px solid #f9f9fa;
  transition: 0.3s;
  margin-bottom: 10px;
  height: 250px;
}

.imprint .icon {
  margin: 0 0 15px 0;
}

.imprint .icon i {
  color: #0D2F81;
  font-size: 36px;
}

.imprint .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.imprint .title a {
  color: #5f687b;
  transition: 0.3s;
}

.imprint .icon-box:hover {
  border-color: #eaecef;
}

.imprint .icon-box:hover .title {
  color: #0D2F81;
}

.imprint .description {
  line-height: 24px;
  font-size: 14px;
}
.imprint .icon-box .contact{
  padding-left: 70px;
  margin-top: 20px;
  font-size: 18px;
    font-weight: 600;
}
.imprint .icon-box .contactP{
  padding-left: 70px;
}
.imprint .icon-box i {
  font-size: 20px;
  color: #0D2F81;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.imprint .icon-box .phone{
  margin-top: 40px;
}
.imprint .icon-box .email:hover i, .imprint .icon-box .phone:hover i {
  background: #0D2F81;
  color: #fff;
}
.carousel-item {
  height: 258px;
}
.carousel-indicators li {
  background-color: #999 !important;
  background-color: rgba(70,70,70,.25) !important;
}

.carousel-indicators .active {
  background-color: #0D2F81 !important;
}
.carousel-item h4{
  color: #0D2F81;
    font-weight: 600;

}
.modal-body {
/*  background:  url('/assets/montain.jpg') no-repeat center;
*/  background-size: cover;
}
.dataprotection h1{
  color: #fff;
}
.dataprotection .lidatap{
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.dataprotection p{
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

h2.ml8 {
  font-weight: 600;
  font-size: 2.5em;
  color: #fff;
  width: 3em;
  height: 3em;
}


.ml8 .letters {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 0.9em;
  right: -0.12em;
  top: -0.2em;
}

.ml8 .bang {
  font-size: 1.4em;
  top: auto;
  left: -0.06em;
}

.ml8 .circle {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.ml8 .circle-white {
  width: 3em;
  height: 3em;
  border: 2px dashed white;
  border-radius: 2em;
}

.ml8 .circle-dark {
  width: 2.2em;
  height: 2.2em;
  background-color: var(--Yellowclr1);
  border-radius: 3em;
  z-index: 1;
}

.ml8 .circle-dark-dashed {
  border-radius: 2.4em;
  background-color: transparent;
  border: 2px dashed var(--Yellowclr1);
  width: 2.3em;
  height: 2.3em;
}
