
/*
  ######################################### START General Style #########################################
 */
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik/static/Rubik-Regular.ttf') format('woff2'),
       url('../fonts/Rubik/Rubik-VariableFont_wght.ttf') format('woff');
  font-weight: normal;
  font-style: normal;
}

html {
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  font-family: 'Rubik', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #0A246A;
}

.my-blue {
  color: #0A246A;
}

.my-orange {
  color: #ffa800;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
  color: #0A246A;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.4rem;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  line-height: 30px;
}

.back_call p {
  font-size: 0.8rem;
}

.btn {
  display: inline-block;
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}

.btn-main {
  background: #ffa800;
  color: #0A246A;
  border-color: #ffa800;
}

.btn-main:hover {
  color: #0A246A;
  background: transparent;
}

.btn-main:focus {
  color: #0A246A;
  background: transparent;
}

.btn-solid-border {
  border: 2px solid #ffa800;
  background: transparent;
  color: #0A246A;
}
.btn-solid-border:hover {
  border: 2px solid #0A246A;
  color: #fff;
  background: #ffa800;
}

.btn.active:focus, .btn:active:focus, .btn:focus {
  outline: 0;
}

.nav-item::after{
  content:'';
  display:block;
  width:0;
  height:3px;
  background:#ffa800;
  transition: 0.2s;
  margin-top:-10px;
}

.nav-item:hover::after{
  width:100%;
}

.nav-link{
  padding: 20px 5px;
  transition:0.2s;
}

.navbar-light .navbar-nav .nav-link {
  color: #0A246A;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0A246A;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  transition: all 0.45s ease 0s;
  opacity: 1;
}

.dropdown-menu .nav-item::after{
  display:none;
}

.dropdown-item:hover {
  background: #ffa800;
  color: #fff;
}

.bg-section {
  background-color: #e6e9ff;
}

/*
  ######################################### END General Style #########################################
 */


/*
  ######################################### START Top Header #########################################
 */
.my-blue-background {
  background-color: #0A246A;
}

.my-orange-background {
  background-color: #ffa800;
}

.slant-divider {
  background-color: #0A246A;
  transform-origin: 0 100%;
  -webkit-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  transform: skew(-30deg);
  margin-left: 30px;
  width: 50px;
}
/*
  ######################################### END Top Header #########################################
 */

/*
  ######################################### START Home Page #########################################
 */
.banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: url("../images/test1.jpg") no-repeat 20% 50%;
  background-size: cover;
  padding: 0 0;
  min-height: 300px;
}
.banner .block {
  padding-top: 0;
}

.letter-spacing {
  letter-spacing: 2px;
}

.services a, .weiter a {
  color: #ffa800;
  font-weight: 500;
}

.divider {
  position: relative;
  width: 70px;
  height: 5px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
}

.divider::before {
  left: 0;
  background-color: #0A246A;
}

.divider::after {
  right: 0;
  background-color: #ffa800;
}

/*      Links       */
a {
  color: #0A246A;
  text-decoration: none;
  transition: all .35s ease;
}

.header-social-icons a:hover {
  color: #0A246A;
}

a:focus, a:hover {
  color: #ffa800;
  text-decoration: none;
}

a:focus {
  outline: none;
}

.icon-block {
  height: 14rem;
  width: 14rem;
  padding: 50px 35px;
  background: #fff;
}
.icon-block:hover, icon-block:focus, icon-block:active {
  color: #0A246A;
}
.icon-block i {
  font-size: 35px;
  background: #ffa800;
  width: 70px;
  height: 70px;
  text-align: center;
  padding-top: 16px;
  border-radius: 4px;
  display: inline-block;
  color: #0A246A;
}

/*
  ######################################### START Rating Section #########################################
 */
.rating-block {
  position: relative;
  margin-bottom: 20px;
  background-color: rgba(178, 169, 131, 0.09);
}

.rating-block p {
  background: #fff;
  font-size: 18px;
}

.rating-block .client-info {
  margin-bottom: 20px;
}

.rating-block .client-info h4 {
  margin-bottom: 0;
}

.rating-block i {
  font-size: 60px;
  position: absolute;
  right: 46px;
  bottom: 89px;
  opacity: .08;
}

.rating-thumb img {
  width: 80px;
  height: 80px;
  border: 5px solid #eff0f3;
}

.fa-quote-right {
  position: relative;
  float: right;
  font-size: 50px;
  top: -20px;
  color: #ffa800;
  opacity: .5;
}

/*
  ######################################### START Rating Section #########################################
 */
/*
  ######################################### END Home Page #########################################
 */


/*
  ######################################### START Sub Pages #########################################
 */

.subpages-background {
  position: relative;
  background: url("../images/services-bg.png") no-repeat center;
  background-size: cover;
  height: 400px;
}

.service-img img {
  border-radius: 5px;
  /*border-radius: 80px;*/
  /*-webkit-border-radius: 80px;*/
  /*-moz-border-radius: 80px;*/
  box-shadow: 0 0 40px 0 rgba(85, 128, 255, 0.2);
  -webkit-box-shadow: 0 0 40px 0 rgba(85, 128, 255, 0.2);
  -o-box-shadow: 0 0 40px 0 rgba(85, 128, 255, 0.2);
  -moz-box-shadow: 0 0 40px 0 rgba(85, 128, 255, 0.2);
}

/*
  ######################################### START Sub Pages #########################################
 */

/*
  ######################################### START Footer Style #########################################
 */
.list-unstyled {
  color: #0A246A
}

/*
  ######################################### END Footer Style #########################################
 */

@media (max-width: 768px) {
  .banner {
    background-position: center right;
    padding: 80px 0;
    min-height: 600px;
  }
  .banner .block h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  .btn {
    font-size: 0.9rem;
  }
  .margi {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .banner {
    padding: 60px 0;
    min-height: 500px;
  }
  .banner .block h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.8rem;
  }
  .btn {
    font-size: 0.8rem;
    padding: 0.4rem 1.3rem;
  }
}

/*
  ######################################### START Dark Mode #########################################

@media (prefers-color-scheme: dark) {
  .banner {
    background: url("../images/home-page-background.png") no-repeat 20% 50%;
    background-size: cover;
  }
  body {
    background-color: #00113a;
  }
  h1, h2, h3, h4, h5, h6, li, a, label, span, .btn-main, .footer-socials li a, a.nav-link {
    color: #fff;
  }
  p {
    color: #a9a9a9;
  }
  .divider::before {
    background-color: #fff;
  }
  .btn-main:hover {
    color: #ffa800;
  }
  .btn-main:focus {
    color: #ffa800;
  }
  .dropdown-menu {
    background-color: #00113a;
  }
  p.banner-p {
    color: #fff;
  }
  .bg-section {
    background-color: #0A246A;
  }
  .icon-block {
    background: #00113a;
  }
  .logo {
    filter: drop-shadow(1px 0 0 white)drop-shadow(0 1px 0 white)drop-shadow(-1px 0 0 white)drop-shadow(0 -1px 0 white);
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div, #cmplz-document .cmplz-dropdown .cookies-per-purpose div, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose div {
    background-color: black;
    padding: 15px;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name-header, #cmplz-document .cmplz-dropdown .cookies-per-purpose .name-header, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose .name-header {
    background-color: black;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention-header, #cmplz-document .cmplz-dropdown .cookies-per-purpose .retention-header, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose .retention-header {
    background-color: black;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function-header, #cmplz-document .cmplz-dropdown .cookies-per-purpose .function-header, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose .function-header {
    background-color: black;
  }
  .navbar-toggler-icon {
    filter: drop-shadow(1px 0 0 white)drop-shadow(0 1px 0 white)drop-shadow(-1px 0 0 white)drop-shadow(0 -1px 0 white);
  }
}

  ######################################### END Dark Mode #########################################
 */

/*
  ######################################### START Whatsapp button #########################################
 */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/*
  ######################################### END Whatsapp button #########################################
 */