@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap');

html, body {
    padding: 0;
    margin: 0;
    background-color: #000;
}

body {
    font-family: 'Open Sans', helvetica, arial, sans-serif;
    color: #fff;
    font-weight: 300;
}

h1 { font-weight: 600; text-align: center; }
h2, h3, h4 { font-weight: 600; text-align: left; }
h1, h2, h3 {
    font-size: 34px;
}

h3 {
    text-align: center;
    max-width: 500px;
    padding: 0 auto;
    border-bottom: 1px solid #fff;
}

.swiper-slide h2, .swiper-slide p {
    text-align: center;
}

p {
    font-size: 14px;
    text-align: left;
}
a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
p a {font-size: 14px;}

a:hover {
    color: #efefef;
    text-decoration: underline;
}

.cd-logo{
  transition: transform 500ms ease-in-out;
}

.cd-logo {
  transform: scale(1);
}

.lang_icon {
    filter: grayscale(90%);
}
.lang_active {
    filter: grayscale(0%);
}
.lang_icon:hover {
    filter: grayscale(0%);
}


.swiper-slide p, footer p {
    font-size: 14px;
    font-weight: 300;
}
.swiper-sub {
    font-size: 1.0rem;
}

cite { text-align: right; }

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #000;
    z-index: 99;
}

#status {
    width:100px;
    height:5px;
    position:absolute;
    left: 50%;
    left: calc(50% - 50px);
    top: 50%;
    background-repeat:no-repeat;
    background-position:center;
    margin: 0;
}


.column {
    display: flex;
    box-sizing: border-box;
    align-items: center;
}

.col-icon {
    flex-basis: 60px;
    padding: 5px;
}

.col-text {
    flex-basis: auto; 
    max-width: fit-content;
    text-align: left;
}


/* *********************************
*              navbar            */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.icon-bar {
	width: 30px;
	height: 2px;
	background-color: #fff;
	display: block;
	transition: all 0.2s;
	margin-top: 6px
}

.navbar-toggler {
    padding: 0;
    border: none;
    background: transparent !important;
    text-decoration: none;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none;
    border: none;
}

.nav-item { 
    text-decoration: none;
    font-weight: 300;
    font-size: 22px; 
    margin-right: 10px;
    outline: 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,.75);
}

.navbar-brand img {
    width: 248px; height: auto;
}

.navbar-collapse form {
    padding: 20px 0;
}

.navbar-collapse input {
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 3px;
    margin: 4px 0;
    padding: 0 5px;
}

.bg-dark { background-color: #000!important; }

.navbar-toggler>.close {
    display:inline;
}
.navbar-toggler.collapsed>.close, .navbar-toggler:not(.collapsed)>.navbar-toggler-icon {
    display:none;
}

.close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #fff;
    text-decoration: none;
}

.custom-toggler {
    position: absolute;
    top: 15px;
    left: 15px;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 40 35' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(246,227,182, 1)' stroke-width='2' stroke-linecap='square' stroke-miterlimit='20' d='M2 6h35M2 17h35M2 28h35'/%3E%3C/svg%3E");
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

.popover {
    max-width: 376px;
    background-color: #fff;
    background-color: rgba(255,255,255, 0.7);
    backdrop-filter: blur(3px);
}

.popover-body {
    padding: .6rem 1.75rem;
    color: #212529;
}

#cdlogin input, #cdlogin button {
    width: 100%;
    padding: 2px;
    margin-top: 10px;
    font-size: 22px;
    font-weight: normal;
}
#cdlogin a {
    color: #000!important;
    text-decoration: underline;
}
/* navbar */

/* navbar animation */
.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}
/* ende navbar animation */





/* *********************************
*               Swiper            */
.swiper-news, .swiper-products {
    max-width: 1400px;
}

.swiper-slide {
    height: auto;
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img { width: 100%; height: auto; }
.swiper-news-content { height: 100%!important; }
.swiper-pagination { position: relative; }

.swiper-pagination-bullet {
    background: #727272;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
}

.swiper-button-next, .swiper-button-prev {
    color: #338af4;
}

.swipe-prev1 {
    left: 0px;
}
.swipe-next1 {
    right: 0;
}

.swiper-pagination, .swipe-prev1, .swipe-next1 {
    display: none;
}
/* ENDE Swiper */



.sm-icons  {
    position: absolute;
    top: 43%;
    left: 5px;
    width: 30px;
    z-index: 1000;
}

.sm-icons img  {
    width: 30px; height: auto;
}

.sm-icons-bottom {
    position: relative;
    right: 5px;
    width: 100%;
    margin-bottom: 5px;
}

.jumbotron { background-color: #341d33; }

section.bg-full {
    height: 100vh;
}

section.bg-full, section.bg-test {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/* full background images */
.bg-full.focus-center, section.bg-test.focus-center { background-position: center; }
.bg-full.focus-left, section.bg-test.focus-left { background-position: left 0px; }
.bg-full.focus-right, section.bg-test.focus-right { background-position: right 0px; }


#start{
    background-image: url(../img/bg1_paula_rowe_xl.jpg);
    background-position: center top;
}
#page_cashdorado{
    background-image: url(../img/bg2_cashcow_xl.jpg);
    background-position: right top;
}

#page_cashdorado p{
    max-width: 768px;
}

.claim {
    margin-top: 10%;
}

.container {
    max-width: 100%;
}

.swiper-start-content {
    max-width: 527px;
    padding: 10px;
}

.swiper-news-content h2 {
    margin-top: 15px;
}

.chng-lng {
    width: 100%;
    max-width: 1080px;
}



/* buttons */
.navbar-collapse input {
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 3px;
    margin: 4px 0;
    padding: 0 5px;
}

.btn-primary {
    color: #000;
    background-color: #FFE892;
    border-color: #FFB31C;
}

.btn-primary:hover {
    color: #000;
    background-color: #c9b66e;
    border-color: #FFB31C;
}

.btn {
    font-size: 22px;
    font-weight: normal;
	padding: .2rem .3rem;
	border-radius: .15rem;
    padding: 2px 26px;
    outline: none;
}
/* ----------- */



.img-gal {
    width: 100%;
    height: auto;
    padding: 1px;
    cursor: pointer;
    opacity: 0;
}

footer {
    width: 100%;
    background-color: #313131;
    padding: 10px 5px;
    margin: 0 10px 0 0;
    text-align: right;
}

footer p {
    padding: 0px;
    margin: 0px;
    text-align: center;
}


/* media queries */
@media only screen and (max-width: 576px) {
    .cd-logo { transform: scale(0.7); }
    .navbar { padding: .1rem 1rem; }
}

@media only screen and (max-width: 992px) {
    #page_cashdorado { background-image: none; }
    .swiper-pagination, .swipe-prev1, .swipe-next1 {display: block;}
}

@media only screen and (max-width: 768px) {
    #start { background-image: url(../img/bg1_paula_rowe_s.jpg); }
    h1, h2, h3 { font-size: 25px; }
    #a1 {display: block;}
}

