:root {
  --bs-body-bg: #ededed;
}

/* NAVBAR */

.navbar {
  background: #303847;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.66);
  z-index: 5;
}

.navbar img {
  height: 50px;
  padding: 0px;
}

@media (min-width: 992px) {
  .navbar-nav {
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-link {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.language svg {
  color: white;
  font-size: 25px;
}

.language svg:hover {
  color: #b8b8b8;
  font-size: 25px;
}

#language-short {
  margin-inline-start: auto;
  margin-inline-end: 20px;
  padding: 6.2px 0px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#language-short a {
    padding: 2px 14px;
}


@media (max-width: 767px) {
  #navcol-1 {
    margin-inline-start: -10px;
  }
}

@media (max-width: 767px) {
  #language-wide {
    display: none;
  }
}

@media (min-width: 768px) {
  #language-short {
    display: none;
  }
}

.navbar .dropdown {
  margin-left: 15px;
  margin-right: 15px;
}

.navbar .dropdown-menu {
  min-width: 120px;
}

.navbar .nav-item {
    margin-right: 7px;
    margin-left: 7px;
    white-space: nowrap;
}

.navbar .dropdown-menu[data-bs-popper] {
  margin-inline-end: -45px;
}

.navbar #language-short .dropdown-menu[data-bs-popper] {
  margin-inline-end: -30px;
}

.navbar .material-icons {
  font-size: 28px;
  transform: translateY(4px);
  color: white;
}

/* BOKEH SECTION */

#bokeh-section {
  position: relative;
}


#app {
  width: 100%;
  height: 750px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 5px #ffffff, 0 0 20px #000, 0 0 30px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 20px 16px #000000;
  z-index: -1;
}


#blur {
  height: 100%;
  width: 100%;
  position: absolute;
  backdrop-filter: brightness(60%);
  -webkit-backdrop-filter: brightness(60%);
}

#center {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#center_width {
  max-width: 1350px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
}

@media (max-width: 992px) {
  #center_width {
    display: flex;
    flex-direction: column-reverse !important;
    align-items: center;
    padding-right: 0px;
    padding-left: 0px;
  }
}

#center_text {
  color: white;
  max-width: 400px;
  margin-bottom: 25px;
  text-align: justify;
  font-family:  sans-serif;
  font-size: 18px;
  text-shadow: 0px 0px 10px #000000;
}

    #center_text p, #center_text h1 {
        margin-bottom: 0px;
    }

    #center_text h1 .first-part {
        font-size: 18px;
        font-family: sans-serif;
        text-align: center;
        display: flex;
    }

        #center_text h1 .second-part {
            font-size: 36px;
            font-family: Cairo, sans-serif;
            font-weight: bold;
            margin-top: 5px;
            display: flex;
            justify-content: center;
        }

@media (max-width: 992px) {
    #center_text {
        width: 90%;
        text-align: justify;
    }
}

#download {
  background-color: #e53a00;
  padding-inline-start: 60px;
  padding-inline-end: 40px;
  padding-bottom: 17px;
  padding-top: 8px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.80);
  transition: 0.2s;
  max-width: 380px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  #download {
    max-width: 340px;
  }
}

#download:hover {
  background-color: #ff7446;
}

#download svg {
    color: rgb(255,255,255);
    font-size: 80px;
    padding-top: 5px;
    min-width: 50px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.54))
}

@media (min-width: 576px) {
    #download svg {
        margin-inline-start: 20px;
    }
}

#download p {
    text-align: center;
    color: white;
    margin-bottom: 0px;
    text-shadow: 0px 0px 10px #000000;
}

    #download p:first-child {
        font-size: 33px;
        font-family: 'Montserrat', sans-serif;
    }

.minidown {
    margin-top: 15px;
    background-color: #747474;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
    padding-bottom: 10px;
    padding-top: 7px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 8px 20px black;
    transition: 0.2s;
    max-width: 180px;
    min-width: 180px;
    font-size: 18px;
   
}

@media (max-width: 576px) {
    .minidown {
        max-width: 163px;
        min-width: 163px;
    }
}

    #download-IOS div p:last-child {
        font-size: 12px;
        white-space:nowrap;
        color: #b7b7b7;
        text-shadow: none;
    }

#download-android div p:first-child {
    font-size: 12px;
    text-shadow: none;
    font-family: sans-serif;
}

#download-android img {
    width: 35px;
    padding-top: 3px;
    margin-inline-start: auto;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.78))
}

#download-IOS svg {
    color: rgb(255,255,255);
    margin-inline-start: 5px;
    font-size: 40px;
    width: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.78))
}

@media (min-width: 576px) {
    #download-android img, #download-IOS svg {
        margin-inline-start: 20px !important;
    }
}

#download-android {
    margin-inline-end: 15px;
    white-space: nowrap;
    background-color: #e53a00;
}

    #download-android:hover {
        background-color: #ff7446;
    }

    .down-button a {
        text-decoration: none !important;
    }

.down-button p {
    text-align: center;
    color: white;
    margin-bottom: 0px;
    text-shadow: 0px 0px 10px #000000;
}


#bokeh-section #biglogo {
  height: 240px;
  object-fit: contain;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  #bokeh-section #biglogo {
    height: 180px;
    width: 80%;
    margin-bottom: 30px;
  }
}

.fade-img {
  position: relative;
}

.fade-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgb(0,0,0) 100%);
  height: 25%;
}

.fade-img2 {
  position: relative;
}

.fade-img2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgb(0,0,0) 100%);
  height: 60px;
}

/*slider section*/
#slider-section {
  padding-top: 20px;
}

/*Tutorial section*/
#tutorial-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

    #tutorial-section .container {
        background-color: rgba(188, 188, 188, 0.49);
        padding-top: 55px;
        padding-bottom: 55px;
        border-radius: 10px;
        max-width: 1280px;
        width: 95%;
    }

@media (max-width: 768px) {
    #tutorial-section .container {
        padding-bottom: 35px;
    }
}

@media (max-width: 992px) {
    #tutorial-section .container {
        padding-top: 0px;
    }
}

#tutorial {
    align-items: center;
}

    #tutorial p:first-child {
        font-size: clamp(60px,10vw,90px);
        align-items: center;
        text-align: center;
        z-index: 1;
        color: rgb(164, 65, 36);
        line-height: clamp(60px,10vw,100px);
        margin-top: 30px;
        margin-bottom: 30px;
        font-family: Calibri;
    }

    #tutorial p:nth-child(2) {
        font-size: 18px;
        align-items: center;
        text-align: center;
        z-index: 1;
    }

    @media (max-width: 992px) {
        #tutorial {
            margin-bottom: 20px;
        }
}

    #tutorial svg {
        font-size: clamp(250px,40vw,550px);
        z-index: 0;
        color: rgba(194, 75, 40, 0.13);
        filter: drop-shadow(0px 0px 10px rgba(194, 75, 40, 1));
    }

iframe {
    box-shadow: 0px 5px 15px rgba(0,0,0,1);
    border-radius: 6px;
    z-index: 100;
    width: 80%;
    max-width: 770px;
    height: 100%;
    aspect-ratio: 1.78;
    margin-inline-start: 30px;
}

@media (max-width: 992px) {
    iframe {
        border-radius: 3px;
        width: 95%;
        margin-inline-start: 0px;
    }
}


.whatsappButton {
  position: fixed;
  z-index: 300;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  padding: 12px;
  background: rgb(0,201,68);
  border-style: none;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.41);
  transition: 0.2s;
}

.whatsappButton:hover {
  background: #ff7446;
}

@keyframes circularMotion {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, 10px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.moveInPlace {
  animation-name: circularMotion;
  animation-duration: 4s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.whatsappButton svg {
  font-size: 39px;
  transform: translateX(1px) translateY(0px);
}

/* SUBS SECTION */

#subs-section {
  padding-top: 100px;
}

#subscriptions {
  box-shadow: 0px 5px 20px rgba(33,37,41,0.31);
  border-radius: 10px;
  overflow-y: hidden;
}

#subscriptions table {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #subs-section .container-lg {
    padding-right: 3px;
    padding-left: 3px;
  }
}

#subscriptions .seperator {
  height: 50px;
  vertical-align: middle;
  background-color: #35aa63;
  color: #ffffff;
  position: relative;
}

#subscriptions .seperator p {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  white-space: nowrap;
  z-index: 5;
}

#subscriptions td {
  padding: 0;
}

#subscriptions .feature {
    /*background-color: white !important;*/
    /*font-family: sans-serif;*/
    width: 40%;
    height: 51px;
    vertical-align: middle;
    line-height: 1.1;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: clamp(12px,3vw,16px);
}

#subscriptions .workplan {
  background-color: #ffe9c7 !important;
}

#subscriptions .tick {
  border: 1px solid rgba(0,0,0,0.19);
  vertical-align: middle;
  position: relative;
}

#subscriptions .tick svg {
  color: #ff6b00;
  font-size: 25px;
  vertical-align: middle;
  padding-bottom: 0px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(255,107,0,0.39);
}

@media (max-width: 768px) {
  #subscriptions .tick svg {
    font-size: 20px;
  }
}

#subscriptions .tick.text {
  border: 1px solid #c9c9c9;
  /*font-family: sans-serif;*/
  color: #303847;
  font-size: 18px;
  vertical-align: middle;
  padding-bottom: 0px;
  font-weight: bold;
}

#subscriptions br {
  content: "";
  display: block;
  height: 6px;
}

#subscriptions .top {
    background-color: rgb(48,56,71);
    vertical-align: top;
    border-bottom: none;
    padding-top: 20px;
    color: white;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.52);
    align-items: center;
}

#subscriptions .top p {
  margin-bottom: 5px;
  margin-top: 7px;
  font-size: clamp(10px,2vw,16px);
}

#subscriptions .header {
  height: 160px;
  width: 20%;
  border-inline-end: 1px solid rgba(0,0,0,0.3);
}

#subscriptions th {
  padding: 0;
}

#subscriptions .header img {
  height: clamp(30px,5vw,40px);
}

.discount {
  color: #ff3b3b;
  text-shadow: none;
  border-top: 1px solid rgba(128,128,128,0.37);
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  display: none;
}

#yearly-switch {
    font-size: clamp(16px,3vw,23px);
    color: #7d7d7d;
    text-shadow: none;
}

#monthly {
    padding-top: 0px !important;
    vertical-align: middle !important;
    font-weight: 100;
    border-inline-end: 1px solid rgba(0,0,0,0.3);
}

    #monthly p {
        margin-bottom: 0px !important;
        font-size: clamp(16px,3vw,30px) !important;
    }

#header1 {
  color: #00b159 !important;
}

#header1 img {
  filter: brightness(157%) hue-rotate(128deg);
}

#header2 {
  color: #04a7ff !important;
}

#header2 img {
  filter: brightness(200%) hue-rotate(172deg);
}

#header3 {
  color: #ff571e !important;
}

/* FAQ SECTION */

#FAQ-section {
  padding-top: 75px;
}

.accordion-button::after {
  margin-inline-end: 0 !important;
  margin-inline-start: auto;
}

.accordion {
  --bs-accordion-active-bg: #ffd3bb;
  --bs-accordion-bg: white;
  --bs-accordion-border-radius: 0px;
  --bs-accordion-inner-border-radius: 0px;
  --bs-accordion-btn-padding-y: 10px;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-color: #770000;
}

.accordion-item {
  box-shadow: 1px 2px 4px rgba(0,0,0,0.2);
  margin-top: 12px;
}

.accordion-button {
    font-size: clamp(14px,3vw,16px);
    text-align: start;
}

.accordion-body {
    font-size: clamp(14px,3vw,16px);
    text-align: start;
}
/* FOOTER */
#footer {
    background: #303847;
    padding-top: 30px;
    color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.36);
    text-shadow: 0px 3px 10px rgba(0,0,0,0.46);
    margin-top: 100px;
    padding-bottom: 60px;
}

#footer .footer-navigation img {
  margin-top: 5px;
  height: 100px;
}

@media (max-width:767px) {
  .footer-contacts {
    margin: 30px 0;
  }
}

.footer-contacts p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0px;
  margin-inline-start: 15px;
 
}

.footer-contacts .number {
  margin-inline-end: 15px;
  margin-inline-start: 0px;
}

.footer-contacts-icon {
  background-color: #eb3b00;
  color: #fff;
  font-size: 18px;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 11px;
  margin-top: 11px;
  margin-inline-start: 15px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.29);
  padding: 7px;
}

.footer-about h4 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 7px;
}

.footer-about h5 {
  line-height: 27px;
  color: #899098;
  font-size: 15px;
  font-weight: normal;
}

.footer-links {
    text-decoration: none; 
    color: rgb(177, 177, 177);
    margin-top: 25px;
    margin-inline-start: 15px;
}

.footer-links:hover {
    color: white;
}

#last-hr {
  margin-bottom: 6px;
}

#rights {
  margin-top: 15px;
}

.mashcode-link {
  transition: 0.2s;
  cursor: pointer;
  width: fit-content;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 40px;
  margin-inline-start: -5px;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.66));
}

.mashcode-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0px 0px 10px #0093ff90);
}

.mashcode-link h6 {
  margin-bottom: -12px;
  font-size: 11px;
  color: #9b9b9b;
  text-shadow: none;
  padding-inline-start: 4px;
}

.mashcode-link img {
  max-width: 175px;
}



