// ------------------------- // Body Styles // ------------------------- body { background-color: #FFFCEC; min-height: 100vh; } // ------------------------- // Link Styles // ------------------------- a:link { text-decoration: none; color: black; } a:visited { text-decoration: none; color: black; } a:hover { text-decoration: underline; color: black; } a:active { text-decoration: underline; color: black; } .darklink:link { color: grey; } .darklink:hover { color: grey; } .darklink:active { color: grey; } // ------------------------- // Content Styles // ------------------------- .container { width: 100%; max-width: 400px; margin: 0 auto; } .header { position: relative; background-color: $gold; background-image: url("/assets/images/btr-texture.png"); background-size: 170px; padding: 0 0 100px 0; text-align: center; border-radius: 0 0 20px 20px; z-index: 1; // Language selector &-wrapper { display: flex; align-items: center; justify-content: space-between; flex-direction: column; } .header-menu { &-list { padding-left: 0; list-style: none; li { display: inline-block; &.active { font-weight: 600; } &:not(:last-child) { margin: 10px; } } } } } .header-content { position: relative; z-index: 2; } .header-image { width: 150px; } .header-title { font-size: 1.5em; color: #333; margin: 20px 0; font-weight: bold; } .content { position: relative; top: -100px; padding: 20px; z-index: 2; } .card { background-color: white; padding: 20px; margin: 10px 0; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); text-align: center; font-size: 1.2em; color: #333; display: flex; flex-direction: column; align-items: center; } .card-icon { width: 32px; /* Desired width */ height: 32px; /* Desired height */ margin-bottom: 10px; object-fit: cover; } .card-icon-big { width: 60px; /* Desired width */ height: 60px; /* Desired height */ margin-bottom: 10px; object-fit: cover; } // ------------------------- // Button Styles // ------------------------- .btn-android { margin: 15px 15px 15px 0px; height: 30px; width: auto; } // ------------------------- // Footer Styles // ------------------------- .footer-area { font-family: $footer-font-family; padding: 35px 0; } // ------------------------- // Modal Styles // ------------------------- .modal__content { &__header { display: flex; align-items: flex-start; @media (max-width: 768px) { flex-direction: column; } .header__logo { img { display: block; max-width: 100%; @media (max-width: 768px) { max-width: 120px; width: 100%; } } } .header__text { margin: 0 30px; max-width: 430px; width: 100%; @media (max-width: 768px) { margin: 20px 0; } .info__list { font-size: 14px; list-style: none; margin-top: 10px; padding: 0; } } .header__btn { @media (min-width: 769px) { margin-left: auto; } .btn-main { @media (max-width: 992px) { font-size: 10px; } } } } &__description { margin: 30px 0; } &__slider { //to prevent slider jump @media (min-width: 1200px) { min-height: 586px; height: 100%; } .slider-item { margin: 0 10px; } img { max-width: 100%; @media (max-width: 768px) { margin: 0 auto; } } } } .modal__footer { p { font-size: 14px; a { color: inherit; } } } // ------------------------- // Slider Styles // ------------------------- .slick-arrow { background: $royal-blue; border-radius: 50%; color: $white; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; font-size: 34px; position: absolute; top: 50%; margin-top: -35px; transition: all .3s ease; z-index: 1; &:hover { background-color: lighten($royal-blue, 5%); } @media (max-width: 768px) { width: 50px; height: 50px; margin-top: -25px; } } .slick-prev { left: 0; } .slick-next { right: 0; }