@charset "utf-8";
/* CSS Document */
body, html{
    height: 100%;
    scroll-behavior: smooth;
}
body{
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat' !important;
}
span{
    font-family: 'Montserrat' !important;
}
p{
    font-family: 'Montserrat' !important;
}
h1, h2, h3, h4, h5, h6, p, a, ul, li{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: 'Montserrat' !important;
}
a {
    text-decoration: none !important;
    transition: all 0.5s;
    font-family: 'Montserrat' !important;
}
.carousel-item img {
    width: 100%;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
    font-family: 'Montserrat' !important;
}
div#navbarCollapse {
    flex-direction: row-reverse;
}


/*Header Css Start*/


header {
    width: 100%;
    height: 660px;
    margin: 0;
    padding: 0;
}

a, a:visited {
    color: #a4a6a8;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

a:hover, a:active {
    color: #d1d3d4;
    text-decoration: none;
}

a:focus {
    outline: none;
}

a.info, a.info:visited, a.info:hover, a.info:active, a.purchase, a.purchase:visited, a.purchase:hover, a.purchase:active {
    color: #ffffff;
    -webkit-transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

a.info:hover, a.info:active, a.purchase:hover, a.purchase:active {
    background-color: #f2b90c;
}





.banner {
    position: absolute;
    width: 100%;
}
header.inner {
    width: 100%;
    height: 378px;
}

header.inner-bar {
    height: 120px;
  }
header.inner-bar .img-1,header.inner-bar  .img-2,header.inner-bar  .img-3,header.inner-bar .img-4 {
    height: 120px;
  }
header.inner .img-1,header.inner  .img-2,header.inner  .img-3,header.inner .img-4 {
    height: 378px;
  }

  .height-unset header {
    height: unset !important;
}


.top-zero {
    margin-top: 50px;
}

.top-zero footer {
    top: 0;
    padding-top: 60px;
}


.img-1, .img-2, .img-3, .img-4 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 850px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -18;
    opacity: 0;
    animation-name: fade;
    animation-duration: 16s;
    animation-iteration-count: infinite;
}

section .img-1, section .img-2, section .img-3, section .img-4 {
    opacity: 1;
    animation-name: iris;
    animation-duration: 16s;
    animation-iteration-count: infinite;
}

.img-1 { animation-delay: 0s; 
    background-image: url(../images/banner-img.png);
}

.img-2 { animation-delay: 4s; 
    background-image: url(../images/banner-img2.png);
}

.img-3 { animation-delay: 8s;
    background-image: url(../images/banner-img3.png);
 }

.img-4 { animation-delay: 12s; 
    background-image: url(../images/banner-img4.png);

}

/* Banner Animations (4s per image, 16s total timeline)
/*---------------------------------------------*/

@keyframes crossfade {
    /* This is the default behaviour as described by Jonathan Snook*/
    00.00%  { opacity: 0; }
    06.25%  { opacity: 1; }
    25.00%  { opacity: 1; }
    31.25%  { opacity: 0; }
    100.0%  { opacity: 0; }
}

@keyframes fade {
    /* By offsetting the fade out and animating z-index, we can prevent the background from showing up at all*/
    00.00%  { opacity: 0; z-index: -10; }
    06.25%  { opacity: 1; z-index: -10; }
    31.25%  { opacity: 1; z-index: -12; }
    37.50%  { opacity: 0; z-index: -14; }
    100.0%  { opacity: 0; z-index: -16; }
}

/* Animating a clip-path in Google Chrome can destroy performance...it's crazy CPU intensive */
@keyframes iris {
    00.0%   { clip-path: circle(0% at 50% 0%); z-index: -10; }
    12.5%   { clip-path: circle(120% at 50% 0%); z-index: -10; }
    31.25%  { clip-path: circle(120% at 50% 0%); z-index: -12; }
    37.50%  { clip-path: circle(0% at 50% 0%); z-index: -14; }
    100%    { clip-path: circle(0% at 50% 0%); z-index: -16; }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.sidebar-toggle{
  /* animation: bounce 2s ease-in-out infinite; */
  float:right;
  background: transparent;
  color: #FFF;
  border:none;
  font-size:1.5rem;
  margin:1em;
  cursor:pointer;
  outline:none;
}

.sidebar-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 1rem 1.5rem;
}

.close-btn {
  font-size:1.5rem;
  background: transparent;
  border-color: transparent;
  color: white;
  transition: 1s ease all;
  cursor: pointer;
  outline:none;
}
.close-btn:hover {
  color: grey;
  transform: rotate(360deg);
}
.logo {
  justify-self: center;
  align-items:center;
  height: 40px;
  margin:0.6em 1em;
}

.links{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.links a{
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  color: white;
  transition: 1s all ease;
}

.links a:hover{
  color: grey;
  transform:scale(1.2);
}
.social-icons {
  justify-self: center;
  display: flex;
  padding-bottom: 2rem;
}
.social-icons a {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: 1s all ease;
}
.social-icons a:hover {
  color: grey;
}


.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 1rem;
  transition: 1s all ease-in-out;
  transform: translate(100%);
  z-index: 9999;
}

.show-sidebar{
   transform: translate(0);
}

/*chat_page_css_start*/

.onlineImg img {height: 50px;width: 50px;object-fit: cover;border-radius: 100%;}

.chat_main {
    padding: 7% 0;
}

.chatOnline {
    padding: 20px;
    background: #004f61;
    border: 1px solid #004f61;
    border-radius: 15px;
}

.onlineText p {
    margin: 0 0 0 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}
.onlineImg:after {
    content: "";
    height: 10px;
    width: 10px;
    background: green;
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 40px;
}

.onlineImg {
    position: relative;
}
.chatdetail {
    text-align: center;
    background: #f5f5ff;
    padding: 20px 10px 20px;
    border-radius: 15px;
}

.chatdetail p {
    font-size: 13px;
    line-height: 23px;
    color: #000;
    font-weight: 400;
    margin: 0;
}

.chatdetail hr {opacity: 1;border-color: #004f61;}

.chatdetail img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 2px solid #004f61;
    padding: 2px;
    object-fit: cover;
}

.chatdetail ul li {
    margin: 0 10px 0;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    transition: all 0.6s;
    border: 1px solid #234e60;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatdetail ul li a {font-size: 20px;line-height: 25px;color: #234e60;}

.chatdetail ul {
    margin: 20px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.chatdetail ul li:hover {
    background: #234e60;
    transform: scale(1.1);
    transition: ease-in-out 0.6s;
}

.chatdetail ul li:hover a {
    color: #fff;
}
.chatdetail h4 {
    font-size: 20px;
    color: #000;
    line-height: 25px;
    font-weight: 500;
    margin: 20px 0 10px;
}
.chatBox {
    height: 80vh;
    overflow-y: scroll;
    padding: 0 10px 0 0px;
}

.chat_mesg {
    float: right;
    border: 1px solid #005163;
    background: #fff;
    padding: 10px;
    border-radius: 15px 15px 0px 15px;
    margin: 0 0 10px;
}

.chat_reply {
    float: left;
    background: #005062;
    padding: 10px;
    border-radius: 15px 15px 0px 15px;
    margin: 0 0 10px;
}

.chat_reply p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}

.chat_reply span {
    font-size: 12px;
    line-height: 19px;
    color: #fff;
    margin: 0px 0 5px;
    display: block;
    position: relative;
}

.chat_reply span:after {
    content: "";
    background: green;
    position: absolute;
    right: 140px;
    top: 4px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}
.chat_mesg span {
    font-size: 12px;
    line-height: 19px;
    color: #005062;
    margin: 0px 0 5px;
    display: block;
    position: relative;
}

.chat_mesg span:after {}

.chat_mesg p {
    font-size: 14px;
    line-height: 20px;
    color: #005062;
    margin: 0;
}
.textArea_Box textarea {
    background: #ffff;
    border: none;
    resize: none;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    margin: 20px 0 10px;
    padding: 10px;
    font-size: 15px;
    line-height: 20px;
    color: #000;
}
.textArea_Box button {
    color: #005062;
    margin: 0!important;
    border: 0;
    background: 0;
    font-size: 20px;
    float: right;
    display: block;
    position: relative;
    top: 1px;
}
.chatBoxMian {
    padding: 12px;
    background: rgb(213 213 213 / 24%);
    border: 0px solid #004f61;
    margin: 0 0 10px;
    display: inline-block;
    border-radius: 15px;
}

/* width */
.chatBox::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.chatBox::-webkit-scrollbar-track {
  background: #f5f5ff;
}

/* Handle */
.chatBox::-webkit-scrollbar-thumb {
  background: #eee;
}

/* Handle on hover */
.chatBox::-webkit-scrollbar-thumb:hover {
  background: #005062;
}

.chat {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}


.file-input__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input__label {
  cursor: pointer;
  color: #005062;
  font-size: 22px;
}

.file-input__label svg {
  height: 16px;
  margin-right: 4px;
}
.file-input {
    float: right;
    margin: 0 20px 0 0px;
}
.textArea_Box::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1; /* Firefox */
}

.textArea_Box:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

.textArea_Box::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
}

/*chat_page_css_end*/











@media screen and (min-width: 676px) {
  .sidebar {
    width: 400px;
  }
}

  ul.navbar-nav {
    margin: 0 0 0 auto;
}


.navigation .dropdown-menu {background:#234e60;min-width: 15rem;}

.navigation .dropdown-menu li{ }
.navigation .dropdown-menu li a{ color:#fff; padding:10px; font-size:13px; display:block; }
.navigation .dropdown-menu li a:hover{background: #d70e20;}
.navigation a.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    padding: 0 20px !important;
    color: #fff !important;
}

.navigation a.sell {
    background: #d70e20;
    padding: 6px 30px;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 30px;
}
/*FORM CSS*/
.step-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.step-formm-header h1 {
    font-size: 28px;
}


span.next .db-n {
    background: #000 !important;
}


span.next button#db-next {
    background-color: #005062 !important;
    color: #fff !important;
}

span.back button {
    color: #000 !important;
}

.youtube-redirect a:hover {
    background: #0004f5;
    color: #fff;
}

.form-footer footer {
    border-radius: unset;
}
.step {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* position: relative; */
}

.step.login .row {
    justify-content: center;
}


.creat-acc .step-formm-header {
    text-align: center;
}
.creat-acc a img {
    width: 23px;
    margin-right: 5px;
}

.creat-acc a {
    padding: 0.5rem 2rem;
    cursor: pointer;
    transition: .3s;
    transition: opacity .3s ease;
    font-weight: 500;
    background-color: #004f61;
    color: #fff;
    font-size: 1.5rem;
    display: inline-flex;
    border-radius: 6px;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.creat-acc .step-formm-body input:last-child {
    margin: 0 0 20px;
}

.creat-acc hr {
    border-bottom: 1px solid #000;
    margin: 10px 0;
}

.creat-acc .italic {font-style: italic;font-size: 11px;margin: 5px 0 5px;font-weight: 500;text-align: center;display: inline-block;color: #000000b0;width: 100%;}

.creat-acc .italic a {
    font-size: unset;
    background-color: unset;
    padding: unset;
    color: inherit;
    text-decoration: underline !important;
    display: inline;
}

.already-acc a {
    padding: 0;
    background: initial;
    color: #000;
    font-size: inherit;
    display: block;
    text-align: center;
    margin: 0;
    text-decoration: underline !important;
}


.already-acc {
    margin: 30px 0 0;
}

.login .next button#db-next {
    font-weight: 500;
    background-color: #fff;
    color: #222236;
    font-size: 1.5rem;
    display: inline-flex;
    border-radius: 6px;
    padding: 0.5rem 2rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: .3s;
    transition: opacity .3s ease;
    border: unset;
}
.creat-acc .step-formm-body input {
    width: 100%;
    border-radius: 6px;
    flex: 1 1 auto;
    width: 100%;
    white-space: nowrap;
    font-weight: 400;
    line-height: 20px;
    display: inline-flex;
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    margin: 0 0 20px;
    text-decoration: none;
    vertical-align: middle;
    word-break: normal;
    background: transparent;
    border: 1px solid #00000057;
    outline: 0;
    transition: color .24s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: auto;
    user-select: auto;
    min-height: 28px;
    cursor: text;
    padding: 0.5rem 1rem;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 1px rgba(60,66,87,.16), 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent;
    transition: background-color .24s,box-shadow .24s;
    transition-property: background-color,box-shadow;
    transition-duration: .24s,.24s;
    transition-timing-function: ease,ease;
    transition-delay: 0s,0s;
    resize: none;
    color: #000;
    background-color: transparent;
}
/*.step-formm-body span {
    display: block;
    margin: 20px 0 0;
    cursor: pointer !important;
    padding: 0 4px;
}*/
.step-formm-body p a {
    color: #000;
    text-decoration: underline !important;
}

.step-formm-body p {
    margin: 20px 0 0;
    font-size: 13px;
    font-weight: 500;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #007bff;
  color: #007bff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-formm-body button {
    font-weight: 500;
    background-color: #234e60;
    color: #ffffff;
    font-size: 1.5rem;
    display: inline-flex;
    border-radius: 6px;
    padding: 0.5rem 2rem;
    cursor: pointer;
    transition: .3s;
    transition: opacity .3s ease;
    border: unset;
    outline: none;
}

.step-formm-body input::-webkit-input-placeholder { /* Edge */
  color: #000;
}

.step-formm-body input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

.step-formm-body input::placeholder {
  color: #000;
}

.step-formm-body textarea::-webkit-input-placeholder { /* Edge */
  color: #000;
}

.step-formm-body textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

.step-formm-body textarea::placeholder {
  color: #000;
}



.step.two .step-formm-body input::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

.step.two .step-formm-body input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.step.two .step-formm-body input::placeholder {
  color: #fff;
}

.step.two .step-formm-body textarea::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

.step.two .step-formm-body textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.step.two .step-formm-body textarea::placeholder {
  color: #fff;
}


section.step-formm {
    background: #f5f5ff;
    color: #000;
    padding: 8% 0;
}

.step-formm-header {
    margin: 0 0px 30px;
}

.step-formm-body ul {
    margin: 0;
}

.step-formm-body ul li {
    padding: 0 0 20px;
    font-size: 13px;
    font-weight: 500;
}

.step.two .step-formm-body h6 {
    font-weight: 600;
    font-size: 13px;
    margin: 20px 0 0;
}

.step.two .step-formm-body .italic {
    font-style: italic;
    font-size: 11px;
    margin: 5px 0 5px;
    font-weight: 500;
}



.step-formm-body select {
    background-color: #234e60;
    color: #fff;
    box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 1px 1px 0 rgba(0,0,0,.12), 0 0 0 1px rgba(60,66,87,.16), 0 0 0 0 transparent, 0 0 0 0 transparent, 0 2px 5px 0 rgba(60,66,87,.08);
    position: static;
    z-index: 1;
    white-space: nowrap;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
    flex: 0 1 auto;
    margin: 0;
    text-decoration: none;
    vertical-align: middle;
    word-break: normal;
    border: 0;
    outline: 0;
    transition: color .24s;
    min-height: 28px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
}

.step.two .step-formm-body input[type="text"] {
    border-radius: 6px;
    flex: 1 1 auto;
    width: 40%;
    white-space: nowrap;
    font-weight: 400;
    line-height: 20px;
    display: inline-flex;
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    margin: 0;
    text-decoration: none;
    vertical-align: middle;
    word-break: normal;
    background: transparent;
    border: 0;
    outline: 0;
    transition: color .24s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: auto;
    user-select: auto;
    min-height: 28px;
    cursor: text;
    padding: 0.5rem 1rem;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 1px rgba(60,66,87,.16), 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent;
    transition: background-color .24s,box-shadow .24s;
    transition-property: background-color,box-shadow;
    transition-duration: .24s,.24s;
    transition-timing-function: ease,ease;
    transition-delay: 0s,0s;
    resize: none;
    color: #fff;
    background-color: #234e60;
    color: #fff;
}
.step.login .back button {
    padding: 0;
    color: #234e60;
    background: transparent;
    margin: 0;
    font-size: 21px;
    border: unset;
    font-weight: 600;
    outline: unset;
}

span.back {
    position: relative;
}

span.back button::after {
    content: '<';
    position: absolute;
    left: -18px;
    font-size: 19px;
    top: -6px;
    font-weight: 900;
}

div#charsCount {
    position: relative;
    left: 37%;
}

textarea {
    border-radius: 6px;
    flex: 1 1 auto;
    width: 40%;
    white-space: nowrap;
    font-weight: 400;
    line-height: 20px;
    display: inline-flex;
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    margin: 0;
    text-decoration: none;
    vertical-align: middle;
    word-break: normal;
    background: transparent;
    border: 0;
    outline: 0;
    transition: color .24s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: auto;
    user-select: auto;
    min-height: 28px;
    cursor: text;
    padding: 0.5rem 1rem;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 1px rgba(60,66,87,.16), 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent;
    transition: background-color .24s,box-shadow .24s;
    transition-property: background-color,box-shadow;
    transition-duration: .24s,.24s;
    transition-timing-function: ease,ease;
    transition-delay: 0s,0s;
    resize: none;
    color: #fff;
    background-color: #004f61;
    height: 100%;
}

div#charCount {
    position: relative;
    left: 37%;
}

.step.two .step-formm-body p {
    margin: 20px 0 0;
    font-size: 13px;
    color: #000000b0;
    font-family: 'Montserrat' !important;
    font-weight: 500;
}

.step.three textarea {
    font-size: 12px;
    height: 80px;
}

.step.two span.back button {
    padding: 0;
    color: #fff;
    background: transparent;
    margin: 0;
    font-size: 21px;
    font-weight: 600;
}
.step.three h5 {
    font-size: 14px;
    font-weight: 500;
    color: #000000b0;
    margin: 20px 0 20px;
}

span.filee input {opacity: 0;width: 100px;display: flex;height: 100px;position: relative;z-index: 999;cursor: pointer;}

span.filee {
    border: 1px solid #ccc;
    display: inline-block !important;
    padding: 12px 18px;
    cursor: pointer;
    vertical-align: top;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

span.filee::after {
    content: '+';
    top: 0;
    left: 0;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    font-size: 24px;
}
.step.two button {
    font-weight: 500;
    background-color: #005062;
    color: #fff;
    font-size: 1.5rem;
    display: inline-flex;
    border-radius: 6px;
    padding: 0.5rem 2rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: .3s;
    transition: opacity .3s ease;
    border: unset;
}

.form-footer footer {
    padding-top: 60px;
}

.youtube-redirect a {
    background: #ff0000;
    padding: 13px 30px;
    color: #fff;
}

.youtube-redirect i {
    font-size: 30px;
}

.step-number.active {
  background-color: #007bff;
  color: #fff;
}

.step-title {
  font-size: 16px;
  margin-top: 10px;
  color: #333;
  text-align: center;
}

.step::before {
  content: '';
  width: calc(33.33% - 50px);
  height: 4px;
  background-color: #ccc;
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}

.step:first-child::before {
  display: none;
}

.step.active ~ .step::before,
.step.active:last-child::before {
  background-color: #007bff;
}

.step.active:last-child::before {
  width: 50%;
}

.step.active .step-number {
  background-color: #007bff;
  color: #fff;
  border-color: #fff;
}

.step {
    display: none;
  }

  .step.active {
    display: block;
  }


.form-footer footer {
    position: inherit;
}

  .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
  }

  .button:hover {
    background-color: #0069d9;
  }

  .youtube-redirect {
    background-image: url(../images/youtube.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.step-formm .step-form {
    max-width: unset !important;
    display: block !important;
}


.navigation a.navbar-brand {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}

.navigation {
    padding: 10px 0 0;
}

.navigation .navbar-brand img{ width:170px}
.hero-banner-input {
    display: flex;
    align-items: center;
    background: #0000007a;
    border-radius: 10px;
    padding: 11px 15px;
    width: 70%;
    margin: 0 auto;
}

.hero-banner {
    position: absolute;
    top: 155px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    bottom: 0;
    height: fit-content;
}

.hero-banner-main {
    text-align: center;
}

.hero-banner-main {
    color: #fff;
}
.hero-select .btn-secondary,.hero-select .btn-secondary:hover{ background:#d70e20;}
.hero-banner-main h1 {
    font-weight: 700;
    line-height: 60px;
    min-height: 140px;
}

.hero-select select {
    background: #234e60;
    border: unset;
    color: #fff;
    font-family: montserrat;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 6px;
    outline: unset;
}

.hero-banner-input .btn-outline-secondary {
    border: unset;
    font-size: 20px;
}

.hero-banner-input .input-group input {
    background: transparent;
    border: unset;
    padding: 0 0 0 20px;
    outline: unset;
    box-shadow: none;
    color: #fff;
}

.hero-banner-input i {
    color: #fff;
}

.hero-banner-input input::-webkit-input-placeholder { /* Edge */
  color: #fff;
  font-family: 'Montserrat' !important;
  font-weight: 200;
}

.hero-banner-input input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
  font-family: 'Montserrat' !important;
  font-weight: 200;
}

.hero-banner-input input::placeholder {
  color: #fff;
  font-family: 'Montserrat' !important;
  font-weight: 200;
}

.prompt-category .container{/* max-width:100%; *//* margin-left:10%; */}
.prompt-category {
    border-radius: 50px 50px 0 0;
    padding: 80px 0;
    width: 100%;
    /* overflow-y: hidden; */
    background-color: #234e60;
    color: #fff;
    position: relative;
    margin: -30px 0 0;
}


.prompt-slider-main .slick-prev {
    left: auto;
    top: -50px;
    right: 70px;
}
.notification-icon {
  position: relative;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.notification-count {
  position: absolute;
  top: -11px;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #f00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  }
}


.prompt-slider-main .slick-prev:before {
    content: '\f177';
    font-family: fontawesome;
}

.prompt-slider-main .slick-next {
    right: 24px;
    top: -50px;
}

.prompt-slider-main .slick-next:before {
    content: '\f178';
    font-family: fontawesome;
    opacity: .50;
}

.prompt-slides img {
    background: #fff;
    width: 150px;
    height: 125px;
    object-fit: contain;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}

.prompt-slides {
    border-radius: 10px;
    text-align: center;
}

.prompt-slides h6 {
    color: #fff;
    margin: 20px auto;
    width: 70%;
    font-weight: 600;
}

.prompt-category h2 {
    font-weight: 700;
    margin: 0 0 40px;
}

.prompt-slider-main {
    /* width: 1321px; */
}

.prompt-products {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
}
.prompt-product-card img {
    width: 100%;
    margin: 0 0 10px;
}

.prompt-product-card p {
    font-weight: 300;
    font-size: 14px;
    margin: 0;
}

.prompt-product-card h6 {
    font-weight: 700;
}


.prompt-product-card h5 {
    color: #234e60;
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

.prompt-product-card a {
    background: #234e60;
    display: block;
    text-align: center;
    width: 80%;
    margin: 20px auto 0;
    color: #fff;
    transition: all 0.7s;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 0;
    border-radius: 25px;
}

.prompt-product-card a:hover {
    width: 80%;
    padding: 8px 20px 8px 0px;
}

.prompt-product-card {
    background: #f5f5ff;
    padding: 10px 14px;
    margin: 0 15px 0 0;
    border-radius: 9px;
    padding-bottom: 20px;
    transition: all 0.5s;
    border: 1px solid transparent;
}

section.prompt-market h2 {
    font-weight: 700;
}

.genratordiv{ padding:80px 0;}
.genratordiv img{ width:100%;}
.genratordiv .myForm{ border:1px solid #eee; border-radius:10px; background:#f5f5ff; padding:15px; margin-bottom:20px;}
.genratordiv .myForm h2{ font-size:22px; margin:10px;}
.genratordiv .myForm input{ border:0;font-size:17px; padding:20px;}
.genratordiv .myForm button { margin:30px 0 10px; color:#fff; padding:10px 40px;font-family: 'Montserrat' !important; border-radius:20px; font-weight:300; font-size:20px;    background-color: #004f61;}
section.prompt-market {
    padding: 80px 0;
}
.widget{ border:1px solid #eee; border-radius:10px; background:#f5f5ff; padding:15px; margin-bottom:20px;}
.widget li{ font-size:14px;}
.widget h4{ font-size:17px;}
.prompt-market-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}

.prompt-market-title a {
    color: #5a59cf;
    text-decoration: underline !important;
    font-weight: 700;
    font-size: 15px;
}

.prompt-market-title a i {
    margin: 0 0 0 8px;
    font-size: 17px;
    color: #234e60;
}

.prompt-product-card:hover {
    background: #004f61;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.prompt-product-card:hover p {
    color: #fff;
}

.prompt-product-card:hover h6 {
    color: #fff;
}

.prompt-product-card:hover h5 {
    color: #fff;
}

.prompt-product-card:hover a {
    background: #f5f5ff;
    color: #004f61;
}

.invert .prompt-market-title a {
    color: #ffffff;
}

section.prompt-market.invert {
    border-radius: 50px 50px 0 0;
    background-color: #004f61;
}

section.prompt-market.invert h2 {
    color: #fff;
}


.invert .prompt-market-title a i {
    color: #ffffff;
}

.invert .prompt-product-card:hover {
    border-color: #fff; 
}

.solution-cards-main {
    display: flex;
    justify-content: space-between;
}

.solution-cards img {
    width: 100%;
    margin: 0 0 25px;
    filter: grayscale(1);
}

.dashboard-side-menu li a img {
    filter: unset;
}

.dashboard-side-menu li.active a img {
    filter: invert(1);
}

.dashboard-side-menu li.active a {
    color: #fff;
    border-color: transparent; 
}
.solution-cards {
    margin: 0 12px;
}

.solution-title {
    text-align: center;
    margin: 0 0 50px;
}

.solution-title h2 {
    font-family: poppins !important;
    font-weight: 700;
    color: #000;
}

section.marketplace-solution {
    padding: 70px 0;
}

.solution-cards h6 {
    font-family: 'Poppins' !important;
    font-weight: 600;
}

.solution-cards:hover img {
    filter: unset;
}

.dashboard-side-menu li img {
    width: 20px;
    margin-right: 5px;
    filter: invert(1);
}

.prompt-slider-main-generated .prompt-slides {
    border-radius: 10px;
    background: #003c4a;
    text-align: left;
    padding: 20px 10px;
  min-height:300px;
  margin:10px;
}

.prompt-slider-main-generated .prompt-slides img {
    background: none;
    width: unset;
    height: unset;
    padding: 0;
    border-radius: 10px;
    margin: 0 0 20px;
}

.prompt-slider-main-generated .prompt-slides h6 {
    color: #fff;
    margin: 0 0 10px;
    width: 70%;
    font-weight: 500;
    font-family: 'Poppins' !important;
}

.prompt-slider-main-generated .prompt-slides p {
    font-size: 12px;
    width: 100%;
    font-family: 'Poppins' !important;
    font-weight: 200;
    line-height: 24px;
    margin: 0;
}

.prompt-slider-main-generated .slick-slide:not(.slick-active) {
    opacity: 0.5; 
}

.prompt-slider-main-generated .slick-prev {
    left: 92%;
    top: -35px;
}

.prompt-slider-main-generated .slick-prev:before {
    content: '\f177';
    font-family: fontawesome;
}

.prompt-slider-main-generated .slick-next {
    right: 3%;
    top: -35px;
}

.prompt-slider-main-generated .slick-next:before {
    content: '\f178';
    font-family: fontawesome;
    opacity: .50;
}


@keyframes shrink {
    0% {
        color: green;
        transform: scale(2);
    }

    100% {
        transform: scale(1);
        color: grey;
    }
}

@keyframes grow {
    0% {
        transform: scale(1);
        color: grey;
    }

    100% {
        transform: scale(2);
        color: green;
    }
}



.animate {
    transform: translate3d(0,0,0);
    perspective: 1000;
    filter: blur(0);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    transform-origin: center left;
  
}

.animate--shrink {
    animation-duration: 1s;
    animation-name: shrink;
    animation-timing-function: 'linear';
}

.animate--grow {
    animation-duration: 1s;
    animation-timing-function: 'linear';
    animation-name: grow;
}




.hero__title .slick-slide{
    overflow: hidden;
    padding: 0 0 10px;
}

.hero__title [aria-hidden]{
    transition: 1s;
}

.hero__title .slick-current > span{
    box-sizing: border-box;
    display: block;
    @extend .animate--shrink;
}

.hero__title .slick-current + .slick-slide > span{
    @extend .animate--grow;
}

.no-js .hero__title .slick-dupe:nth-child(2) > span{
    padding: 1em;
    @extend .animate--grow;
}



.hero__title-misc{
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: grey;
}

.earn-from-main {
    background: #03020e;
    border-radius: 10px;
    z-index: 16;
    position: relative;
}

.earn-left h3 {
    font-size: 32px;
    color: #fff;
    font-family: poppins !important;
    font-weight: 500;
    margin-bottom: 30px;
}

.earn-left a.chat {
    background-color: #234e60;
    color: #fff;
    padding: 11px 25px;
    font-family: poppins !important;
    font-weight: 300;
    border-radius: 25px;
    border: 1px solid transparent;
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

.earn-left a.contact {
    background-color: transparent;
    color: #fff;
    padding: 11px 25px;
    font-family: poppins !important;
    font-weight: 300;
    border-radius: 39px;
    border: 1px solid #fff;
    display: inline-block;
    width: auto;
}

.earn-left a.call {
    color: #fff;
    font-family: 'Poppins' !important;
    display: flex;
    align-items: center;
    margin: 25px 0px 0;
}

.earn-left a.call i {
    font-size: 25px;
}

.hero__title-misc img {
    width: 100% !important;
    height: 130px !important;
    object-fit: cover;
    border-radius: 14px;
}

.hero__title.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    touch-callout: none;
    user-select: none;
    touch-action: pan-y;
    tap-highlight-color: transparent;
    padding-top: 0;
    height: 100%;
    overflow: hidden;
}

#animatedHeading-two{
    direction: rtl;
}

#animatedHeading-four{
    direction: ltr;
}

.slider-container {
  display: flex;
}

.slider {
  height: 400px;
  width: 300px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}

.slider-1 {
  transform: translateY(0);
}

.slider-2 {
  transform: translateY(100%);
}

.earn-left {
    padding: 60px 0px 60px 50px;
}

section.earn-from {
    margin: 110px 0 0;
}

.social-icons ul {
    display: flex;
}

.social-icons li {
    margin: 0 20px 0 0;
    background: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons i {
    color: #05252d;
    font-size: 20px;
}



.social-icons li:hover {
    transform: rotate(360deg) scale(1.4);
    background: #1cbdf2;
    border-color: #00c0f3;
}

footer {
    background: #10242d;
    color: #fff;
    position: relative;
    top: -340px;
    z-index: 2;
    padding: 340px 0 0;
    border-radius: 50px 50px 0 0;
}

.logo-here h3 {
    font-weight: 900;
    font-family: 'Poppins' !important;
}

.logo-here p {
    font-weight: 200;
    font-family: 'Poppins' !important;
    font-size: 14px;
}

.f-menu a {
    color: #9c99af;
    font-weight: 400;
    font-size: 14px;
}

.f-menu li {
    padding: 0 0 16px;
}

.f-menu h4 {
    margin: 0 0 35px;
    font-family: 'Poppins' !important;
    font-weight: 400;
    font-size: 18px;
}

.f-menu p {font-weight: 300 !important;font-size: 13px;}

.newsletter-btn input {
    background: transparent;
    border: unset;
    color: #fff;
    font-size: 14px;
}

.newsletter-btn button {
    background: #234e60;
    border: unset;
    font-size: 13px;
    color: #fff;
    border-radius: 28px;
    font-family: poppins !important;
    font-weight: 300;
    padding: 6px 20px;
}

.newsletter-btn {
    background: #283a42;
    padding: 5px 10px;
    border-radius: 30px;
}

.newsletter-btn .form-control:focus {
    color: #fff;
    background-color: transparent;
    outline: 0;
    box-shadow: unset;
    border-color: transparent !important;
}

.f-menu input::-webkit-input-placeholder { /* Edge */
  color: #fff;
  font-family: 'poppins' !important;
}

.f-menu input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
  font-family: 'poppins' !important;
}

.f-menu input::placeholder {
  color: #fff;
  font-family: 'poppins' !important;
}

p.bottomm {
    background: #234e60;
    text-align: center;
    font-family: poppins !important;
    font-weight: 300;
    font-size: 13px;
    padding: 8px 0;
    margin: 0;
}

footer .row {
    margin-bottom: 30px;
}

.navigation button:focus {
    outline: 1px dotted;
    outline: unset !important;
}

.scroll-down a {
    font-size: 55px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    transition: all 0.9s ease-in-out;
}

a.scroll[href*="#"] {
  transition: all 0.9s ease-in-out;
  cursor: pointer;
}

.scroll-down a i {
    font-size: 25px;
    padding: 13px 20px;
    border-radius: 50%;
    color: #004f61;
    background: #fff;
}

.scroll-down {
    position: absolute;
    top: -48px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

/* sign in FORM */
#logreg-forms{
    /* width:412px; */
    margin: 0vh auto;
    /* background-color:#f3f3f3; */
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
#logreg-forms form {
    /* width: 100%; */
    /* max-width: 410px; */
    padding: 15px;
    margin: auto;
}
#logreg-forms .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
#logreg-forms .form-control:focus { z-index: 2; }
#logreg-forms .form-signin input[type="email"] {
    margin-bottom: 14px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
#logreg-forms .form-signin input[type="password"] {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.my-btn{  font-family: 'Montserrat' !important; font-weight:300 !important;   background: #234e60; font-size:16px !important; padding:12px !important; border-radius:30px !important; color:#fff; !important;;}

#logreg-forms .social-login{
    /* width:390px; */
    margin:0 auto;
    margin-bottom: 14px;
    text-align: center;
}
#logreg-forms .social-btn{
    font-weight: 100;
    color:white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.9rem;
}

#logreg-forms a{
    display: block;
    padding-top:10px;
    color: #234e60;
}

#logreg-form .lines{
    width:200px;
    border:1px solid red;
}


#logreg-forms button[type="submit"]{ margin-top:10px; }

#logreg-forms .facebook-btn{  background-color:#3C589C; }

#logreg-forms .google-btn{ background-color: #DF4B3B; }

/* #logreg-forms .form-reset, #logreg-forms .form-signup{ display: none; } */

#logreg-forms .form-signup .social-btn{/* width:210px; */}

#logreg-forms .form-signup input {margin-bottom: 11px;}

.form-signup .social-login{
    width:210px !important;
    margin: 0 auto;
}

/* Mobile */

@media screen and (max-width:500px){
    #logreg-forms{
        width:300px;
    }
    
    #logreg-forms  .social-login{
        width:200px;
        margin:0 auto;
        margin-bottom: 10px;
    }
    #logreg-forms  .social-btn{
        font-size: 1.3rem;
        font-weight: 100;
        color:white;
        width:200px;
        height: 56px;
        
    }
    #logreg-forms .social-btn:nth-child(1){
        margin-bottom: 5px;
    }
    #logreg-forms .social-btn span{
        display: none;
    }
    #logreg-forms  .facebook-btn:after{
        content:'Facebook';
    }
  
    #logreg-forms  .google-btn:after{
        content:'Google+';
    }
    
}
.productmd3-slider{ height:600px; overflow-y:scroll}

.productmd3-slider::-webkit-scrollbar {
  width: 10px;
}
 
.productmd3-slider::-webkit-scrollbar-track {
  background:#eee;
}
 
.productmd3-slider::-webkit-scrollbar-thumb {
  background-color: #234e60;
  outline: 1px solid white;
}
.productmd3-slider img{ width:100%; margin:10px 0;}
.listing-detail{ margin:80px 0;}
.productdetail-info ul li{ display:inline-block; margin:5px;}
.productdetail-info ul li a{  font-size:14px; color:#787878;}
.dollar h4{ font-size:30px;}
.dollar h4 span{ font-size:18px;}
.product-mainbtn a{
    background: #234e60;
    padding: 12px 30px;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin:20px 0;
    display:inline-block;
}
.product-mainbtn .prompt-paynow{
    background: #234e60;
    padding: 12px 30px;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin:20px 0;
    display:inline-block;
    border: 0;
}
.product-mainbtn a:hover{ color:#fff;}

.prompt-market.hire .nav-tabs{ margin:0 0 50px 0}
.prompt-market.hire .nav-tabs li a{ border-radius:20px; border:0; font-size:13px; border:1px dashed #234e60; color:#234e60;}
.prompt-market.hire .nav-tabs li a.active{ background:#234e60; color:#fff;}
.prompt-market.hire .nav-tabs li { margin:5px;}
.prompt-market.hire .nav-tabs { border:0; font-size:13px;}


.profile-page .nav-tabs{ margin:0 0 50px 0}
.profile-page .nav-tabs li a{ border-radius:20px; border:0; font-size:13px; border:1px dashed #234e60; color:#234e60;}
.profile-page .nav-tabs li a.active{ background:#234e60; color:#fff;}
.profile-page .nav-tabs li { margin:5px;}
.profile-page .nav-tabs { border:0; font-size:13px;}


.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}



.dropdown {
  position: relative;
  display: inline-block;
}

.set-fld {
    display: flex;
    align-items: center;
}

.set-fld span {
    margin: 0;
    font-weight: 500;
    font-size: 30px;
    margin-right: 5px;
}

.set-fld input {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #000;
    min-height: 28px;
    border-radius: 6px;
    outline: unset;
    border: 1px solid #234e60;
}


.username-setting table {
    width: 65%;
}

.dashboard-body.up-pass textarea {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #000;
    min-height: 28px;
    border-radius: 6px;
    outline: unset;
    border: 1px solid #234e60;
    width: 100%;
    margin: 0 0 20px;
}
.dashboard-body.up-pass input {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #000;
    min-height: 28px;
    border-radius: 6px;
    outline: unset;
    border: 1px solid #234e60;
    width: 100%;
    margin: 0 0 20px;
}

.dashboard-body.up-pass label {
    font-weight: 700;
    font-size: 13px;
    margin: 0 0 6px;
    display: block;
}

.dashboard-body.up-pass p {
    font-weight: 600;
    margin: 15px 0 20px;
}

.dashboard-body.up-pass button {
    display: block;
    margin-top: 40px;
}


.logoutt .step-formm-body {
    text-align: center;
}

.logoutt .step-formm-body button {
    margin: 0 auto;
}

.logoutt .step-formm-body h1 {
    margin: 0 0 10px;
}
.dashboard-body.up-pass .prompt-products {
    margin-top: 40px;
}

.dashboard-side-menu li.active {
    background: #d70e20;
    border-color: transparent;
}
.dashboard-side-menu {
    padding: 30px 20px;
    padding-left: 0;
}

.dashboard-side-menu ul {
    padding: 0;
}

.dashboard-side-menu li {
    background: transparent;
    margin: 0 0 15px;
    padding: 8px 8px;
    border-radius: 4px;
    border: 1px solid  #0684a1;
}

.account-head {
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f5f5ff;
    margin: 0 0 30px;
    display: inline-block;
}

.username-setting h1 img {
    width: 20px;
}

.username-setting h1 {
    border: 1px solid #eee;
    border-radius: 4px;
    background: #f5f5ff;
    display: inline-block;
    padding: 4px 10px;
}

.dashboard-side-menu li a {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 500;
}

.dashboard-body button {
    font-weight: 500;
    background-color: #005062;
    color: #fff;
    font-size: 17px;
    display: inline-flex;
    border-radius: 6px;
    padding: 0.5rem 2rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: .3s;
    transition: opacity .3s ease;
    border: unset;
}

.dashboard-head h1 {
    font-size: 2rem;
    font-weight: 500;
}

section.dashboard {
    padding: 30px 0 0;
}

.dashboard-head {
    border-bottom: 1px solid #004f61;
}

.dashboard-body h1 {
    font-size: 24px;
    margin: 0 0 0;
}

.dashboard-body {
    padding: 30px 0 20px;
}

.dashboard-body .italic {font-style: italic;font-size: 11px;margin: 5px 0 5px;}

.dashboard-body h6 {
    font-weight: 700;
    font-size: 13px;
    margin: 20px 0 0;
}

.username-setting {
    margin: 35px 0 0;
}

.username-setting 
 tbody tr {border-bottom: 1px solid #000;}


.dashboard-body .set-fld button#set {
    padding: 9px 18px;
    font-size: unset;
    font-weight: 500;
    margin-left: 16px;
    border: 1px solid #004f61;
    background: #fff;
    color: #000;
    margin-top: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  text-align:left;
  background-color: #234e60;
  min-width: 240px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 10px;
  font-size:13px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {color:#fff;background: #d70e20;}
.dropdown a:hover {/* background-color: #ddd; */}

.show {display: block;}

.profile-page{ margin:80px 0; }
.profile-page .coverpg img{ width:100%; height:300px; object-fit:cover; border-radius:20px;}
.coverpg { position:relative;}
.coverpg .social-icons{position:absolute;bottom: 0px;right: 14px;padding:0;}
.coverpg .social-icons li {width:30px;height:30px;margin: 5px;}
.proBar {}
.proBar .myprofile img{ width:110px; height:110px; border-radius:50%; border:5px solid #eee; float:left;}
.profile-info .profile-item svg{ width:22px; margin-right:10px; color:#234e60; }
.proBar .myprofile h4{font-size:18px;margin: 10px;}
.proBar .myprofile{
  margin:0 20px;
 display:flex;
 align-items: center;
 top: -21px;
 position: relative;
 }
.profile-info .profile-item{
    padding: 20px 10px;
    color:#234e60;
    font-family: 'Montserrat' !important;
    display: flex;
    }
.profile-info { display:flex; float:right;}



/*BENEFITS PAGE CSS START*/

.stone-img img {
    width: 60%;
    margin: 0 auto 10px;
}

.prompt-products.stone-card .prompt-product-card {
    text-align: center;
}

.prompt-products.stone-card .prompt-product-card ul {
    padding-left: 10px;
    margin: 20px 0 0;
    text-align: left;
}

.prompt-products.stone-card .prompt-product-card ul li strong {
    font-size: 12px;
}

.prompt-products.stone-card .prompt-product-card ul li {
    font-size: 13px;
    padding: 0 0 5px;
}


.prompt-products.stone-card .prompt-product-card:hover li {
    color: #fff;
}

.stone-invertt {
    margin: 70px 0 0;
}



@media only screen and (min-width: 1366px) and (max-width: 1920px){}
@media only screen and (min-width: 1200px) and (max-width: 1365px){}
@media only screen and (min-width: 992px) and (max-width: 1199px){}
@media only screen and (min-width: 768px) and (max-width: 991px){}
@media only screen and (min-width: 520px) and (max-width: 767px){}
@media only screen and (min-width: 300px) and (max-width: 519px){}