/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/*
 * COLORS
 * 
 * active color - #31cce5
 * active color muted - #D0F3F9
 * success color - #4EE8C3
 * success color muted = #c9f8ed
 * 
 * orange color - #F2633A
 * orange color muted - #fdf1c2
 * orange gradiant color - #df4b6d
 * 
 * actionable color - #004F64
 * 
 * text color - #2C2C2C
 * 
 * 
 * */

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/































@keyframes glowing {
  0% {
    box-shadow: 0 0 15px #444BC6, 0 0 25px #444BC6;

  }
  33% {
    box-shadow: 0 0 15px #E546D9, 0 0 25px #E546D9;

  }
  66% {
    box-shadow: 0 0 15px #31cce5, 0 0 25px #31cce5;
  }
  100% {
    box-shadow: 0 0 15px #444BC6, 0 0 25px #444BC6;

  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes floating_big {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.glowing-orb {
  border-radius: 50%;
  background: #fff;
  animation: glowing 10s infinite ease, floating 10s infinite ease-in-out;
  margin: 5px;
  width: 20px;
  height: 20px;
  transition:background .25s ease-in-out;

}
.glowing-orb.dark_mode{
  background: #1F2933;
}
.glowing-orb.big-orb{
  animation: glowing 10s infinite ease, floating_big 5s infinite ease-in-out;

}

.glowing-orb.big-orb:hover{
  background: rgba(68, 75, 198, 0.25);

}

.glowing-orb.not-active{
  animation: none;
  box-shadow: 0 0 15px #444BC6, 0 0 25px #444BC6;
  filter: grayscale(0.5);
  opacity: .35;
}

.hs-search-field {
	    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 10px;
}

html,body{
  font-size: 14px;
  color: #2C2C2C;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  background: #fff;

}
body{
  overflow-x:hidden;
}


table, td, th{
  border: none;
} 

h1{
  font-size: 48px;
  line-height: 56px;

  font-family: "Raleway", sans-serif;
  color: #2C2C2C;
  margin: 10px 0px;

}

h2{
  font-size: 32px;
  line-height: 40px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 10px 0px;
  color: #2C2C2C;
}


h3{
  font-size: 20px;
  line-height: 32px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  margin: 10px 0px;
}

h4{
  font-size: 22px;
  line-height: 28px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 20px 0px;
  padding: 0px;
  color: #2C2C2C;
}

h5{
  font-size: 22px;
  line-height: 28px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  color: #2C2C2C;
}

h6{
  font-size: 22px;
  line-height: 28px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  color: #2C2C2C;
}

p{
  font-size: 18px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  margin: 0px;
  margin-bottom: 20px;
}

a{
  color: #31cce5;
  text-decoration: underline;
}
a:hover{
  color: #004F64;
  text-decoration: underline;
}


.material-icons{
  line-height: 18px;
  font-size: 18px;
}
.body-container--home{
  overflow-x:hidden !important;

}


.body-container--home,
.body-container--blog-index, 
.body-container--landing-page{

  

      background: url(https://www.dealmachine.com/hubfs/map_background.svg) no-repeat top center/auto; 

    background-size: 85%;
    background-position: 50% 10px;

    overflow-x:clip;
  
  

    padding-top: 100px;
    margin-top: -100px;

}


@media (max-width: 1240px) {
 .body-container--home,
.body-container--blog-index, 
.body-container--landing-page{
     background-size: 100%;
  }
}
@media (max-width: 767px) {
 .body-container--home,
.body-container--blog-index, 
.body-container--landing-page{
    background-size: 150%;
    background-position: 0 0;
    padding-top: 100px;
    margin-top: -100px;

  }
}



/* input */




input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  color: #2C2C2C;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}


.hs-form-field{
  text-align: left;
  position: relative;
  line-height: 18px;
  flex: 1;
  min-width: 50px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items:  center;
  overflow: visible;
  margin: 0px;
  align-items: flex-start;
  position: relative;
    border: none;

}
.hs_cos_wrapper_type_module{
  flex: 1;
}
.hs-fieldtype-radio{
padding: 10px 25px;
}
.hs-fieldtype-radio label,
.hs-fieldtype-radio legend{
  font-size: 14px;
  color: #2C2C2C;
}

.hs-fieldtype-textarea{

}
.hs-fieldtype-textarea label,
.hs-fieldtype-textarea legend{
  font-size: 14px;
  color: #2C2C2C;
  padding: 10px 25px 0px;

}


.hs-form-field:not(.hs-fieldtype-radio, .hs-fieldtype-textarea) label{
  color: #b1b1b1;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
  line-height: 10px;
  top: 20px;
  pointer-events: none;
  left: 25px;
  position: absolute;
  opacity: 0;
  font-size: 10px;
  transition: all 0.3s ease-in-out;

}
.hs-form-field:not(.hs-fieldtype-radio, .hs-fieldtype-textarea):has(> .input input:not(:placeholder-shown)) label
{
  opacity: 1;
    top: 15px;

  transition: all 0.2s ease-in-out;

}

.hs-form-field:not(.hs-fieldtype-radio) .input{
  width: 100%;
  flex: 1;
  background: transparent;
  border: none;
  outline: none !important;
  padding: 0px;
  align-self: stretch;

}

.hs-form-field:not(.hs-fieldtype-radio) .input input,
.hs-form-field:not(.hs-fieldtype-radio) .input textarea{
  color: #2C2C2C;
  font-size: 14px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  border: none;
  outline: none !important;
  background-image: none;
  padding: 25px;
  border-radius: 0px;
  width: 100% !important;

}
.hs-form-field:not(.hs-fieldtype-radio) .input input:focus{
  background: #D0F3F9;
}
.hs-form-field.dm-search .input input:focus{
  background: transparent;
}

.hs-form-field select{
  width: 100%;
  color:inherit;
  min-width: 100%;
  padding: 25px; /* Room for arrow on the right */
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  appearance: none; /* Hide native arrow */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  outline: none;
  box-sizing: border-box;
}



.hs-form-field:not(.hs-fieldtype-radio) .input textarea:focus{
  background: #D0F3F9;
}


.hs-form-field:not(.hs-fieldtype-radio) ::-webkit-input-placeholder{
  color: #b1b1b1;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;

}
.hs-form-field:not(.hs-fieldtype-radio) ::-moz-input-placeholder{
  color: #b1b1b1;
}

.hs-form{
  background: #ffffff;
  margin: 10px;
  border-radius: 15px;  
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e8e8;
  box-shadow: 0 24px 64px rgb(38 33 74 / 10%);
}

.dm-search{
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  overflow: hidden;
  margin: 10px;
}


.dnd-section{
  padding: 25px;
}

.dm-flex-center{
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
 
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dm-row{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.dm-wrapper{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.dm-card{
  background: #ffffff;
  margin: 10px;
  border-radius: 15px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e8e8;
  box-shadow: 0 24px 64px rgb(38 33 74 / 3%);
}

.dm-navbar-sticky{
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  
}
html:not([data-scroll='0']) .dm-navbar-sticky,
.dm-navbar-sticky.active{
  background: #fff;
  box-shadow: 0 24px 64px rgb(38 33 74 / 10%);
}

.dm-section{
  padding: 25px;
  max-width: 1000px;

}


.dm-navbar{
  background: transparent;
  position: relative;
  transition: background 0.3s ease-in-out;
}

.dm-navbar .dm-star-wrapper{
 line-height: 14px;
 opacity: 0;
 transition: opacity 0.3s ease-in-out;
  display:flex;
  align-items: center;
  justify-content: center;
align-self: stretch;
  margin-right: 10px;
}

.dm-navbar .dm-star-wrapper p{
 line-height: 14px;
  margin: 0px;
  margin-top: 5px;
}

html:not([data-scroll='0']) .dm-navbar .dm-star-wrapper{
 opacity: 1;
}


.dm-navbar-white .dm-navbar-menu .dm-navbar-button{
  color: #ffffff;
}
.dm-navbar.hover{
  background: #fff;
}
.dm-navbar.hover .dm-navbar-menu .dm-navbar-button,
.dm-navbar-menu .dm-navbar-button:hover,
html:not([data-scroll='0']) .dm-navbar-white .dm-navbar-menu .dm-navbar-button
{
  color: #004F64;
}
.dm-navbar-inner{
  padding: 25px;
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 1240px;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.dm-navbar-logo{
  width: 200px;
  height:78px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  margin-left: 25px;
}

.dm-navbar-white-logo img{e
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);

}
html:not([data-scroll='0']) .dm-navbar-white-logo img,
.dm-navbar.hover .dm-navbar-white-logo img{
  -webkit-filter: none;
  filter: none;
}

.dm-navbar-logo a{
  margin: 0px;
  font-size: 0px;
}
.dm-navbar-logo img{
  object-fit: contain;
  width: 200px;
}


@media (max-width: 767px) {
  .dm-navbar-logo{
    width: 120px;
    margin-right: 15px;
    margin-left: 0px;
  }
  .dm-navbar-logo img{
    width: 120px;
  }
  
  .dm-navbar{
    max-height: 100vh;
    overflow:auto;
  }

}


.dm-navbar-menu{
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
}
.dm-navbar-menu .dm-navbar-button{
  margin-right: 0px;
  font-weight: bold;


}
.dm-navbar-menu .dm-navbar-button i{
  font-size: 14px;
  margin-left: 5px;
  transition: transform .3s;

}


.dm-navbar-dropdown{
  display: flex;
  align-self: stretch;
  padding-top: 15px;
  padding-bottom: 15px;
  
}

.dm-navbar-dropdown-content{
  display:flex;
  background: #ffffff;
  position:absolute;
  top: 79px;
  right: 0px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease-in-out;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}


.dm-navbar-dropdown:hover .dm-navbar-dropdown-content{
   opacity: 1;
   pointer-events: auto;
}
.dm-navbar-dropdown:hover .dm-navbar-button{
  background: rgba(0,0,0,0.05);
}

.dm-navbar-dropdown-content-inner{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  max-width: 1240px;
  margin: 0px auto;
  padding: 25px;
  background: #ffffff;
}

.dm-navbar-dropdown-content-left{
  flex: 1;
  padding: 25px;
  border-right: 1px solid #e8e8e8;
  background: #ffffff;
}
.dm-navbar-dropdown-content-right{
  width: 450px;
  padding: 25px;
    background: #ffffff;

}

.dm-navbar-dropdown:hover .dm-navbar-button i{
  transform: rotate(180deg) ;
}




.dm-navbar-inner-mobile{
  display:none;
 
}

.dm-navbar-inner-mobile-top{
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 1240px;
  margin: 0px auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  
  display:flex;
  flex: 1;
}

.dm-navbar-inner-mobile .dm-navbar-logo{
  width: 150px;
  height:78px;
}
.dm-navbar-inner-mobile .dm-navbar-logo img{
  width: 150px;
}


.dm-navbar-inner-mobile .dm-mobile-menu-options{
  display:none;
}
.dm-navbar-inner-mobile.active{
  background: #fff;  
  

}

.dm-navbar-inner-mobile.active .dm-mobile-menu-options{
  display:block;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .dm-navbar-inner{
    display:none;
  }
  
  .dm-navbar-inner-mobile{
    display:block;
  }
}

.dm-icon-button,
.dm-icon-button:active,
.dm-icon-button:focus{

  margin: 5px;
  border-radius: 23px !important;
  
  padding: 0px;
  color: #004F64;
  font-size: 18px;
  line-height: 18px;
  background-color: transparent;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s linear;
  text-decoration: none !important;
  background: transparent;
}

.dm-icon-button:hover{
  background: rgba(0,0,0,0.05);
  font-size: 18px;
  line-height: 18px;
}


.dm-inline-button,
.dm-inline-button:active,
.dm-inline-button:focus{

  margin: 5px;
  border-radius: 30px !important;
  min-width: 50px;
  padding: 10px;
  padding-right: 15px;
  padding-left: 15px;

  color: #004F64;
  font-size: 14px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  background-color: transparent;
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s linear;
  text-decoration: none !important;
  background: transparent;

}


.dm-inline-button:hover{
  background: rgba(0,0,0,0.05);
  font-size: 14px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;

}
.hs-search-field__input::placeholder { /* Most modern browsers support this now. */
	color: #888
}
.hs-search-field__suggestions { border: 0 !important; }
.hs-search-field__input {
	outline-color: transparent;
	border-radius:10px;
}
#autocomplete-results {     padding-top:10px; margin-top:-10px; border-bottom-left-radius:5px !important; border-bottom-right-radius: 5px !important }
#autocomplete-results  li a { padding-bottom:10px; padding-top:10px; }
.hs-search-field__button { position:absolute; right:0; top:3px; }
.hs-search-field__form {display:block !important;}
.hs-search-field__form .hs-search-field__input { width:100% !important; 
  padding:20px !important;
 }
.results-for  { font-weight:normal !important; }
.hs-search-field__button { padding:10px 30px !important; }
.hs-search-field__button,
.hs-search-field__button:active,
.hs-search-field__button:focus,
.dm-ghost-button, 
form .hs-button, form input[type=submit],
.dm-ghost-button:active,
.dm-ghost-button:focus
{
  text-decoration: none !important;
  margin: 5px;
  border-radius: 30px !important;
  min-width: 50px;
  padding: 15px;
  padding-right: 25px;
  padding-left: 25px;
  border-width: 1px;
  border-style: solid;
  border-color: #004F64 !important;
  color: #004F64 ;
  font-size: 14px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;

  text-align: center;
  background-color:transparent;
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s linear;
  
  white-space: nowrap !important;
}

.dm-ghost-button.full
{
  margin: 5px 20px;
  padding: 15px;
}


 

.dm-ghost-button:hover, 
.hs-button:hover{
  background: #004F64  !important;
  color: #ffffff ;
  text-decoration: none;
    font-family: "Open Sans", sans-serif;

}


.hs-search-field__button, .dm-ghost-button.primary, form .hs-button, form input[type=submit]{
  color: #ffffff;
  background-color: #E546D9;
	background-image: linear-gradient(to right bottom, #e546d9, #c149d9, #9c4cd5, #744ccf, #444bc6);
  border: none !important;
}
.hs-search-field__button:hover,
.dm-ghost-button.primary:hover, form .hs-button:hover, form input[type=submit]:hover{
  color: #ffffff;
  background-color: #E546D9 !important;
	background-image: linear-gradient(to right bottom, #e546d9, #c149d9, #9c4cd5, #744ccf, #444bc6);
  
  margin-bottom: 2px;
  margin-top: 8px;
}

form .hs-button, form input[type=submit]{
   width: 94%;
  margin: 3%;
  margin-top: 1%;
  padding: 15px;

}
form .hs-button:hover, form input[type=submit]:hover{
  margin-bottom: 2%;
  margin-top: 2%;
}

.dm-ghost-button.dm-nav-cta.primary{
   color: #ffffff;
 background-color: #E546D9;
    background-image:none;

}
.dm-ghost-button.dm-nav-cta.primary:hover{
  color: #ffffff;
}

html:not([data-scroll='0']) .dm-navbar-sticky .dm-ghost-button.dm-nav-cta.primary,
.dm-navbar.hover .dm-ghost-button.dm-nav-cta.primary{
   color: #ffffff;
 background-color: #E546D9;
	background-image: linear-gradient(to right bottom, #e546d9, #c149d9, #9c4cd5, #744ccf, #444bc6);
  border: none !important;
}
.dm-small-label{
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  
}

.dm-small-label-subtext{
  background: #D0F3F9;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 10px;
  margin-left: 10px;
 
}

.dm-star-wrapper{
  text-align: center;
  max-width: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.dm-star-wrapper i{
  color: #F2633A;

}
.dm-star-wrapper p{
  margin: 0px;
  font-size: 12px;
}



.footer{
  background: #ffffff;
  padding: 25px;
  font-family: "Open Sans", sans-serif;
  
  background-image: linear-gradient(to right bottom, #31cce5, #444BC6, #E546D9);
  margin-top: 75px;
}

.footer-inner p { 
  margin:25px 0px;
  color: #ffffff;
}

.footer-inner p b{ 
  color: #ffffff;
}

.footer-inner ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer-inner ul li{
  font-size: 14px;
  margin-bottom: 15px;
  color: #ffffff;
}
.footer-inner a, .footer-inner span{
  color: #ffffff;
  text-decoration: none;

}
.footer-inner a:hover{
  text-decoration: underline;
}


.dm-footer-cta-wrapper{
  max-width: 1240px;
  width: 100%;
  margin: -100px auto 5px;
  color: #2C2C2C;
  box-shadow: 0 24px 64px rgb(38 33 74 / 10%);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.dm-footer-cta-wrapper-inner{
  padding: 50px;
  padding-left: 250px;
}

.dm-footer-cta-wrapper-inner-content{
margin-right: 25px;
}

.dm-footer-cta-wrapper-inner::before{

    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: url(https://www.dealmachine.com/hubfs/DealMachine%20Icon%20Logo%20%28Blue%20CMYK%29.svg) no-repeat top left/contain;
    mix-blend-mode: multiply;
    -webkit-transform: translate(0,-28.5%);
    -ms-transform: translate(0,-28.5%);
    transform: translate(0,-28.5%);
    transition: unset;
    overflow: hidden;
    transform: rotate(-15deg);
}




.dm-footer-cta-wrapper p{
  color: #2C2C2C;
    margin: 0px;
}
.dm-footer-cta-wrapper h3{
    color: #2C2C2C;
    margin: 0px 0px 10px;
  font-size: 32px;
  line-height: 40px;
}
.footer-inner{
  max-width: 1240px;
  margin: 0px auto;
}

.footer-innner-section{
  padding: 25px;
  flex: 1;
  min-width: 150px;
}

.footer-legal{
  
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  
  color: #ffffff;
  font-size: 12px;
  
  
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0px auto;
  padding: 25px 0px;

}
.footer-legal a{

}
.footer-legal-left-section{
max-width: 400px;
  


}
.footer-legal-middle-section{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
    align-self: center;

}

.footer-legal-right-section{
width: 350px;
  align-self: center;
  
    display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.dm-footer-logo{
  width: 40px;
  padding-bottom 25px;
}

.dm-footer-logo img{
object-fit: contain;
}

@media (max-width: 767px) {

 

  .dm-mobile-row{
    flex-direction: column;
  }
  
  .dm-footer-cta-wrapper-inner{
    padding: 25px;
    padding-left: 25px;
    text-align:center;
  }
  .dm-footer-cta-wrapper-inner-content{
    margin-right:0px;
    margin-bottom: 25px;
  }
  
  .dm-footer-cta-wrapper-inner::before{
    display:none;
  }
  .footer-legal{
    flex-direction: column;
  }
  .footer-legal-left-section,
  .footer-legal-right-section{
    justify-content: center;
      width: 100%;
      padding: 10px 0px;
      text-align:center;
  }
  .footer-legal-middle-section{
    display:none;
  }



  
}

/* Layout */
.dm-posts{
  flex-wrap: wrap;
    justify-content: center;
  align-items: flex-start;
  display:flex;
}

.dm-post,
.dm-post:active,
.dm-post:focus{
    background: #fff;

overflow: hidden;
  display:inline-block;
  color: #2c2c2c;
    border-radius: 15px;
  margin: 10px;
  box-shadow: 0 24px 64px rgb(38 33 74 / 10%);
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
  
  max-width: 370px;
  width: 100%;
}
.dm-post:hover{
  margin: 20px 10px 0px;
  box-shadow: 0 24px 64px rgb(38 33 74 / 20%);


}
.dm-post:hover .dm-featured-post-title{
text-decoration: underline !important;
}

@media (max-width: 767px) {
.dm-post {
  
  max-width: 100%;
  }
}
.dm-post img{
width: 100%;
  height:300px;
  object-fit:cover;
  overflow: hidden;
}

.dm-post-inner{
padding: 25px;
}

.dm-post-author{
display:flex;
 
}
.dm-post-author img{
width: 40px;
  height: 40px;
  border-radius: 20px;
  object-fit: cover;
  margin-right: 10px;
}

.dm-post-read-time{
  color: #b1b1b1;
}



.blog-post-featured-image{
  background: #fff;
  overflow: hidden;
  display:inline-block;
  color: #2c2c2c;
  border-radius: 15px;
  height: 400px;
  width: 100%;
  margin-bottom: 25px;
}
.blog-post-featured-image img{
  height: 400px;
  width: 100%;
  object-fit:cover;
  overflow: hidden;
}
.dm-blog-post-content-wrapper{
  max-width: 950px;
  padding: 0px;
}
.dm-blog-post{
  padding: 25px;
}

.dm-blog-post-body p,
.dm-blog-post-body li
{
  line-height: 32px;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  margin: 0px;
  margin-bottom: 20px;
}
.dm-blog-post-body li{
  margin-bottom: 10px;

}
.dm-blog-post-body h2{
  margin: 10px 0px 25px;
  font-weight: bold;
}

.blog-related-posts__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.dm-navbar-event-alert{
background-image: linear-gradient(to right bottom, #24223e, #262a48, #273252, #283a5b, #284365);
}

.dm-navbar-event-alert-inner{
max-width: 1240px;
  margin: 0px auto;
  padding: 5px 15px;

}

.dm-navbar-event-alert-logo{
  width: 200px;
}

.dm-navbar-event-alert-logo img{
    width: 200px;
object-fit: contain;
}

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

.dm-blog-author{
  padding: 25px;
}

.dm-blog-author-image img{
  
  width: 120px;
  height: 120px;
  border-radius: 60px;
  object-fit: cover;
  margin-right: 25px;
}


.dm-wrapper-video-container{
  display:flex;
  align-self:stretch;
  align-items:center;
  justify-content:center;
}

.dm-wrapper-video-wrapper{
  background-color: transparent;
  box-shadow: 0 24px 64px rgb(38 33 74 / 10%);
  overflow: hidden;
  width: 400px;
  height: 400px;
  border-radius: 30px;
  
  position: relative;
  border: 10px solid #fff;
  transform: rotate(15deg);
}


.dm-range input[type='range'] {
  -webkit-appearance: none; /* Override default look on WebKit browsers */
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #fff; /* Light gray background for the slider */
  outline: none;
  padding: 0;
  margin: 0;
}

.dm-range input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px; /* Slider Handle width */
  height: 25px; /* Slider Handle height */
  background: #31CCE5; /* Slider Handle color */
  cursor: pointer;
  border-radius: 50%;
  border: 0;
}

.dm-range input[type='range']::-moz-range-thumb {
  width: 25px; /* Slider Handle width */
  height: 25px; /* Slider Handle height */
  background: #31CCE5; /* Slider Handle color */
  cursor: pointer;
  border-radius: 50%;
  border: 0;
}

.dm-range input[type='range']::-ms-thumb {
  width: 25px; /* Slider Handle width */
  height: 25px; /* Slider Handle height */
  background: #31CCE5; /* Slider Handle color */
  cursor: pointer;
  border-radius: 50%;
  border: 0;
}




.sparkle-effect {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  overflow: hidden;
}

.sparkle-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0) 70%);
  opacity: 0;
  pointer-events: none;
  animation: sparkle 5s linear infinite;

}

@keyframes sparkle {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: translate(50%, 50%) rotate(45deg);
    opacity: 1;
  }
  40% {
    transform: translate(200%, 200%) rotate(45deg);
    opacity: 0;
  }


}

.dm-navbar-alert-button {
  display: flex !important;
    text-decoration: none !important;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
  margin: 10px auto;
}
.dm-navbar-alert-button *{
  
      text-decoration: none !important;
}
  
.dm-navbar-alert-button:hover {
  transform: scale(1.02); /* Slightly grows the button on hover */
  opacity: 0.8;
  text-decoration: none !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow for a raised effect */
}

.dm-navbar-alert-button:active {
  transform: scale(0.98); /* Presses in slightly when clicked */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduces shadow when pressed */
}

.dm-navbar-alert-button .dm-inline-button{
  margin: 5px auto;
margin-right: 25px;

}
@media (max-width: 767px) {
 
  .dm-navbar-alert-button {
    margin: 10px 5px;
  }
  
  .dm-navbar-alert-button .dm-inline-button{
margin-right: inherit;
  margin: 5px auto;


}