@import url("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: #212b36da;
  --heading-color: #212b36;
  --primary-color: #FE900B;
  --white: #ffffff;
  --carousel-width: 80vw;
  --carousel-height: 20vh;
  --carousel-elements-displayed: 5;
  --carousel-element-width: calc(var(--carousel-width) / var(--carousel-elements-displayed));
  --carousel-animation-duration: calc(var(--carousel-elements) * 7s);
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}


@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


@keyframes wave-animation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 600px) {
  :root {
    --carousel-width: 100vw;
    --carousel-height: 16vh;
    --carousel-elements-displayed: 3;
  }

  .carousel:before,
  .carousel:after {
    width: 5rem;
  }
}

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

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

.ud-success-message {
  color: green;
  margin-top: 10px;
  font-weight: bold;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: 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 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}


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

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out;
  background: var(--primary-color);
  position: relative;
}

.ud-main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

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

.ud-second-btn:hover {
  color: var(--primary-color);
  background: #DADADA;
  border: 1px solid var(--primary-color);
  transform: translateY(-3px) rotate(1deg);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

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

.ud-third-btn:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transform: scale(1.08);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.ud-hero-btn{
   display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out;
  background: transparent;
  position: relative;
}
.ud-hero-btn:hover {
  transform: scale(1.08);
  color: var(--primary-color);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.ud-four-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out;
  background: transparent;
  color: #000000;
  position: relative;
}

.ud-four-btn:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transform: scale(1.08);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

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

.ud-nav-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.navbar-images {
  margin: 7px;
  width: 30px;
}

.navbar-images:hover {
  color: var(--white);
  transform: scale(1.05);
}

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

  .whats-included .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@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;
  line-height: 40px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 99;
  color: var(--white);
}

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

/* ===== Header CSS ===== */

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

.header {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, rgb(218, 218, 218) 0%, rgb(202, 202, 202) 100%);
  color: white;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}

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

.navbar-brand {
  padding: 0;
}


.beautiful-dropdown {
  background-color: hsla(0, 0%, 95%, 0.719);
  border: 1px solid #1689D8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.beautiful-dropdown-item {
  color: #1689D8;
  padding: 10px 25px;
  text-decoration: none;
  display: block;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.beautiful-dropdown-item:hover {
  background-color: #1689D8;
  color: #ffffff;
}


.beautiful-dropdown-item:focus {
  background-color: #1689D8;
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(14, 116, 144, 0.5);
}

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

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

.navbar-toggler {
  padding: 0;
}

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

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

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

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

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

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


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

.nav-item:hover {
  transform: scale(1.05);
}

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

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

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

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

.navbar-nav .nav-item>a:hover,
.navbar-nav .nav-item>a.active {
  color: var(--heading-color);
  opacity: 0.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(--heading-color);
    opacity: 1;
  }
}

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

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

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

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

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

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-nav .nav-item:hover>a {
    color: var(--heading-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: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@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;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

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

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

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.sticky .navbar-nav .nav-item:hover>a {
  color: var(--heading-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(--heading-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(--heading-color);
  opacity: 1;
}

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

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


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

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

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

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

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

/* ===== Hero CSS ===== */
.ud-hero-main {
  padding-bottom: 120px;
  background: linear-gradient(0deg, #434343 0%, #2e2e2e 100%);
}

.ud-hero-second {
  margin-top: -100px;
}


.ud-hero-title {
  max-width: 620px;
}
.ud-hero-second-title{
  color: var(--primary-color);

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

.ud-hero-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  color: var(--primary-color);
}

.ud-hero-title p {
  font-size: 20px;
  color: var(--white);
}

.ud-hero-paragraph {
  color: var(--white);
}


.ud-hero-image {
  width: 100%;
  height: auto;
}


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

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

/* ===== Second Section CSS ===== */


.ud-second-section {
  background-color: #434343;
  padding-top: 30px;
  padding-bottom: 120px;
}


.ud-second-section-image {
  width: 100%;
  height: auto;
}

/* ===== Third Section CSS ===== */
.ud-third-section {
  padding-top: 100px;
  padding-bottom: 120px;
}

.custom-pre {
  overflow: auto;
  color: #ED4C60;
  background: #1e375a;
  word-break: normal;
  overflow-wrap: normal;
  tab-size: 4;
  margin-bottom: 0px;
  position: relative;
  height: 400.938px;
  border-radius: 10px;
  box-shadow: #aac3e1 0px 30px 60px 0px;
  counter-reset: a 0;
  font-style: normal;
  font-weight: 400;
}

.language-yaml {
  font-size: 1em;
  background: none;
  white-space: inherit;
  word-spacing: normal;
  word-break: normal;
  overflow-wrap: normal;
  line-height: 1.5;
  tab-size: 4;
  transition: all 0.15s ease 0s;
  position: relative;
}

.token.comment {
  color: #92a4b4;
}

.token.string {
  color: #c41a16;
}

.token.punctuation {
  color: #92a4b4;
}

.token.plain {
  color: #ffffff;
}

.custom-pre::-webkit-scrollbar {
  width: 12px;
}

.custom-pre::-webkit-scrollbar-track {
  background: #1e375a;
  border-radius: 10px;
}

.custom-pre::-webkit-scrollbar-thumb {
  background-color: #1e375a;
  border-radius: 10px;
  border: 3px solid #1e375a;
}

.custom-pre::-webkit-scrollbar-thumb:hover {
  background-color: #1e375a;
}


/* ===== Fourth Section CSS ===== */

.ud-fourth-section {
  background-color: #434343;
  padding-top: 30px;
  padding-bottom: 120px;
}


.ud-fourth-section-image {
  width: 100%;
  height: auto;
}


/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
}

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

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

@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);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

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

.ud-contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}

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

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

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

.ud-contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}

@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 {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@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 {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

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

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


/* Footer CSS  */
.footer {
  background-color: #C0C3C5;
  color: var(--heading-color);
}

.footer-image {
  width: 150px;
}

.footer-copyright {
  background-color: #B4B4B4;
  color: black;
  padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright-image {
  width: 150px;
}

.footer-copyright-text {
  color: black;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.footer-copyright-link {
  color: black;
  text-decoration: none;
  font-size: 15px;
}


.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 830px;
  padding: 40px 15px 150px;
  position: relative;
}

.footer-button-content {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 55px;
  border: 1px solid transparent;
  color: black;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: #F3F5F7;
}


.footer-first-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (max-width: 750px) {

  .footer-copyright-wrapper {
    gap: 30px;
    flex-direction: column;
  }

  .footer-logo-div {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.ud-loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--body-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  margin-top: 20px;
  display: none;
  padding: 20px;
}

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

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


/* ===== Carousel CSS ===== */

.ud-carousel-head {
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

.ud-carousel {
  width: var(--carousel-width);
  height: var(--carousel-height);
  color: #eee;
  overflow: hidden;
  position: relative;
}

.ud-carousel-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--carousel-animation-duration) linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--carousel-element-width) * var(--carousel-elements)));
  }
}

.ud-carousel-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--carousel-element-width);
}

.ud-carousel-content li img {
  height: 100px;
  opacity: 0.8;
  padding-left: 30px;
  ;
}

.ud-carousel-blur {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.733), white),
    linear-gradient(to left, rgba(255, 255, 255, 0.753), white);
  filter: blur(10px);
  z-index: 1;
}

.ud-carousel-blur.left {
  left: -25px;
}

.ud-carousel-blur.right {
  right: -25px;
}

@media (max-width: 650px) {

  .ud-carousel-blur.left {
    left: -45px;
  }

  .ud-carousel-blur.right {
    right: -45px;
  }
}


/* Documentation Page */
.documentation-first-section {
  display: flex;
  margin: -150px 0px 150px 0px;
  padding: 150px;
  gap: 5px
}

.documentation-left-section {
  background-color: #434343;
  border-radius: 5px;
  padding-bottom: 120px;
  backdrop-filter: blur(5px);
  box-shadow: 2px 2px 10px rgb(204, 204, 204);
}

.documentation-right-section {
  border: 1px solid #434343;
  border-radius: 5px;
  padding-bottom: 120px;
  backdrop-filter: blur(5px);
  box-shadow: 2px 2px 10px rgb(204, 204, 204);

}

@media (max-width: 900px) {
  .documentation-first-section {
    display: grid;
    margin: -150px 0px 150px 0px;
    padding: 10px;
    gap: 25px
  }
}


.ui-card-sl {
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.034), 0 6px 20px 0 rgba(0, 0, 0, 0.062);
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 10px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  background-color: #dadada49;
}

.ui-card-sl:hover {
  margin-top: 5px;
}

.ui-card-image img {
  max-height: 50px;
  max-width: 100%;
  border-radius: 8px 8px 0px 0;
}

.ui-card-heading {
  font-size: 17px;
  color: #2D3741;
  font-weight: bold;
  padding: 10px 15px;
}

.ui-card-text {
  padding: 10px 15px;
  font-size: 15px;
  color: #636262;
}


/* ===== Rosetta Ce CSS ===== */
.ud-rosetta-ce-hero-main {
  padding-bottom: 120px;
  border-radius: 0px 0px 30px 30px;
}

.ud-rosetta-ce-hero-second {
  margin-top: -150px;
}


.ud-rosetta-ce-hero-title {

  max-width: 620px;
}

.ud-rosetta-ce-hero-title span {

  font-weight: 600;
  font-size: 12px;
  color: var(--body-color);
}

.ud-rosetta-ce-hero-title h2 {
  font-weight: 700;
  font-size: 22px;
  color: var(--body-color);
}

.ud-rosetta-ce-hero-title p {
  font-size: 15px;
  color: var(--body-color);
}

.ud-ddm-section {
  padding-top: 40px;
  padding-bottom: 120px;
}

@media (max-width: 900px) {

  .ud-rosetta-ce-hero-main {
    padding-bottom: 50px;
  }

  .ud-rosetta-ce-hero-second {
    margin-top: -150px;
  }

}

/* ===== Rosetta EE CSS ===== */
.ud-rosetta-ee-hero-main {
  padding-bottom: 120px;
  border-radius: 0px 0px 30px 30px;
}

.ud-schema-evolution-section-second {
  margin-top: -100px;
}

.ud-rosetta-ee-hero-title span {
  font-weight: 600;
  font-size: 20px;

  color: var(--body-color);
}

.ud-rosetta-ee-hero-title h2 {
  font-weight: 700;
  font-size: 35px;
  color: var(--body-color);
}

.ud-rosetta-ee-hero-title p {
  font-size: 16px;
  color: var(--body-color);
}

@media (max-width: 900px) {
  .ud-schema-evolution-section {
    padding-bottom: 50px;
  }

  .ud-schema-evolution-section-second {
    margin-top: -100px;
  }

}


/* ===== Rosetta Cloud CSS ===== */
.ud-rosetta-cloud-hero-main {
  padding-bottom: 120px;
  border-radius: 0px 0px 30px 30px;
}

.ud-rosetta-cloud-hero-second {
  margin-top: -150px;
}

.ud-rosetta-cloud-hero-title span {
  font-weight: 600;
  font-size: 20px;

  color: var(--body-color);
}

.ud-rosetta-cloud-hero-title h2 {
  font-weight: 700;
  font-size: 35px;
  color: var(--body-color);
}

.ud-rosetta-cloud-hero-title p {
  font-size: 16px;
  color: var(--body-color);
}

.ud-schema-evolution-section {
  padding-bottom: 120px;

}

@media (max-width: 900px) {
  .ud-rosetta-cloud-hero-main {
    padding-bottom: 40px;
  }

  .ud-hero-second {
    margin-top: -150px;
    padding-bottom: 0px;
  }

  .ud-rosetta-cloud-hero-second {
    margin-top: -150px;
  }
}

.whats-included .card {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  background-color: #f8f8f8;
  border: none;
  width: 100%
}


.whats-included .card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.whats-included ul li {
  list-style: none;
}

.whats-included .card ul {
  padding-left: 20px;
}

.whats-included .card ul li {
  margin-bottom: 10px;
}

.whats-included .header-title h3 {
  text-align: center;
  font-size: 2rem;
  color: #0E7490;
  margin-bottom: 2rem;
}

.whats-included .ui-card-image img {
  width: 50px;
  height: 50px;
}

.whats-included .ui-card-image h5 {
  font-size: 1.25rem;
  color: #0E7490;
  margin-left: 15px;
}

.whats-included .icon-block {
  display: flex;
  align-items: center;
}

/* Animations css */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

.ud-hero-paragraph {
  animation-delay: 1.5s;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.slide-in.visible {
  transform: translateY(0);
  opacity: 1;
}


.reveal {
  opacity: 0;
  animation: reveal 0.1s forwards;
  animation-delay: 0.1s;
}

.waves {
  position: relative;
  width: 100%;
  height: 150px;
  min-height: 100px;
  max-height: 75vh;
}

.wave-header-main {
  height: 150px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}


@media (max-width: 768px) {
  .waves {
    height: 20vh;
    min-height: 20vh;
  }

  .wave-header-main {
    height: 80px;
  }
}




.download-dbtstudio-section {
  text-align: center;
}

.dbt-subtitle {
  color: #555;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.dbt-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.dbt-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: center;
}

.dbt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 122, 204, 0.2);
}

.dbt-card.dbt-recommended {
  border: 2px solid var(--primary-color);
}

.dbt-os-icon {
  height: 80px;
  margin-bottom: 1rem;
}
.dbt-recommended-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background:  var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dbt-card-details {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  line-height: 1.5;
}
.dbt-card-details span {
  display: block;
}

.gif-container {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gif-image {
    display: block;
    width: 100%;
    transition: filter 0.3s ease;
}

.gif-container:hover .gif-image {
    filter: brightness(60%); 
}

.gif-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    background-color: rgba(255, 0, 0, 0.85);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.gif-button:hover,
.gif-button:focus,
.gif-button:active {
    color: white; 
    text-decoration: none;
}

.gif-container:hover .gif-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}
