/*
Theme Name: YOOtheme Child
Theme URI: https://yootheme.com
Template: yootheme
Author: YOOtheme
Author URI: https://yootheme.com
Description: A powerful, flexible and elegant website builder that allows you to create complex pages within minutes and customize every aspect of the theme.
Version: 2.7.19.1645517089
Updated: 2022-02-22 08:04:49

*/



/*
.uk-marker {
    padding: 0;
    color: #fff !important
    transition: .1s ease-in-out;
    transition-property: color, background-color:white;
    border: 8px solid #54C0E8;
    border-radius: 500px;
}
*/


.row-gradient {
    background-image: linear-gradient(90deg, #54c0e8, #007cc8);
    padding: 70px 40px !important;
    color: white;
    border-radius: 20px;
}

@media (max-width: 450px) {
    .row-gradient {
        padding: 70px 20px 70px 0px;
        border-radius: 0px;
        margin-right: -30px;
    }
}

/* MOBILE SWITCHER DROPDOWN STYLE */
@media (max-width: 959px) {

  .mobile-switcher-dropdown .uk-subnav {
    display: block;
    margin-bottom: 25px;
  }

  .mobile-switcher-dropdown .uk-subnav > li {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .mobile-switcher-dropdown .uk-subnav > li > a {
    width: 100%;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.10);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }

  /* active item */
  .mobile-switcher-dropdown .uk-subnav > li.uk-active > a {
    border-color: #1e87f0;
  }

  /* arrow icon (fake dropdown arrow) */
  .mobile-switcher-dropdown .uk-subnav > li > a:after {
    content: "⌄";
    font-size: 18px;
    opacity: 0.6;
    margin-left: 10px;
  }

  .mobile-switcher-dropdown .uk-subnav > li.uk-active > a:after {
    transform: rotate(180deg);
    opacity: 1;
  }

}

/* NEW */

@media (max-width: 959px) {

  /* container nav */
  .mobile-switcher .uk-subnav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }

  /* items full width */
  .mobile-switcher .uk-subnav > * {
    width: 100%;
    padding: 0;
  }

  /* link style */
  .mobile-switcher .uk-subnav > * > a {
    width: 100%;
    padding: 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    font-weight: 600;
    font-size: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
  }

  /* hover */
  .mobile-switcher .uk-subnav > * > a:hover {
    transform: translateY(-1px);
  }

  /* active */
  .mobile-switcher .uk-subnav > .uk-active > a {
    border-color: #1e87f0;
    box-shadow: 0 8px 24px rgba(30,135,240,0.18);
  }

  /* arrow */
  .mobile-switcher .uk-subnav > * > a:after {
    content: "⌄";
    font-size: 18px;
    opacity: 0.5;
    margin-left: 12px;
  }

  /* rotate arrow on active */
  .mobile-switcher .uk-subnav > .uk-active > a:after {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* remove divider line effect */
  .mobile-switcher .uk-subnav-divider > :nth-child(n+2) {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }