@import "https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap";
:root {
  --font: "Inter", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --white: #fff;
}

body {
  font-family: var(--font);
  color: var(--body-color);
  font-style: normal;
  font-weight: normal;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a, button, input, textarea {
  transition: all .3s ease-out;
}

a, a:focus, input:focus, textarea:focus, button:focus, .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
}

a:focus, a:hover {
  text-decoration: none;
}

i, span, a {
  display: inline-block;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  color: var(--body-color);
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.bg_cover {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-main-btn {
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  background: var(--primary-color);
  border: 1px solid #0000;
  border-radius: 5px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all .4s ease-out;
  display: inline-block;
}

.ud-main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  text-align: center;
  z-index: 99;
  color: var(--white);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 0 5px #0003;
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

.ud-header {
  width: 100%;
  z-index: 99;
  transition: all .3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}

.sticky {
  z-index: 99;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fffc;
  transition: all .3s ease-out;
  position: fixed;
  box-shadow: inset 0 -1px #0000001a;
}

.sticky .navbar {
  padding: 0;
}

.navbar {
  border-radius: 5px;
  padding: 0;
  transition: all .3s ease-out;
  position: relative;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0;
  }
}

.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all .3s ease-out;
  display: block;
  position: relative;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  top: -7px;
  transform: rotate(135deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    border-radius: 5px;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 15px 20px #0000001a;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  padding: 0 20px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0;
  }
}

.navbar-nav .nav-item > a {
  color: var(--white);
  padding: 25px 8px;
  font-size: 16px;
  font-weight: 400;
  transition: all .3s ease-out;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    color: var(--heading-color);
    padding: 8px 0;
    display: block;
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: .5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item .ud-submenu {
  width: 250px;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  padding: 20px 30px;
  transition: all .3s ease-out;
  position: absolute;
  top: 110%;
  box-shadow: 0 15px 44px #8c8c8c2e;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 0;
    display: none;
    position: static;
  }
}

.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  color: var(--heading-color);
  padding: 7px 0;
  font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: .5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a:after {
  content: "";
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: rotate(45deg)translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a:after {
    right: 5px;
  }

  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  background: none;
  padding: 8px 16px;
}

.navbar-btn .ud-login-btn:hover {
  opacity: .5;
}

.navbar-btn .ud-white-btn {
  background: #fff3;
}

.navbar-btn .ud-white-btn:hover {
  color: var(--heading-color);
  background: #fff;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

.ud-hero {
  background: var(--primary-color);
  padding-top: 180px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
  }
}

.ud-hero-content {
  max-width: 780px;
  margin: auto auto 30px;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-hero-content .ud-hero-desc {
  text-align: center;
  color: var(--white);
  opacity: .8;
  max-width: 600px;
  margin: auto auto 30px;
  font-size: 20px;
  font-weight: normal;
  line-height: 35px;
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.ud-hero-buttons {
  justify-content: center;
  align-items: center;
  display: flex;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
  color: var(--primary-color);
  background: #fefefe;
  box-shadow: 0 0 25px #0003;
}

.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  opacity: .5;
  background: none;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
  opacity: .5;
  max-width: 250px;
  transition: all .3s;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  text-align: center;
  z-index: 1;
  margin: auto;
  position: relative;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}

.ud-hero-image .shape {
  z-index: -1;
  position: absolute;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

.ud-features {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.ud-section-title span {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.ud-section-title h2 {
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
}

.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
}

.ud-single-feature:hover .ud-feature-icon:before {
  transform: rotate(45deg);
}

.ud-single-feature .ud-feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--white);
  z-index: 1;
  text-align: center;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-size: 32px;
  display: flex;
  position: relative;
}

.ud-single-feature .ud-feature-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: .2;
  z-index: -1;
  border-radius: 14px;
  transition: all .3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(23deg);
}

.ud-single-feature .ud-feature-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.ud-single-feature .ud-feature-desc {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
}

.ud-single-feature .ud-feature-link {
  color: var(--body-color);
  font-weight: 500;
}

.ud-single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

.ud-about {
  background: #f3f4fe;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .ud-about {
    padding: 80px 0;
  }
}

.ud-about-wrapper {
  background: var(--white);
  border: 1px solid #00000014;
  justify-content: space-between;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 70px;
}

@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px;
  }
}

.ud-about-content {
  max-width: 500px;
}

.ud-about-content .tag {
  color: var(--white);
  background: var(--primary-color);
  margin-bottom: 20px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.ud-about-content h2 {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: bold;
  line-height: 45px;
}

@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-about-content p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 28px;
}

.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  box-shadow: 0 0 10px #0000004d;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
}

.ud-pricing {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-pricing {
  background: var(--white);
  text-align: center;
  border: 2px solid #d4deff;
  border-radius: 8px;
  margin-bottom: 40px;
  padding: 45px 30px;
  position: relative;
}

.ud-single-pricing.active {
  background: linear-gradient(#3056d3 0%, #179bee 100%);
  border: none;
  padding: 55px 30px;
}

.ud-single-pricing.active .ud-pricing-header h3, .ud-single-pricing.active .ud-pricing-header h4, .ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.first-item:after, .ud-single-pricing.last-item:after {
  content: "";
  width: 55px;
  height: 55px;
  z-index: 1;
  position: absolute;
}

.ud-single-pricing.first-item:after {
  background: var(--primary-color);
  border-radius: 0 55px 0 8px;
  bottom: -2px;
  left: -2px;
}

.ud-single-pricing.last-item:after {
  background: #13c296;
  border-radius: 0 8px 0 55px;
  top: -2px;
  right: -2px;
}

.ud-single-pricing .ud-popular-tag {
  background: var(--white);
  color: var(--primary-color);
  border-radius: 30px;
  margin-bottom: 20px;
  padding: 10px 25px;
  font-weight: 600;
  display: inline-block;
}

.ud-single-pricing .ud-pricing-header h3 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}

.ud-single-pricing .ud-pricing-header h4 {
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 600;
}

.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body li {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
}

.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}

.ud-single-pricing .ud-border-btn {
  color: var(--primary-color);
  background: var(--white);
  border: 1px solid #d4deff;
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

.ud-faq {
  z-index: 1;
  background: #f3f4fe;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
}

@media (max-width: 767px) {
  .ud-faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.ud-faq .shape {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ud-single-faq {
  background: var(--white);
  border: 1px solid #f3f4fe;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 20px 95px #c9cbcc4d;
}

.ud-single-faq .ud-faq-btn {
  text-align: left;
  width: 100%;
  color: var(--heading-color);
  opacity: .88;
  background: none;
  border: none;
  align-items: center;
  padding: 30px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 15px;
  }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
  width: 42px;
  height: 42px;
  color: var(--primary-color);
  background: #3056d30f;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  display: flex;
}

.ud-single-faq .ud-faq-btn span.icon i {
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  transform: rotate(180deg);
}

.ud-single-faq .ud-faq-body {
  padding: 0 30px 40px 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0 16px 20px 82px;
  }
}

.ud-testimonials {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
  }
}

.ud-single-testimonial {
  background: var(--white);
  margin-bottom: 50px;
  padding: 30px;
  box-shadow: 0 60px 120px -20px #ebeffd;
}

.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}

.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}

.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}

.ud-single-testimonial .ud-testimonial-content p {
  color: #637381;
  font-size: 16px;
  line-height: 30px;
}

.ud-single-testimonial .ud-testimonial-info {
  align-items: center;
  display: flex;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-size: 14px;
  font-weight: 600;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  color: #969696;
  font-size: 12px;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  color: var(--body-color);
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6:after {
  content: "";
  width: 30px;
  height: 1px;
  background: #afb2b5;
  position: absolute;
  top: 50%;
  right: -40px;
}

.ud-brands .ud-brands-logo {
  flex-wrap: wrap;
  align-items: center;
  margin-right: -40px;
  display: flex;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  max-width: 140px;
  margin-bottom: 20px;
  margin-right: 40px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  -webkit-filter: none;
  filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
  -webkit-filter: grayscale();
  filter: grayscale();
  transition: all .3s ease-out;
}

.ud-team {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .ud-team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-team {
  margin-bottom: 40px;
}

.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  margin: 0 auto 25px;
  position: relative;
}

.ud-single-team .ud-team-image {
  border-radius: 50%;
}

.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 50%;
}

.ud-single-team .shape {
  z-index: -1;
  position: absolute;
}

.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}

.ud-single-team .ud-team-info h5 {
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.ud-single-team .ud-team-info h6 {
  color: var(--body-color);
  font-size: 12px;
  font-weight: 500;
}

.ud-single-team .ud-team-socials {
  justify-content: center;
  align-items: center;
  display: flex;
}

.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  color: #cdced6;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  display: flex;
}

.ud-single-team .ud-team-socials a:hover {
  color: var(--primary-color);
}

.ud-contact {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 767px) {
  .ud-contact {
    padding: 80px 0;
  }
}

.ud-contact:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 50%;
  background: #f3f4fe;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact:after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }
}

.ud-contact-title span {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
}

.ud-contact-title h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}

.ud-contact-info-wrapper .ud-single-info {
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
  display: flex;
}

.ud-contact-info-wrapper .ud-info-icon {
  color: var(--primary-color);
  margin-right: 24px;
  font-size: 32px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.ud-contact-form-wrapper {
  background: var(--white);
  border-radius: 8px;
  padding: 60px;
  box-shadow: 0 4px 28px #0000000d;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 50px 40px;
  }
}

.ud-contact-form-wrapper .ud-contact-form-title {
  margin-bottom: 30px;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  font-size: 12px;
  font-weight: normal;
  display: block;
}

.ud-contact-form-wrapper .ud-form-group input, .ud-contact-form-wrapper .ud-form-group textarea {
  width: 100%;
  resize: none;
  border: none;
  border-bottom: 1px solid #f1f1f1;
  outline: none;
  padding: 15px 0;
  display: block;
}

.ud-contact-form-wrapper .ud-form-group input:focus, .ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

.ud-footer {
  background: var(--heading-color);
  z-index: 1;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.ud-footer .shape {
  z-index: -1;
  position: absolute;
}

.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-bottom: 50px;
}

.ud-widget .ud-footer-logo {
  max-width: 160px;
  margin-bottom: 10px;
  display: block;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  color: #f3f4fe;
  max-width: 260px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 24px;
}

.ud-widget .ud-widget-socials {
  align-items: center;
  display: flex;
}

.ud-widget .ud-widget-socials a {
  color: #ddd;
  margin-right: 20px;
  font-size: 16px;
}

.ud-widget .ud-widget-socials a:hover {
  color: var(--primary-color);
}

.ud-widget .ud-widget-title {
  color: var(--white);
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 600;
}

.ud-widget .ud-widget-links a {
  color: #f3f4fe;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  display: inline-block;
}

.ud-widget .ud-widget-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.ud-widget .ud-widget-brands {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.ud-widget .ud-widget-brands a {
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
  display: block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  border-top: 1px solid #8890a46e;
  padding: 35px 0;
}

.ud-footer-bottom .ud-footer-bottom-left {
  align-items: center;
  display: flex;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  color: #f3f4fe;
  margin-right: 30px;
  font-size: 15px;
  font-weight: normal;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0 8px 8px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  color: #f3f4fe;
  font-size: 15px;
  font-weight: normal;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

.ud-page-banner {
  background: var(--primary-color);
  background-image: url("assets/images/banner/banner-bg.e581d282.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 80px;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.ud-banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  background: var(--white);
  text-align: center;
  margin: auto;
  padding: 60px;
  box-shadow: 0 10px 35px #0000000d;
}

.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}

.ud-login-form .ud-form-group input {
  width: 100%;
  color: var(--body-color);
  background: #fcfdfe;
  border: 2px solid #ddd;
  border-radius: 4px;
  padding: 12px 24px;
}

.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  color: var(--body-color);
  margin-bottom: 10px;
  font-size: 16px;
}

.ud-socials-connect ul {
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin: 10px;
  font-size: 20px;
  display: flex;
}

.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}

.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
  background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  color: var(--body-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}

.signup-option a {
  color: var(--primary-color);
}

.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}

.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .ud-blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}

.ud-single-blog:hover .ud-blog-image img {
  transform: scale(1.1)rotate(3deg);
}

.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.ud-single-blog .ud-blog-image a {
  display: block;
}

.ud-single-blog .ud-blog-image img {
  width: 100%;
  transition: all .3s ease-out;
}

.ud-single-blog .ud-blog-date {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.ud-single-blog .ud-blog-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.ud-single-blog .ud-blog-title a {
  color: inherit;
}

.ud-single-blog .ud-blog-title a:hover {
  color: var(--primary-color);
}

.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  margin-bottom: 50px;
  padding-bottom: 25px;
  font-size: 28px;
  font-weight: 800;
  position: relative;
}

.ud-related-articles-title:after {
  content: "";
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.ud-blog-details {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  height: 500px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}

.ud-blog-details-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.ud-blog-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(#3056d300 46.88%, #0d1531b8 93.23%);
  border-radius: 5px;
  align-items: flex-end;
  padding: 30px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.ud-blog-overlay-content {
  align-items: center;
  display: flex;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ud-blog-overlay-content .ud-blog-author {
  align-items: center;
  margin-right: 40px;
  display: flex;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  overflow: hidden;
}

.ud-blog-overlay-content .ud-blog-author span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}

.ud-blog-overlay-content .ud-blog-author a:hover {
  color: var(--primary-color);
}

.ud-blog-overlay-content .ud-blog-meta {
  align-items: center;
  display: flex;
}

.ud-blog-overlay-content .ud-blog-meta p {
  color: #fff;
  align-items: center;
  margin-right: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0;
}

.ud-blog-overlay-content .ud-blog-meta p i {
  margin-right: 10px;
  font-size: 16px;
}

.ud-blog-details-content {
  padding-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-blog-details-content {
    padding-right: 50px;
  }
}

.ud-blog-details-title {
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
  line-height: 50px;
}

@media (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ud-blog-details-para {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
}

.ud-blog-details-subtitle {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    margin-bottom: 25px;
    font-size: 22px;
  }
}

.ud-blog-quote {
  text-align: center;
  background-image: url("assets/images/blog/quote-bg.2ad4ab59.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 40px;
  padding: 40px;
}

@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}

.ud-blog-quote i {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}

.ud-blog-quote p {
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 27px;
}

@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}

.ud-blog-quote h6 {
  color: var(--body-color);
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
}

.ud-blog-details-action {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (max-width: 767px) {
  .ud-blog-details-action {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ud-blog-tags {
  align-items: center;
  display: flex;
}

@media (max-width: 767px) {
  .ud-blog-tags {
    margin-bottom: 20px;
  }
}

.ud-blog-tags li {
  margin-right: 14px;
}

.ud-blog-tags li:last-child {
  margin-right: 0;
}

.ud-blog-tags a {
  color: var(--primary-color);
  background: #3056d30f;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
}

.ud-blog-tags a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ud-blog-share {
  align-items: center;
  display: flex;
}

.ud-blog-share h6 {
  color: var(--body-color);
  margin-right: 20px;
  font-size: 12px;
  font-weight: 500;
}

.ud-blog-share-links {
  align-items: center;
  display: flex;
}

.ud-blog-share-links li {
  margin-right: 14px;
}

.ud-blog-share-links li:last-child {
  margin-right: 0;
}

.ud-blog-share-links a {
  width: 35px;
  height: 35px;
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  display: flex;
}

.ud-blog-share-links a.facebook {
  background: #4064ac;
}

.ud-blog-share-links a.facebook:hover {
  background: #315294;
}

.ud-blog-share-links a.twitter {
  background: #1c9cea;
}

.ud-blog-share-links a.twitter:hover {
  background: #0f8bd8;
}

.ud-blog-share-links a.linkedin {
  background: #007ab9;
}

.ud-blog-share-links a.linkedin:hover {
  background: #03689b;
}

.ud-blog-sidebar {
  padding-top: 60px;
}

.ud-newsletter-box {
  background: var(--primary-color);
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
  padding: 60px 45px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}

.ud-newsletter-box .shape {
  z-index: -1;
  position: absolute;
}

.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}

.ud-newsletter-box .shape.shape-2 {
  bottom: 0;
  left: 0;
}

.ud-newsletter-box .ud-newsletter-title {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}

.ud-newsletter-box p {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}

.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  color: var(--white);
  text-align: center;
  background: #fff3;
  border: 2px solid #0000;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 12px 20px;
  box-shadow: 0 4px 42px #00000003;
}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  width: 100%;
  background: #13c296;
  border-radius: 5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 42px #00000003;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
  margin-bottom: 20px;
  padding-bottom: 25px;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}

.ud-articles-box .ud-articles-box-title:after {
  content: "";
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.ud-articles-box .ud-articles-list li {
  border-bottom: 1px solid #f2f3f8;
  align-items: center;
  padding: 20px 0;
  display: flex;
}

.ud-articles-box .ud-articles-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}

.ud-articles-box .ud-articles-list .ud-article-title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: var(--primary-color);
}

.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}

.ud-banner-ad a {
  display: block;
}

.ud-banner-ad img {
  width: 100%;
}

.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  background: var(--white);
  z-index: 1;
  border-radius: 10px;
  margin: 0 auto;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px #0000001a;
}

@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}

.ud-404-wrapper .shape {
  z-index: -1;
  position: absolute;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.ud-404-title {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ud-404-links a {
  color: var(--heading-color);
  background: #3056d30f;
  border-radius: 5px;
  margin: 5px 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

.back-to-top {
  transition: opacity .3s ease-in-out;
}

.ud-main-btn.loading {
  pointer-events: none;
  opacity: .8;
  position: relative;
}

.ud-main-btn.loading:after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #0000;
  border-top-color: currentColor;
  border-radius: 50%;
  margin: -10px 0 0 -10px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ud-single-feature, .ud-single-pricing, .ud-single-team, .ud-single-testimonial, .ud-single-faq {
  transition: all .3s;
}

.ud-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #0003;
}

