

@font-face {
  font-family: 'Ethnocentric';
  src: url('../fonts/ethnocentric rg.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/RobotoMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bebas';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Anek Latin';
  src: url('../fonts/AnekLatin-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Bold weight */
@font-face {
  font-family: 'Anek Latin';
  src: url('../fonts/AnekLatin-Bold.ttf') format('truetype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: 400; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 400; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400; /* Bold */
  font-style: normal;
}

/* Semibold weight */
/* @font-face {
  font-family: 'Anek Latin';
  src: url('../fonts/AnekLatin-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
} */


/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --font: Archivo,"Roboto Mono", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #FFC40A;;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
  background-color: #070707;
}


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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;
          color:#5af7fa;
}

a:focus,
a:hover {
  text-decoration: none;
  color:#5af7fa;
}

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: white;
  margin: 0px;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* color: var(--body-color); */
  color: #b8b8b8;
  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;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: #FFC40A;
}

.ud-main-btn:hover {
  color: var(--white);
  background: #3a6cc2;
}

@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;
  line-height: 40px;
  background: #e2f7d3;
  -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: 130px;
  bottom: 30px;
  z-index: 99;
  color: black;
}

.back-to-top:hover {
  color: #e2f7d3;
  background: rgba(0, 159, 132);
}

/* ===== Header CSS ===== */
.ud-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #090909;
  /* Animated border shine */
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(33, 140, 101,0.2), #A8E4A0, rgba(33, 140, 101,0.2)) 1;
  animation: shineEffect 3s infinite linear;
}

@keyframes shineEffect {
  0% { border-image-source: linear-gradient(90deg,  rgba(38, 34, 34,0.2), #00A86B, rgba(38, 34, 34,0.2)); }
  50% { border-image-source: linear-gradient(90deg,  rgba(38, 34, 34,0.4), #A8E4A0, rgba(38, 34, 34,0.4)); }
  100% { border-image-source: linear-gradient(90deg,  rgba(38, 34, 34,0.2), #00A86B, rgba(38, 34, 34,0.2)); }
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0,0.5);
  -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-logo
{
  width: 80px !important;
  transition: all 0.5s ease-in-out 0s;
}

.sticky .navbar {
  padding: 0;
}

/* .sticky .navbar-brand {
  font-size: 0px;
} */

.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;
  font-size: 30px;
  font-family: "Archivo",sans-serif ;
  font-weight: bold;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
    font-size: 25px;
  }
}

.navbar-logo {
  width: 150px !important;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.5s ease-in-out 0s;
}





@media only screen and (min-width: 100px) and (max-width: 991px){
  .navbar-logo {
    width: 100px !important;
  }
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
  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 {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: #000000;
    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;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
    align-items: center;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
  font-family: "Laila";
  font-weight: bold;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 5px;
    font-size: 12px !important;
  }

  .navbar-nav .navbar-btn{
    margin-left: 0px !important;
  }

  .nav-item .ud-yellow-btn{
    font-size: 14px !important;
    padding-left: 0px;
    border-color: rgba(0, 0, 0,0.2);
  }

}



@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: 20px;
  font-weight: 500;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;


  position: relative;
  display: inline-block;
  color: var(--white); /* Example color variable, ensure you have this defined or use a specific color */
  text-decoration: none; /* Removes the default underline */
  transition: color 0.3s;
}



.navbar-nav .nav-item > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px; /* Thickness of the underline */
  bottom: 15px;
  left: 0%;
  background-color: #ffc40a; /* Underline color */
  transition: width 0.3s, left 0.3s; /* Animates the width and horizontal position */
}

.navbar-btn > a::after {
  height: 0px !important;
}


.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
   color: #ffc40a; 
   opacity: 1; 
}

.navbar-nav .nav-item > a:hover::after, .navbar-nav .nav-item > a.active::after {
  width: 100%; /* Full width on hover/active */
  left: 0; /* Align to the left */
}



@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: white;
  }
  .navbar-nav .nav-item > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0px; /* Thickness of the underline */
    bottom: 15px;
    left: 0%;
    background-color: #ffc40a; /* Underline color */
    transition: width 0.3s, left 0.3s; /* Animates the width and horizontal position */
  }
}


@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: #ffc40a;
    opacity: 1;
  }
  .navbar-nav .nav-item > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0px; /* Thickness of the underline */
    bottom: 15px;
    left: 0%;
    background-color: #ffc40a; /* Underline color */
    transition: width 0.3s, left 0.3s; /* Animates the width and horizontal position */
  }
}

.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: #ffc40a;
}

.navbar-nav .nav-item:hover > a {
  color: #ffc40a;
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: #ffc40a;
    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: 0px;
  height: 0px;
  border-bottom: 0px solid;
  border-right: 0px solid;
  /* -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%); */
  right: -15px;
  top: 50%;
  margin-top: -2px;
}


.navbar-nav .nav-item.nav-item-has-children > i::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@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; */
    margin-left:0px !important;
    margin-right:0px !important;
    margin-top:30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
  }

}




@media (max-width: 1199px) {
  .navbar-btn .ud-main-btn {
   display: none;
  }

  .nav-item .navbar-btn{
    margin-left:0px !important;
    margin-right:0px !important;
  }


}


.navbar-btn .ud-main-btn {
  padding: 10px 35px !important;
  background: transparent;
  font-family: "Laila";
  font-size: 17px;
  text-decoration: none;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-yellow-btn {
  background: #ffc40a;
  color:#000000 !important;
  font-weight: 600 !important;
  margin-bottom: 0px;
}



.navbar-btn .ud-yellow-btn:hover {
  background: #ffda5f;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out 0s;
}




.ud-yellow-btn-modal {
  border:none !important;
  padding: 10px 35px !important;
  font-family: "Laila" !important;
  font-size: 17px !important;
  text-decoration: none !important;
  background: #ffc40a !important;
  color:#000000 !important;
  font-weight: 600 !important;
  margin-bottom: 0px;
  border-radius: 30px !important;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px !important;
  border-color: rgba(0, 0, 0,0.2) !important;
}

.ud-yellow-btn-modal:hover {
  background: #ffda5f !important;
  transition: all 0.3s ease-in-out 0s !important;;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 8px !important;
}

.ud-yellow-btn-modal:active {
  box-shadow: none !important;
  -webkit-transition: all 0.2s !important;;
  transition: all 0.2s !important;;
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: white;
}

.sticky .navbar-nav .nav-item:hover > a {
  color: #ffc40a;
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: white;
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: #ffc40a;
  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: #ffc40a;
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: #ffc40a;
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: #ffc40a;
  padding-top: 17%;
  overflow-x: hidden;

}


@media only screen and (min-width: 992px) and (max-width: 1300px) {
  .ud-hero {
    padding-top: 17%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 17%;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 30%;
  }
}

@media (max-height: 400px) {
  .ud-hero {
    padding-top: 20%;
  }
  .ud-hero-content .ud-hero-title {
    font-size: 40px;
    line-height: 8px !important;
  }
}

.ud-hero-content {
  max-width: 1080px;
  margin: auto;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 800;
  font-size: 80px;
  font-family: "Laila";
  line-height: 50px;
  text-align: center;
  margin-bottom: 60px;
  color: #ffc40a;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

@media only screen and (min-width: 992px) and (max-width: 1300px) {
  .ud-hero-content .ud-hero-title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 40px;
    line-height: 48px;
  }
}

.ud-hero-content .ud-hero-desc {
  font-weight: 500;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  color: #000;
  opacity: 1;
  max-width: 900px;
  margin: auto;
  margin-bottom: 40px;
  font-family: "Archivo";
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 25px;
    line-height: 35px;
  }
}

.ud-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-yellow-btn {
  background: #FFC40A;
  color:#000000;
  font-family: "Laila";
  font-weight: 600;
}

.ud-hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #ccc;
  color: #24447C;
}

.ud-hero-buttons .ud-yellow-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: #000000;
}


.ud-link-btn{
  background-color: #24447C;
}

.ud-hero-buttons .ud-link-btn:hover {
  color: #24447C;
  background: transparent;
  background-color: white;
  opacity: 0.9;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.ud-features {
  padding-top: 120px;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  /* max-width: 620px; */
  margin-bottom: 30px;

}

.ud-section-title span {
  font-weight: 600;
  font-size: 20px;
  color: #ffc40a;
  margin-bottom: 10px;
}

.ud-section-title h1 {
  font-weight: 600;
  font-size: 20px;
  color: #ffc40a;
  margin-bottom: 10px;
}

.ud-section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  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;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
  margin-top:50px;
  text-align: center;
}

/* .ud-single-feature:hover .ud-feature-icon::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
} */

.ud-single-feature .ud-feature-icon {
  width: 100px;
  height: 100px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: #ffc40a;
  font-size: 32px;
  color: black;
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  /*background: #ffc40a;*/
  background: #ffc40a;
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-bottom: 12px;
  font-family: "Laila";
}

@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 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align items to the top */
  height: 100%; /* Full height */
}

.ud-feature-content {
  display: flex;
  flex-direction: column;
  height: 100%; /* Take full height of its parent */
}

.ud-feature-desc {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: auto; /* This pushes everything else down */
  color:black;
  font-family: "Archivo";
}

.ud-feature-link {
  margin-top: 0px; /* Ensures spacing from the last text to the link, might not be needed */
  align-self: center; /* Aligns to the start, change to 'center' if you want it centered */
  margin-bottom: 40px;
  color:"black" !important;
}



/* ===== About CSS ===== */
.ud-about {
  background: #FFC40A;
  padding: 120px 0;
  border-top: 1px solid rgba(51, 51, 51,1); 
}

@media (max-width: 767px) {
  .ud-about {
    padding: 80px 0;
  }
}



.ud-about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@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: 800px;
}

.ud-about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: #ffc40a;
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.ud-about-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-about-image {
    width: 0;
    height: 0;
  }
}

@media (max-width: 767px) {
  .ud-about-image {
    width: 0;
    height: 0;
  }
}





.ud-services {
  background: rgba(255, 196, 10,0.5);
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  background: linear-gradient(to bottom, #070707 70%, rgba(38, 34, 34, 0.2));
  padding-top: 120px;
  padding-bottom: 40px;
  /* border-top: 1px solid rgba(226, 247, 211, 0.2); */
  position: relative; /* Keep the layout intact */
    z-index: 1;
}

@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-pricing {
  margin-bottom: 40px;
  background: transparent;
  border-radius: 8px;
  text-align: center;
  padding: 45px 30px;
  margin: 10px 10px;
  position: relative;
  border: 2px solid #A8E4A0;
  color:white;
}

.ud-single-pricing.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000) , to(#FFC40A));
  background: linear-gradient(180deg, #000000 0%, #FFC40A 100%);
  border: 1px solid #FFC40A;
  /* padding: 55px 30px; */
}



.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}

.ud-single-pricing.first-item::after {
  background: #ffc40a;
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
  background: #ffc40a;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: #ffc40a;
  margin-bottom: 20px;
  font-weight: 600;
}

.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}

.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 600;
  font-size: 26px;
  color: #ffc40a;
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
  text-align: left;
}

.ud-single-pricing .ud-pricing-body li {
  font-family: "Roboto Mono";
  font-size: 17px;
  margin-bottom: 30px;

}



.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}

/* .ud-single-pricing .ud-border-btn {
  border: 1px solid #ffc40a;
  color: black;
  background: var(--white);
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: #ffc40a;
  background: #ffc40a;
} */


.ud-single-pricing .ud-border-btn {
  /* border: 1px solid black; */
  color: #000000;
  font-weight: 600;
  background: rgba(255, 196, 10,0.8);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-color: rgba(0, 0, 0,0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family:"Laila";
  /* border-color: rgba(0, 0, 0,0.5); */
  text-decoration: none;
  
}

.ud-single-pricing .ud-border-btn:hover {
  color: black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 8px;
  background: #ffc40a;
  
}

.ud-single-pricing .ud-border-btn:active {
  box-shadow: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.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);
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: rgba(0, 0, 0);
  background-image: url('../images/faq-background.png') !important;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(51, 51, 51,1);
  color:rgb(51, 51, 51);
}

.ud-faq a{
  color: #c39500;
}

.ud-faq a:hover{
  text-decoration: underline;
}


@media (max-width: 767px) {
  .ud-faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  background: linear-gradient(to bottom right, #C0C0C0, #d7d7d7);
  border: 1px solid #C0C0C0;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
          box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}


.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 30px;
}


@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 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  color: white;
  font-weight: bold;
  margin-right: 24px;
  
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.ud-single-faq .ud-faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.ud-single-faq .ud-faq-body {
  padding: 0px 30px 40px 95px;
}

.ud-single-faq .ud-faq-body p {
  font-family: Archivo;
  color:black;
  font-size: 18px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0px 16px 20px 82px;
  }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
  background-color: black;
  border-top: 1px solid rgba(51, 51, 51,1);
  padding-bottom:100px;
}

@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
  }
}

.ud-single-testimonial {
  padding: 20px 30px;
  background: linear-gradient(to bottom right,#C0C0C0, #fff);
  border: 1px solid #C0C0C0;
  margin-bottom: 50px !important;
  border-radius: 5px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  height: 390px;
}


@media (max-width: 767px) {
  .ud-single-testimonial {
    height: 380px;
  }
}

@media (max-width: 991px) {
 .ud-single-testimonial {
      height: 330px;
  }
}


.ud-single-testimonial a {
  color:#000000;
  font-family: Laila;
  font-weight: 600;
}

.ud-single-testimonial .ud-testimonial-ratings {

  color: #000000;
  text-align: center;
  font-family: Laila;
  font-size: 20px;
  line-height: 1.5;
}

.ud-testimonial-ratings, .ud-testimonial-logo {
  margin: 0;
  padding: 0;
}


.ud-single-testimonial .ud-testimonial-ratings i {
  
}

.ud-single-testimonial .ud-testimonial-content {
  flex-grow: 1;
}

.ud-single-testimonial .ud-testimonial-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color:black;
  font-family: Archivo;
}

.ud-single-testimonial .ud-testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-testimonial-logo {
  
  color: #000000;
  text-align: right;
}



.ud-testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Ensures vertical alignment in the middle */
  min-height: 20px;
  margin-bottom: 20px;
  font-weight: 600;

}

.ud-testimonial-ratings i, .ud-testimonial-logo i {
  vertical-align: middle; /* Aligns icons vertically in the middle */
  /* Set a uniform size for icons, if needed */
  font-size: 24px; /* Example size; adjust as needed */
}



.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid #FFC40A;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 800;
  font-size: 20px;
  font-family: Laila;
  color: #000000b0;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: rgba(150, 150, 150, 0.587)b0;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}

.ud-brands .ud-brands-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}

.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(1);
          filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.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;
  position: relative;
  margin: 0px auto 25px;
}

.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 {
  position: absolute;
  z-index: -1;
}

.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 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

.ud-single-team .ud-team-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.ud-single-team .ud-team-socials a:hover {
  color: #ffc40a;
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
  background: #333333;
  background-image: url('../images/contact2-background.png') !important;
  z-index: 3;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(0, 159, 132,0.2), #e2f7d3, rgba(0, 159, 132,0.2)) 1;
}

@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: linear-gradient(to bottom right,#C0C0C0, #fff); */
  background: white;
  background-image: url('../images/contact2-background.png') !important;
}

@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 h1 {
  font-weight: 800;
  font-size: 45px;
  line-height: 100px;
  font-family: Laila;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.99);
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
  color: #000000b0;
  font-family: Laila;
}

.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: #ffc40a;
  margin-right: 24px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 15px;
  font-family: Laila;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 28px;
  line-height: 24px;
  font-weight: 800;
  font-family: Laila;
}

.ud-contact-form-wrapper {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, #ededed 0%, #757575 100%);
  padding: 60px;
  /*border: 1px solid rgba(255, 255, 255,0.3);*/
  
}

@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: 38px;
  margin-bottom: 30px;
  font-family: Laila;
  color: #000000ca;
}

@media (max-width: 1188px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 15px;
  font-family: "Roboto Mono";
  color: #000000;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  font-family: "Montserrat";
  color: #111111;
  margin-bottom:5px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea,
.ud-form-group select {
  display: block;
  width: 100%;
  padding: 5px 7px;
  outline: none;
  border: 1px solid #B8B8B8;
  border-radius: 5px;
  resize: none;
  font-size: 15px;
  color: #000000;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: #1679AE;
}



.ud-contact-btn {
  color: #FFFFFF;
  font-weight: 600;
  background: #00A86B;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family:"Roboto Mono";
  border-color: rgba(0, 0, 0,0.2);
  text-decoration: none;
  border-radius: 7px;
  margin-top:5px;
}

.ud-contact-btn:hover {
  color: #262222;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 8px;
  background: #A8E4A0;
  
}

.ud-contact-btn:active {
  box-shadow: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}


/* ===== Footer CSS ===== */
.ud-footer {
  background: #262222;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 40px;
  font-family: "Playfair Display";
}

.ud-footer .shape {
  position: absolute;
  z-index: -1;
}

.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;
  display: block;
  margin-bottom: 10px;
  font-family: "Archivo";
  font-size: 25px;
  font-weight: bold;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}

.ud-widget .ud-widget-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}

.ud-widget .ud-widget-socials a:hover {
  color: #ffc40a;
}

.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}

.ud-widget .ud-widget-links a:hover {
  color: #ffc40a;
  padding-left: 10px;
}

.ud-widget .ud-widget-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: #ffc40a;
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: #ffc40a;
}

.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;
  }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 300px;
  padding-bottom: 40px;
  background: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.ud-banner-content h1 {
  color: white ;
  font-size: 38px;
  font-weight: 800;
  font-family:Laila;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 120px;
  height: 100vh;
  background: linear-gradient(to bottom right,#C0C0C0, #fff);
  font-family: Laila;
  font-size: 20px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: black;
  border-radius: 20px;
  text-align: center;
  padding: 60px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  
}

.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%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}

.ud-login-form .ud-form-group input:focus {
  border-color: #ffc40a;
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.ud-socials-connect ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: #ffc40a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}

.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 {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}

.signup-option a {
  color: #ffc40a;
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 250px;
  padding-bottom: 80px;
  background-color: black;
  border-bottom: 1px solid rgba(255, 255, 255,0.3);
  background-image: url('../images/faq-background.png') !important;
}

.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 {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ud-single-blog .ud-blog-image a {
  display: block;
}

.ud-single-blog .ud-blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-blog .ud-blog-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  font-family: "Laila";
  /* padding: 8px 16px; */
  background: none;
  color: #ffc40a;
  border-radius: 5px;
  margin-bottom: 20px;
}

.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  font-family:Laila;
  line-height: 32px;
  margin-bottom: 15px;
}

@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: ffc40a;
}

.ud-single-blog .ud-blog-title a:hover {
  color: #ffc40a;
}

.ud-single-blog .ud-blog-desc {
  font-size: 18px;
  line-height: 28px;
  font-family:Archivo;
  font-weight:300;
  color:white;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}

.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: #ffc40a;
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
  padding-top: 120px;
  background-color: black;
  border-bottom: 1px solid rgba(255, 255, 255,0.3);
  background-image: url('../images/faq-background.png') !important;
  padding-bottom:100px;
}

@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
  margin-top:50px;
}

@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}

.ud-blog-details-image > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.ud-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* background: -webkit-gradient(linear, left top, left bottom, color-stop(46.88%, rgba(48, 86, 211, 0)), color-stop(93.23%, rgba(13, 21, 49, 0.72)));
  background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%); */
  border-radius: 5px;
  padding: 30px;
}

.ud-blog-overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ud-blog-overlay-content .ud-blog-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.ud-blog-overlay-content .ud-blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}

.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}

.ud-blog-overlay-content .ud-blog-author a:hover {
  color: #ffc40a;
}

.ud-blog-overlay-content .ud-blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-overlay-content .ud-blog-meta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0px;
}

.ud-blog-overlay-content .ud-blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.ud-blog-details-content {
  padding-top: 60px;
}

.ud-blog-details-content h1{
  font-family: Laila;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ud-blog-details-content h2{
  font-family: Laila;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ud-blog-details-content h3{
  font-family: Laila;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ud-blog-details-content h4{
  font-family: Laila;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ud-blog-details-content h5{
  font-family: Laila;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ud-blog-details-content ul{
  font-family: Archivo;
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
  list-style-type: disc;
}

.ud-blog-details-content p{
  font-family: Archivo;
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
}

@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 {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}

@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 {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.ud-blog-details-subtitle {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.ud-blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}

.ud-blog-quote i {
  font-size: 40px;
  font-weight: 700;
  color: #ffc40a;
  line-height: 1;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}

.ud-blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}

.ud-blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.ud-blog-details-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .ud-blog-details-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ud-blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@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: 0px;
}

.ud-blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #ffc40a;
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}

.ud-blog-tags a:hover {
  background: #ffc40a;
  color: var(--white);
}

.ud-blog-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.ud-blog-share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-share-links li {
  margin-right: 14px;
}

.ud-blog-share-links li:last-child {
  margin-right: 0px;
}

.ud-blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.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: rgba(255, 196, 10,0.8);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}

@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 {
  position: absolute;
  z-index: -1;
}

.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}

.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}

.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 35px;
  font-family: Laila;
  color: black;
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}

.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  font-family: Archivo;
  color: black;
}

.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
  
}

.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 35px;
  border: 2px solid transparent;
  padding: 12px 20px;
  color: black;

}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
  color: black;
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
  color: black;
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {
  color: black;
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: black;
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}

/* .ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
} */

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 300;
  font-size: 15px;
  font-family:Archivo;
  line-height: 22px;
  margin-top:10px;
}

.ud-articles-box {
  margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
  font-family:Laila;
}

.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: #ffc40a;
  left: 0;
  bottom: 0;
}

.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
}

@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 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
  font-family:Laila;
}

@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: #ffc40a;
}

.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
  font-family: Archivo;
  color:#CCC;
}

.ud-article-content{
  font-family: Archivo;
  color:#CCC;
  font-weight:300;
}

.ud-article-content-link :hover{
  color:white;
  transition: all 0.3s ease-out 0s;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}

.ud-banner-ad a {
  display: block;
}

.ud-banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.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;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}

.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

@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 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

@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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

.ud-service-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ud-service-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 12px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-service-links a:hover {
  background: #24447C;
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-service-links a {
    margin: 5px 5px;
    font-size: 12px;
    padding: 5px 5px;
  }
}
/*# sourceMappingURL=ud-styles.css.map */


 html, body {
  /* height: 100%;
  margin: 0; */
  overflow-x: hidden; /* Hide horizontal overflow */
} 

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  left:0;
  opacity: 0.6;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  overflow: hidden;
}


@media (max-width: 767px) {
  #myVideo {
    left: -100%;
  }
}

.puppy-video{
  /* width:30vw;
  min-width:400px; */
  margin-bottom:30px;
  margin-top:115px;
  border-radius: 5px !important;
  width: 100%; /* Ensures the video fills the container */
  height: auto;
}

@media (max-width: 1199px) {
  .puppy-video {
    margin-top:0px;
  }
}


.accordion{
  min-height: 120px;
  padding-top: 5px;
}


.wrapper {
  margin-top: 5vh;
}

.dataTables_filter {
  float: right;
}

.table-hover > tbody > tr:hover {
  background-color: #ccffff;
}

@media only screen and (min-width: 768px) {
  .table {
    table-layout: fixed;
    max-width: 100% !important;
  }
}

thead {
  background: #ddd;
}

.table td:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.highlight {
  background: #ffff99;
}

@media only screen and (max-width: 767px) {
  /* Force table to not be like tables anymore */
  table,
thead,
tbody,
th,
td,
tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr,
tfoot tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
  }

  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  .table td:nth-child(1) {
    background: #ccc;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: bold;
  }

  /*
  Label the data
  */
  td:nth-of-type(1):before {
    content: "Name";
  }

  td:nth-of-type(2):before {
    content: "Position";
  }

  td:nth-of-type(3):before {
    content: "Office";
  }

  td:nth-of-type(4):before {
    content: "Age";
  }

  td:nth-of-type(5):before {
    content: "Start date";
  }

  td:nth-of-type(6):before {
    content: "Salary";
  }

  .dataTables_length {
    display: none;
  }
}


.input-group-append {
  cursor: pointer;
}



.carousel-control-prev, .carousel-control-next {
  z-index: 1; /* Ensure arrows are above the carousel items but not overlaying in a way that blocks interaction */
  top: 50%; /* Adjust this value to align vertically */
  transform: translateY(-50%); /* Center align the arrows vertically */
}

/* Adjusting the width of the clickable area to not cover the entire testimonial content */
.carousel-control-prev, .carousel-control-next {
  width: 5%; /* Adjust this value as needed */
}

/* Optional: Adjust the position further if needed */
.carousel-control-prev {
  left: -5%; /* Move it a bit more to the left if inside the container */
}

.carousel-control-next {
  right: -5%; /* Move it a bit more to the right if inside the container */
}





.header-sombra {
 color:#FFFFFF;

}

    .ud-contact2 {
        padding-top: 170px;
        position: relative;
        z-index: 3;
        padding-bottom:20px;
    }

    @media (max-width: 992px) {
      .ud-contact2 {
        margin-top: 100px;
          padding-top: 120px;
      }
  }

    @media (max-width: 767px) {
        .ud-contact2 {
          margin-top: 50px;
        }
    }

    .ud-contact2::after {
        content: "";
        position: absolute;
        z-index: -1;
        width: 100%;
        top: 0;
        left: 0;
        height: 0%;
        /* background: linear-gradient(to bottom right,#C0C0C0, #fff); */
        background: #2f4858;
    }

    .licustom {
        color: white;
        font-size: 20px;
        margin-bottom: 20px;
        text-indent: -43px;
        padding-left: 35px;
        line-height: 40px;
    }

    .licustom2 {
        color: white;
        font-size: 20px;
        margin-bottom: 20px;
        text-indent: -0px;
        padding-left: 15px;
        line-height: 40px;
        margin-left: 40px;
    }

    .whatsapp {
        background: linear-gradient(0deg, #2d8237 0%, #44c553 100%);
        color: #E7E7E7;
        padding: 15px 40px;
        margin-bottom: 30px;
        font-family: Archivo;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        border-radius: 80px;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 7px solid #E7E7E7;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .whatsapp img {
        margin-right: 10px;
        /* Space between the image and the text */
    }

    .whatsapp:hover {
        text-decoration: none;
        box-shadow: rgba(255, 255, 255, 1) 0px 0px 4px 4px;
        color: white;
    }

    .whatsapp:focus {
        text-decoration: none;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
        color: white;

    }


    .whatsapp-2 {
        background: linear-gradient(0deg, #2d8237 0%, #44c553 100%);
        color: #E7E7E7;
        padding: 15px 40px;
        margin-bottom: 30px;
        font-family: Archivo;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        border-radius: 80px;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 7px solid #E7E7E7;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        max-width: 400px;
    }

    .whatsapp-2 img {
        margin-right: 10px;
        /* Space between the image and the text */
    }

    .whatsapp-2:hover {
        text-decoration: none;
        box-shadow: rgba(255, 255, 255, 1) 0px 0px 4px 4px;
        color: white;
    }

    .whatsapp-2:focus {
        text-decoration: none;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
        color: white;

    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* Relación de aspecto 16:9 (9/16 = 0.5625) */
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


    .gradient-text3 {
      font-family: 'Ethnocentric', sans-serif;
      font-size: 50px;
      background: linear-gradient(90deg, #00283B, #08cbe2,#8CDBE9); /* Adjust colors */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block; /* Ensures background-clip works properly */
      -webkit-text-stroke: 0.1px rgba(23, 23, 23,0.2); /* Light outline */
      /*text-shadow: 0px 2px 1px 5af7fa;*/
  }

  .gradient-text {
    /*font-family: 'Bebas', sans-serif;*/
    font-size: 60px;
    line-height: 1.2;
    color:#ffffff;
    
    font-family: 'Playfair Display', serif;
    
    /*background: linear-gradient(to bottom, #ffffff 44%, #b8b8b8 56%);*/
    /* background: linear-gradient(to bottom, #ffffff 54%,#115289 1%, #ffffff 55%); */
    /*background: linear-gradient(90deg, #115289, #08cbe2,#5af7fa); /* Adjust colors */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; */
    /*-webkit-text-stroke: 0.1px rgba(23, 23, 23,0.2); /* Light outline */
    /*text-shadow: 0px 2px 1px 5af7fa;*/
}


  .gradient-text2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 30px;
    background: linear-gradient(to bottom, #ffffff 60%, #b3b3b3 53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /*text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);*/
}


#services {
  position:relative;
  width: 100%;
  min-height: 100vh; /* Make sure it takes up the full height of the viewport */
  overflow-y: visible;
}

#particles-js {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  overflow-y: hidden;
  z-index: -1; /* Ensure particles stay in the background */
}

.why-us{
  overflow-y: visible;
  background: linear-gradient(to bottom, rgba(38, 34, 34,0.2) , #201E1F);
  z-index: 10;
  padding-top: 30px;   /* Add space on top */
    padding-bottom: 30px; /* Add space at the bottom */
}

.social{
  overflow-y: visible;
  font-family:Archivo;
  min-height: 100vh;
  background: linear-gradient(to bottom, #201E1F , rgba(168, 228, 160,0.2));
  z-index: 10;
  padding-top: 100px;   /* Add space on top */
    padding-bottom: 30px; /* Add space at the bottom */
}

#social blockquote {
  background: #CCCECB;
  padding: 20px;
  border-left: 5px solid #00A86B;
  font-style: italic;
  color:#303030 !important;
}

#social .blockquote-footer {
  color: #6c757d;
  font-size: 14px;
}


.offer{
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(168, 228, 160,0.2) , #e2f7d3 90%);
  font-family:Archivo;
  padding-bottom:30px;
}



