 
/* Fonts */
:root {
 font-family: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

body{
       /* background-image: url(../img/bg.jpg);*/
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color:#000;
  font-family: var(--default-font);
}

a {
  color: #dd0909;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 10px solid #000;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 120px;
    margin-right: 0;
    border-radius: 100%;
    box-shadow: 0 0 10px #fff;
    background: #fff;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
    .ui-datepicker-calendar tr td{
        padding: 3px!important;
    }
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #dd0909;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background:#000;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #AB2330;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #dd0909;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*
.footer {
  color: var(--default-color);
  background-color:#2a2a2a;
  font-size: 14px;
  padding-bottom: 0px;
  position: relative;
}
*/

.footer {
  color: var(--default-color);
  /*background-image: url(../img/footer-texture.jpg);*/
  background: #AB2330;
    background-repeat: repeat;
  font-size: 14px;
   border-top: 20px solid #000;
  position: relative;
    background-size:contain;
background-position:center;
        padding: 0px 0px 0;

}



.footer .footer-top {
  padding-top: 50px;
}
.footer-about img{
    width: 150px;
    padding: 20px;
    border-radius: 100%;
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color:#fff;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
   font-size: 16px;
   color: #fff;;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
    color: #fff
}

.footer .footer-links {
  margin-bottom: 0px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color:#fff;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #dd0909;
}

.footer .footer-contact p {
  margin-bottom: 5px;
        color: #fff;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid
 color-mix(in srgb, var(--default-color), transparent 90%);
    background: #000;
    border-radius: 50% 50% 0 0;
}

.footer .copyright p {
  margin-bottom: 0;
    color: #fff;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #AB2330;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  
}
 
#preloader img{
    border-radius: 100%;
}
#preloader:after {
  animation-delay: 3s;
  
}
/*
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
*/
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color:#dd0909;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #000;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  color: #000;
    font-size: 45px;
  font-weight: normal;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

span.moving-title  {
    color: #dd0909;
    font-weight: bold
}


.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
   background: #59d7ff96;  
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

.hero h1 span {
  color: #dd0909;
}

.hero p {
  color: #000;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: #dd0909;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background:#000;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: #dd0909;
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: #fff;
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color:#dd0909;
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background:#dd0909;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: #000;
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 24px;
        color: #dd0909;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background:#ffe4e4;
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
    color: #dd0909;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
    padding: 10px;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
   padding: 10px;
    height: 100%;
    margin-bottom: 10px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 15px 40px 8px;
    height: 100%;
    border-radius: 0;
    border: 1px solid #d1d1d1;
    text-align: center;
  
}

.pricing h3 {
  font-weight: normal;
   
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
    
    
    .shape-two {
    right: -30px!important;
    position: absolute!important;
    top: 16px!important;
    border: none!important;
    box-shadow: none;
}
.shape-one {
    position: absolute!important;
    top: 16px!important;
    left: -30px!important;
}
    .form__row {
        padding: 10px;
    }
    .dashboard-section-outer {
    padding: 50px 40px!important;
}
.dashboard-section-outer-padding{
        padding: 0!important;
    }
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .footer{
      padding: 23px;
      border-top: none;
  }
  .form__input{
      width: 100%!important;
  }
  .footer .footer-links {
    margin-bottom: 30px;
}
.logo_style {
    top: -74px!important;
}
.dsn-btn-shape-responsive{
    justify-content: center;
    align-items: center;
    margin: 0 auto!important;
}
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  /*box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);*/
  box-sizing: content-box;
  padding: 30px;
  /*margin: 40px 30px;*/
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
        font-size: 14px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  background-color: #000;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #dd0909;
}

.testimonials .swiper-slide {
  /*opacity: 0.3;*/
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: #f7f7f7;
  padding: 20px 0 30px 0;
   
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background:#dd0909;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background:#000;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color:#dd0909;
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color:#dd0909;
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.slider-text{
       padding-top: 180px;
    padding-bottom: 130px;
}

.rating-section{
    padding-top: 70px;
}

a.rating-btn{
     background: #dd0909;
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

a.rating-btn:hover{
    background: #000
}

.rating-btn-bottom{
     background: #000;
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

a.rating-btn-bottom:hover{
    background: #fff;
    color: #dd0909
}


#pot {
  bottom: -7px;
  position: fixed;
        z-index: 11;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 18s;
}
#pot img {
    width: 250px;
}


@-webkit-keyframes run {
  0% {
    left: 0;
  }
  48% {
    -webkit-transform: rotateY(0deg); 
  }
  50% { 
    left: calc(100% - 250px);
    -webkit-transform: rotateY(180deg); 
  }
  98% {
    -webkit-transform: rotateY(180deg); 
  }
  100% {
    left: 0;    
     -webkit-transform: rotateY(180deg);
  }
}


#clouds{
      padding: 100px 0 0;
    /* background: #c9dbe9; */
    /* background: -webkit-linear-gradient(top, #c9dbe9 0%, #fff 100%); */
    background: -linear-gradient(top, #c9dbe9 0%, #fff 100%);
    background: -moz-linear-gradient(top, #c9dbe9 0%, #fff 100%);
    position: absolute;
    top: 80px;
    z-index: 11;
    width: 100%;
    height: 230px;
}

/*Time to finalise the cloud shape*/
.cloud {
  width: 200px; height: 60px;
  background: #fff;
  
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  
  position: relative; 
}

.cloud:before, .cloud:after {
  content: '';
  position: absolute; 
  background: #fff;
  width: 100px; height: 80px;
  position: absolute; top: -15px; left: 10px;
  
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -moz-transform: rotate(30deg);
}

.cloud:after {
  width: 120px; height: 120px;
  top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
  -webkit-animation: moveclouds 15s linear infinite;
  -moz-animation: moveclouds 15s linear infinite;
  -o-animation: moveclouds 15s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
  left: 200px;
  
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0.6; /*opacity proportional to the size*/
  
  /*Speed will also be proportional to the size and opacity*/
  /*More the speed. Less the time in 's' = seconds*/
  -webkit-animation: moveclouds 25s linear infinite;
  -moz-animation: moveclouds 25s linear infinite;
  -o-animation: moveclouds 25s linear infinite;
}

.x3 {
  left: -250px; top: -200px;
  
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.8; /*opacity proportional to the size*/
  
  -webkit-animation: moveclouds 20s linear infinite;
  -moz-animation: moveclouds 20s linear infinite;
  -o-animation: moveclouds 20s linear infinite;
}

.x4 {
  left: 470px; top: -250px;
  
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  transform: scale(0.75);
  opacity: 0.75; /*opacity proportional to the size*/
  
  -webkit-animation: moveclouds 18s linear infinite;
  -moz-animation: moveclouds 18s linear infinite;
  -o-animation: moveclouds 18s linear infinite;
}

.x5 {
  left: -150px; top: -150px;
  
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.8; /*opacity proportional to the size*/
  
  -webkit-animation: moveclouds 20s linear infinite;
  -moz-animation: moveclouds 20s linear infinite;
  -o-animation: moveclouds 20s linear infinite;
}

@-webkit-keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}

img{
    max-width: 100%
}

ul.footer-list{
  list-style: none;
        display: contents
}

ul.footer-list li{
  color: #fff;
        margin-bottom: 10px;
}

ul.footer-list li a{
  color: #fff
}

.hover-item {
  transition: 0.3s;
}
.hover-item:hover {
  transform: translate(0, -10px);
}

.footer-top-2{
    background: #df152f;
    padding: 40px;
}

.footer-top-2 h1{
  color: #fff;
    font-weight: bold
}


.footer-top-2 h4{
  color: #fff;
     
}

.breadcrumb{
    margin-top: 80px;
    padding: 30px 0px;
        margin-bottom: 60px;
}


.breadcrumb h1{
    color: #dd0909;
        font-size: 32px;
}

a.more-btn-2{
  color: var(--contrast-color);
    background: #dd0909;
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 0px;
    border-radius: 50px;
    transition: 0.3s;  
}

a.more-btn-2:hover {
  color: var(--contrast-color);
  background:#000;
}

.txt-area{
    height: 220px;
}


@media only screen and (max-width: 1200px) {
    #pot{
       -webkit-animation: linear infinite;
        -webkit-animation-name: run;
        -webkit-animation-duration: 6s;  
    }
}


@media only screen and (max-width: 1024px) {
  #clouds {
    display: none
  }
    .header .logo img{
            max-height: 60px;
    }
    
    .header .btn-getstarted{
        font-size: 10px;
        text-align: center
    }
    
    .hero{
            padding: 50px 0 0px 0;
     text-align: center;
    }
    
    .slider-text{
            padding-top: 60px;
    padding-bottom: 0px;
    }
    
    
}

/*.form__input {
    width: 100%;
    border: none;
    background-color: #f6f9fa;
    padding: 18px 15px;
    border-radius: 0px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #565656;
        margin-bottom: 20px;
  margin-top: 30px;
  text-align: center
}*/

.form__input {
    width: 100%;
    border: none;
    background-color: #f6f9fa;
    padding: 18px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid #dd0a0a;
    margin-bottom: 8px;
    margin-top: 5px;
    text-align: center;
}

    

ul.item-select{
   /* margin: 0 auto;
    list-style: none*/
  text-align:center;
  padding-left: 0;
}

ul.item-select li{
   /* float: left*/
  position: relative; border:1px solid red; display: inline-block; text-align: center; 
}


ul.item-select li a{
   /* display: block;
    background: #bfbfbf;
    margin: 9px;
    padding: 5px 30px;
    border-radius: 40px;
    color: #5c5c5c;
    font-size: 16px;
    font-weight: normal;*/
}

ul.item-select li a:hover{
    /*text-decoration: none;
    background: #000;
    color: #fff*/
}

.review-item{
    border-top: 2px solid #999
}

 

sup{
   color: #fcdf00;
    /* padding: 10px; */
    font-size: 16px !important;
    /* padding: 5px 14px; */
    /* border-radius: 25px; */
    width: 24px;
    margin-top: 20px;
    /* text-align: center; */
    /* display: block; */
    margin: 9px auto 0px;
    /* background: #000; */
     top: 0px;
    height: 14px;
    border-radius: 4px;
}


.dashboard-section{
    margin-bottom: 80px;
}

.dashboard-section h1{
    text-align: center;
    background: #444
}

 
.dashboard-section h3{
    text-align: center;
        font-size: 20px;
        color: #000;
    
}

.dashboard-new{
      text-align: center;
    margin-bottom: 30px;
    background: #fff;
     padding: 15px 10px 15px;
    display: block;
    transition: background-color 0.5s ease;
    width: 190px;
    margin: 35px  auto 20px;
     border-radius: 12px;
   box-shadow: -3px 6px 12px #AB2330;
    -moz-transition: all 0.2s ease-in;
    /* WebKit */
    -webkit-transition: all 0.2s ease-in;
    /* Opera */
    -o-transition: all 0.2s ease-in;
    /* Standard */
    transition: all 0.2s ease-in;
}
.dashboard-new.active {
    box-shadow: 6px 0px 14px #AB2330!important;
    background-color: #ff7e7e !important;
}
 
.dashboard-new h3:hover{
    text-decoration: none;
  color: #ef0000;
}
.dashboard-new.active h3{
    color: #AB2330;
}
.dashboard-new img{
    width:50px!important;
    margin: 0 auto;
    display: table;
}



.disassamble{
      text-align: center;
    margin-bottom: 30px;
    background: #fff;
     padding: 15px 10px 15px;
    display: block;
     width: 400px;
    margin: 0 auto 20px;
     border-radius: 12px;
   
}
 
.disassamble img{
   width:170px;
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .2s ease-in-out;
}

.disassamble img:hover{
     filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);

}
 

.card{
    border: none !important;
    background: none !important;
        
}

h1.top-heading{
     /*background: #ffc02c;*/
    margin-top: 80px;
    padding: 50px;
    text-align: center;
    font-size: 40px;
        margin-bottom: 0px;
    font-weight: bold !important
}

.dashboard-section{
    margin-bottom: 0;
     
}

.dashboard-section h1{
    text-align: center;
    background: none;
    color:#ef0000;
}

.dashboard-section h2{
    text-align: center;
    font-size: 30px;
        color: #ef0000;
    font-weight: bold;
    font-weight: 500 !important;
            margin-bottom: 0px;
}





a.dashboard-new{
    color: #000 !important
}

a.dashboard-new:hover{
   text-decoration: none
}

a.seach-icon{
    width: 100%;
    padding: 14px;
    font-size: 18px;
    background: #fb3232;
    border: none;
    border-radius: 6px;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

.back{
   background: #fb3232;
    transition: background-color 0.5s ease;
    width: 130px;
    margin: 5px auto;
    display: block;
    font-size: 16px;
    text-align: center;
    padding: 8px;
    border-radius: 30px;
    color: #fff;
    font-weight: normal;
    transition: background-color 0.5s ease;
} 

.back:hover{
    background: #000;
    color: #fff;
    text-decoration: none
    
} 

 select{
   margin-right: 30px !important;
}
 

.return-home{
        background: #fb3232;
    transition: background-color 0.5s ease;
    width: 190px;
    margin: 30px auto;
    display: block;
       font-size: 16px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.5s ease;
}

.return-home:hover{
    background: #000;
    color: #fff;
    text-decoration: none;
}


.dashboard-new h3{
    font-size: 16px;
    margin: 5px 0 0 0;  
    color: #000;
}

.progress-section{
    background: #444;
      margin-bottom: 200px;
}

.dashboard-new img{
    filter: gray; /* IE5+ */
      -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
      -webkit-transition: all .2s ease-in-out;  
}

.dashboard-new img:hover{
     filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}
.dashboard-new.active img{
     filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}


.tab-icon{
    width:70px;
     filter: gray; /* IE5+ */
      -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
      -webkit-transition: all .2s ease-in-out;  
}

.tab-icon:hover{
     filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}

.new-user-icon{
     
    width: 60px;
}

dashboard-section {
    padding-top: 100px;
}

.truck-progress{
    padding: 0px 0 0 0; 
      background:#ededed;
     
}

.truck-progress h3{
   text-align: center
     
}




.pricing-selector .plus-subtitle {
	background-color: #457b9d
}

.pricing-selector .max-subtitle {
	border: 4px solid gold;
	background-color: #1d3557
}

.item-button {
	cursor: pointer;
	position: relative;
	font-size: .8rem;
	font-weight: 600
}

.item-badge {
	position: absolute !important;
	top: -11px !important;
	right: -1px;
	border-radius: 1rem;
	padding: .35rem .5rem
}

.col[data-v-0f34685d] {
	position: relative
}

.icon-stack[data-v-0f34685d] {
	position: relative;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	width: 40px;
	vertical-align: middle
}

.icon-stack .icon-truck[data-v-0f34685d] {
	margin-left: -10px;
	color: #f03d53;
	font-size: 40px
}

.icon-stack .step-text[data-v-0f34685d] {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	color: #8e9aae;
	font-size: 20px;
	font-weight: 700;
	bottom: 10px
}

.icon-stack .fa-check[data-v-0f34685d] {
	font-size: 15px;
	margin-left: 4px;
	color: #f03d53
}

.active .step-text[data-v-0f34685d] {
	color: #fff
}

.title[data-v-0f34685d] {
	opacity: .5
}

@media (max-width:380px) {
	.title[data-v-0f34685d] {
		font-size: 12px !important
	}
}

.active .title[data-v-0f34685d],
.previous .title[data-v-0f34685d] {
	opacity: 1
}

.active .title a[data-v-0f34685d],
.previous .title a[data-v-0f34685d] {
	color: #000
}

.line[data-v-0f34685d] {
	width: 100%;
	border-bottom: 2px solid #000;
	position: absolute;
	left: -50%
}

.optional .line[data-v-0f34685d] {
	border-bottom: 2px dashed #8e9aae
}

.previous .line[data-v-0f34685d] {
	border-color: #2b2d42
}

.previous .circle[data-v-0f34685d] {
	background-color: #2b2d42
}

.circle[data-v-0f34685d] {
	z-index: 2;
	height: 10px;
	width: 10px;
	border-radius: 10px;
	background-color: #eb0c0c;
	position: absolute;
	bottom: -6px;
	right: 10px
}

.active .line[data-v-0f34685d] {
	border-color: #2b2d42
}

.active .circle[data-v-0f34685d] {
	background-color: #f03d53
}

.title[data-v-0f34685d] {
	font-weight: 600;
	color: #AB2330;
	margin: 10px auto
}

a[data-v-0f34685d] {
	text-decoration: none
}

.red>a[data-v-0f34685d],
.red[data-v-0f34685d] {
	color: red;
	text-transform: uppercase
}

@media (max-width:576px) {
	.icon-stack[data-v-0f34685d] {
		height: 45px !important
	}

	.icon-truck[data-v-0f34685d] {
		margin-left: 0 !important;
		font-size: 20px !important
	}

	.title[data-v-0f34685d] {
		font-weight: 400 !important;
		font-size: 10px !important
	}

	.red>a[data-v-0f34685d],
	.red[data-v-0f34685d] {
		text-transform: none !important
	}
}


.tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .tabs__label {
    order: 1;
    display: block;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 500; }
    .tabs__label--auto {
      width: auto;
      padding: 10px 20px 10px 5px; }
    .tabs__label--12 {
          width: 150px;
    margin: 0 auto;}
    .tabs__label--13 {
      width: 33.333%; }
  .tabs__content {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 20px;
    margin-top: 20px; 
         background: #ededed;
         border-radius: 10px;
         
    }
  .tabs input[type="radio"].tabs__radio {
    display: none; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label {
    color: #5160eb; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label + .tabs__content {
    display: block; }
  .tabs--style1 {
      font-size: 20px;
    border-bottom: 1px #d3dce8 solid; }
    .tabs--style1 .tabs__label {
          text-align: center;
    background-color: #f6f9fa;
    border-radius: 15px;
    border: 2px solid #ef0000; }
    .tabs--style1 input[type="radio"].tabs__radio:checked + label.tabs__label {
      color: #fff;
      background-color: #e1e1e1; 
}

.tabs--style1 .tabs__label h3{
          font-size: 15px;
    margin-top: 10px;
    color: #AB2330;
}

/* ------Accordion---------- */
.accordion {
  width: 100%; }
  .accordion__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f6f9fa;
    margin-bottom: 1px; }
  .accordion__input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .accordion__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 1.4rem;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .accordion__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .accordion__content p {
      padding: 10px !important; }
  .accordion__input:checked ~ .accordion__content {
    max-height: 300px; }
  .accordion__input:checked ~ .accordion__label, .accordion .accordion__label:hover {
    background-color: #83cbf8;
    color: #fff; }
  .accordion__label span {
    position: absolute;
    right: 5%;
    top: 43%;
    display: block;
    width: 14px;
    height: 14px;
    text-align: center;
    background-image: url(../../../assets/images/icons/blue/arrow-down-1.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 14px;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .accordion__input[type=radio]:checked + .accordion__label span {
    transform: rotateX(180deg);
    background-image: url(../../../assets/images/icons/white/arrow-down-1.svg); }

/* ------Toggle---------- */
.toggle {
  width: 100%;
  margin: 0 auto 0 auto; }
  .toggle__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f6f9fa;
    margin-bottom: 1px; }
  .toggle__input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .toggle__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 1.4rem;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .toggle__content {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .toggle__content p {
      padding: 10px !important; }
  .toggle__input:checked ~ .toggle__content {
    max-height: 300px; }
  .toggle__input:checked ~ .toggle__label, .toggle .toggle__label:hover {
    background-color: #83cbf8;
    color: #fff; }
  .toggle__label span {
    position: absolute;
    right: 10px;
    top: 43%;
    display: block;
    width: 14px;
    height: 14px;
    text-align: center;
    background-image: url(../../../assets/images/icons/blue/arrow-down-1.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 14px;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .toggle__input[type=checkbox]:checked + .toggle__label span {
    transform: rotateX(180deg);
    background-image: url(../../../assets/images/icons/white/arrow-down-1.svg); }


.submit {
      color: var(--contrast-color);
    background: #dd0909;
    font-size: 14px;
    padding: 8px 25px;
    
    border-radius: 50px;
    transition: 0.3s;
    border: none
}

.loader-img{
      margin:300px auto;
    display: table;
    width: 190px;
}

@media only screen and (max-width: 768px) {
  .loader-img{
      margin: 50% auto;
    
}
     .icon-stack[data-v-0f34685d]  {
          width: 25px;
    
}

    
}


@media only screen and (max-width: 600px) {
  .icon-stack[data-v-0f34685d]  {
          width: 25px;
     
    
}
    .row>*{
            padding-right: 0; 
    padding-left: 0; 
     margin-top:  0; 
}
}   


.review-item{
    border-top: 2px solid #999
}

.add-to-cart{
    padding: 5px 15px;
    font-size: 14px;
    border: none;
   background: #464746;
    border-radius: 16px;
    color: #fff;
   margin: 0 5px; 
  
}

.shopping-cart{
    
}

.new-submit {
    background: #fb3232;
    transition: background-color 0.5s ease;
    width: 100%;
    margin: 5px auto;
    display: block;
    font-size: 18px;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.5s ease;
    border: none;
}

.total-btn-nxt{
         background: #fb3232 !important;
    transition: background-color 0.5s ease;
    width: 180px;
    margin: 5px auto !important;
    display: block;
    font-size: 16px;
    text-align: center;
    padding: 8px;
    border-radius: 30px !important;
    color: #fff !important;
    font-weight: normal !important;
    transition: background-color 0.5s ease;
    border: none;
}

table{
  margin: 0 auto 30px;
  font-size: 16px;
  width: 100% !important
   
}

.dis-btn{
      background: #ef0000;
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: 180px;
    padding: 10px;
    border-radius: 50px;
    margin: 0px auto -20px;
    position: relative;
    font-weight: bold;
}

.disassamble-section{
 display: none; 
  background: #d0f9e5fa;
    height: 440px;
    position: relative;
    top: 0;
    z-index: 111111;
    width: 60%;
     border-radius: 0px;
    padding: 30px;
    margin: -420px auto 100px;
    overflow:auto;
}

.disassamble-section h4{
  text-align: center
}


.disassamble_click{
  color: #fff !important;
  cursor: pointer
}

.disassemble{
  font-size: 20px;
  text-align: center;
  font-weight: bold
}

#myNumber{
  text-align: center;
    width: 128px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.Date{
  width: 100%
}

.accordion-button{
    border-radius: 0px !important;
    border: 0;
    margin-bottom: 0;
    background: #AB2330;
}

.accordion-button{
  display: block
}

button.select-time a{
  padding: 10px;
  background: #ef0000;
  color: #fff;
  border: none;
  border-radius: 20px;
  width: 100% !important;
    display: block;
}

button {
  border: none
}

h4.right-txt{
  text-align: right;
  font-weight: bold
}

.accordion-item h4{
  font-weight: bold;
  color: #fff;
     
}

.accordion-item h5{
  font-size: 16px;
   position: relative;
    top: 4px;
    color: #fff;
}


.accordion {
  margin-top: 30px;
}

.accordion-button:not(.collapsed) h4,.accordion-button:not(.collapsed) h5{
    color:#000;
}
.contact-from input{
     padding: 22px;
    font-size: 16px;
}


.contact-from label{
     
    font-size: 16px;
}

.contact-from h6{
      font-size: 25px;
    font-weight: bold;
    margin-bottom: 0;
    border-bottom: 2px solid #000;
}

textarea{
  margin-bottom: 20px;
}

.contact-from{
  font-size: 16px;
}


sup{
      height: 6px;
  font-size: 13px !important 
}
.added{
  width: 35% !important;
      
}

.back{
      padding: 10px;
      font-size: 14px;
  width: 165px;
      font-weight: normal;
        
}
 
.right-txt span{
 font-size: 12px; 
}

.accordion-button h4, h5{
  margin-bottom: 0
}

.accordion-item select{
      width: 100%;
    padding: 5px 12px 5px 0px;
    border: 2px solid #ff6e6e;
    margin: 10px 0;
}

.accordion-item p{
  font-size: 14px
}

.accordion-body h5{
  color: #000;
    font-size: 18px;
  
}
.accordion-body{
    background: #f3f3f3;
    margin-bottom: 20px;
}

.accordion-body{
   border-bottom-right-radius: 25px;
   border-bottom-left-radius: 25px;
}


.ui-datepicker-inline{
       width: 100% !important;
   }
   
   .ui-datepicker{
      
      font-size: 20px;
   }
   
   
   #datepicker{
      width: 100% !important;
      font-size: 20px;
      text-align: center
   }
   .datetime{
      font-size: 20px;
      width: 100%;
      margin: 0 auto;
      display: table;
      text-align: center;
          height: 280px
   }

.ui-widget.ui-widget-content{
  font-size: 20px;
  width: 100% !important;
}


   #cart{
           background: #d0f9e5fa;
        padding: 0;
        width: 100% !important;
        margin: 0;
  }




@media only screen and (max-width: 1200px) {
    .tabs__label--12 {
        width: 110px;
              margin-bottom: 10px;
  }
  .tabs--style1 .tabs__label h3{
          font-size: 11px;
    margin-top: 5px;
          margin-bottom: 0;}

  .tabs__label{
    padding: 0
  }
  
  .tab-icon {
    width: 60px;
  }
  
  .add-to-cart {
    padding: 5px 15px;
    font-size: 12px;}
}


@media only screen and (max-width: 1024px) {
  
  .dashboard-section {
    margin-bottom: 30px;
    width: 100%;
}
  
  
  .disassamble-section{
  width: 100%;
  height:auto;
  padding:5px;
  height:440px;
}


 .disassamble-section td, th{
     padding: 5px;
    font-size: 10px;
    font-weight: normal;
 }

#pot img {
    width: 180px;
}
  
   .disassamble{
        width: 300px;
  }
  

}

@media only screen and (max-width: 768px) {

  
  #cart{
           background: #ffffff;
        padding: 0;
        width: 100% !important;
        margin: 0;
  }  
  
  .added {
    width: 100% !important;
}
  
  .tabs__content{
    height: 320px;
    overflow: auto
  }
  
 
  h4.right-txt{
  text-align: left
}
  
  
  #pot img {
    width: 180px;
}

.ui-widget.ui-widget-content{
  font-size: 16px;
}
 
}

.new-submit{
  text-transform: capitalize
}

.cart-table{
margin-bottom: 50px;
      font-size: 16px;
}

table{
      margin: 0px;
}

.ok{
background: #fb3232;
    transition: background-color 0.5s ease;
    width: 168px;
    margin: 5px auto;
    display: block;
    font-size: 16px;
    text-align: center;
    padding: 8px;
    border-radius: 30px;
    color: #fff;
    font-weight: normal;
    transition: background-color 0.5s ease;
  text-transform: capitalize;
  border:none
  }
.ui-datepicker-next{
  background: #92df1a;
    padding: 5px 10px;
    margin: 5px;
    font-size: 16px;
    border-radius: 20px;
  cursor: pointer
}

.ui-datepicker-prev{
  background: #92df1a;
    padding: 5px 10px;
    margin: 5px;
    font-size: 16px;
    border-radius: 20px;
   cursor: pointer
}

.new-select-time{
  background: #ef0000;
    transition: background-color 0.5s ease;
    width: 168px;
    margin: 5px auto;
    display: block;
    font-size: 16px;
    text-align: center;
    padding: 8px;
    border-radius: 30px;
    color: #fff;
    font-weight: normal;
    transition: background-color 0.5s ease;
  text-transform: capitalize;
  border:none
}

.new-select-time:hover{
  background: #000;
  color: #fff
}

#Form p{
  font-size: 16px;
}

#Form input{
  text-align:left;
  padding: 10px;
}

 

.end-submit{
  background: #fb3232 !important;
    transition: background-color 0.5s ease;
    
    margin: 5px auto;
    display: block;
    font-size: 16px;
    text-align: center;
    padding: 10px 20px !important;
    border-radius: 30px;
    color: #fff  !important;
    font-weight: normal !important;
    transition: background-color 0.5s ease;
  text-transform: capitalize;
  border:none !important;
      float: none !important;
          width: 190px;
    text-align: center !important;
    margin-left: 15px !important;
    margin-top: -15px !important;
}


td, tr, th{
      border: 1px solid #dddddd;
    padding: 10px;
      
}


.wrapper-1{
  width:100%;
   
  display: flex;
flex-direction: column;
}
.wrapper-2{
  padding :30px;
  text-align:center;
}
h1{
    
  font-size:4em;
  letter-spacing:3px;
  color:#5892FF ;
    color: #44ca91;
  margin:0;
  margin-bottom:20px;
}
.wrapper-2 h4 {
    margin: 0;
     
    margin-bottom: 14px;
    color: #3e3e3e; 
    letter-spacing: 1px;
}
.wrapper-2 p {
    margin: 0;
    color: #5f5f5f; 
    letter-spacing: 1px;
    font-size: 18px;
}
.go-home{
  color:#fff;
   
  background: #fb3232;
  border:none;
  padding:10px 30px;
  margin:30px 0;
  border-radius:30px;
  text-transform:capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
      font-size: 18px;
}
.footer-like{
  margin-top: auto; 
  background:#D7E6FE;
    background: #dadada;
  padding:6px;
  text-align:center;
}
.footer-like p{
  margin:0;
  padding:4px;
  color:#5892FF; 
  letter-spacing:1px;
}
.footer-like p a{
  text-decoration:none;
  color:#5892FF;
  font-weight:600;
}
 
.logo-2{
  margin: 0 auto !important;
  display: table;
  text-align: center
}

.mobile-call{
  display: none
}


@media (min-width:600px){
  .content{
  max-width:1000px;
  margin:0 auto;
}
  .wrapper-1{
  height: initial;
  max-width:620px;
  margin:0 auto 120px;
  margin-top:100px;
            border-radius: 35px;
  box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
    
}
  
}

.new-submit{
  margin-bottom: 10px !important;
}


@media (max-width:1024px){ 
  .mobile-call{
                width: 50px;
        height: 108px;
         position: fixed;
        right: 12px;
        z-index: 111111;
        bottom: 70px;
            display: none;
  }
  
  .mobile-call a{
            margin-bottom: 5px;
        display: block;
  }
  
}













.site-header {
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;

  background-color: #ab23308a;
  border-radius: 0;
  transition-property: background-color, padding-top, padding-bottom, transform;
  transition-duration: 0.5s;
  z-index: 97;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.site-header:not(.dsn-open) {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.site-header > .p-relative.dsn-container {
  padding: 0;
  display: flex;
  align-items: center;
}
.site-header .dsn-svg-transition {
  fill: var(--assistant-color);
}
.site-header .bg-load:not(.dsn-svg-transition) {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.site-header .bg-load {
  position: fixed;
  pointer-events: none;
}
.admin-bar .site-header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
.site-header .main-logo {
  position: relative;
  z-index: 1;
}
.site-header ul.primary-nav {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.site-header ul.primary-nav ul {
  position: absolute;
}
@media only screen and (min-width: 992px) {
  .site-header:not(.dsn-hamburger) .main-navigation {
    display: flex;
    flex-basis: auto;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav li {
    font-family: var(--body-font);
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li {
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 500;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li li.has-sub-menu:after {
    content: "";
    position: absolute;
    border: solid var(--theme-color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: translateY(-50%) rotate(45deg);
    margin: 0 0 2px 1px;
    right: 15px;
    top: calc(50% - 3px);
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li:not(:first-of-type) {
    margin-left: 30px;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li:last-of-type ul {
    margin-left: -95px;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li ul {
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    margin-left: -20px;
    background-color: var(--assistant-color);
    transition-property: transform, opacity, visibility;
    transition-duration: 0.8s;
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(35px);
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li ul li {
    position: relative;
    width: 100%;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 500;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 1.5px;
    transition: 0.5s;
    background-color: var(--heading-color);
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li ul li:hover:before {
    height: 100%;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav > li ul ul {
    right: 100%;
    top: -15px;
  }
  .site-header:not(.dsn-hamburger) ul.primary-nav li.has-sub-menu:hover > ul, .site-header:not(.dsn-hamburger) ul.primary-nav li.has-sub-menu:focus > ul {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
  .site-header:not(.dsn-hamburger) .navbar-toggle, .site-header:not(.dsn-hamburger) .bg-load {
    display: none;
  }
  .site-header:not(.dsn-hamburger) .dsn-back {
    display: none;
  }
  .site-header:not(.dsn-hamburger) .menu-cover-title {
    display: none;
  }
}
.site-header.dsn-hamburger .main-navigation {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding-right: var(--dsn-gap-container);
  padding-left: var(--dsn-gap-container);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger .main-navigation {
    flex-direction: column;
    overflow: auto;
  }
}
.site-header.dsn-hamburger ul.primary-nav {
  position: relative;
  top: 100px;
}
@media only screen and (min-width: 992px) {
  .site-header.dsn-hamburger ul.primary-nav {
    width: 70%;
    padding-right: var(--bs-gutter-x);
  }
}
.site-header.dsn-hamburger ul.primary-nav ul {
  width: 100%;
}
.site-header.dsn-hamburger ul.primary-nav, .site-header.dsn-hamburger ul.primary-nav ul {
  counter-reset: var(--dsn-li-name);
  height: calc(100vh - 100px);
  padding-bottom: 80px;
  padding-left: 150px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger ul.primary-nav, .site-header.dsn-hamburger ul.primary-nav ul {
    justify-content: start;
    padding-left: 30px;
  }
}
.site-header.dsn-hamburger ul.primary-nav li, .site-header.dsn-hamburger ul.primary-nav ul li {
  cursor: pointer;
  pointer-events: none;
}
@media only screen and (max-width: 575px) {
  .site-header.dsn-hamburger ul.primary-nav li, .site-header.dsn-hamburger ul.primary-nav ul li {
    font-size: 24px;
  }
}
.site-header.dsn-hamburger ul.primary-nav a, .site-header.dsn-hamburger ul.primary-nav ul a {
  color: var(--font-color);
  transform-origin: left top;
  transition: 500ms 0ms;
}
.site-header.dsn-hamburger ul.primary-nav a:hover, .site-header.dsn-hamburger ul.primary-nav ul a:hover {
  transform: skewX(2deg);
  letter-spacing: 2.5px;
}
@media only screen and (min-width: 992px) {
  .site-header.dsn-hamburger ul.primary-nav li a span:before, .site-header.dsn-hamburger ul.primary-nav ul li a span:before {
    counter-increment: var(--dsn-li-name);
    content: counters(var(--dsn-li-name), ".", decimal-leading-zero) ". ";
    font-family: var(--border-color);
    pointer-events: none;
    font-size: 14px;
    opacity: 0.3;
  }
}
.site-header.dsn-hamburger ul.primary-nav li {
  margin: 5px 0;
  width: 100%;
}
.site-header.dsn-hamburger ul.primary-nav a {
  position: relative;
  overflow: hidden;
}
.site-header.dsn-hamburger ul.primary-nav.h2 a {
  line-height: 1.2;
}
.site-header.dsn-hamburger ul.primary-nav .h3 a {
  line-height: var(--font-size-h3);
}
.site-header.dsn-hamburger ul {
  left: 0;
  top: 0;
  z-index: -1;
}
.site-header.dsn-hamburger ul > li > a > span, .site-header.dsn-hamburger ul > li > span, .site-header.dsn-hamburger ul .scroll-content > li > a > span, .site-header.dsn-hamburger ul .scroll-content > li > span {
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: opacity, visibility, transform;
  transform-origin: center top;
  transition-delay: calc(0.1s * var(--dsn-li-index));
}
.site-header.dsn-hamburger ul.open {
  z-index: 9;
}
.site-header.dsn-hamburger ul.open > li > a, .site-header.dsn-hamburger ul.open > li > span, .site-header.dsn-hamburger ul.open .scroll-content > li > a, .site-header.dsn-hamburger ul.open .scroll-content > li > span {
  pointer-events: auto !important;
}
.site-header.dsn-hamburger ul.open > li > a > span, .site-header.dsn-hamburger ul.open > li > span, .site-header.dsn-hamburger ul.open .scroll-content > li > a > span, .site-header.dsn-hamburger ul.open .scroll-content > li > span {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.site-header.dsn-hamburger #navbar_toggle {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon {
  --width-icon: 25px;
  margin-right: 10px;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line {
  position: relative;
  height: 2px;
  background-color: var(--heading-color);
  width: 25px;
  transition: 0.5s;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:not(:first-child) {
  margin-top: 5px;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(1), .site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(3) {
  transform: scaleX(0.5);
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(2) {
  width: var(--width-icon);
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(1) {
  transform-origin: left;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(3) {
  transform-origin: right;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-text {
  position: relative;
  --animate-trans: translateY(5px) rotateX(75deg);
  min-width: 43px;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open, .site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close {
  position: absolute;
  top: 0;
  left: 0;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open .char, .site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close .char {
  opacity: 0;
  visibility: hidden;
  transform: var(--animate-trans);
}
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open, .site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close, .site-header.dsn-hamburger #navbar_toggle .toggle-text .text-menu {
  overflow: hidden;
  will-change: transform;
}
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open .char, .site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close .char, .site-header.dsn-hamburger #navbar_toggle .toggle-text .text-menu .char {
  color: var(--heading-color);
  will-change: transform;
  transition-property: opacity, visibility, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: calc(30ms * var(--char-index) + 1ms);
}
.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line {
  --trans-icon: scale(0.2, 1.7);
}
.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(1), .site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(2), .site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(3) {
  transform: var(--trans-icon);
  border-radius: 3px;
}
.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(1) {
  transform: var(--trans-icon) translateY(4px);
}
.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(3) {
  transform: var(--trans-icon) translateY(-4px);
}
.site-header.dsn-hamburger #navbar_toggle:hover .text-menu .char {
  opacity: 0;
  visibility: hidden;
  transform: var(--animate-trans);
}
.site-header.dsn-hamburger #navbar_toggle:hover:not(.open) .text-open .char, .site-header.dsn-hamburger #navbar_toggle:hover.open .text-close .char {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.site-header.dsn-hamburger .menu-cover-title {
  position: absolute;
  top: 50%;
  font-size: 20vw;
  font-weight: 600;
  line-height: 1.15;
  transform: translateY(-50%) rotateX(75deg);
  opacity: 0;
  padding-left: inherit;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: opacity, transform;
  pointer-events: none;
}
@media only screen and (min-width: 992px) {
  .site-header.dsn-hamburger .menu-cover-title {
    left: -15px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger .menu-cover-title {
    left: 0;
    padding-right: inherit;
    width: 100%;
  }
}
.site-header.dsn-hamburger.dsn-open .menu-cover-title {
  transition-delay: 1s;
  opacity: 0.09;
  transform: translateY(-50%) translateX(-40%) rotate(-90deg);
}
.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(2) {
  transform: scale(0) !important;
  display: none;
}
.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(1), .site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(3) {
  margin-top: 0 !important;
}
.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(1) {
  transform: scale(1) rotate(45deg) !important;
  transform-origin: bottom !important;
}
.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(3) {
  transform: scale(1) rotate(-45deg) !important;
  transform-origin: top !important;
}
.site-header.dsn-hamburger.dsn-open .main-navigation {
  opacity: 1;
  visibility: visible;
  transform: none;
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger.dsn-open .main-navigation {
    text-align: center;
  }
  .site-header.dsn-hamburger.dsn-open .main-navigation ul {
    width: 100%;
  }
}
@keyframes draw {
  0% {
    stroke-dasharray: 10;
  }
  0% {
    stroke-dasharray: 280;
  }
  100% {
    stroke-dasharray: 10;
  }
}
.site-header.dsn-hamburger .dsn-back {
  /**
      Hover
   */
}
.site-header.dsn-hamburger .dsn-back svg {
  fill: none;
  stroke: var(--border-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10;
  stroke-dashoffset: 0;
  stroke-width: 13px;
  width: 22px;
  margin-right: 10px;
}
.site-header.dsn-hamburger .dsn-back > span {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger .dsn-back > span {
    justify-content: center;
  }
}
.site-header.dsn-hamburger .dsn-back span {
  font-size: 15px;
}
.site-header.dsn-hamburger .dsn-back .text-toggle-back {
  position: relative;
}
.site-header.dsn-hamburger .dsn-back .text-toggle-back .text-back {
  position: absolute;
  left: 0;
}
.site-header.dsn-hamburger .dsn-back .text-toggle-back .char {
  margin-right: 5px;
  transform-origin: center top;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
}
.site-header.dsn-hamburger .dsn-back:hover svg {
  animation: draw 3s linear alternate infinite;
}
.site-header.dsn-hamburger .dsn-back:hover .text-toggle-back .text-back .char, .site-header.dsn-hamburger .dsn-back .text-toggle-back .text-name .char {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.site-header.dsn-hamburger .dsn-back:hover .text-toggle-back .text-name .char, .site-header.dsn-hamburger .dsn-back .text-toggle-back .text-back .char {
  transform: translateY(10px) rotateX(75deg);
  opacity: 0;
  visibility: hidden;
}
.site-header.dsn-hamburger .container-content {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger .container-content {
    display: none !important;
  }
}
.site-header.dsn-hamburger .container-content:after, .site-header.dsn-hamburger .container-content {
  transition: 1s;
}
.site-header.dsn-hamburger .container-content:after {
  content: "";
  position: absolute;
  background-image: url(../img/pngtree-dotted.png);
  background-color: var(--border-color);
  opacity: 0.07;
}
@media only screen and (min-width: 992px) {
  .site-header.dsn-hamburger .container-content:after {
    right: 0;
    top: 0;
    width: 45%;
    height: 0;
    z-index: -1;
  }
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger .container-content:after {
    width: 0;
    height: 1px;
  }
}
.site-header.dsn-hamburger .container-content .sm-title-block {
  color: #a56433;
}
.site-header.dsn-hamburger .container-content .nav-social ul li {
  position: relative;
  color: var(--heading-color);
  display: inline-block;
  letter-spacing: 2px;
  font-size: 14px;
  margin-right: 15px;
  padding-right: 5px;
}
.site-header.dsn-hamburger.dsn-open .container-content {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 992px) {
  .site-header.dsn-hamburger.dsn-open .container-content:after {
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .site-header.dsn-hamburger.dsn-open .container-content:after {
    width: 100%;
    top: calc(-1 * var(--margin-padding) / 2);
  }
}
.site-header.dsn-hamburger.dsn-open .container-content:after, .site-header.dsn-hamburger.dsn-open .container-content {
  transition-delay: 0.7s;
}
.site-header:not(.dsn-hamburger) .container-content {
  display: none;
}
.site-header.nav-bg {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 600px) {
  .site-header.nav-bg {
    top: 0;
  }
}
.site-header.hide-nav:not(.dsn-open) {
  transform: translateY(-170%);
}

.main-brand img,
.dsnload__img img {
  width: 110px;
  max-width: 100%;
  height: auto;
}
.v-light #site_menu_header .main-brand .logo-dark, #dsn_footer.v-light .main-brand .logo-dark, .main-brand .logo-dark, .v-light #dsn_footer:not(.v-light, .v-dark) .main-brand .logo-dark,
.v-light #site_menu_header .dsnload__img .logo-dark,
#dsn_footer.v-light .dsnload__img .logo-dark,
.dsnload__img .logo-dark,
.v-light #dsn_footer:not(.v-light, .v-dark) .dsnload__img .logo-dark {
  display: block;
}
.v-light #site_menu_header .main-brand .logo-light, #dsn_footer.v-light .main-brand .logo-light, .main-brand .logo-light, .v-light #dsn_footer:not(.v-light, .v-dark) .main-brand .logo-light,
.v-light #site_menu_header .dsnload__img .logo-light,
#dsn_footer.v-light .dsnload__img .logo-light,
.dsnload__img .logo-light,
.v-light #dsn_footer:not(.v-light, .v-dark) .dsnload__img .logo-light {
  display: none;
}
.v-dark #site_menu_header .main-brand .logo-dark, #dsn_footer.v-dark .main-brand .logo-dark, .v-dark #dsn_footer:not(.v-light, .v-dark) .main-brand .logo-dark,
.v-dark #site_menu_header .dsnload__img .logo-dark,
#dsn_footer.v-dark .dsnload__img .logo-dark,
.v-dark #dsn_footer:not(.v-light, .v-dark) .dsnload__img .logo-dark {
  display: none;
}
.v-dark #site_menu_header .main-brand .logo-light, #dsn_footer.v-dark .main-brand .logo-light, .v-dark #dsn_footer:not(.v-light, .v-dark) .main-brand .logo-light,
.v-dark #site_menu_header .dsnload__img .logo-light,
#dsn_footer.v-dark .dsnload__img .logo-light,
.v-dark #dsn_footer:not(.v-light, .v-dark) .dsnload__img .logo-light {
  display: block;
}

.v-light #site_menu_header {
  background-color: rgba(255, 255, 255, 0.4);
}

.social-side {
  position: fixed;
  bottom: 50px;
  z-index: 10;
  display: flex;
  mix-blend-mode: exclusion;
  --heading-color: #fff;
  color: var(--heading-color);
}
@media only screen and (min-width: 1400px) {
  .social-side {
    left: 25px;
  }
}
@media only screen and (max-width: 1399px) {
  .social-side {
    left: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .social-side {
    display: none;
  }
}
.social-side .icon {
  text-align: center;
  width: 30px;
  line-height: 30px;
  cursor: pointer;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  white-space: nowrap;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 12px;
}
.social-side .icon:before {
  content: "";
  position: relative;
  display: inline-block;
  border-left: 1px solid var(--heading-color);
  height: 50px;
  margin-bottom: 10px;
}

.socials {
  text-align: center;
  font-size: 14px;
}
.socials li a {
  position: relative;
  margin-bottom: 10px;
  margin-top: 5px;
  color: var(--heading-color);
}
.socials li a:after, .socials li a span, .socials li a:hover i {
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}
.socials li a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--heading-color);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}
.socials li a i {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.socials li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--heading-color);
  font-size: 13px;
  opacity: 0;
  transform-origin: center bottom;
  cursor: pointer;
  transform: translateX(0px) translateY(-50%);
}
.socials li a:hover i {
  transform: scale(0);
}
.socials li a:hover label {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 12, -8);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}
.socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
}
.socials li a:hover span {
  opacity: 1;
  transform: translateX(10px) translateY(-50%);
}

.dsn-socials li {
  display: inline-block;
}
.dsn-socials li:not(:last-of-type) {
  margin-right: 5px;
}
.dsn-socials li a {
  position: relative;
  padding: 8px 22px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
}
.dsn-socials li a a:not(.move-circle) {
  border-color: var(--border-color);
}
.dsn-socials li a:after, .dsn-socials li a span:not(.dsn-icon) {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}
.dsn-socials li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-color);
  transform: translate(-50%, -50%) scale(0.2);
}
.dsn-socials li a span:not(.dsn-icon) {
  color: var(--heading-color);
  font-weight: bold;
  font-size: 13px;
  transform-origin: center bottom;
  cursor: pointer;
}
.dsn-socials li a i {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dsn-socials li a:hover i {
  transform: scale(0);
}
.dsn-socials li a:hover span:not(.dsn-icon) {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, -20);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}
.dsn-socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
}
@media only screen and (max-width: 991px) {
  .dsn-socials li:not(:last-of-type) {
    margin-right: 5px;
  }
}
.elementor-align-right .dsn-socials .dsn-icon {
  margin: inherit;
}

/*--------------------------------------------------------------
## Next / Previous
--------------------------------------------------------------*/
@media only screen and (max-width: 575px) {
  .next-page .tob-box {
    flex-direction: column;
    align-items: baseline;
  }
  .next-page .tob-box .title {
    margin-bottom: 20px;
  }
}

.next-projects .box-content .btn-arrow {
  position: absolute;
  right: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .next-projects .box-content .btn-arrow {
    display: none;
  }
}
.next-projects .box-content .btn-arrow .icon {
  line-height: 0.8;
}

.type-p-nav {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
}
.type-p-nav .dsn-pagination {
  flex-wrap: wrap;
}
.type-p-nav .dsn-pagination .page-numbers:not(.next):not(.prev) {
  position: relative;
  margin-right: 15px;
  transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  padding: 10px;
  font-size: 20px;
  border: 1px solid var(--border-color);
}
.type-p-nav .dsn-pagination .page-numbers:not(.next):not(.prev).current, .type-p-nav .dsn-pagination .page-numbers:not(.next):not(.prev):hover {
  color: var(--theme-color-font, var(--heading-color));
  background-color: var(--assistant-color);
}
.type-p-nav .dsn-pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.type-p-nav .dsn-pagination .next, .type-p-nav .dsn-pagination .prev {
  position: relative;
  text-align: center;
  width: 90px;
}
.type-p-nav .dsn-pagination .next:before, .type-p-nav .dsn-pagination .prev:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--assistant-color);
  transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  transform: scale(0.8);
}
.type-p-nav .dsn-pagination .next svg, .type-p-nav .dsn-pagination .prev svg {
  width: 30px;
  position: absolute;
  top: 1px;
  fill: var(--heading-color);
  z-index: 1;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.type-p-nav .dsn-pagination .next span, .type-p-nav .dsn-pagination .prev span {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--heading-color);
  transition: all 0.3s ease-out;
}
.type-p-nav .dsn-pagination .next:hover:before, .type-p-nav .dsn-pagination .prev:hover:before {
  transform: scale(0.7);
}
.type-p-nav .dsn-pagination .next:hover svg, .type-p-nav .dsn-pagination .prev:hover svg {
  opacity: 0;
}
.type-p-nav .dsn-pagination .next:hover span, .type-p-nav .dsn-pagination .prev:hover span {
  transform: translateX(0) translateY(2px);
}
.type-p-nav .dsn-pagination .next:hover, .type-p-nav .dsn-pagination .prev:hover {
  background-color: transparent;
}
.type-p-nav .dsn-pagination .next {
  margin-left: 10px;
}
.type-p-nav .dsn-pagination .next svg {
  transform: translateX(20%);
  left: -10%;
}
.type-p-nav .dsn-pagination .next span {
  transform: translateX(20%) translateY(2px);
}
.type-p-nav .dsn-pagination .prev {
  margin-right: 25px;
}
.type-p-nav .dsn-pagination .prev svg {
  transform: translateX(-20%) rotate(180deg);
  right: -10%;
}
.type-p-nav .dsn-pagination .prev span {
  transform: translateX(-20%) translateY(2px);
}

.pagination-pages .post-page-numbers {
  margin: 0 10px;
}
.pagination-pages a {
  color: var(--theme-color);
}

.elementor-widget-dsn_arrow_nav {
  pointer-events: none;
}

.dsn-nav-arrow {
  --dsn-icon-size: 25px;
  pointer-events: none;
}
.dsn-nav-arrow .dsn-nav-left, .dsn-nav-arrow .dsn-nav-right {
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.dsn-nav-arrow .dsn-nav-left {
  margin-right: 15px;
}

.swiper-pagination-bullets, .swiper-pagination-fraction, .swiper-pagination-progressbar {
  position: relative;
  --swiper-pagination-color: var(--theme-color);
  --swiper-pagination-bullet-inactive-color: var(--theme-color);
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .swiper-pagination-bullets, .swiper-pagination-fraction, .swiper-pagination-progressbar {
    display: none;
  }
}

.swiper-pagination-fraction {
  bottom: 0;
  width: auto;
  display: block;
}

.dsn-swiper .swiper-pagination-progressbar {
  position: relative;
  width: 30% !important;
  height: 1px !important;
  background-color: var(--border-color);
  --swiper-pagination-color: var(--theme-color);
}
.dsn-swiper .swiper-pagination-progressbar span {
  transition-property: transform;
}

.dsn-swiper-circle .swiper-pagination-bullet {
  position: relative;
  background: transparent;
  width: 20px;
  height: 20px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  margin: 5px;
  bottom: 0 !important;
}
.dsn-swiper-circle .swiper-pagination-bullet:not(.swiper-pagination-bullet-active, .swiper-pagination-bullet-active-prev, .swiper-pagination-bullet-active-next) {
  transform: scale(0.33);
}
.dsn-swiper-circle .swiper-pagination-bullet::before, .dsn-swiper-circle .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.dsn-swiper-circle .swiper-pagination-bullet::before {
  background-color: var(--heading-color);
  transform: scale(0.7);
}
.dsn-swiper-circle .swiper-pagination-bullet::after {
  border: 1.5px solid var(--heading-color);
  transform: scale(0.7);
}
.dsn-swiper-circle .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scale(0.4);
}
.dsn-swiper-circle .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  transform: scale(1);
}

.dsn-swiper .swiper-container-vertical {
  height: 70vh;
}

.swiper-pagination:not(.dsn-swiper-circle, .dsn-swiper-img) .swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  border-radius: 0;
  margin-right: 5px;
  cursor: pointer;
  background: var(--theme-color);
  transition: transform 0.3s ease-in-out;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
  bottom: 0;
}

.swiper-pagination-fraction {
  width: auto !important;
  position: relative !important;
  bottom: auto !important;
}

.dsn-swiper-paginate {
  align-items: center;
}

.e-container > .elementor-element.elementor-absolute.elementor-widget-dsn_arrow_nav.container, .elementor-widget-wrap > .elementor-element.elementor-absolute.elementor-widget-dsn_arrow_nav.container {
  left: 0;
  right: 0;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 0;
  transform: none;
}

.prev-paginate, .next-paginate {
  position: relative;
  cursor: pointer;
}
.prev-paginate:not(.dsn-slid-normal), .next-paginate:not(.dsn-slid-normal) {
  display: flex;
  align-items: center;
  padding: 4px 24px;
  border: 1px solid var(--border-color);
  border-radius: 31px;
  font-size: 13px;
  letter-spacing: 2px;
}
.prev-paginate:not(.dsn-slid-normal) .text-paginate, .next-paginate:not(.dsn-slid-normal) .text-paginate {
  -webkit-user-select: none;
  user-select: none;
  font-weight: 500;
}
.prev-paginate:not(.dsn-slid-normal).prev-paginate, .next-paginate:not(.dsn-slid-normal).prev-paginate {
  padding-left: 4px;
}
.prev-paginate:not(.dsn-slid-normal).next-paginate, .next-paginate:not(.dsn-slid-normal).next-paginate {
  padding-right: 4px;
}
.prev-paginate .dsn-icon, .next-paginate .dsn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 38px;
  border-radius: 26px;
}

.prev-paginate:not(.dsn-slid-normal) .dsn-icon {
  margin-right: 12px;
}

.next-paginate:not(.dsn-slid-normal) .dsn-icon {
  margin-left: 12px;
}

.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}

.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet {
  width: 45px;
  height: 45px;
  background: transparent;
  transform: none;
  margin: 0 0 0 -10px;
  opacity: 1;
}
.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  filter: brightness(50%);
}
.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  z-index: 2;
}
.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet, .swiper-pagination.dsn-swiper-img .swiper-pagination-bullet img {
  border-radius: 50%;
}

@media only screen and (max-width: 575px) {
  .prev-paginate:not(.dsn-slid-normal), .next-paginate:not(.dsn-slid-normal) {
    padding: 0;
    background-color: transparent;
    border: 0;
  }
  .prev-paginate:not(.dsn-slid-normal) .text-paginate, .next-paginate:not(.dsn-slid-normal) .text-paginate {
    display: none;
  }
}

.hide-slide-shadow .swiper-slide-shadow {
  display: none;
}

.dsn-swiper-paginate img {
  height: auto;
}

.dsn-swiper .cover-bg-img {
  height: 100%;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Header
-------------------------------------------------------- */
.link-project {
  z-index: 15;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  text-align: center;
  line-height: 150px;
  font-size: 13px;
  letter-spacing: 1px;
}
.link-project:not(.load-more) {
  right: 60px;
  bottom: 60px;
}
.link-project svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .link-project {
    display: none;
  }
}

#dsn_header {
  position: relative;
  overflow: hidden;
  --margin-padding: 120px;
}
#dsn_header .bg-blur-head img {
  height: 100%;
}
#dsn_header .bg-blur-head:before {
  z-index: 1;
}
#dsn_header .des_head strong, #dsn_header .des_head b {
  color: var(--heading-color);
}
@media only screen and (min-width: 768px) {
  #dsn_header:not(.dsn-full-header) #hero_image img {
    height: var(--dsn-head-height, 100%);
    margin-top: calc(var(--margin-padding) * -1);
    max-width: inherit;
    width: calc(100% + (var(--dsn-gap-container) * 2));
    margin-left: calc(var(--dsn-gap-container) * -1);
  }
}
#dsn_header:not(.header-normal, .header-padding, .dsn-full-header) {
  min-height: 100vh;
}
#dsn_header:not(.header-normal, .header-padding, .dsn-full-header) #hero_content {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) {
  #dsn_header:not(.header-normal, .header-padding, .dsn-full-header) .entry-header, #dsn_header:not(.header-normal, .header-padding, .dsn-full-header) #hero_content {
    min-height: calc(100vh - (var(--margin-padding) * 2));
  }
}
@media only screen and (max-width: 767px) {
  #dsn_header:not(.header-normal, .header-padding, .dsn-full-header) {
    padding: 0;
  }
  #dsn_header:not(.header-normal, .header-padding, .dsn-full-header) .entry-header, #dsn_header:not(.header-normal, .header-padding, .dsn-full-header) #hero_content {
    min-height: 100vh;
  }
}
#dsn_header.show-box-shadow:not(.header-normal) .entry-header:after {
  content: "";
  position: absolute;
  width: 100%;
}
#dsn_header.header-normal {
  padding-top: 180px;
}
@media only screen and (max-width: 1399px) {
  #dsn_header.header-normal {
    padding-bottom: 160px;
  }
}
@media only screen and (max-width: 991px) {
  #dsn_header.header-normal {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #dsn_header.header-normal {
    height: auto;
    min-height: auto;
  }
  #dsn_header.header-normal .box-content {
    display: inline-flex;
    flex-direction: column;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  #dsn_header.header-normal .box-content .title {
    order: 2;
    text-align: left;
  }
  #dsn_header.header-normal .box-content div {
    order: 1;
  }
  #dsn_header.header-normal .box-content div p {
    display: none;
  }
}
#dsn_header.header-personal .sm-title-block {
  font-family: var(--body-font);
}
#dsn_header.header-personal .img-text img {
  width: 165px;
  height: 100%;
  margin-right: 10px;
}
@media only screen and (max-width: 575px) {
  #dsn_header.header-personal .img-text img {
    display: none;
  }
}
#dsn_header.header-personal .img-text .title-lg {
  line-height: 1.1;
}
@media only screen and (max-width: 1399px) {
  #dsn_header.header-personal .footer-head {
    padding-bottom: 20px;
  }
}
#dsn_header.header-personal .footer-head .dsn-container {
  padding-right: 50px;
}

.header-project {
  padding-top: 200px;
}
.header-project .box-img {
  height: 70vh;
}
.header-project h4 {
  font-size: 45px;
  max-width: 700px;
}
@media only screen and (max-width: 767px) {
  .header-project .d-flex.justify-content-between.align-items-center.w-100.mt-30 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header-project .d-flex.justify-content-between.align-items-center.w-100.mt-30 .item {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.header-architecture .bg-overlay {
  position: absolute;
  height: 55%;
  background-image: linear-gradient(to bottom, transparent, #060606 80%);
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}
.header-architecture .social-network .social-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-weight: 600;
}
.header-architecture .social-network ul {
  padding-left: 20px;
}
.header-architecture .social-network ul:before {
  content: "";
  width: 3vw;
  top: 50%;
  height: 1px;
  background: var(--reverse-color);
  margin-right: 15px;
  opacity: 0.15;
}
.header-architecture .socials li:not(:last-of-type) {
  margin-right: 20px;
}
.header-architecture .socials li a {
  position: relative;
  margin-top: 5px;
  color: var(--heading-color);
}
.header-architecture .socials li a:after,
.header-architecture .socials li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}
.header-architecture .socials li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-color);
  transform: translate(-50%, -50%) scale(0.2);
}
.header-architecture .socials li a span {
  color: var(--heading-color);
  font-size: 13px;
  transform-origin: center bottom;
  cursor: pointer;
}
.header-architecture .socials li a i {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header-architecture .socials li a:hover i {
  transform: scale(0);
}
.header-architecture .socials li a:hover span {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, -25);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}
.header-architecture .socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
}

@media only screen and (max-width: 991px) {
  .footer-head {
    display: none;
  }
}

.brightness {
  overflow: hidden;
  height: 100vh;
}
.brightness .frame {
  padding: 2rem 3rem;
  display: grid;
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  pointer-events: none;
  justify-items: start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  transition: opacity 0.3s;
}
.brightness .grid {
  gap: 1rem;
  flex: none;
  position: relative;
  width: 150vw;
  height: 140vh;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: 100%;
  transform-origin: center center;
}
.brightness .row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(7, 1fr);
  will-change: transform, filter;
}
.brightness .row__item {
  position: relative;
}
.brightness .row__item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.brightness .row__item-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .brightness .content.w-50 {
    width: 100%;
  }
}

.header-photography {
  height: 100vh;
  overflow: hidden;
}
.header-photography.preview-1 {
  height: -webkit-max-content;
  height: max-content;
}
.header-photography.preview-1 .grid {
  transform: rotate(0deg);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  padding: 60px 0;
}
.header-photography.preview-1 .row {
  display: flex;
}
.header-photography.preview-1 .row__item-img {
  position: relative;
}
.header-photography.preview-1 .row__item-img img {
  width: auto;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .header-photography.preview-1 .row__item-img img {
    height: auto;
  }
}
.header-photography.preview .grid {
  transform: rotate(0deg);
  grid-template-rows: repeat(3, 1fr);
  width: 110%;
  height: 100%;
}
.header-photography.preview .row {
  display: flex;
}
.header-photography.preview .row:nth-of-type(2) .row__item:first-of-type {
  transform: translateY(-120px);
}
.header-photography.preview .row:nth-of-type(2) .row__item:last-of-type {
  transform: translateY(120px);
}
.header-photography.preview .row:first-of-type .row__item-img {
  width: 475px;
}
.header-photography.preview .row:last-of-type .row__item-img {
  width: 600px;
}
.header-photography.preview .row__item-img {
  position: relative;
  width: 375px;
  height: 270px;
}
.header-photography .frame {
  padding: 2rem 3rem;
  display: grid;
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  pointer-events: none;
  justify-items: start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  transition: opacity 0.3s;
}
.header-photography .grid {
  gap: 1rem;
  flex: none;
  position: relative;
  width: 200vw;
  height: 150vh;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: 100%;
  transform-origin: center center;
}
.header-photography .row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  will-change: transform, filter;
}
.header-photography .row__item {
  position: relative;
}
.header-photography .row__item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header-photography .reviews-box {
  padding: 5px;
  border-radius: 30px;
  font-size: 13px;
}
.header-photography .reviews-box span {
  margin-right: 15px;
  font-size: inherit;
}
.header-photography .reviews-box p {
  font-size: inherit;
}
.header-photography .reviews-box .review-box-inner {
  padding: 5px 15px 5px 5px;
  border-radius: 30px;
  height: -webkit-max-content;
  height: max-content;
  margin-right: 15px;
}
.header-photography .reviews-box .review-box-inner img {
  width: 30px;
}
.header-photography .reviews-box .review-box-inner i {
  color: #F1C644;
  font-size: inherit;
}
.header-photography .reviews-box .review-box-inner i:not(:last-of-type) {
  margin-right: 5px;
}
@media only screen and (max-width: 575px) {
  .header-photography .reviews-box .review-box-inner {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header-photography .reviews-box span {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header-photography .reviews-box p {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .header-photography.header-photography-2 .row:not(:first-of-type) .row__item-img {
    display: none;
  }
  .header-photography.header-photography-2 .row .row__item-img {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
  .header-photography.header-photography-2 .row .row__item-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header-photography.header-photography-2 .row .row__item-img img {
    border-radius: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  .header-photography.header-photography-2 .content {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .header-photography.header-photography-2 .content .title {
    font-size: 90px;
    line-height: 100px;
  }
}

.header-sm .title-lg {
  font-size: 240px;
  font-weight: 600;
  line-height: 240px;
  transform: scale3d(1.1, 1, 1);
}
.header-sm .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  border-radius: 50%;
  margin-right: 10px;
}
.header-sm .icons svg {
  width: 30px;
}

.header-personal .bg-gradient {
  background: linear-gradient(318deg, var(--bg-color) 10%, var(--theme-color) 50%, var(--theme-color) 40%, var(--bg-color) 89%);
}
@media only screen and (max-width: 991px) {
  .header-personal .p-relative.dsn-hero-parallax-title.h-100-v.d-flex.z-index-1 {
    z-index: 2;
  }
}
.header-personal .box-content {
  padding-top: 160px;
}
.header-personal .title-lg {
  font-size: 13vw;
  line-height: 14vw;
}
.header-personal .social-box {
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .header-personal .social-box .d-flex {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 25px;
    text-align: center;
  }
}
.header-personal .box-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 180px);
}
@media only screen and (max-width: 991px) {
  .header-personal .box-img {
    z-index: 1;
  }
}
.header-personal .box-img img {
  max-width: 80%;
  width: 500px;
}
@media only screen and (max-width: 991px) {
  .header-personal {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.header-sm-personal .title-lg {
  font-size: 180px;
  line-height: 180px;
}
@media only screen and (max-width: 991px) {
  .header-sm-personal .title-lg {
    font-size: 90px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .header-sm-personal .title-lg {
    text-align: center;
    align-items: center;
  }
}
.header-sm-personal .title-lg.scale-span span {
  transform: scale3d(1, 1.5, 1);
  margin-bottom: 30px;
}
.header-sm-personal .title-lg img {
  width: 140px;
  height: 268px;
  border-radius: 140px;
}
@media only screen and (max-width: 991px) {
  .header-sm-personal .title-lg img {
    display: none;
  }
}

.header-corporate {
  position: relative;
  overflow: hidden;
}
.header-corporate .content .title-lg {
  line-height: 120px;
}
@media only screen and (max-width: 991px) {
  .header-corporate .content .title-lg {
    line-height: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .header-corporate .content .title-lg {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .header-corporate .content .title-lg {
    line-height: 70px;
  }
}
.header-corporate .content .description {
  position: relative;
  max-width: 380px;
}
@media only screen and (max-width: 575px) {
  .header-corporate .footer-head {
    display: none;
  }
}

.header-page {
  padding-top: 180px;
}
@media only screen and (max-width: 991px) {
  .header-page .box-content {
    width: 100%;
  }
}
.header-page .title-lg {
  font-size: 200px;
  line-height: 210px;
}
@media only screen and (max-width: 991px) {
  .header-page .title-lg {
    font-size: 100px;
    line-height: 100px;
    text-align: left;
  }
}
.header-page .contact-links a {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.header-page .contact-links a:not(:last-of-type) {
  margin-bottom: 20px;
}
.header-page .contact-links a .icon svg {
  fill: var(--heading-color);
  width: 12px;
  height: 12px;
}
@media only screen and (max-width: 991px) {
  .header-page .contact-links {
    margin-left: 0;
  }
}
.header-page .breadcrumbs {
  font-weight: 500;
  letter-spacing: 2px;
}
.header-page .breadcrumbs .breadcrumbs_delimiter {
  display: inline-block;
  position: relative;
  margin: 0 0.45em;
  vertical-align: top;
  text-align: center;
}
.header-page .breadcrumbs .breadcrumbs_delimiter:before {
  content: "/";
}

.header-project .box-img + .p-relative {
  z-index: 1;
}

.header-project.h-100-v,
.header-personal.h-100-v,
.header-architecture {
  height: 100vh;
}

@media only screen and (max-width: 991px) {
  .header-normal .description-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-normal .description-inner div {
    order: 1;
  }
  .header-normal .description-inner .description-box {
    order: 2;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .header-normal .description-inner .description-box {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .header-normal .description-inner .description-box div {
    order: 1;
  }
}
@media only screen and (max-width: 991px) {
  .header-normal .description-inner .description-box p {
    order: 2;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .header-normal .description-inner .description-box p {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .header-normal .title-lg {
    font-size: 90px;
    line-height: 70px;
    transform: none;
  }
}

.dsn-btn-shape {
  position: relative;
  width: -webkit-max-content;
  width: max-content;
  margin: 0 0 0 10px;
  filter: url(#buttonFilter);
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.dsn-btn-shape.no-padding .button {
  padding: 0 15px 0 0;
}
.dsn-btn-shape.rotate-icon .icon svg {
  rotate: 90deg;
}
.dsn-btn-shape .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #ef0000;
  border-radius: 50%;
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.135, 0.9, 0.15, 1);
  transition-duration: 0.9s;
}
.dsn-btn-shape .icon svg {
  fill: #fff;
  width: 12px;
  height: 12px;
}
.dsn-btn-shape .icon.theme-color svg {
  fill: var(--theme-color);
}
.dsn-btn-shape .button {
  position: relative;
    text-align: center !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px !important;
    height: 40px;
    line-height: 1;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: #ef0000 !important;
    margin: 0 !important;
    border: none !important;
}
.dsn-btn-shape:hover .icon {
  transform: translateX(0.75rem) rotate(45deg);
}
.dsn-btn-play {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(251, 251, 251, 0.18);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dsn-btn-play i {
  font-size: 19px;
  margin-right: 10px;
}
.dsn-btn-shape-margin-auto{
    margin: 0 auto!important;
}


.dashboard-section-outer{
    background: #000;
    padding: 50px 0;
}


.logo_style {
    background-color: #000;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    position: relative;
    top: -50px;
}
.shape-one{
    position: absolute;
    top: 0;
    left: -30px;
}
.shape-two{
    right: -30px;
    position: absolute;
    top: 0;
}
.form-label {
    color: #fff;
}

.accordion-item{
    border-radius: 10px;
}
.dashboard-section-next h3{
    color: #fff;
}

.accordion-flush>.accordion-item:first-child{
    border-radius: 10px 10px 0 0;
}
.accordion-flush>.accordion-item:last-child{
    border-radius: 0 0 10px 10px;
}
.tabs--style-custom{
    border-bottom:none;
}
.table_custom_red th{
    background: #ef0000;
}
.duration-box h4 {
    font-size: 18px;
}
.duration-box p {
    font-size: 14px;
    font-weight: bold;
}



