

  /* start compliment section styles*/
/**
 * Fixed Spacing Variables:
 * Though we can use relative units for most cases, we still need some fixed variable to overcome some drawbacks of relative units.
 * Example we don't want the left and right side padding of container to be increased relatively to the font-size.
 * The vertical spacing between two modules to be same regardless of increasing the font-size.
 * The spacing scale is a base-8 scale. We chose a base-8 scale because eight is a highly composable number (it can be divided and multiplied many times and result in whole numbers), yet allows spacing dense enough for UI. The scale's exception is that it begins at 4px to allow smaller padding and margin for denser parts of the site, from there on it steps up consistently in equal values of 8px. Refer https://primer.style/css/support/
*/
/* Em Based Spacing Variables:
 * Useful for buttons and form elements.
 * Refer https://primer.style/css/spacing/
*/
/* stylelint-disable scss/at-mixin-pattern */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fahkwang:wght@300;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montaga&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-weight: 400;
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* stylelint-disable selector-max-type */
html {
  background-color: #ffffff;
  font-family: "Helvetica";
  font-size: 16px;
  /* stylelint-disable-line */
  width: 100%;
  min-height: 100%;
  overflow: initial;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Helvetica";
  font-weight: 400;
  line-height: 1.4;
  font-size: 100%;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

button,
input,
label {
  font-family: "Helvetica";
}

a,
button,
input {
  outline: none;
  box-shadow: none;
}
a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

a, a:hover {
  text-decoration: none;
}

.cover,
.background {
  position: relative;
  overflow: hidden;
}

.clearfix {
  clear: both;
}

.hide {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-family: "Cormorant Garamond", serif;
}

h1,
.sc-h1 {
  font-size: 1.5rem;
  line-height: 1.25;
}
@media (min-width: 600px) {
  h1,
.sc-h1 {
    font-size: 2.125rem;
  }
}

h2,
.sc-h2 {
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: 600;
  color: #20BBB1;
}
@media (min-width: 600px) {
  h2,
.sc-h2 {
    font-size: 1.875rem;
  }
}

h3,
.sc-h3 {
  font-size: 1.1875rem;
  line-height: 1.25;
}
@media (min-width: 600px) {
  h3,
.sc-h3 {
    font-size: 1.5rem;
  }
}

h4,
.sc-h4 {
  font-size: 1.125rem;
  line-height: 1.25;
}
@media (min-width: 600px) {
  h4,
.sc-h4 {
    font-size: 1.375rem;
  }
}

h5,
.sc-h5 {
  font-size: 1rem;
  line-height: 1.25;
}
@media (min-width: 600px) {
  h5,
.sc-h5 {
    font-size: 1.25rem;
  }
}

h6,
.sc-h6 {
  font-size: 1rem;
  line-height: 1.25;
}
@media (min-width: 600px) {
  h6,
.sc-h6 {
    font-size: 1.125rem;
  }
}

p,
li {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 8px;
}

p {
  line-height: 1.5;
}

.sc-content-wrapper {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1404px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .sc-content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.helper-svg-gradients {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

/* stylelint-disable selector-max-type */
sup {
  vertical-align: super;
  font-size: 50%;
  /* stylelint-disable-line */
  line-height: 0;
}

sub {
  vertical-align: sub;
  font-size: 50%;
  /* stylelint-disable-line */
  line-height: 0;
}

/* stylelint-enable selector-max-type */
.sc-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

.no-scroll {
  position: fixed;
  height: 100%;
  top: 0;
  overflow: hidden;
}

.desktop,
.only-desktop {
  display: none;
}

.mobile,
.only-mobile {
  display: block;
}

@media (min-width: 600px) {
  .desktop,
.only-desktop {
    display: block;
  }

  .mobile,
.only-mobile {
    display: none;
  }
}
/* stylelint-enable selector-max-type */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff2") format("woff2"), url("../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.woff2") format("woff2"), url("../fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Julietta Messie";
  src: url("../fonts/JuliettaMessie.woff2") format("woff2"), url("../fonts/JuliettaMessie.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.special-font {
  font-family: "Julietta Messie";
}

.title-font-viaoda h2, .title-font-viaoda h6 {
  font-family: "Viaoda Libre";
}

.para-font-viaoda p {
  font-family: "Viaoda Libre";
}

.title-font-cormorant h2, .title-font-cormorant h6 {
  font-family: "Cormorant Garamond", serif;
}

.para-font-cormorant p {
  font-family: "Cormorant Garamond", serif;
}

.title-font-helvetica h2, .title-font-helvetica h6 {
  font-family: "Helvetica";
}

.para-font-helvetica p {
  font-family: "Helvetica";
}

.title-font-julietta h2, .title-font-julietta h6 {
  font-family: "Julietta Messie";
}

.para-font-julietta p {
  font-family: "Julietta Messie";
}

.title-font-great-vibes h2, .title-font-great-vibes h6 {
  font-family: "Great Vibes";
}

.title-only-font-great-vibes h2 {
  font-family: "Great Vibes";
}

.h6-only-font-great-vibes h6 {
  font-family: "Great Vibes";
}

.para-font-great-vibes p {
  font-family: "Great Vibes";
}

.title-font-poppins h2, .title-font-poppins h6 {
  font-family: "Poppins";
}

.title-only-font-poppins h2 {
  font-family: "Poppins";
}

.h6-only-font-poppins h6 {
  font-family: "Poppins";
}

.para-font-poppins p {
  font-family: "Poppins";
}

.title-font-fahkwang h2, .title-font-fahkwang h6 {
  font-family: "Fahkwang";
}

.title-only-font-fahkwang h2 {
  font-family: "Fahkwang";
}

.h6-only-font-fahkwang h6 {
  font-family: "Fahkwang";
}

.para-font-fahkwang p {
  font-family: "Fahkwang";
}

.title-font-space-grotesk h2, .title-font-space-grotesk h6 {
  font-family: "Space Grotesk";
}

.title-only-font-space-grotesk h2 {
  font-family: "Space Grotesk";
}

.h6-only-font-space-grotesk h6 {
  font-family: "Space Grotesk";
}

.para-font-space-grotesk p {
  font-family: "Space Grotesk";
}

.title-font-montaga h2, .title-font-montaga h6 {
  font-family: "Montaga";
}

.title-only-font-montaga h2 {
  font-family: "Montaga";
}

.h6-only-font-montaga h6 {
  font-family: "Montaga";
}

.para-font-montaga p {
  font-family: "Montaga";
}

.font-1 h6 {
  font-family: "Viaoda Libre";
}
.font-1 h2 {
  font-family: "Viaoda Libre";
}
.font-1 p {
  font-family: "Cormorant Garamond", serif;
}
.fontstyle-1 {
  font-family: "Viaoda Libre";
}
.font-2 h6 {
  font-family: "Poppins";
}
.font-2 h2 {
  font-family: "Great Vibes";
}
.font-2 p {
  font-family: "Poppins";
}
.fontstyle-2 {
  font-family: "Great Vibes";
}
.font-3 h6 {
  font-family: "Comfortaa";
}
.font-3 h2 {
  font-family: "Comfortaa";
  font-weight: 500;
}
.font-3 p {
  font-family: "Poppins";
}
.fontstyle-3 {
  font-family: "Comfortaa";
}
.font-4 h6 {
  font-family: "Comfortaa";
}
.font-4 h2 {
  font-family: "Dancing Script";
}
.font-4 p {
  font-family: "Poppins";
}
.fontstyle-4 {
  font-family: "Dancing Script";
}
.font-5 h6 {
  font-family: "Poppins";
}
.font-5 h2 {
  font-family: "Pacifico";
}
.font-5 p {
  font-family: "Cormorant Garamond", serif;
}
.fontstyle-5 {
  font-family: "Pacifico";
}
.font-6 h6 {
  font-family: "Montaga";
}
.font-6 h2 {
  font-family: "Great Vibes";
}
.font-6 p {
  font-family: "Montaga";
}
.fontstyle-6 {
  font-family: "Great Vibes";
}
img {
  pointer-events: none;
}

.op-0 {
  opacity: 0;
}

label {
  font-family: "Helvetica";
}

.gray-bg {
  background: #F2F3F0;
}

.p-btn {
  padding: 10px 30px;
  display: inline-block;
  border-radius: 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-style: italic;
}
.p-btn.blue {
  background: #20BBB1;
  color: #ffffff;
  border: 1px solid #20BBB1;
}
.p-btn.white {
  background: #ffffff;
  color: #20BBB1;
}
.p-btn.small {
  padding: 6px 19px;
}
.p-btn:hover {
  background: #20BBB1;
  color: #ffffff;
}

.s-btn {
  padding: 10px 30px;
  display: inline-block;
  border: 1px solid;
  border-radius: 50px;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.125rem;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.s-btn.blue {
  color: #20BBB1;
  border-color: #20BBB1;
}
.s-btn.green {
  color: #5F5E48;
  border-color: #5F5E48;
}
.s-btn.white {
  border-color: #ffffff;
  color: #ffffff;
}
.s-btn.small {
  padding: 6px 19px;
}
.s-btn:hover {
  background: #20BBB1;
  color: #ffffff;
  border: 1px solid #20BBB1;
}

h2 {
  color: #5F5E48;
  text-transform: capitalize;
}
@media (max-width: 599.98px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  text-transform: capitalize;
}

.title {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 599.98px) {
  .title {
    margin-bottom: 50px;
  }
}
.title h2 {
  font-size: 38px;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
}
.title h3 {
  position: relative;
  color: #D1DBCD;
  font-family: "Julietta Messie";
  font-size: 200px;
  line-height: 10px;
  z-index: 1;
  text-transform: capitalize;
}
@media (max-width: 599.98px) {
  .title h3 {
    font-size: 96px;
  }
}

.group {
  position: relative;
  border: 1px solid #D1DBCD;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 14px 24px;
  margin-bottom: 10px;
  min-height: 55px;
  position: relative;
  /* active state */
  /* BOTTOM BARS ================================= */
  /* active state */
  /* HIGHLIGHTER ================================== */
  /* active state */
}
.group input, .group textarea {
  border: 0;
  width: 100%;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.group label {
  color: #2b2929;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 25px;
  top: 16px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.group input:focus ~ label,
.group input:valid ~ label,
.group textarea:focus ~ label,
.group textarea:valid ~ label {
  top: 0;
  font-size: 12px;
  color: #666666;
}
.group .bar {
  position: relative;
  display: block;
  width: 300px;
}
.group .bar:before,
.group .bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.group .bar:before {
  left: 50%;
}
.group .bar:after {
  right: 50%;
}
.group input:focus ~ .bar:before,
.group input:focus ~ .bar:after {
  width: 50%;
}
.group .highlight {
  position: absolute;
  height: 60%;
  width: 100%;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.group input:focus ~ .highlight,
.group textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}
.group.search-input {
  padding-left: 50px;
  background-image: url(../images/search.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 16px 16px;
}
.group.search-input label {
  left: 50px;
}

.ad-btn {
  display: flex;
  position: relative;
}
.ad-btn .group {
  width: 100%;
  border-radius: 30px;
  background: #F2F3F0;
}
.ad-btn .group input {
  background: transparent;
}
.ad-btn .p-btn {
  position: absolute;
  right: 5px;
  top: 4px;
  padding: 10px 30px;
}

.search-area {
  margin-bottom: 30px;
}
.search-area .container {
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}
.search-area .search-box {
  width: 390px;
  margin-right: 20px;
}
.search-area .sort {
  width: 250px;
}

.sort .sort-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sort .sort-box p {
  width: 50px;
  margin-bottom: 0;
}
.sort .sort-box select {
  width: calc(100% - 45px);
  margin-left: 5px;
  border: 0;
  color: #5F5E48;
  font-size: 0.875rem;
  font-weight: bold;
  background: transparent;
}

.page-nav .container {
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-nav .sort {
  width: 250px;
}
.page-nav nav .page-item {
  margin-left: 10px;
}
.page-nav nav .page-item.active .page-link {
  border: 2px solid #5F5E48;
  background-color: #ffffff;
  font-weight: bold;
  color: #5F5E48;
}
.page-nav nav .page-link, .page-nav nav a, .page-nav nav strong {
  min-height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D1DBCD;
  border-radius: 4px;
  overflow: hidden;
  color: #5F5E48;
  margin-left: 5px;
}
.page-nav nav .page-link.active, .page-nav nav a.active, .page-nav nav strong.active {
  border: 2px solid #5F5E48;
  background-color: #ffffff;
  font-weight: bold;
  color: #5F5E48;
}
.page-nav nav strong {
  border: 2px solid #5F5E48;
  background-color: #ffffff;
  font-weight: bold;
  color: #5F5E48;
}

.event-content h4 {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #5F5E48;
  font-weight: bold;
  font-family: "Helvetica";
}
.event-content .event-temp-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599.98px) {
  .event-content .event-temp-list {
    flex-wrap: wrap;
  }
}
.event-content .event-temp-list .item {
  width: 18%;
}
@media (max-width: 599.98px) {
  .event-content .event-temp-list .item {
    width: 45%;
    margin-bottom: 20px;
  }
}
.event-content .event-temp-list .item .img-box {
  width: 100%;
  height: 282px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.event-content .event-temp-list .item .img-box img {
  width: 100%;
}
.event-content .event-temp-list .item a {
  display: block;
  width: 170px;
  /* margin-top: 30px; */
  margin-top: 5px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 5px;
  text-align: center;
  margin-bottom: 40px;
}
.event-content .event-temp-list .item:hover .img-box {
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
}

.event-type {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 599.98px) {
  .event-type {
    width: 100%;
  }
}
.event-type label {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  color: #ABB4B6;
}
.event-type select {
  width: 100% !important;
  cursor: pointer;
}

.choose-box {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 30px;
}
.choose-box .item {
  width: calc(20% - 10px);
  margin-right: 5px;
  margin-bottom: 10px;
  margin-left: 5px;
}
@media (max-width: 599.98px) {
  .choose-box .item {
    width: calc(50% - 10px);
  }
}
.choose-box .item input {
  display: none;
}
.choose-box .item input:checked + label {
  background: #59C3B9;
  color: #ffffff;
}
.choose-box .item label {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  background: #ffffff;
  font-size: 12px;
  color: #5F5E48;
  border-radius: 4px;
  border: 1px solid #D1DBCD;
  text-align: center;
  min-height: 56px;
}

.date-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.date-time .date-box,
.date-time .time-box {
  width: calc(50% - 5px);
}
.date-time .date-box input,
.date-time .time-box input {
  padding: 0 20px;
  min-height: 52px;
  width: 100%;
  background: #ffffff;
  color: #5F5E48;
  border-radius: 4px;
  border: 1px solid #D1DBCD;
  position: relative;
}
.date-time .date-box input::-webkit-inner-spin-button, .date-time .date-box input::-webkit-calendar-picker-indicator,
.date-time .time-box input::-webkit-inner-spin-button,
.date-time .time-box input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 70%;
  height: 100%;
  color: transparent;
  right: 0;
  opacity: 0;
  z-index: 4;
}
.date-time .date-box .time,
.date-time .time-box .time {
  background-image: url(../images/time-icon.svg);
  background-position: 94% 14px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.date-time .date-box input {
  background-image: url(../images/date-icon.svg);
  background-position: 94% 14px;
  background-size: 20px;
  background-repeat: no-repeat;
  text-transform: uppercase;
}

.s-box {
  margin-bottom: 80px;
  display: block;
}
.s-box .img-box {
  height: 200px;
  overflow: hidden;
  margin-bottom: 30px;
}
.s-box .img-box img {
  width: 100%;
}
.s-box h3, .s-box h4 {
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 30px;
  color: #5F5E48;
}
.s-box p {
  line-height: 180%;
  color: #4f6165;
}

#signup-popup p {
  margin-top: 30px;
  font-size: 14px;
  color: #5F5E48;
  opacity: 0.6;
}

#confirm-box-popup h2 {
  margin-bottom: 10px !important;
}
#confirm-box-popup p {
  font-size: 14px;
  text-align: center;
}
#confirm-box-popup .btn-box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#confirm-box-popup .btn-box a:first-child {
  margin-right: 10px;
}

.signup-box button {
  display: block;
  width: 100%;
  padding: 20px 37px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  border: transparent;
}
.signup-box button svg {
  height: 20px;
  margin-right: 20px;
}
.signup-box button span {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
}
.signup-box button.fb-signup {
  background: #3B5797;
}
.signup-box button.twitter-signup {
  background: #00ACEF;
}
.signup-box button.google-signup {
  background: #DD4D39;
}

.profile-details {
  margin-top: 130px;
}
.profile-details .inner-profile {
  margin-bottom: 30px;
}

.inner-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
}
@media (max-width: 599.98px) {
  .inner-profile {
    display: block;
  }
}
.inner-profile .profile-box {
  display: flex;
  align-items: center;
}
@media (max-width: 599.98px) {
  .inner-profile .profile-box {
    display: block;
  }
}
.inner-profile .profile-box .profile-img {
  position: relative;
}
@media (max-width: 599.98px) {
  .inner-profile .profile-box .profile-img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
}
.inner-profile .profile-box .profile-img .img-box {
  width: 120px;
  height: 120px;
  border-radius: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-profile .profile-box .profile-img .img-box img {
  width: auto;
  height: 100%;
}
.inner-profile .profile-box .profile-img .img-upload {
  width: 36px;
  height: 36px;
  background: #0173FF;
  border: 3px solid #ffffff;
  border-radius: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.inner-profile .profile-box .profile-text {
  padding-left: 40px;
}
@media (max-width: 599.98px) {
  .inner-profile .profile-box .profile-text {
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }
}
.inner-profile .profile-box .profile-text h3 {
  font-family: "Helvetica";
  font-weight: bold;
  font-size: 20px;
  color: #393939;
  margin-bottom: 5px;
}
.inner-profile .profile-box .profile-text a {
  display: block;
  color: #ABB4B6;
  margin-bottom: 5px;
}
.inner-profile .profile-buttons {
  display: flex;
  align-items: center;
}
@media (max-width: 599.98px) {
  .inner-profile .profile-buttons {
    justify-content: center;
    margin-top: 20px;
  }
}
.inner-profile .profile-buttons button {
  border: 0;
  width: 48px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-left: 10px;
}
.inner-profile .profile-buttons button:after {
  display: none;
}
.inner-profile .profile-buttons .p-edit button {
  background: #20BBB1;
}
.inner-profile .profile-buttons .p-edit button svg {
  width: 18px;
}
.inner-profile .profile-buttons .p-option button {
  background: #EBEDF0;
}
.inner-profile .profile-buttons .p-option button svg {
  width: 15px;
}

.tab-page-link {
  display: flex;
  justify-content: center;
}
.tab-page-link .link {
  display: flex;
}
.tab-page-link .link a {
  color: #ABB4B6;
  padding: 30px 0;
  display: block;
}
.tab-page-link .link a.active {
  color: #20BBB1;
  font-weight: bold;
  border-bottom: 2px solid #20BBB1;
}
.tab-page-link .link a:first-child {
  margin-right: 100px;
}

.album-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .album-details {
    flex-wrap: wrap;
  }
}
@media (max-width: 599.98px) {
  .album-details {
    flex-wrap: wrap;
  }
}
.album-details .left-area ul {
  display: flex;
}
.album-details .left-area ul li {
  margin-right: 90px;
}
.album-details .left-area ul li span {
  font-weight: bold;
  color: #393939;
  font-size: 20px;
}
.album-details .left-area ul li p {
  color: #393939;
  font-size: 16px;
}
@media (max-width: 599.98px) {
  .album-details .right-area {
    text-align: center;
  }
  .album-details .right-area .s-btn {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.album-details .right-area .s-btn {
  margin-right: 10px;
}

.invitations-box .item .img-box {
  min-height: 200px !important;
}
.invitations-box .item .content h3 {
  font-family: "Cormorant Garamond", serif;
  /* font-size: 18px !important; */
  font-size: 13px !important;
  font-weight: bold;
  color: #5F5E48 !important;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.invitations-box .item .content h4 {
  color: #CFC4BB;
  font-size: 36px;
  line-height: 8px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}

.album-popup .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.album-popup .albm-number {
  margin-top: 10px;
}
.album-popup .albm-number span {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #ABB4B6;
}
.album-popup .left-area {
  text-align: left;
}
@media (max-width: 599.98px) {
  .album-popup .left-area {
    text-align: center;
  }
}
.album-popup .left-area h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  color: #59C3B9;
  display: block;
  letter-spacing: 0.04em;
}
.album-popup .left-area p {
  font-size: 14px;
  color: #4f6165;
  margin-bottom: 2px;
}
.album-popup .left-area p.name {
  display: inline-block;
}
.album-popup .left-area .albm-name {
  display: flex;
  align-items: center;
}
.album-popup .left-area .albm-name .line {
  display: block;
  width: 1px;
  height: 14px;
  background-color: #59C3B9;
  margin-left: 16px;
  margin-right: 16px;
}
.album-popup .right-area {
  display: flex;
  align-items: center;
}
.album-popup .right-area p {
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  color: #ABB4B6;
  padding-right: 10px;
}
.album-popup .albm-slide {
  position: relative;
}
.album-popup .albm-slide .slick-arrow {
  z-index: 99;
  font-size: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #333333;
  background: transparent;
  position: absolute;
  top: calc(50% - 20px);
  transform: rotate(45deg);
  opacity: 0.6;
}
.album-popup .albm-slide .slick-arrow.slick-prev {
  left: 25px;
  border-top: 0;
  border-right: 0;
}
.album-popup .albm-slide .slick-arrow.slick-next {
  right: 25px;
  border-bottom: 0;
  border-left: 0;
}
.album-popup .img-box img {
  width: 100%;
}
.album-popup .modal-dialog {
  max-width: 700px;
}
.album-popup .modal-body {
  padding: 20px !important;
}

.template .temp-content {
  position: relative;
}
.template .temp-content .title-box {
  text-align: center;
}
.template .temp-content .title-box h3 {
  font-size: 48px;
  line-height: 58px;
}
.template .temp-content .box-1 {
  position: relative;
}
.template .temp-content .box-1 .container {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.template .temp-content .box-1 .img-box {
  width: 45%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.template .temp-content .box-1 .img-box img {
  width: 100%;
}
.template .temp-content .box-2 {
  margin-top: 90px;
}
.template .temp-content .box-2 .title-box {
  margin-bottom: 50px;
}
.template .temp-content .box-2 .wed-details {
  padding: 20px 40px;
  background: #ffffff;
  position: relative;
  left: -120px;
  z-index: 2;
}
.template .temp-content .box-3 {
  margin-top: 90px;
}
.template .temp-content .box-3 .title-box {
  margin-bottom: 50px;
}
.template .temp-content .box-3 .wed-details {
  padding: 20px 40px;
  background: #ffffff;
  position: relative;
  right: -120px;
  z-index: 2;
}
.template .temp-content .box-4 {
  padding: 10px 0;
  margin-top: 30px;
  border-top: 1px dashed #000000;
  border-bottom: 1px dashed #000000;
  text-align: center;
}
.template .temp-content .box-4 .segment-btn {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  display: inline-block;
  background: #1C2222;
  border-radius: 30px;
  padding: 10px 25px;
  color: #ffffff;
  font-style: italic;
}
.template .temp-content .box-5 {
  margin-top: 60px;
  margin-bottom: 80px;
}
.template .temp-content .box-5 .title-box {
  margin-bottom: 40px;
}
.template .temp-content .box-5 .box {
  width: 750px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.template .temp-content .box-5 .box .item {
  width: 45%;
}
.template .temp-content .box-5 .box .item .img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.template .temp-content .box-5 .box .item .img-box img {
  width: 100%;
}
.template .temp-content .box-5 .box .item h4 {
  font-family: "Helvetica";
  font-size: 16px;
  color: #1C2222;
  margin-top: 25px;
  font-weight: bold;
}
.template .temp-content .box-5 .box .item p {
  font-family: "Helvetica";
  font-size: 16px;
  color: #1C2222;
  margin-top: 10px;
}
.template .temp-content .box-5 .box .item span {
  font-size: 14px;
  line-height: 18px;
  color: #1C2222;
  opacity: 0.5;
  letter-spacing: 0;
}
.template .temp-content h2 {
  width: 72%;
  font-size: 92px;
  line-height: 106%;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #1C2222;
}
.template .temp-content span {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  color: #1C2222;
}
.template .temp-content .wed-details {
  display: flex;
  width: 50%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
.template .temp-content .wed-details p {
  font-size: 14px;
  color: #1C2222;
}
.template .temp-content .wed-details p b {
  font-weight: bold;
}
.template .temp-content .wed-details .icon {
  width: 100%;
}
.template .temp-content .wed-details h3 {
  width: 100%;
  margin: 30px 0;
  font-size: 36px;
}

.compliment-list {
  width: 700px;
  margin: 0 auto;
  margin-top: 50px;
}
.compliment-list .item {
  display: flex;
  align-items: center;
  padding: 40px;
  background: #F3F5F5;
  border-radius: 4px;
  margin-bottom: 20px;
}
.compliment-list .item .left-area .img-box {
  width: 84px;
  height: 84px;
  position: relative;
}
.compliment-list .item .left-area .img-box .dp {
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 200px;
}
.compliment-list .item .left-area .img-box .dp img {
  height: 100%;
}
.compliment-list .item .left-area .img-box .icons {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 0;
}
.compliment-list .item .right-area {
  padding-left: 30px;
}
.compliment-list .item .right-area p b {
  color: #1C2222;
  font-weight: bold;
}
.compliment-list .add-compliment {
  display: block;
  padding: 40px;
  border: 1px dashed #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.compliment-list .add-compliment .img-box {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compliment-list .add-compliment span {
  display: block;
  width: calc(100% - 100px);
  margin-left: 20px;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: capitalize;
  color: #1C2222;
  opacity: 0.5;
  letter-spacing: 0;
}

.payment-box .box {
  width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #DFE2D8;
  border-radius: 8px;
  padding: 40px 0;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .payment-box .box {
    width: 100%;
  }
}
@media (max-width: 599.98px) {
  .payment-box .box {
    width: 100%;
  }
}
.payment-box .box .item {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DFE2D8;
}
.payment-box .box .item .left-area p {
  font-size: 14px;
  line-height: 16px;
  color: #393939;
  opacity: 0.5;
}
.payment-box .box .item .right-area {
  text-align: right;
}
.payment-box .box .item .right-area .value {
  font-size: 14px;
  text-align: right;
  color: #393939;
  font-weight: bold;
}
.payment-box .box .item:first-child {
  padding-top: 0;
}
.payment-box .box .item:first-child p {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #393939;
  margin-bottom: 0;
  opacity: 1;
}
.payment-box .box .item:first-child span {
  font-size: 14px;
  line-height: 16px;
  color: #393939;
  opacity: 0.5;
}
.payment-box .box .item:first-child .value {
  font-size: 20px;
  text-align: right;
  color: #393939;
  font-weight: bold;
}
.payment-box .box .item:last-child {
  align-items: flex-start;
  border: 0;
  padding-bottom: 0;
}
.payment-box .box .item:last-child p {
  font-weight: bold;
  font-size: 14px;
  color: #393939;
  opacity: 1;
}
.payment-box .box .item:last-child .value {
  font-size: 20px;
  line-height: 23px;
  text-align: right;
  color: #20BBB1;
}
.payment-box .box .item:last-child .p-btn {
  border-radius: 5px;
  margin-top: 30px;
}
.payment-box .box .item .coupen-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-box .box .item .coupen-box p {
  font-size: 14px;
  line-height: 16px;
  color: #5F5E48;
  opacity: 0.6;
}
.payment-box .box .item .coupen-box .btn-box {
  position: relative;
}
.payment-box .box .item .coupen-box input {
  padding: 15px 20px;
  border: 1px solid #DFE2D8;
  border-radius: 5px;
  font-weight: bold;
  padding-right: 100px;
}
.payment-box .box .item .coupen-box .p-btn {
  position: absolute;
  top: 8px;
  right: 8px;
}
.payment-box .box .item .coupen-box .value {
  font-size: 20px;
  text-align: right;
  color: #393939;
  opacity: 0.1;
  font-weight: bold;
}

.inner-contact {
  margin-top: 160px;
}
.inner-contact h2 {
  margin-bottom: 20px;
}
.inner-contact p {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #B5AAA1;
}
.inner-contact h4 {
  font-family: "Helvetica";
  margin-top: 50px;
  margin-bottom: 20px;
  color: #5F5E48;
}
.inner-contact .contact-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
}

/* .font-38 {
  font-size: 38px;
} */

.modal .modal-body {
  padding: 50px;
}
.modal .close {
  opacity: 1;
  position: absolute;
  right: 14PX;
  top: 14px;
  z-index: 2;
  cursor: pointer;
}
.modal#quote-popup .modal-dialog {
  max-width: 860px;
}
@media (max-width: 599.98px) {
  .modal#quote-popup .modal-dialog {
    max-width: 90%;
  }
}
.modal p b {
  font-weight: bold;
  text-transform: capitalize;
}

@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.show > .dropdown-menu {
  max-height: 900px;
  visibility: visible;
}

.dropdown-menu {
  display: block;
  max-height: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.temp-head {
  display: flex;
  align-items: center;
  margin-top: 0;
  width: 100%;
  position: fixed;
  top: 0;
  /* z-index: 10; */
  z-index: 1121;
}
@media (max-width: 599.98px) {
  .temp-head {
    display: none;
    width: 250px;
    height: 100%;
    right: 0;
    bottom: 0;
    /* z-index: 11; */
    z-index: 1121;
  }
  .temp-head.active {
    display: block;
  }
}
.temp-head.hide {
  display: none;
}
.temp-head .close-btn {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  height: 20px;
  color: #ffffff;
  font-size: 13px;
  opacity: 1;
  background: transparent;
  border: 0;
  display: none;
}
@media (max-width: 599.98px) {
  .temp-head .close-btn {
    display: block;
  }
}
.temp-head .centre-area {
  width: 310px;
  text-align: center;
}
@media (max-width: 599.98px) {
  .temp-head .centre-area {
    display: none;
  }
}
.temp-head .left-icon,
.temp-head .right-icon,
.temp-head .content {
  min-height: 90px;
}
.temp-head .left-icon,
.temp-head .right-icon {
  display: block;
  width: 20%;
  background: #393939;
  display: flex;
  align-items: center;
  justify-content: center;
}
.temp-head .left-icon span,
.temp-head .right-icon span {
  color: #ffffff;
  color: #5F5E48;
  font-size: 14px;
}
.temp-head .left-icon .arrow,
.temp-head .right-icon .arrow {
  width: 12px;
  height: 12px;
  border: 2px solid #5F5E48;
  transform: rotate(45deg);
  margin: 0 10px;
}
.temp-head .left-icon .arrow {
  border-top: 0;
  border-right: 0;
}
.temp-head .right-icon .arrow {
  border-bottom: 0;
  border-left: 0;
}
.temp-head .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #193131;
  padding: 15px 30px;
}
@media (max-width: 599.98px) {
  .temp-head .content {
    height: 100%;
    display: block;
  }
}
.temp-head .content h3 {
  color: #ffffff;
  font-family: "Helvetica";
  font-weight: bold;
}
.temp-head .content p {
  color: #ffffff;
  color: #ABB4B6;
}
.temp-head .content .s-btn {
  margin-right: 20px;
  padding: 5px 20px;
}
@media (max-width: 599.98px) {
  .temp-head .content .s-btn {
    width: 100%;
    margin-bottom: 20px;
  }
}
.temp-head .content .p-btn {
  padding: 5px 20px;
}
.temp-head .content .select-theme {
  display: flex;
}
@media (max-width: 599.98px) {
  .temp-head .content .select-theme {
    display: block;
  }
}
.temp-head .content .select-theme label {
  display: block;
  color: #ffffff;
  font-size: 0.75rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.invite-box .style-change {
  display: none;
}
@media (max-width: 599.98px) {
  .invite-box .style-change {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    background: #000000;
    color: #ffffff;
    padding: 10px;
    z-index: 5;
    border-radius: 10px;
    z-index: 10;
    border: 0;
  }
}
.invite-box .box-1 {
  margin-top: 104px;
}
@media (max-width: 599.98px) {
  .invite-box .box-1 {
    margin-top: 0;
  }
}
.invite-box .content {
  position: relative;
}
.invite-box .text-edit-btn,
.invite-box .img-edit-btn {
  position: absolute;
  overflow: hidden;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-image: url(../images/inv-img/edit.png);
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #00000000;
  border-radius: 10px;
}
.invite-box .img-edit-btn {
  background-size: 25px;
  background-color: #ffffff9c;
  background-image: url(../images/inv-img/upload.png);
}
.invite-box .text-edit-btn {
  background-color: #20bbb191;
  background-size: 25px;
}
.invite-box .img-box {
  position: relative;
}
.invite-box.prv-mode .text-edit-btn,
.invite-box.prv-mode .img-edit-btn,
.invite-box.prv-mode .text-plus-button,
.invite-box.prv-mode .style-change {
  display: none !important;
}
/* start sep8 */
.invite-box.profile-disable .wedding-company1,
.invite-box.profile-disable .style-change {
  display: none;
}
/* end sep8 */
.invite-box.prv-mode .box-1 {
  margin-top: 0;
}
.invite-box .image-popup-box .box {
  margin-bottom: 30px;
}
.invite-box .image-popup-box img {
  width: 100%;
  display: block;
}

.inv-footer {
  padding: 30px 0 0 0;
  background: #212020;
}
.inv-footer .social {
  display: flex;
  justify-content: space-between;
  width: 150px;
}
@media (max-width: 599.98px) {
  .inv-footer .social {
    margin: 0 auto 20px auto;
  }
}
.inv-footer .social a {
  width: 24px;
}
.inv-footer .social a svg {
  width: 100%;
}
.inv-footer p {
  color: #00bcb0;
  text-align: center;
  margin: 0;
}
.inv-footer p a {
  color: #ffffff;
}
@media (max-width: 599.98px) {
  .inv-footer p a {
    display: block;
  }
}
.inv-footer .f-whatsapp {
  color: #ffffff;
  padding: 10px 0;
  display: block;
}
.inv-footer .f-whatsapp svg {
  margin-right: 5px;
}
.inv-footer .wp-box {
  display: flex;
  align-items: center;
  width: 202px;
  margin: 0 auto;
}
.inv-footer .wp-box a {
  padding-left: 20px;
}
.inv-footer .content {
  background: #000000;
  padding: 10px 0;
  margin-top: 10px;
}
.inv-footer .content .row .col-md-6:first-child p {
  text-align: left;
}
@media (max-width: 599.98px) {
  .inv-footer .content .row .col-md-6:first-child p {
    text-align: center;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.inv-1 h6 {
  font-size: 0.75rem;
  font-style: italic;
}
.inv-1 h2 {
  font-size: 2.375rem;
  font-weight: 400;
}
.inv-1 p {
  font-size: 1rem;
}
.inv-1 .box-1 {
  padding-top: 100px;
}
.inv-1 .box-1 h6, .inv-1 .box-1 h2 {
  text-align: center;
}
.inv-1 .box-1 .container {
  background: #FBF7F4;
  text-align: center;
  position: relative;
  padding-top: 150px;
}
.inv-1 .box-1 .content {
  padding: 0 0 150px 0;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
.inv-1 .box-1 .icon-1 {
  width: 150px;
  position: absolute;
  left: -60px;
  top: -60px;
}
.inv-1 .box-1 .icon-1 img {
  width: 100%;
}
.inv-1 .box-1 .icon-2 {
  width: 150px;
  position: absolute;
  right: -40px;
  bottom: -40px;
}
.inv-1 .box-1 .icon-2 img {
  width: 100%;
}
.inv-1 .box-1 .text-edit-btn {
  top: -50px;
}
.inv-1 .box-2 {
  margin-top: -70px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.inv-1 .box-2 .img-box {
  display: flex;
  justify-content: center;
}
.inv-1 .box-2 .img-box .box {
  width: 290px;
  margin: 0 5px;
  position: relative;
}
.inv-1 .box-2 .img-box .box img {
  width: 100%;
}
.inv-1 .box-2 .content {
  display: inline-block;
  margin: 80px auto 0 auto;
}
.inv-1 .box-2 .text-edit-btn {
  top: -50px;
}
.inv-1 .box-3 {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
.inv-1 .box-3 .box {
  margin-bottom: 30px;
}
.inv-1 .box-3 .box .img-edit-btn {
  top: 10px;
  right: 25px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 {
    display: block;
    height: auto;
  }
}
.inv-1 .box-3 .item-1,
.inv-1 .box-3 .item-3 {
  width: calc(20% - 10px);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-1,
.inv-1 .box-3 .item-3 {
    width: 100%;
  }
}
.inv-1 .box-3 .item-1 .box,
.inv-1 .box-3 .item-3 .box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.inv-1 .box-3 .item-1 .box .img-edit-btn,
.inv-1 .box-3 .item-3 .box .img-edit-btn {
  top: 10px;
  right: 10px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-1 .box,
.inv-1 .box-3 .item-3 .box {
    width: 100%;
    height: auto;
  }
}
.inv-1 .box-3 .item-1 .box:nth-child(2),
.inv-1 .box-3 .item-3 .box:nth-child(2) {
  margin-top: 20px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-1 .box:nth-child(2),
.inv-1 .box-3 .item-3 .box:nth-child(2) {
    margin-top: 0px;
  }
}
.inv-1 .box-3 .item-1 img,
.inv-1 .box-3 .item-3 img {
  height: 120%;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-1 img,
.inv-1 .box-3 .item-3 img {
    height: auto;
    width: 100%;
  }
}
.inv-1 .box-3 .item-2 {
  width: calc(40% - 10px);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}
.inv-1 .box-3 .item-2 .box {
  position: relative;
}
.inv-1 .box-3 .item-2 .box .img-edit-btn {
  top: 10px;
  right: 10px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-2 {
    width: 100%;
    height: auto;
  }
}
.inv-1 .box-3 .item-2 img {
  width: 100%;
}
.inv-1 .box-3 .item-4 {
  height: 100%;
  display: flex;
  overflow: hidden;
  width: calc(20% - 10px);
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-4 {
    width: 100%;
    height: auto;
  }
}
.inv-1 .box-3 .item-4 .box {
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.inv-1 .box-3 .item-4 .box .img-edit-btn {
  top: 10px;
  right: 10px;
}
.inv-1 .box-3 .item-4 .box img {
  height: 100%;
}
@media (max-width: 599.98px) {
  .inv-1 .box-3 .item-4 .box img {
    height: auto;
    width: 100%;
  }
}
.inv-1 .box-4 {
  position: relative;
  margin-top: 100px;
}
.inv-1 .box-4 h2 {
  margin-bottom: 40px;
}
.inv-1 .box-4 .container {
  display: flex;
}
@media (max-width: 599.98px) {
  .inv-1 .box-4 .container {
    display: block;
  }
}
.inv-1 .box-4 .container .left-area {
  width: 60%;
  padding-top: 80px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-4 .container .left-area {
    width: 90%;
    margin: 0 auto;
  }
}
.inv-1 .box-4 .container .left-area .content {
  width: 300px;
  margin: 0 auto;
  text-align: center;
}
.inv-1 .box-4 .container .left-area .icon-1 {
  width: 120px;
  margin: 50px auto 0 auto;
}
.inv-1 .box-4 .container .left-area .icon-1 img {
  width: 100%;
}
.inv-1 .box-4 .container .right-area {
  width: 40%;
}
@media (max-width: 599.98px) {
  .inv-1 .box-4 .container .right-area {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}
.inv-1 .box-4 .container .right-area img {
  width: 100%;
}
.inv-1 .box-4 .text-edit-btn {
  top: -50px;
}
.inv-1 .box-5 {
  margin-top: 100px;
}
/* .inv-1 .box-5 h2 {
  margin-bottom: 40px;
  font-size: 1.875rem;
} */

/* start */
.inv-1 .box-5 h2 {
  margin-bottom: 40px;
  font-size: 1.575rem;
}
/* end */
.inv-1 .box-5 .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 599.98px) {
  .inv-1 .box-5 .container {
    display: block;
  }
}
.inv-1 .box-5 .container .item {
  margin: 0 10px 20px 10px;
  width: calc(33.33333% - 20px);
  background: #FBF7F4;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}
@media (max-width: 599.98px) {
  .inv-1 .box-5 .container .item {
    width: 100%;
    margin-top: 10px;
  }
}
.inv-1 .box-5 .icon-1 {
  width: 120px;
  margin: -100px auto 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 599.98px) {
  .inv-1 .box-5 .icon-1 {
    margin: 20px auto 0 auto;
  }
}
.inv-1 .box-5 .icon-1 img {
  width: 100%;
}
.inv-1 .box-6 {
  margin-top: 0;
  padding-bottom: 100px;
  display: flex;
}
.inv-1 .box-6 .item {
  width: 690px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.inv-1 .box-6 .item .left-box {
  width: 160px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-6 .item .left-box {
    margin: 0 auto;
  }
}
.inv-1 .box-6 .item .right-box {
  width: calc(100% - 160px);
  padding-left: 50px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-6 .item .right-box {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.inv-1 .box-6 .item .right-box h2 {
  color: #5F5E48;
  margin-bottom: 20px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-6 .item {
    width: 90%;
    display: block;
  }
}
.inv-1 .box-6 .item .box {
  width: 160px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-6 .item .box {
    margin: 0 auto 30px auto;
  }
}
.inv-1 .box-6 .item .box h6 {
  text-align: center;
  margin-bottom: 20px;
}
.inv-1 .box-6 .item .box img {
  width: 100%;
}
.inv-1 .box-7 {
  width: 600px;
  margin: 60px auto 0 auto;
  padding-bottom: 50px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-7 {
    width: 90%;
  }
}
.inv-1 .box-7 h2, .inv-1 .box-7 h6 {
  text-align: center;
}
.inv-1 .box-7 h2 {
  margin-bottom: 25px;
}
.inv-1 .box-7 .item {
  width: 100%;
  display: flex;
  background: #FBF7F4;
  margin-top: 20px;
  padding: 20px;
}
.inv-1 .box-7 .item .dp {
  /* width: 60px;
  height: 60px; */
  display: flex;
}
.inv-1 .box-7 .item .dp .img-box {
  /* width: 60px;
  height: 60px; */
  overflow: hidden;
  border-radius: 200px;
}
.inv-1 .box-7 .item .dp .img-box img {
  height: 100%;
}
.inv-1 .box-7 .item .text {
  padding-left: 20px;
  width: 500px;
}
/* start */
.inv-1 .box-7 .item .text p b {
  font-weight: bold;
  float: right;
}

/* end */
.inv-1 .box-7 .btn-box .s-btn {
  margin-right: 20px;
}
@media (max-width: 599.98px) {
  .inv-1 .box-7 .btn-box .s-btn {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.inv-1 .box-7 .icon-1 {
  width: 60px;
  margin: 40px auto 0 auto;
}
.inv-1 .box-7 .icon-1 img {
  width: 100%;
}
.inv-1 .p-btn {
  background: #722620;
  border-radius: 2px;
  color: #ffffff;
  font-style: normal;
  border: 1px solid #722620;
}
.inv-1 .s-btn {
  background: transparent;
  border-radius: 2px;
  border-radius: 1px solid #722620;
  color: #fff;
  font-style: normal;
}
.inv-1 .btn-box {
  text-align: center;
  margin-top: 50px;
}
.inv-1.color-1 h6, .inv-1.color-1 h2, .inv-1.color-1 p {
  color: #5F5E48;
}
.inv-1.color-2 {
  background: #222;
}
.inv-1.color-2 h6, .inv-1.color-2 h2, .inv-1.color-2 p {
  color: #cb9e0b;
}
.inv-1.color-2 .box-1 .bg-color, .inv-1.color-2 .box-5 .bg-color {
  background: #353535;
}
.inv-1.color-2 .box-2 h6, .inv-1.color-2 .box-2 h2, .inv-1.color-2 .box-2 p, .inv-1.color-2 .box-4 h6, .inv-1.color-2 .box-4 h2, .inv-1.color-2 .box-4 p, .inv-1.color-2 .box-6 h6, .inv-1.color-2 .box-6 h2, .inv-1.color-2 .box-6 p {
  color: #cb9e0b;
}
.inv-1.color-2 .box-2 .right-box h2, .inv-1.color-2 .box-4 .right-box h2, .inv-1.color-2 .box-6 .right-box h2 {
  color: #cb9e0b;
}
.inv-1.color-2 .box-7 h6, .inv-1.color-2 .box-7 h2 {
  color: #cb9e0b;
}
.inv-1.color-2 .box-7 .item {
  background: #444444;
}
.inv-1.color-2 .p-btn {
  background: #cb9e0b;
  border-color: #cb9e0b;
}
.inv-1.color-2 .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-1.color-3 {
  background: #23A89F;
}
.inv-1.color-3 h6, .inv-1.color-3 h2, .inv-1.color-3 p {
  color: #343A40;
}
.inv-1.color-3 .box-1 .bg-color, .inv-1.color-3 .box-5 .bg-color {
  background: #20827B;
}
.inv-1.color-3 .box-2 h6, .inv-1.color-3 .box-2 h2, .inv-1.color-3 .box-2 p, .inv-1.color-3 .box-4 h6, .inv-1.color-3 .box-4 h2, .inv-1.color-3 .box-4 p, .inv-1.color-3 .box-6 h6, .inv-1.color-3 .box-6 h2, .inv-1.color-3 .box-6 p {
  color: #343A40;
}
.inv-1.color-3 .box-2 .right-box h2, .inv-1.color-3 .box-4 .right-box h2, .inv-1.color-3 .box-6 .right-box h2 {
  color: #343A40;
}
.inv-1.color-3 .box-7 h6, .inv-1.color-3 .box-7 h2 {
  color: #343A40;
}
.inv-1.color-3 .box-7 .item {
  background: #F6C6EA;
}
.inv-1.color-3 .p-btn {
  background: #EE8C0F;
  border-color: #EE8C0F;
}
.inv-1.color-3 .s-btn {
  border-color: #fff;
  color: #fff;
}
.inv-1.color-4 {
  background: #053742;
}
.inv-1.color-4 h6, .inv-1.color-4 h2, .inv-1.color-4 p {
  color: #daa520;
}
.inv-1.color-4 .box-1 .bg-color, .inv-1.color-4 .box-5 .bg-color {
  background: #005482;
}
.inv-1.color-4 .box-2 h6, .inv-1.color-4 .box-2 h2, .inv-1.color-4 .box-2 p, .inv-1.color-4 .box-4 h6, .inv-1.color-4 .box-4 h2, .inv-1.color-4 .box-4 p, .inv-1.color-4 .box-6 h6, .inv-1.color-4 .box-6 h2, .inv-1.color-4 .box-6 p {
  color: #daa520;
}
.inv-1.color-4 .box-2 .right-box h2, .inv-1.color-4 .box-4 .right-box h2, .inv-1.color-4 .box-6 .right-box h2 {
  color: #daa520;
}
.inv-1.color-4 .box-7 h6, .inv-1.color-4 .box-7 h2 {
  color: #daa520;
}
.inv-1.color-4 .box-7 .item {
  background: #005482;
}
.inv-1.color-4 .p-btn {
  background: #A2DBFA;
  border-color: #A2DBFA;
  color: #444444;
}
.inv-1.color-4 .s-btn {
  border-color: #A2DBFA;
  color: #A2DBFA;
}
.inv-1.color-5 {
  background: #26001B;
}
.inv-1.color-5 h6, .inv-1.color-5 h2, .inv-1.color-5 p {
  color: #cb9e0b;
}
.inv-1.color-5 .box-1 .bg-color, .inv-1.color-5 .box-5 .bg-color {
  background: #810034;
}
.inv-1.color-5 .box-2 h6, .inv-1.color-5 .box-2 h2, .inv-1.color-5 .box-2 p, .inv-1.color-5 .box-4 h6, .inv-1.color-5 .box-4 h2, .inv-1.color-5 .box-4 p, .inv-1.color-5 .box-6 h6, .inv-1.color-5 .box-6 h2, .inv-1.color-5 .box-6 p {
  color: #cb9e0b;
}
.inv-1.color-5 .box-2 .right-box h2, .inv-1.color-5 .box-4 .right-box h2, .inv-1.color-5 .box-6 .right-box h2 {
  color: #cb9e0b;
}
.inv-1.color-5 .box-7 h6, .inv-1.color-5 .box-7 h2 {
  color: #cb9e0b;
}
.inv-1.color-5 .box-7 .item {
  background: #810034;
}
.inv-1.color-5 .p-btn {
  background: #cb9e0b;
  border-color: #cb9e0b;
  color: #444444;
}
.inv-1.color-5 .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-1.font-2 h2 {
  font-size: 3.125rem;
}
.inv-1.font-2 .box-4 h2, .inv-1.font-2 .box-5 h2 {
  font-size: 2.1875rem;
}

.inv-2 {
  background: linear-gradient(180deg, #171717 0%, #C0D0F4 57.58%);
}
.inv-2 h6 {
  font-size: 0.75rem;
  letter-spacing: 1em;
  text-transform: uppercase;
  font-weight: 400;
}
.inv-2 h2 {
  font-size: 2.375rem;
  font-weight: 400;
}
.inv-2 p {
  font-size: 0.875rem;
}
.inv-2 .p-btn,
.inv-2 .s-btn {
  font-family: "Poppins";
  font-style: normal;
  font-size: 0.875rem;
}
.inv-2 .p-btn {
  background: #374557;
  color: #ffffff;
}
.inv-2 .s-btn {
  border-color: #374557;
  color: #374557;
}
.inv-2 .s-btn:hover {
  background: #374557;
  color: #ffffff;
}
.inv-2 .content {
  display: inline-block;
}
.inv-2 .section-pad, .inv-2 .box-5 {
  padding: 80px 0;
}
.inv-2 .wrap {
  width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .inv-2 .wrap {
    width: 90%;
  }
}
@media (max-width: 599.98px) {
  .inv-2 .wrap {
    width: 100%;
  }
}
.inv-2 .box-1 h2 {
  font-size: 5.625rem;
}
@media (max-width: 599.98px) {
  .inv-2 .box-1 h2 {
    font-size: 2.5rem;
  }
}
.inv-2 .box-1 .banner-section {
  width: 100%;
  position: relative;
}
.inv-2 .box-1 .banner-section .banner-img {
  position: relative;
  z-index: 3;
}
.inv-2 .box-1 .banner-section .banner-img img {
  width: 100%;
  display: block;
}
.inv-2 .box-1 .banner-section .title-box {
  position: absolute;
  z-index: 5;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.inv-2 .box-1 .banner-section .title-box .content {
  display: inline-block;
  text-align: center;
}
.inv-2 .box-1 .banner-section .title-box .content h2, .inv-2 .box-1 .banner-section .title-box .content h6 {
  color: #ffffff;
}
.inv-2 .box-1 .banner-section:before {
  z-index: 4;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
}
.inv-2 .box-2 {
  position: relative;
  z-index: 5;
}
.inv-2 .box-2 .leaf-icon-1,
.inv-2 .box-2 .leaf-icon-2 {
  position: absolute;
}
.inv-2 .box-2 .leaf-icon-1 img,
.inv-2 .box-2 .leaf-icon-2 img {
  width: 100%;
}
.inv-2 .box-2 .leaf-icon-1 {
  width: 200px;
  top: -50px;
  left: 90px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-2 .leaf-icon-1 {
    display: none;
  }
}
.inv-2 .box-2 .leaf-icon-2 {
  width: 150px;
  top: 240px;
  right: 80px;
}
.inv-2 .box-2:before {
  z-index: 2;
  content: "";
  width: 980px;
  height: 100%;
  position: absolute;
  margin: 0 auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
}
.inv-2 .box-2 .wrap {
  position: relative;
  margin: 0 auto;
  z-index: 3;
  display: flex;
}
@media (max-width: 599.98px) {
  .inv-2 .box-2 .wrap {
    display: block;
  }
}
.inv-2 .box-2 .wrap .left-area {
  width: 50%;
}
@media (max-width: 599.98px) {
  .inv-2 .box-2 .wrap .left-area {
    width: 100%;
  }
}
.inv-2 .box-2 .wrap .left-area .box {
  position: relative;
  width: 250px;
  text-align: center;
  top: 80px;
  left: 80px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-2 .wrap .left-area .box {
    margin: 0 auto;
    top: 0;
    left: 0;
  }
}
.inv-2 .box-2 .wrap .left-area .box .img-box {
  width: 100px;
  position: absolute;
  top: 60px;
  left: 50px;
  right: 0;
  margin: 0 auto;
}
.inv-2 .box-2 .wrap .left-area .box .img-box img {
  width: 100%;
}
.inv-2 .box-2 .wrap .left-area .box .text-box span, .inv-2 .box-2 .wrap .left-area .box .text-box h2 {
  font-size: 380px;
  text-transform: lowercase;
  line-height: 75%;
  color: #B6C4E2;
}
.inv-2 .box-2 .wrap .right-area {
  width: 50%;
}
@media (max-width: 599.98px) {
  .inv-2 .box-2 .wrap .right-area {
    margin: 0 auto;
  }
}
.inv-2 .box-2 .wrap .right-area .box {
  position: relative;
  top: -30px;
}
.inv-2 .box-2 .wrap .right-area .box .img-box {
  width: 200px;
  position: relative;
  left: 90px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-2 .wrap .right-area .box .img-box {
    left: auto;
  }
}
.inv-2 .box-2 .wrap .right-area .box .img-box img {
  width: 100%;
}
.inv-2 .box-2 .wrap .right-area .box p {
  margin-top: 30px;
  color: #374557;
  font-weight: 600;
}
.inv-2 .box-2 .wrap .right-area .box .s-btn {
  margin-top: 20px;
  border: 1px solid #B6C4E2;
  color: #B6C4E2;
}
.inv-2 .box-2 .wrap .right-area .box .s-btn:hover {
  background: #B6C4E2;
  color: #ffffff;
}
.inv-2 .box-2 .wrap .section-2 {
  text-align: center;
  width: 100%;
  padding: 30px;
}
.inv-2 .box-2 .wrap .section-2 .icon {
  width: 150px;
  margin: 60px auto 20px auto;
}
.inv-2 .box-2 .wrap .section-2 .icon img {
  width: 100%;
}
.inv-2 .box-2 .wrap .section-2 .content {
  width: 400px;
  margin: 0 auto;
}
.inv-2 .box-2 .inv-2-box {
  position: relative;
  z-index: 4;
  margin-top: 70px;
}
.inv-2 .box-2 .inv-2-box .slick-slide {
  margin-right: 20px;
}
.inv-2 .box-2 .inv-2-box .slick-slide .item {
  position: relative;
}
.inv-2 .box-2 .inv-2-box .slick-slide img {
  width: 100%;
}
.inv-2 .box-2 .inv-2-box .slick-arrow {
  position: absolute;
  bottom: -40px;
  font-size: 0;
  background: transparent;
  width: 80px;
  display: block;
  height: 15px;
  border: 0;
  border-bottom: 1px solid #000000;
  left: 25%;
}
.inv-2 .box-2 .inv-2-box .slick-arrow:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  position: relative;
}
.inv-2 .box-2 .inv-2-box .slick-arrow.slick-next {
  left: 60%;
}
.inv-2 .box-2 .inv-2-box .slick-arrow.slick-next::after {
  top: 6px;
  right: -55px;
  transform: rotate(45deg);
  border-bottom: 0;
  border-left: 0;
}
.inv-2 .box-2 .inv-2-box .slick-arrow.slick-prev::after {
  top: 6px;
  left: -5px;
  transform: rotate(45deg);
  border-top: 0;
  border-right: 0;
}
.inv-2 .box-2 .inv-2-wrap {
  position: relative;
}
.inv-2 .box-2 .inv-2-wrap h6 {
  position: absolute;
  left: 35%;
  z-index: 8;
  bottom: -49px;
}
.inv-2 .box-3 {
  background: #ffffff;
  position: relative;
}
.inv-2 .box-3:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  z-index: 2;
  opacity: 0.5;
}
.inv-2 .box-3 .icon-1 {
  width: 120px;
  position: absolute;
  z-index: 14;
  right: 20%;
  top: -80px;
}
.inv-2 .box-3 .icon-1 img {
  width: 100%;
}
.inv-2 .box-3 .img-box img {
  width: 100%;
  display: block;
}
.inv-2 .box-3 .wrap {
  z-index: 3;
  position: absolute;
  height: 100%;
  margin: 0 auto;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 599.98px) {
  .inv-2 .box-3 .wrap {
    display: block;
    position: relative;
  }
}
.inv-2 .box-3 .wrap .box-one {
  width: calc(100% - 130px);
  padding: 30px;
  text-align: center;
  position: relative;
}
.inv-2 .box-3 .wrap .box-one .line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: #000000;
}
.inv-2 .box-3 .wrap .box-one h2 {
  margin-bottom: 20px;
  font-size: 1.875rem;
}
.inv-2 .box-3 .wrap .box-two {
  width: 130px;
  overflow: hidden;
}
.inv-2 .box-3 .wrap .box-two img {
  width: 130%;
  display: block;
}
.inv-2 .box-3 .wrap .left-area {
  width: calc(50% - 20px);
  background: #FBE5E8;
  display: flex;
  height: 390px;
  margin: 0 10px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-3 .wrap .left-area {
    width: 100%;
  }
}
.inv-2 .box-3 .wrap .right-area {
  position: relative;
  margin: 0 10px;
  background: #E1EAFF;
  width: calc(50% - 20px);
  display: flex;
  height: 380px;
}
.inv-2 .box-3 .wrap .right-area .icon-2 {
  width: 80px;
  position: absolute;
  z-index: 14;
  right: 180px;
  top: -60px;
}
.inv-2 .box-3 .wrap .right-area .icon-2 img {
  width: 100%;
}
@media (max-width: 599.98px) {
  .inv-2 .box-3 .wrap .right-area {
    width: 100%;
  }
}
.inv-2 .box-3 .wrap .btn-box {
  margin-top: 20px;
}
.inv-2 .box-3 .img-edit-btn {
  z-index: 8;
}
.inv-2 .box-4 {
  background: #ffffff;
  position: relative;
  padding: 50px 0 100px 0;
}
.inv-2 .box-4 .icon-1 {
  position: absolute;
  top: -70px;
  z-index: 3;
  width: 167px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.inv-2 .box-4 .top h6 {
  margin-bottom: 20px;
}
.inv-2 .box-4 .top .item {
  width: 690px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.inv-2 .box-4 .top .item .left-box {
  width: 160px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-4 .top .item .left-box {
    margin: 0 auto;
  }
}
.inv-2 .box-4 .top .item .right-box {
  width: calc(100% - 160px);
  padding-left: 50px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-4 .top .item .right-box {
    width: 100%;
    text-align: center;
  }
}
.inv-2 .box-4 .top .item .right-box h2 {
  color: #5F5E48;
  margin-bottom: 20px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-4 .top .item {
    width: 90%;
    display: block;
  }
}
.inv-2 .box-4 .top .item .box {
  width: 160px;
}
@media (max-width: 599.98px) {
  .inv-2 .box-4 .top .item .box {
    margin: 0 auto 30px auto;
  }
}
.inv-2 .box-4 .top .item .box h6 {
  text-align: center;
  margin-bottom: 20px;
}
.inv-2 .box-4 .top .item .box img {
  width: 100%;
}
.inv-2 .box-5 {
  background: #ffffff;
  position: relative;
}
.inv-2 .box-5 h2 {
  text-align: center;
  margin-bottom: 40px;
}
.inv-2 .box-5 h4 {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}
.inv-2 .box-5 h4::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #FBE5E8;
  position: absolute;
  bottom: -7px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.inv-2 .box-5 .icon-1 {
  position: absolute;
  top: -70px;
  z-index: 3;
  width: 167px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.inv-2 .box-5 .slick-slide .item {
  text-align: center;
}
.inv-2 .box-5 .slick-slide .item .dp {
  width: 84px;
  border-radius: 100px;
  margin: 0 auto;
  overflow: hidden;
}
.inv-2 .box-5 .slick-slide .item .dp img {
  width: 100%;
}
.inv-2 .box-5 .slick-slide .item .content {
  display: none;
}
.inv-2 .box-5 .slick-slide.slick-center .item .content {
  display: block;
}
.inv-2 .box-5 .slick-arrow {
  position: absolute;
  font-size: 0;
  background: transparent;
  width: 40px;
  display: block;
  height: 15px;
  border: 0;
  border-bottom: 1px solid #000000;
  top: 45%;
}
.inv-2 .box-5 .slick-arrow:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  position: relative;
}
.inv-2 .box-5 .slick-arrow.slick-next {
  right: 0;
}
.inv-2 .box-5 .slick-arrow.slick-next::after {
  top: 6px;
  right: -18px;
  transform: rotate(45deg);
  border-bottom: 0;
  border-left: 0;
}
.inv-2 .box-5 .slick-arrow.slick-prev::after {
  top: 6px;
  left: -5px;
  transform: rotate(45deg);
  border-top: 0;
  border-right: 0;
}
.inv-2 .box-5 .btn-box {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.inv-2 .box-5 .btn-box .p-btn {
  margin-right: 10px;
}
.inv-2 .box-5 .btn-box .p-btn,
.inv-2 .box-5 .btn-box .s-btn {
  padding: 10px 15px;
  font-size: 0.875rem;
}
.inv-2 .box-6 {
  padding: 100px 0;
}
.inv-2.color-1 h6, .inv-2.color-1 h2, .inv-2.color-1 p {
  color: #5F5E48;
}
.inv-2.color-2 {
  background: #000000;
}
.inv-2.color-2 p, .inv-2.color-2 h2, .inv-2.color-2 h6 {
  color: #cb9e0b !important;
}
.inv-2.color-2 .box-2 .wrap .right-area p {
  color: #cb9e0b;
}
.inv-2.color-2 .box-2:before {
  background: #444444;
}
.inv-2.color-2 .box-3 .wrap .left-area {
  background: #0A81AB;
}
.inv-2.color-2 .box-3 .wrap .left-area .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.color-2 .box-3 .wrap .right-area {
  background: #FF449F;
}
.inv-2.color-2 .box-3 .wrap .right-area .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.color-2 .box-4, .inv-2.color-2 .box-5 {
  background: #000000;
}
.inv-2.color-2 .box-4 h4, .inv-2.color-2 .box-5 h4 {
  color: #cb9e0b;
}
.inv-2.color-2 .p-btn {
  background: #F37821;
  border-color: #F37821;
}
.inv-2.color-2 .s-btn {
  border-color: #F37821;
  color: #F37821;
}
.inv-2.color-3 {
  background: #CDF0EA;
}
.inv-2.color-3 p, .inv-2.color-3 h2, .inv-2.color-3 h6 {
  color: #343A40;
}
.inv-2.color-3 .box-2 .wrap .right-area p {
  color: #343A40;
}
.inv-2.color-3 .box-2:before {
  background: #F6C6EA;
}
.inv-2.color-3 .box-3 .wrap .left-area {
  background: #FEDDBE;
}
.inv-2.color-3 .box-3 .wrap .left-area .s-btn {
  border-color: #C490E4;
  color: #C490E4;
}
.inv-2.color-3 .box-3 .wrap .right-area {
  background: #E4BAD4;
}
.inv-2.color-3 .box-3 .wrap .right-area .s-btn {
  border-color: #C490E4;
  color: #C490E4;
}
.inv-2.color-3 .box-4, .inv-2.color-3 .box-5 {
  background: #CDF0EA;
}
.inv-2.color-3 .box-4 h4, .inv-2.color-3 .box-5 h4 {
  color: #343A40;
}
.inv-2.color-3 .p-btn {
  background: #C490E4;
  border-color: #C490E4;
}
.inv-2.color-3 .s-btn {
  border-color: #C490E4;
  color: #C490E4;
}
.inv-2.color-4 {
  background: #053742;
}
.inv-2.color-4 p, .inv-2.color-4 h2, .inv-2.color-4 h6 {
  color: #cb9e0b !important;
}
.inv-2.color-4 .box-2 .wrap .right-area p {
  color: #cb9e0b;
}
.inv-2.color-4 .box-2:before {
  background: #005380;
}
.inv-2.color-4 .box-3 .wrap .left-area {
  background: #0d675a;
}
.inv-2.color-4 .box-3 .wrap .left-area .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.color-4 .box-3 .wrap .right-area {
  background: #3c5ba1;
}
.inv-2.color-4 .box-3 .wrap .right-area .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.color-4 .box-4, .inv-2.color-4 .box-5 {
  background: #053742;
}
.inv-2.color-4 .box-4 h4, .inv-2.color-4 .box-4 h2, .inv-2.color-4 .box-5 h4, .inv-2.color-4 .box-5 h2 {
  color: #cb9e0b !important;
}
.inv-2.color-4 .p-btn {
  background: #A2DBFA;
  border-color: #A2DBFA;
}
.inv-2.color-4 .s-btn {
  border-color: #A2DBFA;
  color: #ffffff;
}
.inv-2.color-5 {
  background: #26001B;
}
.inv-2.color-5 p, .inv-2.color-5 h2, .inv-2.color-5 h6 {
  color: #cb9e0b;
}
.inv-2.color-5 .box-1 .banner-section .title-box .content h2, .inv-2.color-5 .box-1 .banner-section .title-box .content h6 {
  color: #cb9e0b;
}
.inv-2.color-5 .box-2 .wrap .right-area p {
  color: #cb9e0b;
}
.inv-2.color-5 .box-2:before {
  background: #810034;
}
.inv-2.color-5 .box-3 .wrap .left-area {
  background: #235353;
}
.inv-2.color-5 .box-3 .wrap .left-area .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.color-5 .box-3 .wrap .right-area {
  background: #4d4d1e;
}
.inv-2.color-5 .box-3 .wrap .right-area .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.color-5 .box-4, .inv-2.color-5 .box-5 {
  background: #810034;
}
.inv-2.color-5 .box-4 h4, .inv-2.color-5 .box-4 h2, .inv-2.color-5 .box-5 h4, .inv-2.color-5 .box-5 h2 {
  color: #cb9e0b !important;
}
.inv-2.color-5 .p-btn {
  background: #cb9e0b;
  border-color: #cb9e0b;
}
.inv-2.color-5 .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-2.font-3 .box h2 {
  font-size: 220px !important;
}

.inv-3 img {
  display: block;
}
.inv-3 h6 {
  font-size: 0.75rem;
  font-weight: 400;
  font-weight: 500;
  font-size: 12px;
}
.inv-3 h2 {
  font-size: 2.375rem;
  font-weight: 400;
}
.inv-3 p {
  font-size: 0.875rem;
}
.inv-3 .p-btn,
.inv-3 .s-btn {
  font-family: "Poppins";
  font-style: normal;
  font-size: 0.875rem;
}
.inv-3 .p-btn {
  background: #374557;
  color: #ffffff;
}
.inv-3 .s-btn {
  border-color: #374557;
  color: #374557;
}
.inv-3 .s-btn:hover {
  background: #374557;
  color: #ffffff;
}
.inv-3 .l-btn {
  position: relative;
  padding: 20px 0 24px 0;
  color: #374557;
}
.inv-3 .l-btn:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #374557;
  display: block;
  position: absolute;
  bottom: 5px;
}
.inv-3 .l-btn:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  border-bottom: 0;
  border-left: 0;
  position: relative;
  transform: rotate(45deg);
}
.inv-3 .l-btn:after {
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 1px;
  left: 20px;
  border-color: #374557;
}
.inv-3 .content {
  display: inline-block;
}
.inv-3 .section-pad, .inv-3 .inv-2 .box-5, .inv-2 .inv-3 .box-5 {
  padding: 80px 0;
}
.inv-3 .wrap {
  width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .inv-3 .wrap {
    width: 90%;
  }
}
.inv-3 .box-1 {
  padding: 100px 0;
  background: #F7C8C2;
}
.inv-3 .box-1 .banner-text {
  text-align: center;
}
.inv-3 .box-1 .banner-text .content {
  text-align: left;
}
.inv-3 .box-1 .banner-text .content h6 {
  margin-bottom: 40px;
  position: relative;
  color: #374557;
  font-size: 0.875rem;
  text-transform: capitalize;
}
.inv-3 .box-1 .banner-text .content h6:after {
  content: "";
  width: 100px;
  height: 2px;
  background: #374557;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.inv-3 .box-1 .banner-text .content h2 {
  font-size: 3.125rem;
  color: #374557;
}
.inv-3 .box-1 .banner-text .big-text {
  position: relative;
  z-index: 2;
}
.inv-3 .box-1 .banner-text .big-text h2 {
  display: inline-block;
  font-size: 8.125rem;
  position: relative;
  color: #ffffff;
}
.inv-3 .box-1 .banner-text .big-text h2 span {
  font-size: 0.75rem;
  position: absolute;
  right: 0;
  top: 20px;
  text-align: right;
  color: #374557;
  width: 150px;
}
.inv-3 .box-1 .banner-text .big-text h2 span:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #374557;
  position: absolute;
  bottom: -10px;
  right: 0;
}
.inv-3 .box-1 .banner-img {
  display: flex;
  justify-content: space-between;
  width: 70%;
  position: relative;
  z-index: 3;
  top: -60px;
}
.inv-3 .box-1 .banner-img .item {
  overflow: hidden;
  height: 360px;
}
.inv-3 .box-1 .banner-img .item:first-child {
  width: calc(40% - 10px);
}
.inv-3 .box-1 .banner-img .item:nth-child(2) {
  width: calc(60% - 10px);
}
.inv-3 .box-1 .banner-img .item img {
  height: 100%;
}
.inv-3 .box-1 .save-date-box {
  display: flex;
  width: 450px;
  margin: 0 auto;
  position: relative;
  padding: 100px 0;
}
.inv-3 .box-1 .save-date-box .icon {
  width: 330px;
  position: absolute;
  top: -90px;
  z-index: 5;
}
.inv-3 .box-1 .save-date-box .icon img {
  width: 100%;
}
.inv-3 .box-1 .save-date-box p {
  font-size: 1.5625rem;
  color: #0E1313;
  font-weight: 600;
}
.inv-3 .box-1 .save-date-box .left-area {
  position: relative;
  z-index: 7;
  width: 100%;
}
.inv-3 .box-1 .save-date-box .right-area {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 6;
}
.inv-3 .box-1 .save-date-box .right-area h2 {
  font-size: 6.25rem;
  color: #ffffff;
}
.inv-3 .box-2 {
  padding: 100px 0;
}
.inv-3 .box-2 h6 {
  color: #F7C8C2;
  margin-bottom: 20px;
}
.inv-3 .box-2 h2 {
  color: #374557;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.inv-3 .box-2 .icon {
  position: absolute;
  width: 200px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.inv-3 .box-2 .item {
  width: 50%;
}
.inv-3 .box-2 .item img {
  width: 100%;
  overflow: hidden;
}
.inv-3 .box-2 .gb-img {
  position: relative;
  display: flex;
}
.inv-3 .box-3 {
  padding: 50px 0;
}
.inv-3 .box-3 .slick-slide {
  margin-right: 5px;
}
.inv-3 .box-3 .slick-slide .item {
  position: relative;
}
.inv-3 .box-3 .slick-slide .item img {
  width: 100%;
}
.inv-3 .box-3 .slick-arrow {
  display: none !important;
}
.inv-3 .box-4 {
  padding: 50px 0;
}
.inv-3 .box-4 h2 {
  text-align: center;
  margin-bottom: 80px;
}
.inv-3 .box-4 .venue-box {
  display: flex;
}
.inv-3 .box-4 .venue-box .left-area {
  width: 200px;
}
.inv-3 .box-4 .venue-box .left-area img {
  width: 100%;
}
.inv-3 .box-4 .venue-box .right-area {
  width: calc(100% - 200px);
  padding-left: 20px;
}
.inv-3 .box-4 .venue-box .right-area h2 {
  text-align: left;
  margin-bottom: 10px;
  font-size: 2.1875rem;
}
.inv-3 .box-4 .venue-box .right-area h2.time {
  padding: 10px 0;
  color: #F7C8C2;
  border-top: 1px solid #374557;
  border-bottom: 1px solid #374557;
}
.inv-3 .box-4 .icon {
  width: 220px;
  margin: -100px auto 0 auto;
  position: relative;
  z-index: 4;
}
.inv-3 .box-4 .icon img {
  width: 100%;
}
.inv-3 .box-5 .top h6 {
  margin-bottom: 20px;
}
.inv-3 .box-5 .top .item {
  display: flex;
  justify-content: space-between;
}
.inv-3 .box-5 .top .item .box {
  width: 200px;
  text-align: center;
}
.inv-3 .box-5 .top .item .box h6 {
  text-align: center;
}
.inv-3 .box-5 .top .item .box img {
  margin: 0 auto;
  width: 140px;
}
.inv-3 .box-6 {
  padding: 180px 0 0 0;
  background-image: url(../images/inv-img/inv-3-flower-3.png);
  background-repeat: no-repeat;
  background-position: right 30%;
  background-size: 160px;
}
.inv-3 .box-6 h2 {
  text-align: center;
  margin-bottom: 50px;
}
.inv-3 .box-6 .slick-slide {
  margin-right: 20px;
}
.inv-3 .box-6 .slick-slide .item {
  background: #F3F5F5;
  padding: 40px 20px;
  text-align: center;
}
.inv-3 .box-6 .slick-slide .item .dp {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin: 0 auto 20px auto;
}
.inv-3 .box-6 .slick-slide .item .dp img {
  width: 100% æ;
}
.inv-3 .box-6 .slick-slide .item h4 {
  margin-bottom: 20px;
}
.inv-3 .box-6 .slick-arrow {
  position: absolute;
  font-size: 0;
  background: transparent;
  width: 40px;
  display: block;
  height: 15px;
  border: 0;
  border-bottom: 1px solid #000000;
  top: 45%;
}
.inv-3 .box-6 .slick-arrow:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  position: relative;
}
.inv-3 .box-6 .slick-arrow.slick-next {
  right: -90px;
}
.inv-3 .box-6 .slick-arrow.slick-next::after {
  top: 6px;
  right: -18px;
  transform: rotate(45deg);
  border-bottom: 0;
  border-left: 0;
}
.inv-3 .box-6 .slick-arrow.slick-prev {
  left: -90px;
}
.inv-3 .box-6 .slick-arrow.slick-prev::after {
  top: 6px;
  left: -5px;
  transform: rotate(45deg);
  border-top: 0;
  border-right: 0;
}
.inv-3 ~ footer {
  background-image: url(../images/inv-img/inv-3-flower-4.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 160px;
}
.inv-3.color-1 h6, .inv-3.color-1 h2, .inv-3.color-1 p {
  color: #5F5E48;
}
.inv-3.color-2 {
  background: #000000;
}
.inv-3.color-2 h6, .inv-3.color-2 h2, .inv-3.color-2 p {
  color: #000000;
}
.inv-3.color-2 .box-2 h6, .inv-3.color-2 .box-2 h2, .inv-3.color-2 .box-2 p, .inv-3.color-2 .box-4 h6, .inv-3.color-2 .box-4 h2, .inv-3.color-2 .box-4 p, .inv-3.color-2 .box-6 h6, .inv-3.color-2 .box-6 h2, .inv-3.color-2 .box-6 p {
  color: #ffffff;
}
.inv-3.color-2 .box-7 h6, .inv-3.color-2 .box-7 h2 {
  color: #ffffff;
}
.inv-3.color-2 .p-btn {
  background: #F37821;
  border-color: #F37821;
}
.inv-3.color-2 .s-btn {
  border-color: #F37821;
  color: #F37821;
}
.inv-3.color-3 h6, .inv-3.color-3 h2, .inv-3.color-3 p {
  color: #dc3545;
}

.inv-4 img {
  display: block;
}
.inv-4 h6 {
  font-size: 0.75rem;
  font-weight: 400;
  font-weight: 500;
  font-size: 12px;
}
.inv-4 h2 {
  font-size: 2.375rem;
  font-weight: 400;
}
.inv-4 p {
  font-size: 0.875rem;
}
.inv-4 .arrows {
  height: 2px;
  background: #F08889;
  width: 40%;
  margin: 0 auto 0 auto;
  position: relative;
  top: -30px;
  z-index: 1;
}
.inv-4 .arrows::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #F08889;
  position: absolute;
  top: -5px;
  left: 0;
  transform: rotate(45deg);
}
.inv-4 .arrows::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #F08889;
  position: absolute;
  top: -5px;
  right: 0;
  transform: rotate(45deg);
}
.inv-4 .line .icon-box {
  width: 40px;
  background: #ffffff;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}
.inv-4 .line .icon-box img {
  width: 100%;
}
.inv-4 .p-btn,
.inv-4 .s-btn {
  font-family: "Poppins";
  font-style: normal;
  font-size: 0.875rem;
}
.inv-4 .p-btn {
  background: #374557;
  color: #ffffff;
}
.inv-4 .s-btn {
  border-color: #374557;
  color: #374557;
}
.inv-4 .s-btn:hover {
  background: #374557;
  color: #ffffff;
}
.inv-4 .l-btn {
  position: relative;
  padding: 20px 0 24px 0;
  color: #374557;
}
.inv-4 .l-btn:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #374557;
  display: block;
  position: absolute;
  bottom: 5px;
}
.inv-4 .l-btn:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  border-bottom: 0;
  border-left: 0;
  position: relative;
  transform: rotate(45deg);
}
.inv-4 .l-btn:after {
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 1px;
  left: 20px;
  border-color: #374557;
}
.inv-4 .content {
  display: inline-block;
}
.inv-4 .section-pad, .inv-4 .inv-2 .box-5, .inv-2 .inv-4 .box-5 {
  padding: 80px 0;
}
.inv-4 .wrap {
  width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .inv-4 .wrap {
    width: 90%;
  }
}
@media (max-width: 599.98px) {
  .inv-4 .wrap {
    width: 90%;
  }
}
.inv-4 .box-1 {
  display: flex;
  justify-content: space-between;
}
.inv-4 .box-1 h2 {
  font-size: 3.125rem;
}
@media (max-width: 599.98px) {
  .inv-4 .box-1 h2 {
    font-size: 1.25rem;
  }
}
.inv-4 .box-1 .left-area,
.inv-4 .box-1 .right-area {
  width: calc(50% - 325px);
  position: relative;
}
@media (max-width: 599.98px) {
  .inv-4 .box-1 .left-area,
.inv-4 .box-1 .right-area {
    display: none;
  }
}
.inv-4 .box-1 .left-area .item,
.inv-4 .box-1 .right-area .item {
  width: 150px;
  height: 150px;
  position: absolute;
}
.inv-4 .box-1 .left-area .item img,
.inv-4 .box-1 .right-area .item img {
  width: 100%;
}
.inv-4 .box-1 .left-area .item {
  box-shadow: 8px 8px 13px rgba(0, 0, 0, 0.32);
  border-radius: 5px;
  overflow: hidden;
}
.inv-4 .box-1 .left-area .item:first-child {
  top: 20px;
  left: 30%;
}
.inv-4 .box-1 .left-area .item:nth-child(2) {
  top: 35%;
  left: 0;
}
.inv-4 .box-1 .left-area .item:nth-child(3) {
  top: 70%;
  left: 40%;
}
.inv-4 .box-1 .right-area .item {
  box-shadow: -7px 10px 13px rgba(0, 0, 0, 0.32);
  border-radius: 5px;
  overflow: hidden;
}
.inv-4 .box-1 .right-area .item:first-child {
  top: 10%;
  right: 0;
}
.inv-4 .box-1 .right-area .item:nth-child(2) {
  top: 25%;
  right: 40%;
}
.inv-4 .box-1 .right-area .item:nth-child(3) {
  top: 60%;
  right: 30%;
}
.inv-4 .box-1 .centre-area {
  width: 650px;
  height: 650px;
  position: relative;
  margin-top: 50px;
  background: #ffffff;
}
@media (max-width: 599.98px) {
  .inv-4 .box-1 .centre-area {
    height: auto;
  }
}
.inv-4 .box-1 .centre-area .bg-icon img {
  width: 100%;
}
.inv-4 .box-1 .centre-area .content {
  position: absolute;
  text-align: center;
  top: 30%;
  left: -50px;
  right: 0;
}
.inv-4 .box-1 .centre-area .content .text-edit-btn {
  right: 30%;
  top: -40px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-1 .centre-area .content {
    top: 60px;
  }
}
@media (max-width: 599.98px) {
  .inv-4 .box-1 .centre-area .content h2 {
    margin-bottom: 10px;
  }
}
.inv-4 .box-1 .centre-area h6 {
  margin-bottom: 20px;
}
.inv-4 .box-1 .centre-area h3 {
  background: #ffffff;
  display: inline-block;
  padding: 5px;
  position: relative;
  z-index: 2;
  line-height: 47px;
}
.inv-4 .box-1 .centre-area h3 span:nth-child(2) {
  color: #F08889;
  font-size: 5rem;
  font-style: italic;
  position: relative;
  bottom: -7px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-1 .centre-area h3 span:nth-child(2) {
    font-size: 2.5rem;
  }
}
.inv-4 .box-2 {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.inv-4 .box-2 h6 {
  color: #918A80;
  margin-bottom: 20px;
}
.inv-4 .box-2 h2 {
  color: #F08889;
  font-size: 3rem;
}
@media (max-width: 599.98px) {
  .inv-4 .box-2 h2 {
    font-size: 1.75rem;
  }
}
.inv-4 .box-2 p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #918A80;
  margin-bottom: 30px;
}
.inv-4 .box-2 .content {
  width: 400px;
  display: inline-block;
}
@media (max-width: 599.98px) {
  .inv-4 .box-2 .content {
    width: 100%;
  }
}
.inv-4 .box-2 .line {
  margin-top: 20px;
}
.inv-4 .box-2 .arrows {
  top: -21px;
}
.inv-4 .box-2:before {
  content: "";
  width: 180px;
  height: 425px;
  background: url(../images/inv-img/inv-4-flower-1.png);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100%;
}
@media (max-width: 599.98px) {
  .inv-4 .box-2:before {
    width: 40px;
  }
}
.inv-4 .box-2:after {
  content: "";
  width: 180px;
  height: 425px;
  background: url(../images/inv-img/inv-4-flower-2.png);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: 100%;
}
@media (max-width: 599.98px) {
  .inv-4 .box-2:after {
    width: 40px;
  }
}
.inv-4 .box-3 {
  position: relative;
}
.inv-4 .box-3 h6 {
  color: #918A80;
  margin-bottom: 20px;
}
.inv-4 .box-3 h2 {
  color: #F08889;
  font-size: 3rem;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 h2 {
    font-size: 1.75rem;
  }
}
.inv-4 .box-3 .line {
  margin-top: 20px;
}
.inv-4 .box-3 .arrows {
  top: -21px;
}
.inv-4 .box-3 .content {
  display: block;
  margin: 0 auto;
  width: 400px;
  text-align: center;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .content {
    width: 100%;
  }
}
.inv-4 .box-3 .item {
  display: flex;
  width: 760px;
  margin: 0 auto;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item {
    width: 100%;
    display: block;
  }
}
.inv-4 .box-3 .item h2 {
  color: #68795E;
  font-size: 2rem;
  position: relative;
  left: -30px;
  margin: 20px 0;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item h2 {
    font-size: 1.75rem;
  }
}
.inv-4 .box-3 .item p {
  color: #F08889;
}
.inv-4 .box-3 .item .left-area {
  width: 50%;
}
.inv-4 .box-3 .item .left-area img {
  width: 100%;
}
.inv-4 .box-3 .item .right-area {
  width: 50%;
  padding-left: 60px;
  position: relative;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item .right-area {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.inv-4 .box-3 .item:nth-child(even) {
  flex-direction: row-reverse;
}
.inv-4 .box-3 .item.item-1 {
  margin-top: 50px;
}
.inv-4 .box-3 .item.item-1 .left-area {
  padding-right: 60px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item.item-1 .left-area {
    padding-right: 0;
    margin: 0 auto 30px auto;
  }
}
.inv-4 .box-3 .item.item-2 {
  padding-top: 100px;
}
.inv-4 .box-3 .item.item-2 .left-area {
  padding-left: 60px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item.item-2 .left-area {
    padding-right: 0;
    margin: 0 auto 30px auto;
    padding-left: 0;
  }
}
.inv-4 .box-3 .item.item-2 .right-area {
  text-align: right;
  padding-right: 60px;
  padding-left: 0;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item.item-2 .right-area {
    padding-right: 0;
    text-align: center;
  }
}
.inv-4 .box-3 .item.item-2 h2 {
  left: auto;
  right: -30px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .item.item-2 h2 {
    right: 0;
  }
}
.inv-4 .box-3 .item .s-btn {
  margin-top: 30px;
  padding: 0;
  border: none;
  color: #68795E;
  border-bottom: 1px solid #68795E;
  border-radius: 0;
}
.inv-4 .box-3 .venue-details {
  position: relative;
}
.inv-4 .box-3 .venue-details:after {
  content: "";
  display: block;
  width: 10px;
  height: 60%;
  background: url(../images/inv-img/downline.svg);
  background-repeat: no-repeat;
  background-size: 9px;
  position: absolute;
  margin: 0 auto;
  top: 160px;
  z-index: 5;
  left: 0;
  right: 0;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3 .venue-details:after {
    display: none;
  }
}
.inv-4 .box-3:before {
  content: "";
  width: 180px;
  height: 425px;
  background: url(../images/inv-img/inv-4-flower-3.png);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  bottom: -100px;
  background-size: 100%;
}
@media (max-width: 599.98px) {
  .inv-4 .box-3:before {
    width: 40px;
  }
}
.inv-4 h2 {
  text-align: center;
  margin-bottom: 50px;
}
.inv-4 .slick-slide {
  margin-right: 20px;
}
.inv-4 .slick-slide .item {
  background: #F3F5F5;
  padding: 40px 20px;
  text-align: center;
}
.inv-4 .slick-slide .item .dp {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin: 0 auto 20px auto;
}
.inv-4 .slick-slide .item .dp img {
  width: 100% æ;
}
.inv-4 .slick-slide .item h4 {
  margin-bottom: 20px;
}
.inv-4 .slick-arrow {
  position: absolute;
  font-size: 0;
  background: transparent;
  width: 40px;
  display: block;
  height: 15px;
  border: 0;
  border-bottom: 1px solid #000000;
  top: 45%;
}
.inv-4 .slick-arrow:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  position: relative;
}
.inv-4 .slick-arrow.slick-next {
  right: -90px;
}
.inv-4 .slick-arrow.slick-next::after {
  top: 6px;
  right: -18px;
  transform: rotate(45deg);
  border-bottom: 0;
  border-left: 0;
}
.inv-4 .slick-arrow.slick-prev {
  left: -90px;
}
.inv-4 .slick-arrow.slick-prev::after {
  top: 6px;
  left: -5px;
  transform: rotate(45deg);
  border-top: 0;
  border-right: 0;
}
.inv-4 .box-4 h2 {
  text-align: left;
  color: #F08889;
  font-size: 6.25rem;
  margin-bottom: 0;
  z-index: 3;
  position: relative;
  bottom: -30px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-4 h2 {
    font-size: 1.25rem;
    bottom: 0;
    margin-top: 40px;
  }
}
.inv-4 .box-4 .img-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599.98px) {
  .inv-4 .box-4 .img-list {
    display: block;
  }
}
.inv-4 .box-4 .img-list .item {
  width: calc(20% - 10px);
  position: relative;
}
@media (max-width: 599.98px) {
  .inv-4 .box-4 .img-list .item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.inv-4 .box-4 .img-list .item img {
  width: 100%;
}
.inv-4 .box-5 {
  padding: 50px 0 100px 0;
}
.inv-4 .box-5 .top h6 {
  margin-bottom: 20px;
}
.inv-4 .box-5 .top .item {
  width: 690px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.inv-4 .box-5 .top .item .left-box {
  width: 160px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-5 .top .item .left-box {
    margin: 0 auto;
  }
}
.inv-4 .box-5 .top .item .right-box {
  width: calc(100% - 160px);
  padding-left: 50px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-5 .top .item .right-box {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.inv-4 .box-5 .top .item .right-box h2 {
  color: #5F5E48;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 599.98px) {
  .inv-4 .box-5 .top .item {
    width: 90%;
    display: block;
  }
}
.inv-4 .box-5 .top .item .box {
  width: 160px;
}
@media (max-width: 599.98px) {
  .inv-4 .box-5 .top .item .box {
    margin: 0 auto 30px auto;
  }
}
.inv-4 .box-5 .top .item .box h6 {
  text-align: center;
  margin-bottom: 20px;
}
.inv-4 .box-5 .top .item .box img {
  width: 100%;
}
.inv-4 .box-6 h2 {
  text-align: center;
  margin-bottom: 50px;
}
.inv-4 .box-6 .slick-slide {
  margin-right: 20px;
}
.inv-4 .box-6 .slick-slide .item {
  background: #F3F5F5;
  padding: 40px 20px;
  text-align: center;
}
.inv-4 .box-6 .slick-slide .item .dp {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin: 0 auto 20px auto;
  overflow: hidden;
}
.inv-4 .box-6 .slick-slide .item .dp img {
  height: 100%;
}
.inv-4 .box-6 .slick-slide .item h4 {
  margin-bottom: 20px;
}
.inv-4 .box-6 .slick-slide .item .content p {
  min-height: 190px;
  max-height: 190px;
  overflow: hidden;
}
.inv-4 .box-6 .slick-arrow {
  position: absolute;
  font-size: 0;
  background: transparent;
  width: 40px;
  display: block;
  height: 15px;
  border: 0;
  border-bottom: 1px solid #000000;
  top: 45%;
}
.inv-4 .box-6 .slick-arrow:after {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #000000;
  position: relative;
}
.inv-4 .box-6 .slick-arrow.slick-next {
  right: -90px;
}
.inv-4 .box-6 .slick-arrow.slick-next::after {
  top: 6px;
  right: -18px;
  transform: rotate(45deg);
  border-bottom: 0;
  border-left: 0;
}
.inv-4 .box-6 .slick-arrow.slick-prev {
  left: -90px;
}
.inv-4 .box-6 .slick-arrow.slick-prev::after {
  top: 6px;
  left: -5px;
  transform: rotate(45deg);
  border-top: 0;
  border-right: 0;
}
.inv-4.color-1 h6,
.inv-4.color-1 h2,
.inv-4.color-1 p {
  color: #5F5E48;
}
.inv-4.color-2 {
  background: #000000;
}
.inv-4.color-2 .icon-box {
  background: #000000;
}
.inv-4.color-2 h6,
.inv-4.color-2 h2,
.inv-4.color-2 p {
  color: #cb9e0b !important;
}
.inv-4.color-2 .box-1 .centre-area, .inv-4.color-2 .box-1 h3 {
  background: #000000;
  color: #cb9e0b;
}
.inv-4.color-2 .box-1 h2, .inv-4.color-2 .box-1 h6 {
  color: #cb9e0b;
}
.inv-4.color-2 .box-3 .s-btn {
  color: #cb9e0b;
  border-bottom: 1px solid #cb9e0b;
}
.inv-4.color-2 .box-6 {
  padding-bottom: 80px;
}
.inv-4.color-2 .box-6 .slick-slide .item {
  background: #444444;
}
.inv-4.color-2 .box-6 .slick-slide .item h4 {
  color: #cb9e0b;
}
.inv-4.color-2 .box-6 .slick-arrow {
  border-color: #cb9e0b;
}
.inv-4.color-2 .box-6 .slick-arrow:after {
  border-color: #cb9e0b;
}
.inv-4.color-2 .p-btn {
  background: #F37821;
  border-color: #F37821;
}
.inv-4.color-2 .s-btn {
  border-color: #F37821;
  color: #F37821;
}
.inv-4.color-3 {
  background: #CDF0EA;
}
.inv-4.color-3 .icon-box {
  background: #CDF0EA;
}
.inv-4.color-3 h6,
.inv-4.color-3 h2,
.inv-4.color-3 p {
  color: #343A40 !important;
}
.inv-4.color-3 .box-1 .centre-area, .inv-4.color-3 .box-1 h3 {
  background: #CDF0EA;
  color: #343A40;
}
.inv-4.color-3 .box-1 h2, .inv-4.color-3 .box-1 h6 {
  color: #ffffff;
}
.inv-4.color-3 .box-3 .s-btn {
  color: #C490E4;
  border-bottom: 1px solid #C490E4;
}
.inv-4.color-3 .box-6 {
  padding-bottom: 80px;
}
.inv-4.color-3 .box-6 .slick-slide .item {
  background: #F6C6EA;
}
.inv-4.color-3 .box-6 .slick-slide .item h4 {
  color: #343A40;
}
.inv-4.color-3 .box-6 .slick-arrow {
  border-color: #ffffff;
}
.inv-4.color-3 .box-6 .slick-arrow:after {
  border-color: #ffffff;
}
.inv-4.color-3 .p-btn {
  background: #C490E4;
  border-color: #C490E4;
}
.inv-4.color-3 .s-btn {
  border-color: #C490E4;
  color: #C490E4;
}
.inv-4.color-4 {
  background: #053742;
}
.inv-4.color-4 .icon-box {
  background: #053742;
}
.inv-4.color-4 h6,
.inv-4.color-4 h2,
.inv-4.color-4 p {
  color: #cb9e0b !important;
}
.inv-4.color-4 .box-1 .centre-area, .inv-4.color-4 .box-1 h3 {
  background: #053742;
  color: #cb9e0b;
}
.inv-4.color-4 .box-1 h2, .inv-4.color-4 .box-1 h6 {
  color: #cb9e0b;
}
.inv-4.color-4 .box-3 .s-btn {
  color: #cb9e0b;
  border-bottom: 1px solid #cb9e0b;
}
.inv-4.color-4 .box-6 {
  padding-bottom: 80px;
}
.inv-4.color-4 .box-6 .slick-slide .item {
  background: #0a5f8c;
}
.inv-4.color-4 .box-6 .slick-slide .item h4 {
  color: #cb9e0b;
}
.inv-4.color-4 .box-6 .slick-arrow {
  border-color: #cb9e0b;
}
.inv-4.color-4 .box-6 .slick-arrow:after {
  border-color: #cb9e0b;
}
.inv-4.color-4 .p-btn {
  background: #A2DBFA;
  border-color: #A2DBFA;
  color: #444444;
}
.inv-4.color-4 .s-btn {
  border-color: #A2DBFA;
  color: #A2DBFA;
}
.inv-4.color-5 {
  background: #26001B;
}
.inv-4.color-5 .icon-box {
  background: #26001B;
}
.inv-4.color-5 h6,
.inv-4.color-5 h2,
.inv-4.color-5 p {
  color: #cb9e0b !important;
}
.inv-4.color-5 .box-1 .centre-area, .inv-4.color-5 .box-1 h3 {
  background: #26001B;
  color: #cb9e0b;
}
.inv-4.color-5 .box-1 h2, .inv-4.color-5 .box-1 h6 {
  color: #cb9e0b;
}
.inv-4.color-5 .box-3 .s-btn {
  color: #cb9e0b;
  border-bottom: 1px solid #cb9e0b;
}
.inv-4.color-5 .box-6 {
  padding-bottom: 80px;
  margin-top: 80px;
}
.inv-4.color-5 .box-6 .slick-slide .item {
  background: #810034;
}
.inv-4.color-5 .box-6 .slick-slide .item h4 {
  color: #cb9e0b;
}
.inv-4.color-5 .box-6 .slick-arrow {
  border-color: #cb9e0b;
}
.inv-4.color-5 .box-6 .slick-arrow:after {
  border-color: #cb9e0b;
}
.inv-4.color-5 .p-btn {
  background: #cb9e0b;
  border-color: #cb9e0b;
  color: #444444;
}
.inv-4.color-5 .s-btn {
  border-color: #cb9e0b;
  color: #cb9e0b;
}
.inv-4.color-6 {
  background: #070777;
}
.inv-4.color-6 .icon-box {
  background: #070777;
}
.inv-4.color-6 h6,
.inv-4.color-6 h2,
.inv-4.color-6 p {
  color: #cb9e0b !important;
}
.inv-4.color-6 .box-1 .centre-area, .inv-4.color-6 .box-1 h3 {
  background: #0202bd;
  color: #cb9e0b;
}
.inv-4.color-6 .box-1 h2, .inv-4.color-6 .box-1 h6 {
  color: #cb9e0b;
}
.inv-4.color-6 .box-3 .s-btn {
  color: #cb9e0b;
  border-bottom: 1px solid #cb9e0b;
}
.inv-4.color-6 .box-6 {
  padding-bottom: 80px;
}
.inv-4.color-6 .box-6 .slick-slide .item {
  background: #015294;
}
.inv-4.color-6 .box-6 .slick-slide .item h4 {
  color: #cb9e0b;
}
.inv-4.color-6 .box-6 .slick-arrow {
  border-color: #cb9e0b;
}
.inv-4.color-6 .box-6 .slick-arrow:after {
  border-color: #cb9e0b;
}
.inv-4.color-6 .p-btn {
  background: #cb9e0b;
  border-color: #cb9e0b;
  color: #000055;
}
.inv-4.color-6 .s-btn {
  border-color: #62c5fa;
  color: #A2DBFA;
}
header {
  padding-top: 25px;
  padding-bottom: 25px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background: transparent;
  transition: all 0.4s;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
}
@media (min-width: 1024px) and (max-width: 1400px) {
  header {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (max-width: 599.98px) {
  header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
header nav {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
header .logo img {
  width: 165px;
}
@media (max-width: 599.98px) {
  header .logo img {
    width: 115px;
  }
}
header .logo .two {
  display: none;
}
header .navbar-nav {
  align-items: center;
}
header a {
  font-weight: bold;
  color: #ffffff;
}
header a.nav-btn {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px 25px !important;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header a.nav-btn:hover {
  background: #20BBB1;
  color: #ffffff !important;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  header a.nav-btn {
    padding: 15px 25px !important;
  }
}
header a.nav-link {
  margin-left: 40px;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header a.nav-link.menu-icon svg {
  width: 24px;
  margin-right: 20px;
}
header a.nav-link:hover {
  color: #20BBB1;
}
header .navbar-toggler-icon {
  display: none;
  width: 80px;
  color: #ffffff;
  cursor: pointer;
}
header .navbar-toggler-icon svg {
  margin-right: 10px;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  header .navbar-toggler-icon {
    display: block;
  }
}
@media (max-width: 599.98px) {
  header .navbar-toggler-icon {
    display: block;
  }
}
header .dp-btn {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  margin-left: 40px;
}
header .dp-btn::after {
  display: none;
}
header .dp-btn span {
  display: block;
}
header .dp-btn .img-box {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
}
header .dp-btn .img-box img {
  height: 100%;
}
header .dp-btn .dp-name {
  font-size: 16px;
  color: #5F5E48;
  /* color:#ffffff; */
  margin-left: 20px;
  font-weight: bold;
}
header .container {
  max-width: 90%;
}
header.scroll, header.inner-head {
  background: #ffffff;
}
header.scroll .logo .one, header.inner-head .logo .one {
  display: none;
}
header.scroll .logo .two, header.inner-head .logo .two {
  display: block;
}
header.scroll .nav-link, header.inner-head .nav-link {
  color: #5F5E48;
}
header.scroll svg line, header.inner-head svg line {
  stroke: #5F5E48;
}
header.scroll .nav-btn, header.inner-head .nav-btn {
  color: #5F5E48;
  background: rgba(95, 94, 72, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header.scroll .nav-btn svg path, header.inner-head .nav-btn svg path {
  fill: #5F5E48;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header.scroll .nav-btn:hover svg path, header.inner-head .nav-btn:hover svg path {
  fill: #ffffff;
}
header.scroll .navbar-toggler-icon, header.inner-head .navbar-toggler-icon {
  color: #5F5E48;
}

.slide-menu {
  display: none;
  padding: 50px;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
@media (max-width: 599.98px) {
  .slide-menu {
    padding: 15px;
  }
}
.slide-menu .items {
  margin-top: 50px;
}
.slide-menu .items a {
  text-align: center;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #5F5E48;
  margin-bottom: 20px;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
@media (max-width: 599.98px) {
  .slide-menu .items a {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.slide-menu .items a:hover {
  color: #20BBB1;
}
.slide-menu .menu-head .menu-logo {
  width: 154px;
  margin: 0 auto;
}
@media (max-width: 599.98px) {
  .slide-menu .menu-head .menu-logo {
    width: 100px;
    margin-top: 50px;
  }
}
.slide-menu .menu-head .menu-logo img {
  width: 100%;
}
.slide-menu .menu-head .menu-link {
  text-align: center;
  margin-top: 20px;
}
.slide-menu .menu-head .menu-link a {
  font-size: 14px;
  color: #59C3B9;
  position: relative;
}
.slide-menu .menu-head .menu-link a:nth-child(2) {
  padding-left: 20px;
  padding-right: 20px;
}
.slide-menu .menu-head .menu-link a:nth-child(2):after, .slide-menu .menu-head .menu-link a:nth-child(2):before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 3px;
  top: 8px;
  border-radius: 20px;
  background: #20BBB1;
}
.slide-menu .menu-head .menu-link a:nth-child(2):after {
  left: 5px;
}
.slide-menu .menu-head .menu-link a:nth-child(2):before {
  right: 5px;
}
.slide-menu .menu-social {
  width: 200px;
  margin: 30px auto 0 auto;
}
.slide-menu .menu-social .links {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.slide-menu .menu-social .mail {
  text-align: center;
  margin-top: 20px;
}
.slide-menu .menu-social .mail a {
  color: #5F5E48;
  font-size: 14px;
}
.slide-menu.active {
  display: block;
  cursor: pointer;
}
.slide-menu .close {
  font-size: 0.875rem;
}

.dropdown-menu {
  border-radius: 15px;
}
.dropdown-menu a {
  border-bottom: 1px solid #D2DADC;
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  color: #5F5E48;
}
.dropdown-menu a:last-child {
  border-bottom: 0;
}

.banner {
  position: relative;
}
.banner .slider .item {
  overflow: hidden;
  height: 100vh;
  position: relative;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .banner .slider .item {
    height: 70vh;
  }
}
@media (max-width: 599.98px) {
  .banner .slider .item {
    height: auto;
  }
}
.banner .slider .item .img-box {
  position: relative;
}
@media (max-width: 599.98px) {
  .banner .slider .item .img-box {
    display: flex;
    justify-content: center;
    position: initial;
  }
}
.banner .slider .item .img-box img {
  width: 100%;
}
@media (max-width: 599.98px) {
  .banner .slider .item .img-box img {
    width: 100%;
    height: auto;
  }
}
.banner .slider .item .img-box:after {
  display: block;
  content: "";
  width: 100%;
  height: 80vh;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
}
.banner .slider .item .content {
  position: absolute;
  width: 100%;
  bottom: 20%;
  text-align: center;
  z-index: 2;
}
@media (max-width: 599.98px) {
  .banner .slider .item .content {
    position: relative;
    background: #000000;
    padding: 30px 0;
  }
}
.banner .slider .item .content h2, .banner .slider .item .content span {
  color: #ffffff;
}
.banner .slider .item .content span {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  display: block;
}
.banner .slider .item .content h2,
.banner .slider .item .content h1 {
  font-size: 3.375rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
@media (max-width: 599.98px) {
  .banner .slider .item .content h2,
.banner .slider .item .content h1 {
    font-size: 1.75rem;
  }
}
.banner .slider .item .content button {
  margin-top: 50px;
}
.banner .slider .item .number {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
}
@media (max-width: 599.98px) {
  .banner .slider .item .number {
    bottom: 15px;
    z-index: 3;
  }
}
.banner .slider .item .number .number-box {
  width: 120px;
  position: relative;
}
.banner .slider .item .number .number-box span {
  display: block;
  font-size: 1.5rem;
  opacity: 0.2;
  color: #ffffff;
  font-family: "Helvetica";
  position: relative;
}
@media (max-width: 599.98px) {
  .banner .slider .item .number .number-box span {
    font-size: 0.875rem;
  }
}
.banner .slider .item .number .number-box span.one {
  opacity: 1;
}
.banner .slider .item .number .number-box span.two {
  left: 40px;
}
.banner .slider .item .number .number-box .line {
  width: 80px;
  height: 1px;
  background: #ffffff;
  transform: rotate(-45deg);
  position: absolute;
  top: 30px;
  left: -7px;
}
@media (max-width: 599.98px) {
  .banner .slider .item .number .number-box .line {
    width: 40px;
    top: 16px;
    left: 3px;
  }
}
.banner .slick-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding-right: 30px;
}
@media (max-width: 599.98px) {
  .banner .slick-dots {
    display: none !important;
  }
}
.banner .slick-dots li {
  margin-bottom: 15px;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.banner .slick-dots li button {
  display: block;
  position: relative;
  background: transparent;
  font-size: 0;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50px;
}
.banner .slick-dots li button::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 8px;
  left: 8px;
  background: #ffffff;
  border-radius: 50px;
  opacity: 0.4;
}
.banner .slick-dots li.slick-active {
  border: 1px solid #ffffff;
  border-radius: 50px;
}
.banner .slick-dots li.slick-active button::after {
  opacity: 1;
}

.inner-banner {
  overflow: hidden;
  height: 400px;
  margin-top: 90px;
  position: relative;
}
.inner-banner .container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.inner-banner .img-box {
  width: 100%;
}
.inner-banner .img-box img {
  width: 100%;
}
.inner-banner .title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.inner-banner .title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 100%);
}
.inner-banner .title .box {
  position: relative;
  top: 150px;
}
.inner-banner .title .box h2 {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}
.inner-banner .title .box h3 {
  font-size: 114px;
  color: #F2F3F0;
  opacity: 0.2;
  text-transform: lowercase;
}
@media (max-width: 599.98px) {
  .inner-banner {
    height: 230px;
  }
}

.about {
  padding: 150px 0 120px 0;
}
@media (max-width: 599.98px) {
  .about {
    padding: 40px 0 0 0;
  }
}
.about .title h3 {
  font-size: 126px;
}
@media (max-width: 599.98px) {
  .about .title h3 {
    font-size: 32px;
  }
}
.about .text {
  width: 100%;
  margin: 0 auto;
}
.about .text p {
  text-align: center;
  color: #4f6165;
  line-height: 180%;
}
.about h3 {
  text-transform: lowercase;
}

.home-one {
  position: relative;
}
.home-one:after {
  content: "";
  position: absolute;
  top: 100px;
  width: 100%;
  height: 470px;
  background: #F4F0ED;
}
@media (max-width: 599.98px) {
  .home-one:after {
    top: 50px;
  }
}
.home-one .container {
  position: relative;
  z-index: 2;
}
.home-one .album-img {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 599.98px) {
  .home-one .album-img {
    width: 250px;
  }
}
.home-one .album-img .img-box img {
  width: 100%;
}
.home-one .album-img .details h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5F5E48;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.home-one .album-img .details h4 {
  color: #CFC4BB;
  font-size: 36px;
  line-height: 90%;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}
.home-one h2 {
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0.1em;
  color: #5F5E48;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.home-one .top-area .content-box {
  padding-top: 180px;
}
@media (max-width: 599.98px) {
  .home-one .top-area .content-box {
    padding-top: 100px;
  }
}
.home-one .top-area .content-box p {
  color: #5F5E48;
  line-height: 180%;
}
@media (max-width: 599.98px) {
  .home-one .top-area .content-box p {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
.home-one .bottom-area {
  position: relative;
  margin-top: -160px;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .home-one .bottom-area {
    margin-top: 50px;
  }
}
@media (max-width: 599.98px) {
  .home-one .bottom-area {
    margin-top: 50px;
  }
}
.home-one .bottom-area .col-md-6 {
  display: flex;
  align-items: flex-end;
}
.home-one .bottom-area .col-md-6 p {
  color: #4f6165;
  line-height: 180%;
}
.home-one .bottom-area .col-md-6 .s-btn {
  margin-top: 46px;
}
.home-one .bottom-area .col-md-6 .content-box {
  padding-bottom: 40px;
}
@media (max-width: 599.98px) {
  .home-one .bottom-area .col-md-6 .content-box {
    margin-top: 50px;
  }
}

.home-service {
  padding: 150px;
  position: relative;
}
@media (max-width: 599.98px) {
  .home-service {
    padding: 30px 15px;
  }
}
.home-service .nav {
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 599.98px) {
  .home-service .nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
}
.home-service .nav .nav-item {
  width: 100%;
}
@media (max-width: 599.98px) {
  .home-service .nav .nav-item {
    width: 200px;
  }
}
.home-service .nav .nav-item a {
  padding-left: 0;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  color: #5F5E48;
  font-size: 32px;
  position: relative;
  z-index: 2;
}
.home-service .nav .nav-item a span {
  display: block;
}
.home-service .nav .nav-item a span.one {
  font-size: 1rem;
}
.home-service .nav .nav-item a span.two {
  font-size: 2rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .home-service .nav .nav-item a span.two {
    font-size: 1.375rem;
  }
}
@media (max-width: 599.98px) {
  .home-service .nav .nav-item a span.two {
    font-size: 1rem;
  }
}
.home-service .nav .nav-item a span.three {
  opacity: 0;
  content: "albums";
  font-family: "Julietta Messie";
  font-size: 120px;
  color: #F2F3F0;
  position: absolute;
  top: -10px;
  z-index: 1;
  text-transform: lowercase;
  left: -50px;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
@media (max-width: 599.98px) {
  .home-service .nav .nav-item a span.three {
    display: none;
  }
}
.home-service .nav .nav-item a.active {
  color: #59C3B9;
}
.home-service .nav .nav-item a.active span.two {
  text-decoration: underline;
}
.home-service .nav .nav-item a.active span.three {
  opacity: 1;
}
.home-service .nav .nav-item a:hover span.three {
  opacity: 1;
}
@media (max-width: 599.98px) {
  .home-service .nav .nav-item a {
    width: 160px;
  }
}
.home-service .img-box {
  width: 60%;
  position: absolute;
  top: 150px;
  right: 0;
}
@media (max-width: 599.98px) {
  .home-service .img-box {
    top: 0;
  }
}
.home-service .img-box .contant-area .img-area {
  min-height: 600px;
  max-height: 600px;
  overflow: hidden;
}
@media (max-width: 599.98px) {
  .home-service .img-box .contant-area .img-area {
    min-height: auto;
    max-height: auto;
  }
}
.home-service .img-box .contant-area .img-area img {
  width: 100%;
}
.home-service .img-box .link {
  width: 125px;
  height: 125px;
  position: absolute;
  top: 70px;
  left: 70px;
}
.home-service .img-box .link svg {
  width: 100%;
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .home-service .img-box {
    position: relative;
    width: 100%;
  }
}
@media (max-width: 599.98px) {
  .home-service .img-box {
    position: relative;
    width: 100%;
  }
}

.home-fs h2 {
  letter-spacing: 0.04em;
  font-size: 3.375rem;
  margin-bottom: 60px;
}
@media (max-width: 599.98px) {
  .home-fs h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.home-fs .item {
  margin-bottom: 60px;
}
.home-fs .item .img-box img {
  width: 100%;
}
.home-fs .item .content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #59C3B9;
  cursor: pointer;
}
.home-fs .item .content p {
  font-size: 14px;
  color: #4f6165;
  margin-bottom: 10px;
}
.home-fs .item .content .links {
  display: flex;
}
.home-fs .item .content .links a {
  margin-right: 25px;
}

.top-albums {
  position: relative;
  margin-top: 150px;
  padding: 100px 0 50px 0;
}
@media (max-width: 599.98px) {
  .top-albums {
    margin-top: 30px;
    padding: 30px 0 30px 0;
  }
}
.top-albums:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  margin: 0 auto;
  height: 100%;
  background: #F4F0ED;
}
.top-albums .container {
  position: relative;
  z-index: 2;
}
.top-albums .slide-box {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.top-albums h2 {
  text-transform: uppercase;
}
@media (max-width: 599.98px) {
  .top-albums h2 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 599.98px) {
  .top-albums .btn-box {
    text-align: center !important;
  }
}
.top-albums .item {
  padding-right: 10px;
  margin-bottom: 50px;
}
.top-albums .item .img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.top-albums .item .img-box img {
  display: block;
  width: 100%;
}
.top-albums .item .img-box .btns {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.top-albums .item .img-box button.upload-btn {
  position: absolute;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px dashed #77765A;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-albums .item .content {
  text-align: left;
}
@media (max-width: 599.98px) {
  .top-albums .item .content {
    text-align: center;
  }
}
.top-albums .item .content h3, .top-albums .item .content h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #59C3B9;
  display: block;
  letter-spacing: 0.04em;
  line-height: 28px;
}
@media (max-width: 599.98px) {
  .top-albums .item .content h3, .top-albums .item .content h6 {
    text-align: left;
  }
}
.top-albums .item .content p {
  font-size: 12px;
  color: #4f6165;
  margin-bottom: 2px;
  width: 85px;
}
.top-albums .item .content p.name {
  display: inline-block;
  width: calc(90% - 85px);
  line-height: 18px;
  word-break: break-all;
}
@media (max-width: 599.98px) {
  .top-albums .item .content p.name {
    text-align: left;
  }
}
.top-albums .item .content .albm-name {
  display: flex;
  align-items: center;
}
@media (max-width: 599.98px) {
  .top-albums .item .content .albm-name {
    justify-content: center;
  }
}
.top-albums .item .content .albm-name .line {
  display: block;
  width: 1px;
  height: 14px;
  background-color: #59C3B9;
  margin-left: 16px;
  margin-right: 16px;
}
.top-albums .item:hover .img-box .btns {
  opacity: 1;
}
.top-albums.inner-albums {
  padding: 0;
  margin-top: 30px;
}
.top-albums.inner-albums:before, .top-albums.inner-albums:after {
  display: none;
}
.top-albums.inner-albums .item {
  margin-bottom: 0;
  padding-right: 0;
  margin-bottom: 30px;
}
.top-albums .col-md-3 .item .img-box {
  height: auto;
}

.contact-box {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 60px;
  background: #20BBB1;
}
.contact-box .head {
  position: relative;
}
.contact-box .head h2 {
  color: #ffffff;
  font-size: 36px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 599.98px) {
  .contact-box .head h2 {
    font-size: 26px;
  }
}
.contact-box .head h3 {
  width: 100%;
  position: absolute;
  font-size: 133px;
  font-family: "Julietta Messie";
  color: #E5E5E5;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.2;
  text-transform: lowercase;
}
@media (max-width: 599.98px) {
  .contact-box .head h3 {
    font-size: 80px;
  }
}
.contact-box .head a {
  display: inline-block;
  margin-top: 40px;
}
.contact-box .head a.s-btn:hover {
  background: #ffffff !important;
  color: #20BBB1 !important;
}

.insta-box {
  position: relative;
  padding: 0 0 130px 0;
  margin-bottom: 11 0px;
}
@media (max-width: 599.98px) {
  .insta-box {
    padding: 0 0 60px 0;
    margin-bottom: 70px;
  }
}
.insta-box .head {
  text-align: center;
}
.insta-box .head h2 {
  font-size: 54px;
  letter-spacing: 0.04em;
  color: #5F5E48;
}
@media (max-width: 599.98px) {
  .insta-box .head h2 {
    font-size: 32px;
  }
}
.insta-box .head a {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #77765A;
}
.insta-box .insta-images {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 90%;
  margin: 80px auto 0 auto;
}
@media (max-width: 599.98px) {
  .insta-box .insta-images {
    margin: 40px auto 0 auto;
  }
}
.insta-box .insta-images .item {
  position: relative;
  width: calc(20% - 12px);
}
.insta-box .insta-images .item img {
  width: 100%;
}
.insta-box .insta-images .item:last-child .links {
  position: absolute;
  top: 0;
  text-align: center;
  width: 78px;
  margin: 0 auto;
  top: 33%;
  left: 0;
  right: 0;
}
@media (max-width: 599.98px) {
  .insta-box .insta-images .item:last-child .links {
    width: 16px;
    top: 0;
  }
}
.insta-box .insta-images .item:last-child .links svg {
  display: block;
  margin: 0 auto;
}
@media (max-width: 599.98px) {
  .insta-box .insta-images .item:last-child .links svg {
    width: 100%;
  }
}
.insta-box .insta-images .item:last-child .links span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #ffffff;
}
.insta-box .sub-text {
  position: absolute;
  color: #E5E5E5;
  font-size: 133px;
  font-family: "Julietta Messie";
  text-align: center;
  right: 0;
  left: 0;
  bottom: -30px;
}
@media (max-width: 599.98px) {
  .insta-box .sub-text {
    font-size: 50px;
  }
}

.ad-slide-box {
  padding: 100px 0 100px 0;
}
@media (max-width: 599.98px) {
  .ad-slide-box {
    padding: 50px 0 100px 0;
  }
}
.ad-slide-box .item {
  padding-right: 20px;
  height: 350px;
}
@media (max-width: 599.98px) {
  .ad-slide-box .item {
    height: 150px;
  }
}
.ad-slide-box .item img {
  width: auto;
  height: 350px;
}
@media (max-width: 599.98px) {
  .ad-slide-box .item img {
    height: 100%;
  }
}
.ad-slide-box .s-btn {
  margin-top: 35px;
}

.feedback {
  padding: 0;
  margin-bottom: 80px;
}
.feedback h2 {
  font-size: 54px;
  color: #5F5E48;
  letter-spacing: 0.04em;
  margin-bottom: 80px;
}
@media (max-width: 599.98px) {
  .feedback h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.feedback .slick-slide {
  margin-right: 30px;
}
.feedback .item {
  background: #F2F3F0;
  padding: 20px 35px;
  text-align: center;
}
@media (max-width: 599.98px) {
  .feedback .item {
    padding: 50px 30px;
  }
}
.feedback .item .img-box {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback .item .img-box img {
  height: 100%;
}
.feedback .item .content {
  text-align: center;
}
.feedback .item .content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #77765A;
  letter-spacing: 0.04em;
  margin-top: 20px;
}
.feedback .item .content span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: #77765A;
  margin-top: 10px;
  margin-bottom: 20px;
  font-style: italic;
}
.feedback .item .content p {
  color: #B5AAA1;
  font-size: 14px;
  line-height: 140%;
  height: 200px;
}
.feedback .s-btn {
  margin-top: 30px;
}

.getaquote {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.getaquote:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #1C2222;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.getaquote .img-box img {
  width: 100%;
  display: block;
}
.getaquote .item {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.getaquote .item h2 {
  color: #ffffff;
  letter-spacing: 0.04em;
  font-size: 64px;
  margin-bottom: 10px;
}
@media (max-width: 599.98px) {
  .getaquote .item h2 {
    font-size: 35px;
  }
}
.getaquote .item p {
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-transform: capitalize;
  margin-bottom: 40px;
  width: 80%;
  margin: 0 auto 20px auto;
}
@media (max-width: 599.98px) {
  .getaquote .item p {
    width: 100%;
  }
}
.getaquote .item .p-btn {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  color: #ffffff;
  margin-right: 24px;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.getaquote .item .p-btn:hover {
  background: #20BBB1;
  color: #ffffff;
}
@media (max-width: 599.98px) {
  .getaquote .img-box img {
    height: 400px;
    width: auto;
  }
}
@media (max-width: 599.98px) and (max-width: 599.98px) {
  .getaquote .img-box img {
    height: auto;
  }
}

.inner-content {
  padding: 80px 0;
}

.pricing-box {
  margin-top: 133px;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing-box {
    margin-top: 25px;
  }
}
.pricing-box .pricing-head h2 {
  font-family: "Helvetica";
  font-size: 36px;
  line-height: 41px;
  text-align: center;
  text-transform: capitalize;
  color: #393939;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing-box .pricing-head h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
.pricing-box .pricing-head p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #ABB4B6;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing-box .pricing-head p {
    margin-bottom: 10px;
  }
}
.pricing-box .price-list-head {
  margin: 0 auto;
}
.pricing-box .price-list-head ul {
  margin: 0 auto;
  border-bottom: 0;
  background: #F4F5FC;
  border-radius: 36px;
  width: 285px;
}
.pricing-box .price-list-head ul li {
  margin-bottom: 0;
  padding: 8px;
}
.pricing-box .price-list-head ul li a {
  padding: 20px 40px;
  border: 0;
  border-radius: 50px;
  background-color: transparent;
  color: #393939;
  opacity: 0.5;
}
.pricing-box .price-list-head ul li a.active {
  background-color: #ffffff;
  box-shadow: 0px 12px 10px rgba(0, 0, 0, 0.1);
  color: #F37821;
  font-weight: bold;
  opacity: 1;
}
.pricing-box .price-list-head p {
  color: #ABB4B6;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}
.pricing-box .price-offer-box {
  display: flex;
  align-items: center;
  position: relative;
  width: 162px;
  margin: 0 auto 20px auto;
}
.pricing-box .price-offer-box p {
  font-size: 18px;
  color: #F37821;
}
.pricing-box .price-list-content {
  background: #F2F3F0;
  margin-top: 200px;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .pricing-box .price-list-content {
    margin-top: 126px;
  }
}
.pricing-box .price-list-content .price-box {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599.98px) {
  .pricing-box .price-list-content .price-box {
    display: block;
  }
}
.pricing-box .price-list-content .price-box .item {
  width: 30%;
  background: #ffffff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: -100px;
  border: 1px solid #DFE2D8;
  position: relative;
}
@media (max-width: 599.98px) {
  .pricing-box .price-list-content .price-box .item {
    width: 100%;
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.pricing-box .price-list-content .price-box .item span {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #20BBB1;
  display: block;
  margin-bottom: 10px;
}
.pricing-box .price-list-content .price-box .item p {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #393939;
  opacity: 0.5;
}
.pricing-box .price-list-content .price-box .item .price-text {
  font-weight: bold;
  font-size: 64px;
  line-height: 74px;
  text-align: center;
  color: #393939;
  margin-top: 10px;
  margin-bottom: 10px;
}
.pricing-box .price-list-content .price-box .item .price-text + p {
  font-weight: bold;
  margin-bottom: 36px;
}
.pricing-box .price-list-content .price-box .item .p-btn {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -30px;
}
.pricing-box .price-list-content .price-box .item.active {
  background: linear-gradient(133.7deg, #20BBB1 -6.73%, #078FDC 104.55%);
  border: 1px solid transparent;
}
.pricing-box .price-list-content .price-box .item.active p, .pricing-box .price-list-content .price-box .item.active span, .pricing-box .price-list-content .price-box .item.active .price-text {
  color: #ffffff;
  opacity: 1;
}
.pricing-box .price-list-content .price-box .item.active .p-btn {
  background: #F37821;
  border: 0;
}
.pricing-box .price-list-content .pricing-head {
  text-align: center;
  margin-top: 90px;
}
.pricing-box .price-list-content .pricing-head h3 {
  font-family: "Helvetica";
  font-weight: bold;
  font-size: 36px;
}
.pricing-box .price-list-content .content-area .table {
  margin-bottom: 50px;
}
.pricing-box .price-list-content .content-area .table th,
.pricing-box .price-list-content .content-area .table td {
  padding: 30px 30px;
}
.pricing-box .price-list-content .content-area .table th:first-child,
.pricing-box .price-list-content .content-area .table td:first-child {
  padding-left: 60px;
}
.pricing-box .price-list-content .content-area .table th:last-child,
.pricing-box .price-list-content .content-area .table td:last-child {
  padding-right: 60px;
}
.pricing-box .price-list-content .content-area .table thead {
  background: #ffffff;
}
.pricing-box .price-list-content .content-area .table thead th {
  border: 0;
  font-weight: bold;
  font-size: 16px;
  color: #20BBB1;
}
.pricing-box .price-list-content .content-area .table thead th:first-child {
  color: #393939;
}
.pricing-box .price-list-content .content-area .table tbody th {
  color: #393939;
}
.pricing-box .price-list-content .content-area .table tbody td,
.pricing-box .price-list-content .content-area .table tbody th {
  border-top: 0;
  border-bottom: 1px solid #DFE2D8;
}
.pricing-box .price-list-content .content-area .table tbody td {
  position: relative;
}
.pricing-box .price-list-content .content-area .table tbody td .icon {
  display: flex;
  align-items: center;
}
.pricing-box .price-list-content .content-area .table tbody td .icon svg {
  width: 22px;
  height: 22px;
}

footer {
  overflow: hidden;
}
footer .top {
  padding-top: 208px;
  padding-bottom: 50px;
}
@media (max-width: 599.98px) {
  footer .top {
    padding-top: 80px;
  }
}
footer .top .social {
  width: 60%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 599.98px) {
  footer .top .social {
    margin: 0 auto 30px auto;
  }
}
footer .top .link {
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #B5AAA1;
  font-weight: 300;
  padding-left: 20px;
}
@media (max-width: 599.98px) {
  footer .top .link {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}
footer .top .center-area {
  margin: 0 auto;
}
footer .top .center-area .logo {
  display: block;
  width: 154px;
  margin: 0 auto;
}
footer .top .center-area .logo img {
  width: 100%;
}
footer .top .center-area .links {
  margin-top: 15px;
  text-align: center;
}
footer .top .center-area .links a {
  color: #59C3B9;
  font-size: 14px;
}
footer .top .center-area .links i {
  color: #59C3B9;
  display: inline-block;
  margin: 0 20px;
}
footer .top .center-bottom span {
  display: block;
  color: #20BBB1;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 100px;
}
footer .copyright .text-center span {
  color: #25bfa3;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
}
footer .copyright .text-center a {
  color: #25bfa3;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 599.98px) {
  footer .top .center-bottom span {
    margin-top: 40px;
  }
}
footer .top .center-bottom p {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
footer .top .center-bottom p a {
  width: 100%;
  color: #5F5E48;
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 599.98px) {
  footer .top .center-bottom p a {
    font-size: 30px;
  }
}
@media (max-width: 599.98px) {
  footer .top .center-bottom p a {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
footer .top p {
  width: 240px;
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #B5AAA1;
}
@media (max-width: 599.98px) {
  footer .top p {
    width: 100%;
    text-align: center;
  }
}
footer .top .row .col-md-4 {
  position: relative;
}
footer .top .row .col-md-4:nth-child(2):after, footer .top .row .col-md-4:nth-child(2):before {
  content: "";
  width: 1px;
  height: 260px;
  background: #ECE9E7;
  display: block;
  position: absolute;
  top: -100px;
}
@media (max-width: 599.98px) {
  footer .top .row .col-md-4:nth-child(2):after, footer .top .row .col-md-4:nth-child(2):before {
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  footer .top .row .col-md-4:nth-child(2):after, footer .top .row .col-md-4:nth-child(2):before {
    display: none;
  }
}
footer .top .row .col-md-4:nth-child(2):after {
  left: -50px;
}
footer .top .row .col-md-4:nth-child(2):before {
  right: -50px;
}
footer .bottom {
  position: relative;
  background: #D1DBCD;
  padding: 100px 0;
}
footer .bottom a {
  display: block;
  color: #77765A;
  font-size: 14px;
  line-height: 200%;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
footer .bottom a:hover {
  color: #20BBB1;
}
@media (max-width: 599.98px) {
  footer .bottom a {
    width: 100%;
    text-align: center;
  }
}
footer .bottom .sub-text {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  left: 0;
  margin: 0 auto;
  font-size: 133px;
  color: #E1EBDD;
  font-family: "Julietta Messie";
}
.message {
  top: 0;
  right: 0;
  text-align: right;
  font-weight: 900;
  left: 0;
  margin: 0 auto;
  font-size: 133px;
  color: #02685a;
  font-family: "Julietta Messie";
}
@media (max-width: 599.98px) {
  footer .bottom .sub-text {
    font-size: 83px;
  }
}
footer .bottom .container {
  position: relative;
  z-index: 2;
}
footer .cprt {
  background: #7f847c;
  text-align: center;
  padding: 15px;
}
footer .cprt p {
  font-size: 0.75rem;
  color: #ffffff;
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */

.invite-box .img-edit-btn > input {
  height: 100%;
  width: 50px;
  opacity: 0;
  cursor: pointer;
 
}

/*upload button */

.top-albums .item .img-box button.upload-btn1 {
  position: absolute;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* border: 2px dashed #77765A; */
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* start */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;20'); */





.pagination1{
    text-align: center;
    margin: 30px 0;
    user-select: none;
}
.pagination1 li{
    display: inline-block;
    margin: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
}
.pagination1 li:first-child{
  margin-left: 0 !important;
}
.pagination1 li a{
    color:#000;
    text-decoration: none;
    font-size: 1.2em;
    line-height: 19px;
}
.previous-page, .next-page{
    background: #0AB1CE;
    width: 80px;
    border-radius: 45px;
    cursor: pointer;
    transition: 0.3s ease;
}

.previous-page:hover{
    transform: translateX(-5px);
}
.next-page:hover{
    transform: translateX(5px);

}
.current-page, .dots{
    background: #ccc;
    width: 45px;
    border-radius: 50%;
    cursor:pointer;
}
/* .active{
    background: #0AB1CE;
} */
.disable{
    background: #ccc;
}
li.page-item.previous-page a,li.page-item.next-page a {
  color: #000;
}

/* end */


  
  /* end compliment section styles */


  /* start */
.event-content .event-temp-list .item{
  width: 20%;
  margin-left: 5%;
}
/* end */


/* start sep13 */
.popup_button {
  position: absolute;
  /* z-index: 99; */
  z-index: 0;
  color: red;
  background: white;
  height: 35px;
  width: 120px;
  line-height: 35px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 9px;
  opacity: 0.6;
}


.img-box {
position: relative;
}

.list_wrapper.event-temp-list{
display: table !important;
}
.list_wrapper.event-temp-list .item{
float: left;
}

@media only screen and (max-width:992px){
  .event-content .event-temp-list .item{
    width:30%;
    margin:0 1%;
  }
}


@media only screen and (max-width:767px){
  .event-content .event-temp-list .item{
    width:46%;
    margin:0 1%;
  }
}

@media only screen and (max-width:600px){
  .event-content .event-temp-list .item{
    width:94%;
    margin:0 3%;
  }
}

@media only screen and (max-width:992px){
  .modal-footer{
    width:30%;
    margin:0 1%;
  }
}


@media only screen and (max-width:767px){
   .modal-footer{
    width:46%;
    margin:0 1%;
  }
}

@media only screen and (max-width:600px){
  .modal-footer{
    width:94%;
    margin:0 3%;
  }
}



.modal-open{
  overflow: auto !important;
}



.color-9 .zero {
  background: #040a02;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-9  span{
  color: #FDBCFD;
}
.color-9 p {
  color:#FDBCFD;
}
.color-9 h2 {
  color:#f07677;

}
.color-9 .zero2 h4{
  color:goldenrod;
}



.font1 {
  font-family: 'Besley', serif;
}


/* start sep15 */
.linecenterinv-6{
  margin: 0 auto;
}


/* color type3 start */
.color-10 .zero1 {
  background:#240831;
  color: #E44B7D;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-10 .zero2 {
  background:#240831;
  color: #E44B7D;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-10 .zero2 h4{
  color:goldenrod;
}
.color-10 .zero2 p{
  color:goldenrod;
}
.color-10 h1 {
  color: #E44B7D;
}
.color-10  h2{
  color: #E44B7D;
}
.color-10 h4{
  color: red;
}
.color-10 .zero3 {
  background:#7A0051;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-10  span{
  color: #FDBCFD;
}


.color-10 .zero4 {
  background:#7A0051;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-9 h1,h2,h3,h4,h5,h6,p{

 color: #ffffff;
}

/* color type 3 end */

/* color type4 start */
.color-7 .zero1 {
  background:#240831;
  color: #E44B7D;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-7 .zero2 {
  background:#490034;
  color: #F6B405;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-7 h1 {
  color: #F6B405;
}
.color-7 h4 {
  color: #F6B405;
}
.color-7  h2{
  color: #F6B405;
}
.color-7 .zero2 p{
  color: white;
}
.color-7 .zero3 {
  background:#7A0051;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-7 .zero4 {
  background:#490034;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-7  span{
  color: #FDBCFD;
}


/* color type 4 end */

/* inv1 type7 start */
/* .color-7 .zeroinv1 {
  background:#240831;
  color: #E44B7D;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-7.lookatubg{
  background:#240831;
} */

/* end inv1 type7 */

/* color type5 start */
/* .color-8 .zero1 {
  background:#B3D8E0;
 
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-8 p {
  color: #0B2840;
}
.color-8 h4 {
  color: #0B2840;
}
.color-8 .zero2 {
  background:#0B2840;
  color: #B3D8E0;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-8 .zero2 p{
  color: white;
}
.color-8 h1 {
  color: #B3D8E0;
}
.color-8 h4 {
  color: #B3D8E0;
}
.color-8  h2{
  color: #B3D8E0;
}
.color-8 .zero3 {
  background:#132F70;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-8 .lookatu{
  background: #B3D8E0;
  color:#0B2840;
}

.color-8 .zero4 {
  background:#0B2840;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-8  span{
  color: #FDBCFD;
} */


/* color type 5 end */



/* color type 6 end */

/* end sep15 */

/* .font-1 zero{
  font-family: "Times New Roman", Times, serif;
} */

.inv6home{
  color:black;
}



/* start sep16 */
.color-1 .zero1 {
  background:white;
  color:black;
 /* font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large; */
}

.color-1 .zero2 {
  background:white;
  color:black;
 /* font-family: Arial, Helvetica, sans-serif;
 font-size:x-large; */
 /* background-image: url("../images/inv6Backgroundwhite2.jpg"); */

 /* The image used */
 /* background-image: url("../images/Inv6Background.jpg"); */
 /* background-image: url("../images/inv6Backgroundwhite23.jpg");
 background-image: url("../images/inv6Backgroundwhite4.jpg"); */
 background-image: url("../images/inv6Backgroundwhite5.jpg");
 /* Full height */
 height: 100%; 

 /* Center and scale the image nicely */
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 opacity:1;
}
.color-1 h1 {
  color:black;
}
.color-1 h4 {
  color:black;
}
.color-1  h2{
  color:black;
}
.color-1 .zero2 p{
  color:black;
}
.color-1 .zero3 {
  color:black;
  background:white;
 /* font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large; */

 /* background-image: url("../images/inv6Backgroundwhite23.jpg"); */
 background-image: url("../images/inv6Backgroundwhite5.jpg");
 /* Full height */
 height: 100%; 

 /* Center and scale the image nicely */
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}
.color-1 .lookatu{
  color: white;
}
.color-1 .lookatubg{
  background: indianred !important;
 
}
.color-1 .chat_section_inv6 .mainfontinv6{
  /* color:#f97c17 !important; */
  color:yellow !important;
}
.color-1 .zero3 h1{
  color:black;
}
.color-1 .zero3 .wd_overlay{
  background: rgba(0, 0, 0, 0.8);
}
.color-1 .zero4 {
  color:black;
  background:white;
 /* font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large; */

 /* background-image: url("../images/inv6Backgroundwhite23.jpg"); */
 background-image: url("../images/inv6Backgroundwhite5.jpg");
 /* Full height */
 height: 100%; 

 /* Center and scale the image nicely */
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}
.color-1  span{
  color:black;
}
.color-1 .zero3 h6{
  color: black;
}
/* .color-1 .mainfontinv6{
  color: black !important;
} */

.color-1 .zero2 .mplogoinv6{
  border:40px solid #1a1a1a;
}
.color-1 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #444546!important;
}
.color-1 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-1 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-1 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}

/* color black */
/* .color-2 .zero1 {
  background:black;
  color:goldenrod;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-2 .zero2 {
  background:black;
  color:goldenrod;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-2 h1 {
  color:goldenrod;
}
.color-2 h4 {
  color:goldenrod;
}
.color-2  h2{
  color:goldenrod;
}
.color-2 .zero2 p{
  color:goldenrod;
}
.color-2 .zero3 {
  background:black;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-2 .lookatu{
  color:goldenrod;
}
.color-2 .lookatubg{
  background: black;
}
.color-2 .zero3 h1{
  color:goldenrod;
}

.color-2 .zero4 {
  background:black;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-2  span{
  color:goldenrod;
} */


/* color lightgreen */
/* .color-3 .zero1 {
  background:#CDF0EA;
  color:black;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-3 .zero2 {
  background:#CDF0EA;
  color:black;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-3 h1 {
  color:black;
}
.color-3 h4 {
  color:black;
}
.color-3  h2{
  color:black;
}
.color-3 .zero2 p{
  color:black;
}
.color-3 .zero3 {
  background:#CDF0EA;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-3 .lookatu{
  color:black;
}
.color-3 .lookatubg{
  background: #F6C6EA;
}
.color-3 .zero3 h1{
  color:black;
}

.color-3 .zero4 {
  background:#CDF0EA;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-3 .zero4 p{
  color: #000;
}
.color-3  span{
  color:black;
} */

/* color darkgreen */
/* .color-4 .zero1 {
  background:#053742;
  color:goldenrod;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-4 .zero2 {
  background:#053742;
  color:goldenrod;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-4 h1 {
  color:goldenrod;
}
.color-4 h4 {
  color:goldenrod;
}
.color-4  h2{
  color:goldenrod;
}
.color-4 .zero2 p{
  color:goldenrod;
}
.color-4 .zero3 {
  background:#053742;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-4 .lookatu{
  color:goldenrod;
}
.color-4 .lookatubg{
  background:#053742;
}
.color-4 .zero3 h1{
  color:goldenrod;
}

.color-4 .zero4 {
  background:#053742;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-4 .zero4 p{
  color:goldenrod;
}
.color-4  span{
  color:goldenrod;
} */

/* color 5*/
/* .color-5 .zero1 {
  background:#26001B;
  color:#cb9e0b;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-5 .zero2 {
  background:#26001B;
  color:#cb9e0b;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-5 h1 {
  color:#cb9e0b;
}
.color-5 h4 {
  color:#cb9e0b;
}
.color-5  h2{
  color:#cb9e0b;
}
.color-5 .zero2 p{
  color:#cb9e0b;
}
.color-5 .zero3 {
  background:#26001B;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-5 .lookatu{
  color:#cb9e0b;
}
.color-5 .lookatubg{
  background:#26001B;
}
.color-5 .zero3 h1{
  color:#cb9e0b;
}

.color-5 .zero4 {
  background:#26001B;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-5 .zero4 p{
  color:#cb9e0b;
}
.color-5  span{
  color:#cb9e0b;
} */
/* color 6*/
/* .color-6 .zero1 {
  background:#1C345E;
  color:#FFFFFF;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-6 .zero2 {
  background:#1C345E;
  color:#FFFFFF;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-6 h1 {
  color:#FFFFFF;
}
.color-6 h4 {
  color:#FFFFFF;
}
.color-6  h2{
  color:#FFFFFF;
}
.color-6 .zero2 p{
  color:#FFFFFF;
}
.color-6 .zero3 {
  background:#1C345E;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-6 .lookatu{
  color:#FFFFFF;
}
.color-6 .lookatubg{
  background:#00B7DD;
}
.color-6 .box-7 .content .zero2{
  background:#1C345E;
}
.color-6 .box-7 .content .viewbg a{
 color: white;
}

 .color-6.lookatubg{
  background:#00B7DD;
}
.color-6 .box-5 .container .zero2{
  background:#1C345E;
}
.color-6 .lookatubg .zero2 {
  background:#1C345E;
}
.color-6 .zero3 h1{
  color:#FFFFFF;
}

.color-6 .zero4 {
  background:#1C345E;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-6 .zero4 p{
  color:#FFFFFF;
}
.color-6  span{
  color:#FFFFFF;
} */


/* end sep16 */



/* start sep17 */
/* .color-11 .zero1 {
  background:#240831;
  color: #E44B7D;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-11 .zero2 {
  background:#9AA4EC;
  color: black;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}
.color-11 h1 {
  color: black;
}
.color-11 h4 {
  color: black;
}
.color-11  h2{
  color: black;
}
.color-11 .zero2 .smalltext{
  color: black;
} */

/* .color-1 .zero2 .wd_about_infobox_img{
  background: black;
} */
/* .color-11 .zero2 p{
  color: white;
}
.color-11 .zero3 {
  background: #4EA1D3;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
}

.color-11 .zero3 h1{
  color: goldenrod;
}

.color-11 .zero4 {
  background:#490034;
 font-style: italic;
 font-family: Arial, Helvetica, sans-serif;
 font-size:x-large;
} */
/* .color-11  span{
  color: #FDBCFD;
} */


/* end sep17 */


/* sep23 font start */

 a.btn.btn-light{
  margin-bottom: 25px !important;
}
.subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  color: #cb9e0b !important;
}
/* type1 */
.font-1 .mainfontinv6{
 
  font-family: 'Dancing Script' !important;
  font-size: 40px;
}
.font-1 .mainfontinv6_chat_box{
  font-family: 'Dancing Script';font-size: 26px;
}
.font-1 .subfontinv6{
  font-family: 'Acme' !important;
  font-size: 20px;
}
.font-1 .subfontinv6_chat_box{
  font-family: 'Acme';
  font-size: 16px;
}
.font-1 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px;
  
}
.font-1 .mainfontinv6.big-fonts{
  font-size: 50px;
}

@media screen and (max-width: 700px) {
  .font-1 .subfontinv6 {
   font-size: 16px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-1 .mainfontinv6 {
   font-size: 22px !important;
      
   }
 }



 /* .invite-box.p-fonts.font-1 .mainfontinv6{
 
  font-family: 'Dancing Script';font-size: 40px;
}
.invite-box.p-fonts.font-1 .mainfontinv6_chat_box{
  font-family: 'Dancing Script';font-size: 26px;
}
.invite-box.p-fonts.font-1 .subfontinv6{
  font-family: 'Acme';font-size: 18px;
}
.invite-box.p-fonts.font-1 .subfontinv6_chat_box{
  font-family: 'Acme';
  font-size: 16px;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-1 .subfontinv6 {
   font-size: 11px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-1 .mainfontinv6 {
   font-size: 21px !important;
      
   }
 } */


/* type2 */
.font-2 .mainfontinv6{
 
  
  font-family: 'Niconne' !important;font-size: 42px;
}
.font-2 .mainfontinv6_chat_box{
  font-family: 'Niconne';font-size: 26px;
}
.font-2 .subfontinv6{
 
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-2 .subfontinv6_chat_box{

  font-family: "Times New Roman", Times, serif;
  font-size: 16px !important;
}
.font-2 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-2 .mainfontinv6.big-fonts{
  font-size: 55px;
}

@media screen and (max-width: 700px) {
  .font-2 .subfontinv6 {
   font-size: 12px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-2 .mainfontinv6 {
   font-size: 22px !important;
      
   }
 }

 /* .invite-box.p-fonts.font-2 .mainfontinv6{
 
  
  font-family: 'Niconne';font-size: 42px;
}
.invite-box.p-fonts.font-2 .mainfontinv6_chat_box{
  font-family: 'Niconne';font-size: 26px;
}
.invite-box.p-fonts.font-2 .subfontinv6{
 
  font-family: "Times New Roman", Times, serif;
  font-size: 20px !important;
}
.invite-box.p-fonts.font-2 .subfontinv6_chat_box{

  font-family: "Times New Roman", Times, serif;
  font-size: 16px !important;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-2 .subfontinv6 {
   font-size: 12px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-2 .mainfontinv6 {
   font-size: 22px !important;
      
   }
 } */

.color-7 .p-btn.border-v-locate{
  border-color: #cb9223 !important; 
}
/* type3 */
.font-3 .mainfontinv6{
 
  font-family: 'Great Vibes' !important;font-size: 38px ;
}
.font-3 .subfontinv6{
  font-family: 'Merienda' !important;font-size: 18px ;
}
.font-3 .subfontinv6_chat_box{
  font-family: 'Merienda';font-size: 14px !important;
}
.font-3 .mainfontinv6_chat_box{
  font-family: 'Great Vibes';font-size: 26px !important;
}
.font-3 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-3 .mainfontinv6.big-fonts{
  font-size: 55px;
}


@media screen and (max-width: 700px) {
  .font-3 .subfontinv6 {
   font-size: 15px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-3 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-3 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-3 .mainfontinv6.big-fonts{
    font-size: 55px;
  }
 }


 /* .invite-box.p-fonts.font-3 .mainfontinv6{
 
  font-family: 'Great Vibes';font-size: 39px !important;
}
.invite-box.p-fonts.font-3 .subfontinv6{
  font-family: 'Merienda';font-size: 16px !important;
}
.invite-box.p-fonts.font-3 .subfontinv6_chat_box{
  font-family: 'Merienda';font-size: 14px !important;
}
.invite-box.p-fonts.font-3 .mainfontinv6_chat_box{
  font-family: 'Great Vibes';font-size: 26px !important;
}


@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-3 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-3 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */

/* type4 */
.font-4 .mainfontinv6{
  font-family: 'Sacramento' !important;font-size: 38px;
 
}
.font-4 .mainfontinv6_chat_box{
  font-family: 'Sacramento';font-size: 26px;
}
.font-4 .subfontinv6{
  font-family: 'Philosopher' !important;font-size: 20px;
}

.font-4 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-4 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 700px) {
  .font-4 .subfontinv6 {
   font-size: 17px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-4 .mainfontinv6 {
   font-size: 25px !important;
      
   }
   .font-4 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-4 .mainfontinv6.big-fonts{
    font-size: 55px;
  }
  
 }



 /* .invite-box.p-fonts.font-4 .mainfontinv6{
  font-family: 'Sacramento';font-size: 38px;
 
}
.invite-box.p-fonts.font-4 .mainfontinv6_chat_box{
  font-family: 'Sacramento';font-size: 26px;
}
.invite-box.p-fonts.font-4 .subfontinv6{
  font-family: 'Philosopher';font-size: 17px;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-4 .subfontinv6 {
   font-size: 11px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-4 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */

 @media screen and (max-width: 700px) {
 .compli-2btn-temp6 .blog-btn{
   margin-top: 25px !important;
 }
}
/* type5 */
.font-5 .mainfontinv6{
  font-family: 'Tangerine' !important;
  font-size: 50px;
 
}
.font-5 .subfontinv6{
  font-family: 'Saira' !important;font-size: 18px;
}

.font-5 .subfontinv6_chat_box{
  font-family: 'Saira';font-size: 15px;
}
.font-5 .mainfontinv6_chat_box{
  font-family: 'Tangerine';
  font-size: 26 !important;
}
.font-5 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 26px !important;
}
.font-5 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-5 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 700px) {
  .font-5 .subfontinv6 {
   font-size: 15px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-5 .mainfontinv6 {
   font-size: 30px !important;
      
   }
   .font-5 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-5 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }


 /* .invite-box.p-fonts.font-5 .mainfontinv6{
  font-family: 'Tangerine';
  font-size: 50px;
 
}
.invite-box.p-fonts.font-5 .subfontinv6{
  font-family: 'Saira';font-size: 18px;
}

.invite-box.p-fonts.font-5 .subfontinv6_chat_box{
  font-family: 'Saira';font-size: 15px;
}
.invite-box.p-fonts.font-5 .mainfontinv6_chat_box{
  font-family: 'Tangerine';
  font-size: 26 !important;
}
.invite-box.p-fonts.font-5 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 26px !important;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-5 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-5 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */

/* type6 */
.font-6 .mainfontinv6{
  
 
  font-family: 'Oleo Script Swash Caps' !important;
 
  font-size: 30px;}



.font-6 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 21px !important;
}

.font-6 .subfontinv6{
 
  font-family: "Times New Roman", Times, serif !important;
  font-size: 18px !important;
}
.font-6 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-6 .mainfontinv6.big-fonts{
  font-size: 55px;}


@media screen and (max-width: 700px) {
  .font-6 .subfontinv6 {
   font-size: 16px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-6 .mainfontinv6 {
   font-size: 19px !important;
      
   }
   .font-6 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-6 .mainfontinv6.big-fonts{
    font-size: 55px;}
 

 }



 /* .invite-box.p-fonts.font-6 .mainfontinv6{
  
 
  font-family: 'Oleo Script Swash Caps';
 
  font-size: 42px;
}


.invite-box.p-fonts.font-6 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 21px !important;
}

.invite-box.p-fonts.font-6 .subfontinv6{
 
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-6 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-6 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */


/* type7 */
.font-7 .mainfontinv6{
  font-family: 'Marck Script' !important;font-size: 38px;
  
}
.font-7 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}

.font-7 h1.mainfontinv6_chat_box{
  font-family: 'Marck Script';
  
}
.font-7 .subfontinv6{
 
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
}
.font-7 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-7 .mainfontinv6.big-fonts{
  font-size: 55px;}
@media screen and (max-width: 1000px) {
  .font-7 .subfontinv6 {
   font-size: 17px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-7 .mainfontinv6 {
   font-size: 25px !important;
      
   }
   .font-7 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-7 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }



 /* .invite-box.p-fonts.font-7 .mainfontinv6{
  font-family: 'Marck Script';font-size: 38px;
  
}
.invite-box.p-fonts.font-7 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}

.invite-box.p-fonts.font-7 h1.mainfontinv6_chat_box{
  font-family: 'Marck Script';
  
}
.invite-box.p-fonts.font-7 .subfontinv6{
 
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
}
@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-7 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-7 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */
/* type8 */
.font-8 .mainfontinv6{
  font-family: 'Satisfy' !important;
 
  font-size: 38px;
}
.font-8 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}
.font-8 .subfontinv6{
  font-family: 'Acme' !important;
 
  font-size: 18px !important;
}
.font-8 .subfontinv6_chat_box{
 
  font-family: 'Acme';
  ;font-size: 18px;
}
.font-8 .mainfontinv6_chat_box{
 
  font-family: 'Satisfy';
  font-size: 41px;
}
.font-8 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-8 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-8 .subfontinv6 {
   font-size: 16px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-8 .mainfontinv6 {
   font-size: 20px !important;
      
   }
   .font-8 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-8 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }


 /* .invite-box.p-fonts.font-8 .mainfontinv6{
  font-family: 'Satisfy';
 
  font-size: 38px;
}
.invite-box.p-fonts.font-8 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}
.invite-box.p-fonts.font-8 .subfontinv6{
  font-family: 'Acme';
 
  font-size: 20px;
}
.invite-box.p-fonts.font-8 .subfontinv6_chat_box{
 
  font-family: 'Acme';
  ;font-size: 18px;
}
.invite-box.p-fonts.font-8 .mainfontinv6_chat_box{
 
  font-family: 'Satisfy';
  font-size: 41px;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-8 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-8 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */
/* type9 */
.font-9 .mainfontinv6{
  
  font-family: 'Niconne' !important;font-size: 42px;
}
.font-9 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}
.font-9 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  
  font-size: 18px !important;
}
.font-9 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-9 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-9 .subfontinv6 {
   font-size: 16px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-9 .mainfontinv6 {
   font-size: 20px !important;
      
   }
   .font-9 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-9 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }



 /* .invite-box.p-fonts.font-9 .mainfontinv6{
  
  font-family: 'Niconne';font-size: 42px;
}
.invite-box.p-fonts.font-9 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}
.invite-box.p-fonts.font-9 .subfontinv6{
  font-family: "Times New Roman", Times, serif;
  
  font-size: 18px !important;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-9 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-9 .mainfontinv6 {
   font-size: 20px !important;
      
   }
 } */

/* type10 */
.font-10 .mainfontinv6{
  font-family: 'Norican' !important;

  font-size: 32px;
}
.font-10 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}
.font-10 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;

  font-size: 18px !important;
}
.font-10 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-10 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-10 .subfontinv6 {
    font-size: 16px !important;}
 }
 @media screen and (max-width: 1000px) {
  .font-10 .mainfontinv6 {
   font-size: 18px !important;
      
   }
   .font-10 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-10 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }


 /* .invite-box.p-fonts.font-10 .mainfontinv6{
  font-family: 'Norican';

  font-size: 42px;
}
.invite-box.p-fonts.font-10 h1.mainfontinv6_chat_box.mainfontinv6.h1_079{
  font-size: 22px !important;
}
.invite-box.p-fonts.font-10 .subfontinv6{
  font-family: "Times New Roman", Times, serif;

  font-size: 18px;
}

@media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-10 .subfontinv6 {
   font-size: 10px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .invite-box.p-fonts.font-10 .mainfontinv6 {
   font-size: 18px !important;
      
   }
 } */
/* font end sep23 */
/* color */
.background_image_section{
  width:100% !important;
  background: url('../images/inv6Backgroundwhite5.jpg') !important;
  background-color: transparent !important;
  background-size:cover !important ;
  position: relative !important;
  overflow: hidden !important;
  background-repeat: no-repeat !important;
}

/* color-2 start */
.color-2 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: rgb(0 0 0 / 50%) !important;
}

.color-2 .mainfontinv6{
  

 color:  #cb9e0b !important;
 
  /* color:yellow !important; */
}
.color-2 .subfontinv6{
 
  /* color:#FCF3A6 !important; */
  color:  #cb9e0b !important;
}

.color-2 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-2 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-2 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-2 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #1a1a1a !important;
}
.color-2 .social_profile_inv61{
 
  /* color:  #cb9e0b !important; */
  color:  #cb9e0b !important;
}
.color-2 .lookatubg{
  /* background:#001932 !important; */
  background: #393939 !important;
}
.color-2 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-2 .subfontinv6_ourbest_color{
  color:red !important;
}


.color-2 .zero3 .wd_overlay {
 
  background: black;

}

.color-2 .chat_section_inv6 .mainfontinv6 {
 
  color:  #cb9e0b !important;
}
/* color-2 end */

/* color-3 start */

.color-3 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: #2fd8bb1f !important;
}

.color-3 .mainfontinv6{
  
  
  color: #fff !important;
}
.color-3 .subfontinv6{
 
  color: #fff !important;

}
.color-3 h3.sub.add-btn-inv6-h3.subfontinv6{
  color: white !important;
}

.color-3 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-3 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-3 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-3 .zero3 button.upload-btn1.plus-btn-ceremony{
  /* background: #c490e4 !important; */
  background: #f6c6ea !important;
}
.color-3 .social_profile_inv61{
  /* color:#001951 !important; */
  color: #001951 !important;
}
.color-3 .lookatubg{
  /* background: #c490e4 !important; */
  background: #f6c6ea !important;
}
.color-3 .lookatu{
  color: #630056 !important;
}
.color-3 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-3 .subfontinv6_ourbest_color{
  color:red !important;
}

.color-3 .chat_section_inv6 .mainfontinv6 {
 
  color: #E34234 !important;
}


.color-3 .wd_overlay{
  /* background: #e032b538 !important; */
  /* background: #2fd8bb1f !important; */
  background: #2fd8bb00 !important;
}
.color-3 .wd_story_covers_box_left{
  /* background: #C490E4 !important; */
  background: #F6C6EA !important;
}
.color-3 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  /* border-top: 0px solid #c490e4;
  border-left: 35px solid rgb(196 144 228); */
  border-top: #f6c6ea !important;
  border-left:35px solid rgb(246 198 234); ;
  border-bottom: 25px solid transparent;
}

.color-3 .wd_story_covers_box_right{
  /* background: #C490E4 !important; */
  background: #F6C6EA !important;
}
.color-3 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  /* border-top: 0px solid #c490e4;
  border-right: 35px solid rgb(196 144 228); */
  border-top: #f6c6ea !important;
  border-right:35px solid rgb(246 198 234); 
  border-bottom: 25px solid transparent;
}
.color-3 .mainfontinv6_chat_box.mainfontinv6{
  color: #fff !important;
}
.color-3 .chat_section_inv6  h1.mainfontinv6{
  color: #630056 !important;
}
.color-3 .subfontinv6_ourbest_color{
  color: #E34234 !important;
}
/* color-3 end */



/* color-4 start */

/* .color-4 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: #00548282 !important;
}

.color-4 .mainfontinv6{
  
  color: #053742 !important;
  
}
.color-4 .subfontinv6{
 
  color: white !important;

}

.color-4 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-4 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-4 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-4 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #005482 !important;
}
.color-4 .social_profile_inv61{
  color:white !important;
}
.color-4 .lookatubg{
  background: #A2DBFA !important;
}
.color-4 .lookatu{
  color: white !important;
}
.color-4 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-4 .subfontinv6_ourbest_color{
  color:red !important;
}


.color-4 .wd_overlay{
  background: #053742 !important;
}
.color-4 .wd_story_covers_box_left{
  background: #005482 !important;
}
.color-4 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #c490e4;
  border-left: 35px solid rgb(0 84 130);
  border-bottom: 25px solid transparent;
}

.color-4 .wd_story_covers_box_right{
  background: #005482!important;
}
.color-4 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #c490e4;
  border-right: 35px solid rgb(0 84 130);
  border-bottom: 25px solid transparent;
}
.color-4 .mainfontinv6_chat_box.mainfontinv6{
  color: yellow !important;
}
.color-4 .chat_section_inv6  h1.mainfontinv6{
  color: yellow !important;
}
.color-4 .subfontinv6_ourbest_color{
  color: red !important;
} */
/* color-4 end */

/* color-5 start */

/* .color-5 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
 
  background: #8100347a !important;
}

.color-5 .mainfontinv6{
  
  color: #26001B !important;
  
}
.color-5 .subfontinv6{
 
  color:#F2EEE5 !important;

}

.color-5 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-5 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-5 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-5 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #810034 !important;
}
.color-5 .social_profile_inv61{
  color:#F2EEE5 !important;
}
.color-5 .lookatubg{
  background: yellow !important;
}
.color-5 .lookatu{
  color: white !important;
}
.color-5 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-5 .subfontinv6_ourbest_color{
  color:red !important;
}


.color-5 .wd_overlay{
  
  background: #26001B !important;
  
}
.color-5 .wd_story_covers_box_left{
 
  background: #810034 !important;
}
.color-5 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #810034;
  border-left: 35px solid rgb(129 0 52);
  border-bottom: 25px solid transparent;
}

.color-5 .wd_story_covers_box_right{
 
  background: #810034 !important;
}
.color-5 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #810034;
  border-right: 35px solid rgb(129 0 52);
  border-bottom: 25px solid transparent;
}
.color-5 .mainfontinv6_chat_box.mainfontinv6{
  color: yellow !important;
}
.color-5 .chat_section_inv6  h1.mainfontinv6{
  color: yellow !important;
}
.color-5 .subfontinv6_ourbest_color{
  color:  #26001B !important;
} */
/* color-5 end */

/* color-6 start */

/* .color-6 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
 background: #6474e566 !important;
}

.color-6 .mainfontinv6{
  
  color: #26001B !important;
  
}


.color-6 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-6 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-6 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-6 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #4ea1d3 !important;
}
.color-6 .social_profile_inv61{
  color:black !important;
}
.color-6 .lookatubg{
  background: #6474E5 !important;
}
.color-6 .lookatu{
  color: white !important;
}
.color-6 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-6 .subfontinv6_ourbest_color{
  color:red !important;
}

.color-6 .wd_overlay{
 
  background: #4ea1d354 !important;
 
}
.color-6 .wd_story_covers_box_left{
 
  background: #4EA1D3!important;
}
.color-6 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #4ea1d3;
  border-left: 35px solid rgb(78 161 211);
  border-bottom: 25px solid transparent;
}

.color-6 .wd_story_covers_box_right{
 
  background: #4EA1D3!important;
}
.color-6 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #4ea1d3;
  border-right: 35px solid rgb(78 161 211);
  border-bottom: 25px solid transparent;
}
.color-6 .mainfontinv6_chat_box.mainfontinv6{
  color: #26001B !important;
}
.color-6 .chat_section_inv6  h1.mainfontinv6{
 
  color: white !important;
}
.color-6 .subfontinv6_ourbest_color{
  color:  #26001B !important;
} */
/* color-6 end */


/* start sep29 */
.template_2_plusbtn{
  border:2px dashed #77765A !important;
   background-color:#efefef !important;
   position: relative !important;
}

.template_2_plusbtn1{
  margin-top:110px !important;
  margin-left: 155px !important;
  position: absolute !important;
  color:black !important;
}

h3.template_2_plusbtn2{
  text-align:center !important; 
  color: #000 !important;
}


@media screen and (max-width: 700px) {
  .template_2_plusbtn1 {
    margin-top:110px !important;
    margin-left: 100px !important;
    position: absolute !important;
    color:black !important;
    
  }
}

@media screen and (max-width: 700px) {
  h3.template_2_plusbtn2 {
    margin-top: 22px !important;
    margin-left: -158px !important;
    position: absolute !important;
    color:black !important;
    
  }
}



@media screen and (max-width: 700px) {
 .template_2_plusbtn {
    margin-top: 20px !important;
     
  }
}

@media screen and (max-width: 700px) {
  .bgwrap_temp2 {
    background: white !important;
      
   }
 }
 


/* end sep29 */

/* @media screen and (max-width: 700px) {
  .template_2_margin {
     margin-top: 20px !important;
      
   }
 } */


 .template_2_flex{
  display:flex !important;
   flex-wrap: wrap !important;
 }


 @media screen and (max-width: 700px) {
  .template_2_margin {
     margin-top: 20px !important;
      
   }
   .inv-2 .wrap1 {
    width: 100% !important;
}
.inv-2 .box-3 .wrap1 .left-area {
  width: calc(100% - 20px) !important;
  background: #FBE5E8;
  display: flex;
  height: 390px;
  margin: 0 10px 20px;
  z-index: 4;
}
.inv-2 .box-3 .wrap1 .box-one {
  width: calc(100% - 20px) !important;
  padding: 30px;
  text-align: center;
  position: relative;
   
  
}


   .inv-2 .box-3 .wrap1 .box-one {
   
    padding: 30px;
    text-align: center;
    position: relative;
}

.inv-2 .box-3 .wrap1 .left-area {
 
  background: #FBE5E8;
  display: flex;
  height: 390px;
  margin: 0 10px 20px;
  z-index: 4;
}



 }


 .template_2_margin {
  margin-top: 20px !important;
   
}

 /* start oct2 */

 .inv-2 .box-3 .img-box1 img {
 
  
  display: block;
  position: absolute;
  height: 100%;
  width: auto;
  z-index: 1;
}

.inv-2 .box-3 .wrap1 {
  z-index: 3;
 
  height: 100%;
  margin: 0 auto;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inv-2 .box-3 .wrap1 .left-area {
  width: calc(50% - 20px);
  background: #FBE5E8;
  display: flex;
  height: 390px;
  margin: 0 10px 20px;
  z-index: 4;
} 


.inv-2 .box-3 .wrap1 .box-two {
  width: 130px;
  overflow: hidden;
  
}
.inv-2 .box-3 .wrap1 .box-two img {
  width: 130%;
  display: block;
}
.inv-2 .box-3 .wrap1 .box-one h2 {
  margin-bottom: 20px;
  font-size: 1.875rem;
}

.inv-2 .box-3 .wrap1 .btn-box {
  margin-top: 20px;
}

.inv-2 .box-3 .wrap1 .box-one {
  width: calc(100% - 130px);
  padding: 30px;
  text-align: center;
  position: relative;
}
.inv-2 .wrap1 {
  width: 1000px;
}

/* oct4 */
 @media screen and (max-width: 700px) {
  .inv-2 .box-2 .wrap .section-2 .content{
    width: 100% !important;
    margin: 0 auto;
  }
  .inv-2 .box-2:before{
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    margin:0 auto;
    top:0;
    right: 0;
    bottom: 0;
    left:0;
    background: #ffffff;
  }

 } 

 @media screen and (max-width: 500px) {
  .inv-2 .box-2 .wrap .section-2 .content{
    width: 100% !important;
    margin: 0 auto;
  }
  .inv-2 .box-2:before{
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    margin:0 auto;
    top:0;
    right: 0;
    bottom: 0;
    left:0;
    background: #ffffff;
  }

 } 

 .template_3_plus_btn{
  border: 2px dashed #77765A !important;
  background: #efefef;
  margin-top: 50px !important;
  margin-bottom: 50px !important;
  padding: 150px !important;
  position:relative;
 }
 .template_3_plus_btn1{
  position: absolute !important;
  top: 1% ;
  left: 19%;
 }
 .template_3_plus_btn2{
  margin-left: -250px;
 }
 @media screen and (max-width: 700px){
  
  h3.template_2_plusbtn2.template_3_plus_btn2 {
      margin-top: 22px !important;
      margin-left: 6px !important;
      position: absolute !important;
      color: black !important;
  }
.template_3_plus_btn1 {
  position: absolute !important;
  top: 1%;
  left: 6%;
}
 }

 @media screen and (max-width: 500px){
  
  h3.template_2_plusbtn2.template_3_plus_btn2 {
      margin-top: 22px !important;
      margin-left: 6px !important;
      position: absolute !important;
      color: black !important;
  }
.template_3_plus_btn1 {
  position: absolute !important;
  top: 1%;
  left: 6%;
}
 }


 /* oct5 */
 .template_4_plus_btn{
  border: 2px dashed #77765A !important;
  padding-bottom: 690px !important;
  position:relative !important;
  background: #efefef !important;
 }
 .template_4_plus_btn1{
  position: absolute !important;
  top: 240px !important;
  left: 141px !important;
 }
 .black_color{
   color: #000;
 }

 @media screen and (max-width: 800px){
  div.img-box.template_4_plus_btn1{
    position: absolute !important;
    top: 240px !important;
    left: 158px !important;
  }
  .template_4_plus_btn{
    border: 2px dashed #77765A !important;
    padding-bottom: 690px !important;
    position:relative !important;
    background: #efefef !important;
   }
   
 }
 
 @media screen and (max-width: 1024px){
  div.img-box.template_4_plus_btn1{
    position: absolute !important;
    top: 240px !important;
    left: 20px !important;
  }
  .template_4_plus_btn{
    border: 2px dashed #77765A !important;
    padding-bottom: 690px !important;
    position:relative !important;
    background: #efefef !important;
   }
   
 }

 @media screen and (max-width: 640px){
  div.img-box.template_4_plus_btn1{
    position: absolute !important;
    top: 240px !important;
    left: 70px !important;
  }
  .template_4_plus_btn{
    border: 2px dashed #77765A !important;
    padding-bottom: 690px !important;
    position:relative !important;
    background: #efefef !important;
   }
   
 }


 

 @media screen and (max-width: 500px){
  
  .template_4_plus_btn{
    border: 2px dashed #77765A !important;
    padding-bottom: 690px !important;
    position:relative !important;
    background: #efefef !important;
   }
   .template_4_plus_btn1{
    position: absolute !important;
    top: 240px !important;
    left: 50px !important;
   }
 }

 .image_area {
  position: relative;
}

img {
      display: block;
      max-width: 100%;
}

.preview {
      overflow: hidden;
      width: 160px; 
      height: 160px;
      margin: 10px;
      border: 1px solid red;
}

.modal-lg{
      max-width: 1000px !important;
}

.overlay {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  height: 0;
  transition: .5s ease;
  width: 100%;
}

.image_area:hover .overlay {
  height: 50%;
  cursor: pointer;
}
/* start */
/* .text {
  color: #333;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}  */

/* end */
.pricing-box .price-list-content .price-box .item .p-btn {
  position: initial  !important;
}

/* oct7 */
.circle_inv2{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:black !important;
  font-size: 20px !important;
}
.square_inv2{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:black !important;
  font-size: 20px !important;
  margin-right: 10px;
}

.circle_inv1{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:black !important;
  font-size: 20px !important;
}
.square_inv1{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:black !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-4 .circle_inv1{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:white !important;
  font-size: 20px !important;
}

.color-4 .square_inv1{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}

.color-5 .circle_inv1{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:white !important;
  font-size: 20px !important;
}

.color-5 .square_inv1{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}


.circle_inv3{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:black !important;
  font-size: 20px !important;
}
.square_inv3{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:black !important;
  font-size: 20px !important;
  margin-right: 10px;
}

.color-2 .circle_inv3{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:white !important;
  font-size: 20px !important;
}
.color-2 .square_inv3{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}

.color-4 .circle_inv3{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:white !important;
  font-size: 20px !important;
}
.color-4 .square_inv3{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-5 .circle_inv3{
  position: absolute !important;
  top:2% !important;
  right: 5% !important;
  color:white !important;
  font-size: 20px !important;
}
.color-5 .square_inv3{
  position: absolute !important;
  top:2% !important;
  right: 10% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-2 
.item-wrap.bg-color.temp4_padding{
  padding: 10px 35px 35px 35px !important;
}
.circle_inv4{
  position: absolute !important;
  top:1% !important;
  right: 1% !important;
  color:black !important;
  font-size: 20px !important;
}
.square_inv4{
  position: absolute !important;
  top:1% !important;
  right: 6% !important;
  color:black !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-4 .circle_inv4{
  position: absolute !important;
  top:1% !important;
  right: 1% !important;
  color:white !important;
  font-size: 20px !important;
}
.color-4 .square_inv4{
  position: absolute !important;
  top:1% !important;
  right: 6% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}

.color-5 .circle_inv4{
  position: absolute !important;
  top:1% !important;
  right: 1% !important;
  color:white !important;
  font-size: 20px !important;
}
.color-5 .square_inv4{
  position: absolute !important;
  top:1% !important;
  right: 6% !important;
  color:white !important;
  font-size: 20px !important;
  margin-right: 10px;
}

.modal_margin_top{
  margin-top: 20px !important;
}

.color-3 .profile-catogory-template1{
  color: #f97c17 !important;;
}
.color-4 .mainfontinv6.temp_1_mainfont{
  color: #cb9e0b !important;
}
.color-4 .subfontinv6.temp_1_subfont{
  color: #cb9e0b !important;
}
.color-5 .mainfontinv6.temp_1_mainfont{
  color: #cb9e0b !important;
}
.color-5 .subfontinv6.temp_1_subfont{
  color: #cb9e0b !important;
}
.color-2 .mainfontinv6.temp_1_mainfont{
  color: #cb9e0b !important;
}
.color-2 .subfontinv6.temp_1_subfont{
  color: #cb9e0b !important;
}
h2.mainfontinv6.mainfont_template3_color{
  color: #cb9e0b !important;
}
h6.mainfontinv6.mainfont_template3_color{
  color: #cb9e0b !important;
}


/* font 11 */



.font-11 .mainfontinv6{
  font-family: 'Festive', cursive !important;
  font-size: 30px;

}
.font-11 .subfontinv6{
  font-family: 'Pridi', serif !important;
  font-size: 18px !important;
}
.font-11 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-11 .mainfontinv6.big-fonts{
  font-size: 55px;}
/* .invite-box.p-fonts.font-11 .mainfontinv6{
  font-family: 'Festive', cursive;
  font-size: 28px;

}
.invite-box.p-fonts.font-11 .subfontinv6{
  font-family: 'Pridi', serif;
  font-size: 15px;
} */

/* oct12 */
.plan_flex_colmn{
  display: flex;
  flex-wrap: wrap !important;
}
.box_margin_dtop{
  margin-top: 30px !important;
}

.margin-bottom-one-temp3{
  margin-bottom: 0px !important;
}
.font-temp3-13{
  font-size: 13px !important;
}
.black_color_temp3{
  color: black !important;

}
.profile_bg_padding{
  background: #20BBB1 !important;
  padding: 50px !important;
  border-radius: 9px !important;
}
.margin_profile_btm{
  margin-bottom: 20px !important;
  margin-left: 20px !important;
}
.margin_profile_btm1{
  margin-bottom: 5px !important;
  margin-left: 20px !important;
}
.margin_profile_btm2{
  margin-top: 20px !important;
  margin-left: 20px !important;
  color: white !important;
}
.border_profile_radius{
 
  border-radius: 50% !important;
    padding: 20px;
    /* border: 5px solid black; */
    background: white;
    max-width: 100% !important;

}

@media screen and (max-width: 700px){
  .font_profile_btm{
    font-size: 14px !important;
    margin: 20px !important;
  }
  .margin_profile_btm1{
    margin-bottom: 5px !important;
    margin-left: 20px !important;
    font-size: 10px !important;
  }
  .font_profile_btm_category{
    font-size:12px !important ;
  }
  
 }

 .color-2 .subfontinv6.button_bg_all_template{
   
   color: black !important;
 }
 .color-3 .subfontinv6.button_bg_all_template3_vio{
   background: #C490E4 !important;
 }

 img.mplogoinv6 {
  border-radius: 50%;
  width: 236px !important;
  height: 236px !important;
  border: 42px solid #313232;
  margin: 0 auto;
  padding: 20px;
  background: white;
}
.color-4 .subfontinv6.button_bg_all_template{
   
  color: black !important;
}
.color-4 .subfontinv6.button_bg_all_template4_color{
   
  color: white !important;
}
.color-5 .subfontinv6.button_bg_all_template{
   
  color: black !important;
}
.color-5 .subfontinv6.button_bg_all_template4_color{
   
  color: white !important;
}

 
/* oct14 */
.higher_plan_choose_fl_margin{
  display: flex !important;
  flex-wrap: wrap !important;
}
.higher_plan_choose_fl_margin .item.active{
  width: 46% !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
  position: relative;
}
.margin_choose{
  margin-top: -110px !important;
}
.padding_choose{
  padding: 30px !important;
}
.choose_center_btn{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 10px !important;
}


@media screen and (max-width: 700px){
  .higher_plan_choose_fl_margin{
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .higher_plan_choose_fl_margin .item.active{
    width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  .margin_choose{
    margin-top: -170px !important;
  }
  .padding_choose{
    padding: 1px !important;
  }
  .choose_center_btn{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 15px !important;
  }
  /* .modal_choose_dialog{
    max-width: 56% !important;
    max-width:765px !important;
  } */
  .modal-dialog.modal_choose_dialog{
    max-width:765px !important;

  }
  
  
 }

 html{
   overflow: auto !important;
 }

 .modal_choose_dialog{
   max-width: 765px !important;
 }


 /* .select_btn_plan_choose1{
  position: absolute !important;
  top: 44% !important;
  left: 16% !important;
  background: #F37821 !important;
 }
 .select_btn_plan_choose2{
  position: absolute !important;
  top: 46% !important;
  left: 57% !important;
  background: #F37821 !important;

 }
 .select_btn_plan_choose3{
  position: absolute !important;
  top: 87% !important;
  left: 16% !important;
  background: #F37821 !important;

 } */
 /* @media screen and (max-width: 700px){
  .select_btn_plan_choose1{
    position: absolute !important;
    top: 20% !important;
    left: 20% !important;
   }
   .select_btn_plan_choose2{
    position: absolute !important;
    top: 50% !important;
    left: 20% !important;
  
   }
   .select_btn_plan_choose3{
    position: absolute !important;
    top: 80% !important;
    left: 20% !important;
  
   }

 } */

 /* @media screen and (max-width: 640px){
  .select_btn_plan_choose1{
    position: absolute !important;
    top: 31% !important;
    left: 20% !important;
   }
   .select_btn_plan_choose2{
    position: absolute !important;
    top: 62% !important;
    left: 20% !important;
  
   }
   .select_btn_plan_choose3{
    position: absolute !important;
    top: 80% !important;
    left: 25% !important;
  
   }

 } */


 .color_black_tem1{
   color:black !important;
 }
 h2.w-100.text-center.mb-5{
   color:black !important;
 }
 h5.modal-title{
   color: black !important;
 }
 h2.text-center.mt-5.mb-3{
   color:black !important;
 }
 h3.couponcode_content{
  color:black !important;
  font-size: 19px !important;

 }
 h3.couponcode_dis{
  color:black !important;
  
  font-size: 19px !important;

 }
 

 /* oct16 */

 .bg_class_inv2{
  background: #009fdc;
 
}
.wrapper_inv2_temp2_section{
  width: 1170px;
  margin: 0 auto;
}
.section-padding-inv2{
  padding: 60px 0;
}
.testimonial-carousel{
  margin: 5% auto 0;
}
.img-area_tem2{
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  margin: 0 auto;
}
.img-area-compli-temp2-inv2{
  border-radius: 50%;
}
.img-area_tem2 img{
  width: 100%;
}
.single-testi-temp2{
  background: #fff;
  padding: 10%;
  text-align: center;
  border-radius:9px;
  height: 370px;
  border: 2px solid;
}
.img-text-temp2-inv2-compli h2{
  /* text-transform: uppercase; */
  margin: 20px 0 -15px;
  color: #ff5257;

}
.img-text-temp2-inv2-compli i{
  color: #ff5257;  
}
hr{
  color: #ff5257;  
}
.owl-dots{
  text-align: center;
}
.owl-dot{
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  background-color: rgb(112, 13, 13);
  opacity: 0.8;
  border-radius: 50%;
  margin: 50px 5px 0;
}
.owl-dot.active{
  background-color: #ff5257 !important;
}



@media only screen and(min-width:768px) and (max-width:991px) {
  .wrapper_inv2_temp2_section{
      width: 100%;
  }
  
}
@media only screen and (max-width:767px) {
  .wrapper_inv2_temp2_section{
      width: 100%;
  }
  
}

@media only screen and(min-width:480px) and (max-width:767px) {
  .wrapper_inv2_temp2_section{
      width: 100%;
  }
  
}


.font_temp2_name_inv2{
  font-size: 23px !important;
}

.color-2 .bg_class_inv2{
  background: black !important;
}
.color-3 .bg_class_inv2{
  background: #f6c6ea  !important;
}
.color-4 .bg_class_inv2{
background: #053742 !important;
}
.color-5 .bg_class_inv2{
  background:#810034 !important;
  }


  .font-2 .fonts_inv2_1{
    font-size: 18px !important;
  }
  .font-2 .fonts_inv2_2{
    font-size: 16px !important;
  }
  .font-2 .fonts_inv2_3{
    font-size: 15px !important;
  }

  .font-3 .fonts_inv2_1{
    font-size: 13px !important;
  }
  .font-3 .fonts_inv2_2{
    font-size: 11px !important;
  }
  .font-3 .fonts_inv2_3{
    font-size: 12px !important;
  }
  .font-4 .fonts_inv2_1{
    font-size: 19px !important;
  }
  .font-4 .fonts_inv2_2{
    font-size: 11px !important;
  }
  .font-4 .fonts_inv2_3{
    font-size: 13px !important;
  }

  

  .top-albums.inner-albums.mt-0 .album-slide.invitations-box .container{
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-bottom: 55px !important;
    
  }



.max-width-modal{
  max-width: 972px !important;
}
.item-design-template{
  width: 40% !important;
    height: 282px !important;
   
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    -webkit-transition: all 0.4s !important;
    margin: 40px !important;
   
}


.choose-box .item input:checked + label {
  background: #59C3B9;
  color: #ffffff;
  border: 20px solid #59C3B9;
}

span.img-edit-btn{
  margin: 12px !important;
}

/* oct21 */

.fa.fa-pencil-square-o.text-plus-button.eventedit.square_inv3.save_edit_temp3{
  color: black !important;
}


 



/* oct22 */
.img_btn_size_small{
  width: 35px !important;
  height: 35px !important;
}




/* COLOR-7 temp1 */

.inv-1.color-7 .box-1 .bg-color, .inv-1.color-7 .box-5 .bg-color {
 
  background: #050533 !important;
 
  color: #cb9e0b !important;
}
.inv-1.color-7 {
 
  background: #ECF87F !important;
 
}
.inv-1.color-7 .box-7 .item {
 
  background: #050533 !important;
}

/* header template */
.template_color_header{
  color: #cb9e0b !important;
  text-align: center !important;
}
.color-7 .cyan_spl_white{
 
  color: #cb9e0b !important;

}
.color-7 .square_inv1 {
  position: absolute !important;
  top: 2% !important;
  right: 10% !important;
  color: white !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-7 .circle_inv1 {
  position: absolute !important;
  top: 2% !important;
  right: 5% !important;
  color: white !important;
  font-size: 20px !important;
}
.color-7 .p-btn{
  color: black !important;
}
.color-7 .subfontinv6{
  color: black !important;
}
.color-7 .mainfontinv6{
  color: black !important;
}

/* template-2 color-7 */

.inv-2.color-7 .box-2:before {
  background: #050533 !important;
}
.inv-2.color-7 {
  background: #ECF87F !important;
}
.inv-2.color-7 .box-5 {
  background: #050533 !important;

}
.color-7 .bg_class_inv2 {
  background: #050533 !important;

}
.color-7 .yellow_blue_spl{
  color: #cb9e0b !important;
}

.color-7 .fa.fa-instagram.fa-2x{
  color: black;
}
.color-7 .fa.fa-facebook.fa-2x{
  color: black;
}

/* color-7 tem 3 */

.inv-4.color-7 .box-1 .centre-area, .inv-4.color-7 .box-1 h3 {
  background: #050533 !important;
  color:black;
}
.color-7 .subfontinv6.temp_1_subfont.color7_spl{
  background: #050533 !important;
  
}
.inv-4.color-7 {
  background: #ECF87F !important;
}
.inv-4.color-7 .icon-box {
  background: #ECF87F !important;
}
.inv-4.color-7 .p-btn {
  background:#f07677 !important;
  border-color: #cb9e0b;
  color: #000055;
}
.color-7 .bg_class {
  background: #050533 !important;
  padding: 1%;
}

/* template-4 color-7 */


.inv-5.color-7 .bg-color {
  background: #050533 !important;
}
.inv-5.color-7 {
 
  background: #ECF87F !important;
}
.color-7 .btn_blue_color_color6{
  background: #050533 !important;
}
.color-7 .btn_blue_color_color6icon{
  background: #050533 !important;
  color: white !important;
}
.color-7 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #ffff !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-7 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #ffff !important;
  font-size: 20px !important;
}
.color-7 .button_bg_all_template {
  color: fff !important;
}
.color-7 .splc0l7{
  background: #050533 !important;
}
.color-7 .p-btn.yellow_blue_spl{
  color: #cb9e0b !important;
}


/* color-7 start temp5 */
 .color-7 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: #ecf87f40 ;
}

/* .color-7 .mainfontinv6{
  
  color: black !important;
  
} */


.color-7 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-7 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-7 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-7 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #ECF87F !important;
 
  
}
.color-7 .social_profile_inv61{
  color:black !important;
}
.color-7 .lookatubg{
  background: #ECF87F !important;
}
.color-7 .lookatu{
  color: black !important;
}
.color-7 .subfontinv6_dont_color{
  color:#001932 !important;
}


.color-7 .wd_overlay{
 
  background: #050533 !important;
 
}
.color-7 .wd_story_covers_box_left{
 
  background: #ECF87F !important;
}
.color-7 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #ecf87f;
  border-left: 35px solid rgb(236 248 127);
  border-bottom: 25px solid transparent;
}

.color-7 .wd_story_covers_box_right{
 
  background: #ECF87F !important;
}
.color-7 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #ecf87f;
  border-right: 35px solid rgb(236 248 127);
  border-bottom: 25px solid transparent;
}
.color-7 .mainfontinv6_chat_box.mainfontinv6{
  color: #26001B !important;
}
.color-7 .chat_section_inv6  h1.mainfontinv6{
 
  color:black !important;
}
 .color-7 div.bg_class.bg_class99 {
 
  background: #050533 !important;
  padding: 1%;
}
/* .color-7 .bg_class {
  background: #26001B !important;
} */

.color-7 .sub.add-btn-inv6-h3.subfontinv6.family_fn_inv6{
  color: white !important;
} 
.color-7 .fa.fa-times-circle.text-plus-button.rmvEvent.i_789.yelo_spl{
  color: black !important;
}
.color-7 .fa.fa-pencil-square-o.text-plus-button.eventedit.i_401.yelo_spl{
  color: black !important;
}


.color-7 .yelo_spl.square_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
  padding-right: 15px !important;
}
.color-7 .yelo_spl.circle_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
}
/* color-7 end */

/* COLOR-8 temp1 */

.inv-1.color-8 .box-1 .bg-color, .inv-1.color-8 .box-5 .bg-color {

  background:  #75E6DA !important;
 
 
}
.inv-1.color-8 {

  background: #210070 !important;
  
}
.inv-1.color-8 .box-7 .item {
 
  background:  #75E6DA !important;
}

.color-8 .subfontinv6{
  color:#75E6DA  !important;
}
.color-8 .mainfontinv6{
  color:#75E6DA  !important;
}
.color-8 .cyan_spl_white{
  color: black !important;
}


/* oct25 */
/* temp-2 color-8 */

.inv-2.color-8 .box-2:before {
  background: #210070 !important;
}
.inv-2.color-8 {
 
  background:  #75E6DA !important;
}
.inv-2.color-8 .box-5 {
 
  background: #210070 !important;
}
.color-8 .bg_class_inv2 {
 
  background: #210070 !important;
}

.color-8 .fa.fa-instagram.fa-2x{
  color:#df2b2b;
}
.color-8 .fa.fa-facebook.fa-2x{
  color: #df2b2b;
}


/* temp3 color-8 */

 .inv-4.color-8 .box-1 .centre-area, .inv-4.color-8 .box-1 h3 {
  background:  #75E6DA !important;
  
}
.color-8 .subfontinv6.temp_1_subfont.color7_spl{
  background:  #75E6DA !important;
  
}
.inv-4.color-8 {
  background: #210070 !important;
}
.inv-4.color-8 .icon-box {
  background: #210070 !important;
}
.inv-4.color-8 .p-btn {
  background:#f07677 !important;
  border-color: #cb9e0b;
  color: black;
}
.color-8 .bg_class {
 
  background:  #75E6DA !important;
  padding: 1%;
}
.color-8 .cyan_spl_white99{
  color: white !important;
}

/* temp4 color-8 */

  .inv-5.color-8 .bg-color {
 
  background:  #75E6DA !important;
}
.inv-5.color-8 {
  background: #210070 !important;
 
}
.color-8 .btn_blue_color_color6{

  background:  #75E6DA !important;
}
.color-8 .btn_blue_color_color6icon{
  color: black !important;
}
.color-8 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #000 !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-8 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #000 !important;
  font-size: 20px !important;
}
.color-8 .button_bg_all_template {
  color: black !important;
}
.color-8 .splc0l7{

  background:  #75E6DA !important;
}   

/* color-8 temp5 */

.color-8 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  /* background: #04ecf05c !important; */
  /* background: #210070 !important; */
  background: #21007082 !important;
 
 
}

/* .color-8 .mainfontinv6{
  
  color: #26001B !important;
  
} */


.color-8 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-8 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-8 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-8 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #75e6da !important;
}
/* .color-8 .social_profile_inv61{
  color:black !important;
} */
.color-8 .lookatubg{
  /* background: #04ECF0 !important; */
  /* background:  #75E6DA !important; */
  background: #75e6da !important;
}
/* .color-8 .lookatu{
  color: black !important;
}
.color-8 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-8 .subfontinv6_ourbest_color{
  color:red !important;
} */

.color-8 .wd_overlay{
 
  /* background: #059DC0 !important; */
  background: #210070 !important;
 
}
.color-8 .wd_story_covers_box_left{
 
  background:  #75E6DA !important;
}
.color-8 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #75e6da;
  border-left: 35px solid rgb(117 230 218);
  border-bottom: 25px solid transparent;
}

.color-8 .wd_story_covers_box_right{
 
  background:  #75E6DA !important;
}
.color-8 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #75e6da;
  border-right: 35px solid rgb(117 230 218);
  border-bottom: 25px solid transparent;
}
/* .color-8 .mainfontinv6_chat_box.mainfontinv6{
  color: #26001B !important;
}
.color-8 .chat_section_inv6  h1.mainfontinv6{
 
  color: black !important;
}
.color-8 .subfontinv6_ourbest_color{
  color:  #26001B !important;
}  */
.color-8 .bg_class {
  background: #210070 !important;
  /* background:  #75E6DA !important; */
  /* background: #059DC0 !important; */
  padding: 1%;
}
.color-8 .subfontinv6 {
  color: #75E6DA !important;
}
/* .color-8 .subfontinv6{
  color: black !important;
}
.color-8 .sub.add-btn-inv6-h3.subfontinv6.family_fn_inv6{
  color: white !important;
}
  */

  .color-8 .subfontinv6_chat_box.subfontinv6.cyan_spl_white{
    color: #000 !important;
  } 
  .color-8 .subfontinv6.h_3add.cyan_spl_white{
    color: #000 !important;
  }
  .color-8 .color_black_spl6{
    color: #000 !important;
  }
  .color-8 .cyan_spl_white{
    color: #000 !important;
  }

  /* oct27 */
  /* temp1 color-9 */


  .inv-1.color-9 .box-1 .bg-color, .inv-1.color-9 .box-5 .bg-color {

    background:  #080A52 !important;
   
   
  }
  .inv-1.color-9 {
  
    background: #EB2188 !important;
    
  }
  .inv-1.color-9 .box-7 .item {
   
    background:  #080A52 !important;
  }
  
  .color-9 .subfontinv6{
    color: #080A52 !important;
  }
  .color-9 .mainfontinv6{
    /* color:#75E6DA  !important; */
    color: #080A52 !important;
  }
  .color-9 .cyan_spl_white{
    color: #EB2188 !important;
  }
  .color-9 .p-btn{
    color: #080A52 !important;
  }
  .color-9 .square_inv1 {
    position: absolute !important;
    top: 2% !important;
    right: 10% !important;
    color: white !important;
    font-size: 20px !important;
    margin-right: 10px;
}
.color-9 .circle_inv1 {
  position: absolute !important;
  top: 2% !important;
  right: 5% !important;
  color: white !important;
  font-size: 20px !important;
}


/* color-9 template-2 */

.inv-2.color-9 .box-2:before {
  background:  #080A52 !important;
}
.inv-2.color-9 {
 
  background: #EB2188 !important;
}
.inv-2.color-9 .box-5 {
 
  background:  #080A52 !important;
}
.color-9 .bg_class_inv2 {
 
  background:  #080A52 !important;
}

.color-9 .fa.fa-instagram.fa-2x{
  color:black;
}
.color-9 .fa.fa-facebook.fa-2x{
  color: black;
}
.color-9 .yellow_blue_spl{
  color: #EB2188 !important;
}
  

 .color-9 .rose_spl_white{
  color:  #080A52 !important;;
} 
  
/* color-9 temp3 */

.inv-4.color-9 .box-1 .centre-area, .inv-4.color-9 .box-1 h3 {
  
  background:  #080A52 !important;
  
}
.color-9 .subfontinv6.temp_1_subfont.color7_spl{
 
  background:  #080A52 !important;
  
}
.inv-4.color-9 {
  
  background: #EB2188 !important;
}
.inv-4.color-9 .icon-box {
  
  background: #EB2188 !important;
}
.inv-4.color-9 .p-btn {
  background:#f07677 !important;
  border-color: #cb9e0b;
  color: black;
}
.color-9 .bg_class {
 
  
  background:  #080A52 !important;
  padding: 1%;
}
.color-9 .cyan_spl_white99{
  color: white !important;
}

/* color-9 temp4 */


.inv-5.color-9 .bg-color {
 
 
  background:  #080A52 !important;
}
.inv-5.color-9 {
 
  background: #EB2188 !important;
 
}
.color-9 .btn_blue_color_color6{

 
  background:  #080A52 !important;
}
.color-9 .btn_blue_color_color6icon{
  color: wheat !important;
}
.color-9 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #fff !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-9 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #fff !important;
  font-size: 20px !important;
}
.color-9 .button_bg_all_template {
 
  color: #000;
}
.color-9 .splc0l7{

 
  background:  #080A52 !important;
}   


/* color-9 temp-5 */


.color-9 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  /* background: #eb21886e !important; */
  background: #eb2188bf !important;
}

.color-9 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-9 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-9 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-9 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #eb2188 !important;
 
  
}
.color-9 .social_profile_inv61{
  color:black !important;
}
.color-9 .lookatubg{
  /* background: #ECF87F !important; */
  background: #EB2188 !important;
}
.color-9 .lookatu{
  color: black !important;
}
.color-9 .subfontinv6_dont_color{
  color:#001932 !important;
}


.color-9 .wd_overlay{
 
  /* background: #050533 !important; */
  background:  #080A52 !important;
 
}
.color-9 .wd_story_covers_box_left{
 
  /* background: #ECF87F !important; */
  background: #EB2188 !important;
}
.color-9 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #eb2188;
  border-left: 35px solid rgb(235 33 136);
  border-bottom: 25px solid transparent;
}

.color-9 .wd_story_covers_box_right{
 
  /* background: #ECF87F !important; */
  background: #EB2188 !important;
}
.color-9 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #eb2188;
  border-right: 35px solid rgb(235 33 136);
  border-bottom: 25px solid transparent;
}
.color-9 .mainfontinv6_chat_box.mainfontinv6{
  color: #26001B !important;
}
.color-9 .chat_section_inv6  h1.mainfontinv6{
 
  color:black !important;
}
 .color-9 div.bg_class.bg_class99 {
 
  /* background:  #080A52 !important; */
  background: #eb2188 !important;
  padding: 1%;
}


.color-9 .sub.add-btn-inv6-h3.subfontinv6.family_fn_inv6{
  color: white !important;
} 
.color-9 .fa.fa-times-circle.text-plus-button.rmvEvent.i_789.yelo_spl{
  color: black !important;
}
.color-9 .fa.fa-pencil-square-o.text-plus-button.eventedit.i_401.yelo_spl{
  color: black !important;
}


.color-9 .yelo_spl.square_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
  padding-right: 15px !important;
}
.color-9 .yelo_spl.circle_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
}

.color-9 .subfontinv6_chat_box.subfontinv6.cyan_spl_white{
  color:  #080A52 !important;
 
} 

/* color-10 temp1 */

.inv-1.color-10 .box-1 .bg-color, .inv-1.color-10 .box-5 .bg-color {

 
  background:  #283350 !important;
 
 
}
.inv-1.color-10 {


  background: #f93800 !important;
  
}
.inv-1.color-10 .box-7 .item {
 
 
  background:  #283350 !important;
}

.color-10 .subfontinv6{
  color: #080A52 !important;
}
.color-10 .mainfontinv6{
 
  color: #080A52 !important;
}
.color-10 .cyan_spl_white{
  color: white !important;
}
.color-10 .p-btn{
  color:black !important;
}

.color-10 .square_inv1 {
  position: absolute !important;
  top: 2% !important;
  right: 10% !important;
  color: white !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-10 .circle_inv1 {
position: absolute !important;
top: 2% !important;
right: 5% !important;
color: white !important;
font-size: 20px !important;
}

/* color-10 temp2 */

.inv-2.color-10 .box-2:before {
 
  background:  #283350 !important;
}
.inv-2.color-10 {
 
 
  background: #f93800 !important;
}
.inv-2.color-10 .box-5 {
 
  
  background:  #283350 !important;
}
.color-10 .bg_class_inv2 {
 
 
  background:  #283350 !important;
}

.color-10 .fa.fa-instagram.fa-2x{
  color:black;
}
.color-10 .fa.fa-facebook.fa-2x{
  color: black;
}
.color-10 .yellow_blue_spl{
 
  color: white !important;
}
  

 .color-10 .rose_spl_white{
  color: #080A52 !important;
  /* color: #ffb500 !important; */
} 
.color-10 .black_color_temp3 {
  color: #000 !important;
}
.color-10 .view_cmpli_btn_temp5 {
  color: #000 !important;
}
.color-10 .add_cmpli_btn_temp5 {
  color: #000 !important;
}

/* end */
.mainfontinv6.fontlg_temp1{
  font-size: 30px !important;
}


/* color-10 temp3 */

.inv-4.color-10 .box-1 .centre-area, .inv-4.color-10 .box-1 h3 {
  
 
  background:  #283350 !important;
  
}
.color-10 .subfontinv6.temp_1_subfont.color7_spl{
 
 
  background:  #283350 !important;
  
}
.inv-4.color-10 {
  
 
  background: #f93800 !important;
}
.inv-4.color-10 .icon-box {
  
 
  background: #f93800 !important;
}
.inv-4.color-10 .p-btn {
  background:#f07677 !important;
  border-color: #cb9e0b;
  color: black;
}
.color-10 .bg_class {
 
  background:  #283350 !important;
 
  padding: 1%;
}
.color-10 .blue_main_font{
  color:#080A52 !important;
}

/* color-10 temp4 */

.inv-5.color-10 .bg-color {
 
 
 
  background:  #283350 !important;
}
.inv-5.color-10 {
  background: #f93800 !important;
 
 
}
.color-10 .btn_blue_color_color6{

 
 
  background:  #283350 !important;
}
.color-10 .btn_blue_color_color6icon{
  color: wheat !important;
}
.color-10 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #fff !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-10 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #fff !important;
  font-size: 20px !important;
}
.color-10 .button_bg_all_template {
 
  color: #000;
}
.color-10 .splc0l7{
  background:  #283350 !important;
 
 
}   

/* color-10 temp-5 */


.color-10 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  /* background: #f9380070 !important; */
  background: #283350d1 !important;
}

.color-10 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-10 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-10 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-10 .zero3 button.upload-btn1.plus-btn-ceremony{
  background:#f93800 !important;
 
  
}
.color-10 .color10spl{
  color: white !important;
}
.color-10 .social_profile_inv61{
  color:black !important;
}
.color-10 .lookatubg{
  /* background: #f93800 !important; */
  /* background:  #283350 !important; */
  background: #283350e8 !important;
 
}
.color-10 .lookatu{
  /* color: black !important; */
  color: white !important;
}
.color-10 .subfontinv6_dont_color{
  /* color:#001932 !important; */
  color: white !important;
}


.color-10 .wd_overlay{
 
  background:  #283350 !important;

 
}
.color-10 .wd_story_covers_box_left{
  background: #f93800 !important;
 
 
}
.color-10 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #f93800;
  border-left: 35px solid rgb(249 56 0);
  border-bottom: 25px solid transparent;
}

.color-10 .wd_story_covers_box_right{
 
  background: #f93800 !important;
  
}
.color-10 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #f93800;
  border-right: 35px solid rgb(249 56 0);
  border-bottom: 25px solid transparent;
}
.color-10 .mainfontinv6_chat_box.mainfontinv6{
  color: #26001B !important;
}
.color-10 .chat_section_inv6  h1.mainfontinv6{
 
  color:black !important;
}
 .color-10 div.bg_class.bg_class99 {
  background:  #283350 !important;
 
  padding: 1%;
}


.color-10 .sub.add-btn-inv6-h3.subfontinv6.family_fn_inv6{
  color: white !important;
} 
.color-10 .fa.fa-times-circle.text-plus-button.rmvEvent.i_789.yelo_spl{
  color: black !important;
}
.color-10 .fa.fa-pencil-square-o.text-plus-button.eventedit.i_401.yelo_spl{
  color: black !important;
}


.color-10 .yelo_spl.square_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
  padding-right: 15px !important;
}
.color-10 .yelo_spl.circle_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
}

.color-10 .subfontinv6_chat_box.subfontinv6.cyan_spl_white{
  /* color:  #080A52 !important; */
  color: white !important;
 
} 
.color-10 .mainfontinv6.mainfont_size_compliment.cyan_spl_white{
  color: #000 !important;
}
.color-10 .subfont_size_compliment_p {
  color: #000 !important;
}



/* oct28 */
.color-8 .map_color_view{
  background: #000 !important;
  color: white !important;
}




/* color-6 temp1 */

.inv-1.color-6 .box-1 .bg-color, .inv-1.color-6 .box-5 .bg-color {

  background:  #722620 !important;
 
 
}
.inv-1.color-6 {
  background:  #f2bc94 !important;
 
}
.inv-1.color-6 .box-7 .item {
  background:  #722620 !important;
 
}

.color-6 .subfontinv6{
 
  color: #30110d !important;
}
.color-6 .mainfontinv6{
  color: #30110d !important;
 
}
.color-6 .cyan_spl_white{
  color: white !important;
}
.color-6 .p-btn{
  color:fff !important;
}

.color-6 .square_inv1 {
  position: absolute !important;
  top: 2% !important;
  right: 10% !important;
  color: white !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-6 .circle_inv1 {
position: absolute !important;
top: 2% !important;
right: 5% !important;
color: white !important;
font-size: 20px !important;
}


/* color-6 temp2 */

.inv-2.color-6 .box-2:before {
  background:  #722620 !important;
 

}
.inv-2.color-6 {
 
  background:  #f2bc94 !important;
 
}
.inv-2.color-6 .box-5 {
 
  background:  #722620 !important;
 
}
.color-6 .bg_class_inv2 {
 
  background:  #722620 !important;

}

.color-6 .fa.fa-instagram.fa-2x{
  color:black;
}
.color-6 .fa.fa-facebook.fa-2x{
  color: black;
}
.color-6 .yellow_blue_spl{
 
  color: white !important;
}
  

 .color-6 .rose_spl_white{
  color: #30110d !important;
 
} 
.color-6 .black_color_temp3 {
  color: #000 !important;
}
.color-6 .view_cmpli_btn_temp5 {
  color: #000 !important;
}
.color-6 .add_cmpli_btn_temp5 {
  color: #000 !important;
}


/* end */
.color-1 .we_are_clor{
  color: #cb9e0b !important;
}
.color-2 .we_are_clor{
  color: #cb9e0b !important;
}
.color-3 .we_are_clor{
  color: #cb9e0b !important;
}
.color-4 .we_are_clor{
  color: #cb9e0b !important;
}
.color-5 .we_are_clor{
  color: #cb9e0b !important;
}
.color-6 .we_are_clor{
  color: #cb9e0b !important;
}
.color-7 .we_are_clor{
  color: #cb9e0b !important;
}
.color-8 .we_are_clor{
  color: #cb9e0b !important;
}
.color-9 .we_are_clor{
  color: #cb9e0b !important;
}
.color-10 .we_are_clor{
  color: #cb9e0b !important;
}

/* color-6 temp3 */

.inv-4.color-6 .box-1 .centre-area, .inv-4.color-6 .box-1 h3 {
  
  background:  #722620 !important;
 
  
}
.color-6 .subfontinv6.temp_1_subfont.color7_spl{
 
  background:  #722620 !important;
 
}
.inv-4.color-6 {
  
  background:  #f2bc94 !important;
  
}
.inv-4.color-6 .icon-box {
  
  background:  #f2bc94 !important;
  
}
.inv-4.color-6 .p-btn {
  background:#f07677 !important;
  border-color: #cb9e0b;
  color: black;
}
.color-6 .bg_class {
 
  background:  #722620 !important;
  padding: 1%;
}
.color-6 .blue_main_font{
 
  color: #30110d !important;
}
.inv-4.color-6 h6, .inv-4.color-6 h2, .inv-4.color-6 p {
  color: #30110d !important;
}
.color-6 .mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white {
  color: white !important;
}
.color-6 .subfontinv6.temp_1_subfont.yellow_blue_spl.cyan_spl_white{
  color: white !important;
}


/* color-6 temp4 */

.inv-5.color-6 .bg-color {
 
  background:  #722620 !important;
 
}
.inv-5.color-6 {
 
  background:  #f2bc94 !important;
 
 
}
.color-6 .btn_blue_color_color6{

  background:  #722620 !important;
 

}
.color-6 .btn_blue_color_color6icon{
  color: wheat !important;
}
.color-6 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #fff !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-6 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #fff !important;
  font-size: 20px !important;
}
.color-6 .button_bg_all_template {
 
  color: #000;
}
.color-6 .splc0l7{
 
  background:  #722620 !important;
 
 
}   


/* color-6 temp-5 */


.color-6 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: #f2bc946b !important;
}

.color-6 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-6 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-6 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-6 .zero3 button.upload-btn1.plus-btn-ceremony{
  background:#f2bc94 !important;
 
  
}
.color-6 .social_profile_inv61{
  color:black !important;
}
.color-6 .lookatubg{

  background:  #f2bc94 !important;
 
}
.color-6 .lookatu{
  color: black !important;
}
.color-6 .subfontinv6_dont_color{
  color:#001932 !important;
}


.color-6 .wd_overlay{
  background:  #722620 !important;
  
 
}
.color-6 .wd_story_covers_box_left{
  
  background:  #f2bc94 !important;
 
 
}
.color-6 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #f2bc94;
  border-left: 35px solid rgb(242 188 148);
  border-bottom: 25px solid transparent;
}

.color-6 .wd_story_covers_box_right{
 
 
  background:  #f2bc94 !important;
  
}
.color-6 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #f2bc94;
  border-right: 35px solid rgb(242 188 148);
  border-bottom: 25px solid transparent;
}
.color-6 .mainfontinv6_chat_box.mainfontinv6{

  color: #30110d !important;
}
.color-6 .chat_section_inv6  h1.mainfontinv6{
 
  color:black !important;
}
 

.color-6 .bg_class {
  background: #722620 !important;
  padding: 1%;
}


.color-6 .sub.add-btn-inv6-h3.subfontinv6.family_fn_inv6{
  color: white !important;
} 
.color-6 .fa.fa-times-circle.text-plus-button.rmvEvent.i_789.yelo_spl{
  color: black !important;
}
.color-6 .fa.fa-pencil-square-o.text-plus-button.eventedit.i_401.yelo_spl{
  color: black !important;
}


.color-6 .yelo_spl.square_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
  padding-right: 15px !important;
}
.color-6 .yelo_spl.circle_inv6 {
  font-size: 20px !important;
  color: black !important;
  float: right !important;
}

.color-6 .subfontinv6_chat_box.subfontinv6.cyan_spl_white{
 
  color: #30110d !important;
 
} 
.color-6 .mainfontinv6.mainfont_size_compliment.cyan_spl_white{
  color: #000 !important;
}
.color-6 .subfont_size_compliment_p {
  color: #000 !important;
}



/* start fonts */
a#f1.dropdown-item.fontstyle-1{
  font-family: 'Dancing Script' !important;
}
a#f2.dropdown-item.fontstyle-2{
  font-family: 'Niconne';

}
a#f3.dropdown-item.fontstyle-3{
  font-family: 'Great Vibes';
}
a#f4.dropdown-item.fontstyle-4{
  font-family: 'Sacramento';
}
a#f5.dropdown-item.fontstyle-5{
  font-family: 'Tangerine';
}
a#f6.dropdown-item.fontstyle-6{
  font-family: 'Oleo Script Swash Caps';
}
a#f7.dropdown-item.fontstyle-7{
  font-family: 'Marck Script';
}
a#f8.dropdown-item.fontstyle-8{
  font-family: 'Satisfy';
}
a#f9.dropdown-item.fontstyle-9{
  font-family: 'Niconne';
}
a#f10.dropdown-item.fontstyle-10{
  font-family: 'Norican';
}
a#f11.dropdown-item.fontstyle-11{
  font-family: 'Festive', cursive;

}







 /* color-2 temp2 */

.inv-2.color-2 .box-2:before {
 
  background: #353535 !important;
}
.inv-2.color-2 {
 background: #222222 !important;
 
}
.inv-2.color-2 .box-5 {
 
  background: #353535 !important;
}
.color-2 .bg_class_inv2 {
 
  background: #353535 !important;
}

.color-2 .fa.fa-instagram.fa-2x{
  color:black;
}
.color-2 .fa.fa-facebook.fa-2x{
  color: black;
}
.color-2 .yellow_blue_spl{
 
  color: white !important;
}
  

 .color-2 .rose_spl_white{
  color: #080A52 !important;
} 
.color-2 .black_color_temp3 {
  color: #000 !important;
}
.color-2 .view_cmpli_btn_temp5 {
  color: #000 !important;
}
.color-2 .add_cmpli_btn_temp5 {
  color: #000 !important;
}

/* end */
.mainfontinv6.fontlg_temp1{
  font-size: 30px !important;
}


/* color-2 temp3 */

.inv-4.color-2 .box-1 .centre-area, .inv-4.color-2 .box-1 h3 {
  
  background: #353535 !important; 
}
.color-2 .subfontinv6.temp_1_subfont.color7_spl{
 
  background: #353535 !important; 
}
.inv-4.color-2 {
  
  background: #222222 !important;
 
}
.inv-4.color-2 .icon-box {
  
  background: #222222 !important;
 
}
.inv-4.color-2 .p-btn {
  background:#f07677 !important;
  border-color: #cb9e0b;
  color: black;
}
.color-2 .bg_class {
  background: #353535 !important;
  
 
  padding: 1%;
}
.color-2 .blue_main_font{
  color:#080A52 !important;
}

.inv-4.color-2 .p-btn {
  background: #353535 !important;
 
  color: #cb9e0b !important;
 
  
  border: 1px  solid #353535;
  
}

/* color-2 temp4 */

.inv-5.color-2 .bg-color {
 
  background: #353535 !important; 
}
.inv-5.color-2 {
 
  background: #222222 !important;
 
}
.color-2 .btn_blue_color_color6{

  background: #353535 !important; 
 
}
.color-2 .btn_blue_color_color6icon{
  color: wheat !important;
}
.color-2 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #fff !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-2 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #fff !important;
  font-size: 20px !important;
}
.color-2 .button_bg_all_template {
 
  color: #000;
}
.color-2 .splc0l7{
 
  background: #353535 !important; 
 
 
}   


.color-2 .first_sectiontemp4{
  background: #353535 !important; 
 
}
.color-2 .card_temp4_dark{
 
  background: #222222 !important;
}
.color-2 .emma_heading{
  color: #cb9e0b !important;
}
.color-2 .roko_heading{
  color: #cb9e0b !important;
}



/* color-2 temp5 start */
.color-2 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: rgb(0 0 0 / 50%) !important;
}

.color-2 .mainfontinv6{
  

 color:  #cb9e0b !important;
 
  /* color:yellow !important; */
}
.color-2 .subfontinv6{
 
  /* color:#FCF3A6 !important; */
  color:  #cb9e0b !important;
}

.color-2 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-2 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-2 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-2 .zero3 button.upload-btn1.plus-btn-ceremony{
  /* background: #1a1a1a !important; */
  background: #393939 !important;
}
.color-2 .social_profile_inv61{
 
  /* color:  #cb9e0b !important; */
  color:  #cb9e0b !important;
}
.color-2 .lookatubg{
  /* background:#001932 !important; */
  background: #393939 !important;
}
.color-2 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-2 .subfontinv6_ourbest_color{
  color:red !important;
}


.color-2 .zero3 .wd_overlay {
 
  /* background: black; */
  background: #222222 !important;

}

.color-2 .chat_section_inv6 .mainfontinv6 {
 
  color:  #cb9e0b !important;
}



/* color-2 end */


.inv-1.color-3 .box-7 .item {
  background:#20827b !important;
}



/* color-3 temp2 */

.inv-2.color-3 .box-2:before {
  background: #20827B !important;
 
  
}
.inv-2.color-3 {

 background: #23a89f !important;
 
}
.inv-2.color-3 .box-5 {
  background: #20827B !important;
  
}
.color-3 .bg_class_inv2 {
  background: #20827B !important;
 
}

.color-3 .fa.fa-instagram.fa-2x{
  color:black;
}
.color-3 .fa.fa-facebook.fa-2x{
  color: black;
}
.color-3 .yellow_blue_spl{
 
  color: white !important;
}
  

 .color-3 .rose_spl_white{
 
  color: white !important;
} 
.color-3 .black_color_temp3 {
  color: #000 !important;
}
.color-3 .view_cmpli_btn_temp5 {
  color: #000 !important;
}
.color-3 .add_cmpli_btn_temp5 {
  color: #000 !important;
}
.color-3 .bl_spl{
  color:black !important
}
.color-3 a.s-btn.subfontinv6.temp_1_subfont.cyan_spl_white.rose_spl_white.bl_spl{
  color:black !important
}

/* end */
.mainfontinv6.fontlg_temp1{
  font-size: 30px !important;
}


/* color-3 temp3 */

.inv-4.color-3 .box-1 .centre-area, .inv-4.color-3 .box-1 h3 {
  background: #20827B !important;
 
}
.color-3 .subfontinv6.temp_1_subfont.color7_spl{
  background: #20827B !important;
  
}
.inv-4.color-3 {
  
 
  background: #23a89f !important;
}
.inv-4.color-3 .icon-box {
  
  
  background: #23a89f !important;
}
.inv-4.color-3 .p-btn {
 
  background: #20827B !important;
 
}
.color-3 .bg_class {
 
  background: #20827B !important;
 
  padding: 1%;
}
.color-3 .blue_main_font{

  color: white !important;
}

.inv-4.color-3 .p-btn {
 
  background: #20827B !important;
 
  color: white !important;
 
  
  border: 1px  solid  #20827B !important;;
  
}
.inv-4.color-3 p {
   color: white !important; 
}
.inv-4.color-3 h2 {
  color: white !important; 
}
.inv-4.color-3 h6 {
  color: white !important; 
}

.color-3 .subfontinv6_ourbest_color {
   color: white !important; 
}
.color-3 h2.mainfontinv6.temp_1_mainfont.margin-bottom-one-temp3.black_color_temp3.cyan_spl_white.mainfont_size_compliment {
  color: #000 !important;
}
.color-3 p.black_color_temp3 {
  color:black !important;
}
.color-3 .locat_spl {
  background: #20827B !important;
}
.color-3 h3.template_2_plusbtn2.template_3_plus_btn2.subfontinv6.temp_1_subfont.cyan_spl_white.blue_main_font {
  color: #000 !important;
}


/* color-3 temp4 */

.inv-5.color-3 .bg-color {
  background: #20827B !important;
  
 
}
.inv-5.color-3 {
 
 
  background: #23a89f !important;
 
}
.color-3 .btn_blue_color_color6{

 
  background: #20827B !important;

}
.color-3 .btn_blue_color_color6icon{
  color: white !important;
}
.color-3 .square_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 6% !important;
  color: #fff !important;
  font-size: 20px !important;
  margin-right: 10px;
}
.color-3 .circle_inv4 {
  position: absolute !important;
  top: 1% !important;
  right: 1% !important;
  color: #fff !important;
  font-size: 20px !important;
}
/* .color-3 .button_bg_all_template {
 
  color: #000;
} */
.color-3 .splc0l7{
 
 
  background: #20827B !important;
 
}   


.color-3 .first_sectiontemp4{
  background: #20827B !important;
 
}
.color-3 .card_temp4_dark{
 
  background: #23a89f !important;
}
.color-3 .emma_heading{
  /* color: #cb9e0b !important; */
  color: white !important;
}
.color-3 .roko_heading{
  /* color: #cb9e0b !important; */
  color: white !important;
}
.color-3 .coloricontemp4{
  color:white  !important;
}

/* color-4 template4 save the date section start */
.color-4 .first_sectiontemp4{
  background: #005482 !important;
 
}
.color-4 .card_temp4_dark{
  background:#053742 !important;
 
}
.color-4 .subfontinv6{
  color: #cb9e0b !important;
}
.color-4 .mainfontinv6{
  color: #cb9e0b !important;
}
.color-4 .coloricontemp4{
  color: #cb9e0b !important;
}

/* end */
/* color-5 template4 save the date section start */
.color-5 .first_sectiontemp4{
 
  background:#810034 !important;
 
}
.color-5 .card_temp4_dark{
  background:#26001b !important;
}
.color-5 .subfontinv6{
  color: #cb9e0b !important;
}
.color-5 .mainfontinv6{
  color: #cb9e0b !important;
}
.color-5 .coloricontemp4{
  color: #cb9e0b !important;
}

/* end */


/* color-6 template4 save the date section start */
.color-6 .first_sectiontemp4{
 
  background:#722620 !important;
 
}
.color-6 .card_temp4_dark{
  background:#f2bc94 !important;
}
.color-6 .centersplcolor{
  color: white !important;
}
.color-6 .coloricontemp4{
  color: #722620 !important;
}
/* end */
/* color-7 template4 save the date section start */
.color-7 .first_sectiontemp4{
 
  background:#050533 !important;
 
}
.color-7 .card_temp4_dark{
  background:#ecf87f !important;
}
.color-7 .centersplcolor{
  color: #cb9e0b !important;
}
.color-7 .coloricontemp4{
  color: black !important;
}
/* end */

/* color-8 template4 save the date section start */
.color-8 .first_sectiontemp4{
 
  background:#75e6da !important;
 
}
.color-8 .card_temp4_dark{
  background:#210070 !important;
}
.color-8 .centersplcolor{
  color: black !important;
}
.color-8 .coloricontemp4{
  color:#75e6da !important;
}
/* end */

/* color-9 template4 save the date section start */
.color-9 .first_sectiontemp4{
 
  background:#080a52 !important;
 
}
.color-9 .card_temp4_dark{
  background:#eb2188 !important;
}
.color-9 .centersplcolor{
  color:#eb2188 !important;
}
.color-9 .coloricontemp4{
  color:#080a52  !important;
}
.color-9 .coloricontemp4{
  color:#080a52 !important;
}
/* end */

/* color-10 template4 save the date section start */
.color-10 .first_sectiontemp4{
 
  background:#283350 !important;
 
}
.color-10 .card_temp4_dark{
  background:#f93800!important;
}
.color-10 .centersplcolor{
  color:white !important;
}
.color-10 .coloricontemp4{
  color:#080a52  !important;
}
.color-10 .emma_heading {
  color:#080a52  !important;
}
.color-10 .roko_heading {
  color:#080a52  !important;
}

/* end */



/* color-3 temp-5 */


.color-3 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
 
  /* background: #20827B !important; */
  /* background:#20827b75 !important; */
  background: #20827bb8 !important;
}

.color-3 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-3 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-3 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-3 .zero3 button.upload-btn1.plus-btn-ceremony {
  background: #20827b !important;
}
.color-3 .social_profile_inv61{
  color:black !important;
}
.color-3 .lookatubg{


  background: #20827B !important;
}
.color-3 .lookatu{
  color: white !important;
}
.color-3 .subfontinv6_dont_color{
  color:#001932 !important;
}


.color-3 .wd_overlay{
 
  background: #23a89f !important;
 
}
.color-3 .wd_story_covers_box_left{
  
 
  background: #20827B !important;
 
}
.color-3 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #20827b;
  border-left: 35px solid rgb(32 130 123);
  border-bottom: 25px solid transparent;
}

.color-3 .wd_story_covers_box_right{
 
  background: #20827B !important;
 
  
}
.color-3 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #20827b;
  border-right: 35px solid rgb(32 130 123);
  border-bottom: 25px solid transparent;
}
.color-3 .mainfontinv6_chat_box.mainfontinv6{

  color:white !important;
}
.color-3 .chat_section_inv6  h1.mainfontinv6{
 
  color:white !important;
}
 

.color-3 .bg_class {

  background: #20827B !important;
  padding: 1%;
}


.color-3 .sub.add-btn-inv6-h3.subfontinv6.family_fn_inv6{
  color: white !important;
} 
.color-3 .fa.fa-times-circle.text-plus-button.rmvEvent.i_789.yelo_spl{
  color: black !important;
}
.color-3 .fa.fa-pencil-square-o.text-plus-button.eventedit.i_401.yelo_spl{
  color: black !important;
}


.color-3 .yelo_spl.square_inv6 {
  font-size: 20px !important;
  color: white !important;
  float: right !important;
  padding-right: 15px !important;
}
.color-3 .yelo_spl.circle_inv6 {
  font-size: 20px !important;
  color: white !important;
  float: right !important;
}

.color-3 .subfontinv6_chat_box.subfontinv6.cyan_spl_white{
 
  color: white !important;
 
} 
.color-3 .mainfontinv6.mainfont_size_compliment.cyan_spl_white{
  color: #000 !important;
}
.color-3 .subfont_size_compliment_p {
  color: #000 !important;
}
/* .color-3 .subfontinv6_ourbest_color {
  color: #20827b !important;
} */
.color-3 .chat_section_inv6 .mainfontinv6 {
  color: white !important;
}
.color-3 .color_black_spl6{
  color: #20827b !important;
}
/* end */

.color-1 .profile_box_icon{
  background: #D5636F !important;
}


/* template1 color1 */
.color-1 .p-btn.button_bg_all_template {
 
  background: #D5636F !important;
  
 
  color: #ffffff !important;
 
  
  border: 1px  solid #D5636F;
 }
 .color-1 .s-btn.subfontinv6.temp_1_subfont{
   border: 1px  solid #D5636F;
   border: 1px  solid white;
   color: #000;
 }
 .color-1 i.fa.fa-instagram.fa-2x{
  
   color: white !important;
 }
 .color-1 i.fa.fa-facebook.fa-2x{
  
   color: white !important;
 }
 .color-1 .locat_spl_temp3{
   background: white !important;
   color: #68795E !important;
 }
 
 
 
 /* template1 color2 */
 .color-2 .profile_box_icon{
  background: #444444 !important;
}





 .color-2 .p-btn.button_bg_all_template {
  
   background: #353535 !important;
  
   color: #cb9e0b !important;
  
   
   border: 1px  solid #353535;
  }
  .color-2 .s-btn.subfontinv6.temp_1_subfont{
    border: 1px  solid #353535;
    color: #cb9e0b !important;
  }
  .color-2 i.fa.fa-instagram.fa-2x{
   
    color: #222 !important;
  }
  .color-2 i.fa.fa-facebook.fa-2x{
    
    color: #222 !important;
  
  }

  .color-2 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #353535;
    background: #222222;
}
 
 
  /* template1 color3 */
  .color-3 .profile_box_icon{
    background: #20827b !important;
  }
  





 .color-3 .p-btn.button_bg_all_template {
  
   background: #20827b !important;
  
   color: #fff !important;
  
   
   border: 1px  solid #20827b;
  }
  .color-3 .s-btn.subfontinv6.temp_1_subfont{
    border: 1px  solid #20827b;
    color: #fff !important;
  }
  .color-3 i.fa.fa-instagram.fa-2x{
   
    color: #23A89F !important;
  }
  .color-3 i.fa.fa-facebook.fa-2x{
   
    color: #23A89F !important;
  }


  .color-3 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #23a89f;
    background: #23a89f !important;
}
.inv-5.color-3 .box-6 .content .icon svg path:nth-child(2) {
  fill: #23a89f !important;
}
 
 
  /* template1 color4 */
  .color-4 .profile_box_icon{
    background: #005482 !important;
  }




 .color-4 .p-btn.button_bg_all_template {
  
   background: #005482 !important;
  
   color: #cb9e0b !important;
  
   
   border: 1px  solid #005482;
  }
  .color-4 .s-btn.subfontinv6.temp_1_subfont{
    border: 1px  solid #005482;
    color: #cb9e0b !important;
  }
  .color-4 i.fa.fa-instagram.fa-2x{
    color:#053742 !important;
  }
  .color-4 i.fa.fa-facebook.fa-2x{
    color:#053742 !important;
  }


  .color-4 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #053742;
    background: #053742 !important;
}
.inv-5.color-4 .box-6 .content .icon svg path:nth-child(2) {
  fill: #cb9e0b !important;
}
 
 
  /* template1 color5 */

  .color-5 .profile_box_icon{
    background: #810034 !important;
  }



 .color-5 .p-btn.button_bg_all_template {
  
   background: #810034 !important;
  
   color: #cb9e0b !important;
  
   
   border: 1px  solid #810034;
  }
  .color-5 .s-btn.subfontinv6.temp_1_subfont{
    border: 1px  solid #810034;
    color: #cb9e0b !important;
  }
  .color-5 i.fa.fa-instagram.fa-2x{
    color:#26001B !important;
  }
  .color-5 i.fa.fa-facebook.fa-2x{
    color:#26001B !important;
  }


  .color-5 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #26001B;
    background: #26001B !important;
}
 
 
  /* template1 color6 */
  .color-6 .profile_box_icon{
    background:#722620 !important;
  }




 .color-6 .p-btn.button_bg_all_template {
  
   background: #722620 !important;
  
   color: #fff !important;
  
   
   border: 1px  solid #722620;
  }
  .color-6 .s-btn.subfontinv6.temp_1_subfont{
    border: 1px  solid #722620;
    color: #30110d !important;
  }
  .color-6 i.fa.fa-instagram.fa-2x{
    color:#f2bc94 !important;
  }
  .color-6 i.fa.fa-facebook.fa-2x{
    color:#f2bc94 !important;
  }


  .color-6 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #f2bc94;
    background: #f2bc94 !important;
    color: #722620 !important ;
}
.color-6 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.cyan_spl_white{
  color: #722620 !important ;
}
 
 
  /* template1 color7 */
  .color-7 .profile_box_icon{
    background:#050533 !important;
  }





 .color-7 .p-btn.button_bg_all_template {
  
   background: #050533 !important;
  
   color: #cb9e0b !important;
  
   
   border: 1px  solid  #050533;
  }
  .color-7 .s-btn.subfontinv6.temp_1_subfont.ss-btn-11{
    border: 1px  solid #050533;
    color: black !important;
  
  }
  .color-7 i.fa.fa-instagram.fa-2x{
    color: #ECF87F !important;
  }
  .color-7 i.fa.fa-facebook.fa-2x{
    color: #ECF87F !important;
  }




  .color-7 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #f2bc94;
    background:#ECF87F!important;
    /* color: #722620 !important ; */
}
.color-7 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.cyan_spl_white{
  color: black !important ;
}
.color-7 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.profile_box_icon{
  color: black !important ;
}
.inv-5.color-7 .box-6 .content .icon svg path:nth-child(2) {
  fill: #cb9e0b !important;
}
 
 
  /* template1 color8 */
  .color-8 .profile_box_icon{
    background:#75E6DA !important;
  }
  .color-8 .profile_box_icon_temp2{
    background:#210070 !important;
  }






 .color-8 .p-btn.button_bg_all_template {
  
   background:#75E6DA !important;
  
   color: black !important;
  
   
   border: 1px  solid #75E6DA;
  }
  .color-8 .s-btn.subfontinv6.temp_1_subfont.ss-btn-11{
    border: 1px  solid #75E6DA;
    color:#75E6DA !important;
  
  }
  .color-8 i.fa.fa-instagram.fa-2x{
    color:#210070 !important;
  }
  .color-8 i.fa.fa-facebook.fa-2x{
    color:#210070 !important;
  }
  .color-8 i.fa.fa-instagram.fa-2x.profile_box_icon_temp22{
    color:#75E6DA !important;
  }
  .color-8 i.fa.fa-facebook.fa-2x.profile_box_icon_temp22{
    color:#75E6DA !important;
  }
  .color-8 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.profile_box_icon{
    color:black !important;
  }
  .color-8 .black_color_temp3 {
    color: black !important;
  }
 
 
  /* template1 color9 */
  .color-9 .profile_box_icon{
    background:#080A52 !important;
  }





 .color-9 .p-btn.button_bg_all_template {
  
   background:#080A52  !important;
  
   color: #EB2188 !important;
   
   border: 1px  solid #080A52 ;
  }
  .color-9 .s-btn.subfontinv6.temp_1_subfont.ss-btn-11{
    border: 1px  solid #080A52 ;
    color: #080A52 !important;
   
  }
  .color-9 i.fa.fa-instagram.fa-2x{
    color:#eb2188 !important;
  }
  .color-9 i.fa.fa-facebook.fa-2x{
    color:#eb2188  !important;
  }
  .inv-5.color-9 .box-6 .content .icon svg path:nth-child(2) {
    fill:#eb2188!important;
  }

  
  .color-9 .s-btn.subfontinv6.temp_1_subfont {
    border: 1px solid #eb2188;
    background: #eb2188!important;
    /* color: #722620 !important ; */
}
.color-9 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.cyan_spl_white{
  color: #080A52 !important;
}
.color-9 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.profile_box_icon{
  color: #080A52 !important;
}
.color-9 .subfont_size_compliment_p {
  color: black !important ;
}
 
 
  /* template1 color10 */
  .color-10 .profile_box_icon{
    background:#283350 !important;
  }




 .color-10 .p-btn.button_bg_all_template {
  
   background:#283350  !important;
  
   color: #fff !important;
   
   border: 1px  solid #283350 ;
  }
  .color-10 .s-btn.subfontinv6.temp_1_subfont.ss-btn-11{
    border: 1px  solid #283350 ;
    color: #080A52 !important;
   
  }
  .color-10 i.fa.fa-instagram.fa-2x{
    color:#f93800  !important;
  }
  .color-10 i.fa.fa-facebook.fa-2x{
    color:#f93800  !important;
  }
  .color-10 .s-btn.subfontinv6.temp_1_subfont.yellow_blue_spl.cyan_spl_white{
    background: #283350 !important;
    border: 1px solid white !important;
  }




  /* type12 */
.font-12 .mainfontinv6{
 
  font-family: 'Courgette' !important;
  font-size: 30px;
}
.font-12 .mainfontinv6_chat_box{
  font-family: 'Courgette';
  font-size: 26px;
}
.font-12 .subfontinv6{
  font-family: 'Zilla Slab' !important;
  font-size: 18px !important;
}
.font-12 .subfontinv6_chat_box{
  font-family: 'Zilla Slab';
  font-size: 16px;
}
.font-12 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-12 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-12 .subfontinv6 {
   font-size: 17px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-12 .mainfontinv6 {
   font-size: 21px !important;
      
   }
   .font-12 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-12 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }

 /* type13 */
 .font-13 .mainfontinv6{
 
  font-family: 'Lobster Two' !important;
  font-size: 33px;
}
.font-13 .mainfontinv6_chat_box{
  font-family: 'Lobster Two';
  font-size: 26px;
}
.font-13 .subfontinv6{
  font-family: 'Zilla Slab' !important;
  font-size: 18px !important;
}
.font-13 .subfontinv6_chat_box{
  font-family: 'Zilla Slab';
  font-size: 16px;
}
.font-13 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-13 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-13 .subfontinv6 {
   font-size: 16px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-13 .mainfontinv6 {
   font-size: 21px !important;
      
   }
   .font-13 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-13 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }



 /* type14 */
 .font-14 .mainfontinv6{
 
  font-family: 'Parisienne' !important;
  font-size: 35px;
}
.font-14 .mainfontinv6_chat_box{
  font-family: 'Parisienne';
  font-size: 26px;
}
.font-14 .subfontinv6{
  font-family: 'Handlee' !important;
  font-size: 19px !important;
}
.font-14 .subfontinv6_chat_box{
  font-family: 'Handlee';
  font-size: 16px;
}
.font-14 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-14 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-14 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-14 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-14 .mainfontinv6 {
   font-size: 21px !important;
      
   }
   .font-14 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-14 .mainfontinv6.big-fonts{
    font-size: 55px;}
 
 }


 /* type15 */
 .font-15 .mainfontinv6{
 
  font-family: 'Allura' !important;
  font-size: 40px;
}
.font-15 .mainfontinv6_chat_box{
  font-family: 'Allura';
  font-size: 26px;
}
.font-15 .subfontinv6{
  font-family: 'Zilla Slab' !important;
  font-size: 18px !important;
}
.font-15 .subfontinv6_chat_box{
  font-family: 'Zilla Slab';
  font-size: 16px;
}
.font-15 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-15 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-15 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-15 .subfontinv6 {
   font-size: 17px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-15 .mainfontinv6 {
   font-size: 22px !important;
      
   }
   .font-15 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-15 .mainfontinv6.big-fonts{
    font-size: 55px;}
 
 
 }



 /* type16 */
 .font-16 .mainfontinv6{
 
  font-family: 'Nanum Pen Script' !important;
  font-size: 43px;
}
.font-16 .mainfontinv6_chat_box{
  font-family: 'Nanum Pen Script';
  font-size: 26px;
}
.font-16 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
}
.font-16 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}
.font-16 .mainfont_size_complimenttem2{
  font-size: 29px !important;
}
.font-16 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 27px;
  
}
.font-16 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-16 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-16 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-16 .mainfontinv6 {
   font-size: 35px !important;
      
   }
   .font-16 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-16 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }



 /* type17 */
 .font-17 .mainfontinv6{
 
  font-family: 'Alex Brush' !important;
  font-size: 40px;
}
.font-17 .mainfontinv6_chat_box{
  font-family: 'Alex Brush';
  font-size: 26px;
}
.font-17 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
}
.font-17 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}
.font-17 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-17 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 25px;
  
}
.font-17 .category.subfontinv6{
  font-size: 18px !important;
}
.font-17 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-17 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-17 .subfontinv6 {
   font-size: 16px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-17 .mainfontinv6 {
   font-size: 21px !important;
      
   }
   .font-17 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-17 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }

 /* type18 */
 .font-18 .mainfontinv6{
 
  font-family: 'Allison' !important;
  font-size: 40px !important;
}
.font-18 .mainfontinv6_chat_box{
  font-family: 'Allison';
  font-size: 26px;
}
.font-18 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
}
.font-18 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}
.font-18 .mainfont_size_complimenttem2{
  font-size: 28px !important;
}
.font-18 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 25px;
  
}
.font-18 .category.subfontinv6{
  font-size: 18px !important;
}
.font-18 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-18 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 700px) {
  .font-18 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 700px) {
  .font-18 .mainfontinv6 {
   font-size: 34px !important;
      
   }
 }

 /* type19 */
 .font-19 .mainfontinv6{
 
  font-family: 'Pinyon Script' !important;
  font-size: 40px;
}
.font-19 .mainfontinv6_chat_box{
  font-family: 'Pinyon Script';
  font-size: 26px;
}
.font-19 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
}
.font-19 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}
.font-19 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-19 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 25px;
  
}
.font-19 .category.subfontinv6{
  font-size: 18px !important;
}
.font-19 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;
  
}
.font-19 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-19 .subfontinv6 {
   font-size: 17px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-19 .mainfontinv6 {
   font-size: 26px !important;
      
   }
   .font-19 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
    
  }
  .font-19 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }



 /* type20 */
 .font-20 .mainfontinv6{
 
  font-family: 'Caveat Brush' !important;
  font-size: 40px;
}
.font-20 .mainfontinv6_chat_box{
  font-family: 'Caveat Brush';
  font-size: 26px;
}
.font-20 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
}
.font-20 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}
.font-20 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-20 .category.subfontinv6{
  font-size: 18px !important;
}
.font-20 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}
.font-20 .mainfontinv6.big-fonts{
  font-size: 55px;}

@media screen and (max-width: 1000px) {
  .font-20 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-20 .mainfontinv6 {
   font-size: 21px !important;
      
   }
   .font-20 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-20 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }
  .font-20 .mainfontinv6.big-fonts{
    font-size: 55px;}
 }

/* end */
@media screen and (max-width: 700px) {
.inv-1 .box-7 .item .dp {
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
}
.compli-separate-page-dp div.img-box.compli-separate-page-imgbox {
  width: 60px !important;
  height: 60px !important;
  overflow: hidden !important;
  border-radius: 30px !important;
}
}
/* @media screen and (min-width: 701px) {
div.img-box.compli-separate-page-imgbox {
  width: 240px !important;
  height: 250px !important;
  overflow: hidden !important;
  border-radius: 30px !important;
}
} */
  /* type21 */
  .font-21 .mainfontinv6{
 
    font-family: 'Fredericka the Great' !important;
    font-size: 36px;
  }
  .font-21 .mainfontinv6_chat_box{
    font-family: 'Fredericka the Great';
    font-size: 26px;
  }
  .font-21 .subfontinv6{
    font-family: 'Shrikhand' !important;
    font-size: 16px !important ;
  }
  .font-21 .subfontinv6_chat_box{
    font-family: 'Shrikhand';
    font-size: 15px !important;
  }
  .font-21 .mainfont_size_complimenttem2{
    font-size: 18px !important;
  }
  .font-21 .ae_spltemp2{
    font-size: 268px !important;
  }
  .font-21 .fontlg_temp1{
    font-size: 27px !important;
  }
  .font-21 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-21 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 40px !important;
  
  }
  .font-21 .mainfontinv6.big-fonts{
    font-size: 55px;}

  @media screen and (max-width: 1000px) {
    .font-21 .subfontinv6 {
     font-size: 15px !important;
        
     }
   }
   @media screen and (max-width: 1000px) {
    .font-21 .mainfontinv6 {
     font-size: 21px !important;
        
     }
     .font-21 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-21 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 30px !important;
    
    }
    .font-21 .mainfontinv6.big-fonts{
      font-size: 55px;}
   }


   /* type22 */
  .font-22 .mainfontinv6{
 
    font-family: 'Allan' !important;
    font-size: 40px;
  }
  .font-22 .mainfontinv6_chat_box{
    font-family: 'Allan';
    font-size: 26px;
  }
  .font-22 .subfontinv6{
    font-family: "Times New Roman", Times, serif !important;
    font-size: 19px !important ;
  }
  .font-22 .subfontinv6_chat_box{
    font-family: "Times New Roman", Times, serif;
    font-size: 16px !important;
  }
  .font-22 .mainfont_size_complimenttem2{
    font-size: 20px !important;
  }
  .font-22 .ae_spltemp2{
    font-size: 268px !important;
  }
  .font-22 .fontlg_temp1{
    font-size: 27px !important;
  }
  .font-22 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-22 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 40px !important;
  
  }
  .font-22 .mainfontinv6.big-fonts{
    font-size: 55px;}
  @media screen and (max-width: 1000px) {
    .font-22 .subfontinv6 {
     font-size: 17px !important;
        
     }
   }
   @media screen and (max-width: 1000px) {
    .font-22 .mainfontinv6 {
     font-size: 21px !important;
        
     }
     .font-22 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-22 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 30px !important;
    
    }
    .font-22 .mainfontinv6.big-fonts{
      font-size: 55px;}
   }

   /* end */
   .font-2 .ae_spltemp2{
    font-size: 268px !important;
  }


   /* type23 */
   .font-23 .mainfontinv6{
 
    font-family: 'Herr Von Muellerhoff' !important;
    font-size: 44px;
  }
  .font-23 .mainfontinv6_chat_box{
    font-family: 'Herr Von Muellerhoff';
    font-size: 37px !important;
  }
  .font-23 .subfontinv6{
    font-family: 'Lemonada' !important;
    font-size: 15px !important;
  }
  .font-23 .subfontinv6_chat_box{
    font-family: 'Lemonada';
    font-size: 14px !important;
  }
  .font-23 .mainfont_size_complimenttem2{
    font-size: 27px !important;
  }
  .font-23 .ae_spltemp2{
    font-size: 268px !important;
  }
  .font-23 .fontlg_temp1{
    font-size: 37px !important;
  }
  .font-23 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}
  .font-23 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-23 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 40px !important;
  
  }
  .font-23 .mainfontinv6.big-fonts{
    font-size: 55px;}

  @media screen and (max-width: 1000px) {
    .font-23 .subfontinv6 {
     font-size: 16px !important;
        
     }
   }
   @media screen and (max-width: 1000px) {
    .font-23 .mainfontinv6 {
     font-size: 31px !important;
        
     }
     .font-23 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-23 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 30px !important;
    
    }
    .font-23 .mainfontinv6.big-fonts{
      font-size: 55px;}
   }



    /* type24 */
    .font-24 .mainfontinv6{
 
      font-family: 'Arizonia' !important;
      font-size: 40px;
    }
    .font-24 .mainfontinv6_chat_box{
      font-family: 'Arizonia';
      font-size: 30px !important;
    }
    .font-24 .subfontinv6{
      font-family: 'Lemonada' !important;
      font-size: 15px !important;
    }
    .font-24 .subfontinv6_chat_box{
      font-family: 'Lemonada';
      font-size: 14px !important;
    }
    .font-24 .mainfont_size_complimenttem2{
      font-size: 23px !important;
    }
    .font-24 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-24 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-24 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }
    .font-24 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-24 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-24 .mainfontinv6.big-fonts{
      font-size: 55px;}
    
    @media screen and (max-width: 1000px) {
      .font-24 .subfontinv6 {
       font-size: 14px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-24 .mainfontinv6 {
       font-size: 27px !important;
          
       }
       .font-24 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-24 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-24 .mainfontinv6.big-fonts{
        font-size: 55px;}
     }
  


     /* type25 */
    .font-25 .mainfontinv6{
 
      font-family: 'Charm' !important;
      font-size: 33px;
    }
    .font-25 .mainfontinv6_chat_box{
      font-family: 'Charm';
      font-size: 25px !important;
    }
    .font-25 .subfontinv6{
      font-family: 'Lemonada' !important;
      font-size: 16px !important;
    }
    .font-25 .subfontinv6_chat_box{
      font-family: 'Lemonada';
      font-size: 14px !important;
    }
    .font-25 .mainfont_size_complimenttem2{
      font-size: 21px !important;
    }
    .font-25 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-25 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-25 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-25 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-25 .mainfontinv6.big-fonts{
      font-size: 55px;
    }
    

    @media screen and (max-width: 1000px) {
      .font-25 .subfontinv6 {
       font-size: 14px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-25 .mainfontinv6 {
       font-size: 21px !important;
          
       }
       .font-25 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-25 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-25 .mainfontinv6.big-fonts{
        font-size: 55px;}
     }
  

     
     /* type26 */
    .font-26 .mainfontinv6{
 
      font-family: 'Yesteryear' !important;
      font-size: 40px;
    }
    .font-26 .mainfontinv6_chat_box{
      font-family: 'Yesteryear';
      font-size: 33px !important;
    }
    .font-26 .subfontinv6{
      font-family: 'Lemonada' !important;
      font-size: 16px !important;
    }
    .font-26 .subfontinv6_chat_box{
      font-family: 'Lemonada';
      font-size: 14px !important;
    }
    .font-26 .mainfont_size_complimenttem2{
      font-size: 23px !important;
    }
    .font-26 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-26 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-26 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-26 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-26 .mainfontinv6.big-fonts{
      font-size: 59px !important;
    }
    .font-26 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 23px;
     
  }
    
    @media screen and (max-width: 1000px) {
      .font-26 .subfontinv6 {
       font-size: 15px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-26 .mainfontinv6 {
       font-size: 27px !important;
          
       }
       .font-26 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-26 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-26 .mainfontinv6.big-fonts{
        font-size: 55px;
      }
      .font-26 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 23px;
       
    }
      
     }


     /* type27 */
    .font-27 .mainfontinv6{
 
      font-family: 'Style Script', cursive !important;
      font-size: 40px;
    }
    .font-27 .mainfontinv6_chat_box{
      font-family: 'Style Script', cursive;
      font-size: 30px !important;
    }
    .font-27 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 19px !important;
    }
    .font-27 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 18px !important;
    }
    .font-27 .mainfont_size_complimenttem2{
      font-size: 22px !important;
    }
    .font-27 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-27 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-27 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-27 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-27 .mainfontinv6.big-fonts{
      font-size: 55px;
    }
    .font-27 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 23px;
     
  }
    
    @media screen and (max-width: 1000px) {
      .font-27 .subfontinv6 {
       font-size: 17px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {

      .font-27 .mainfontinv6 {
       font-size: 25px !important;
      }
       .font-27 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-27 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-27 .mainfontinv6.big-fonts{
        font-size: 55px;
      }
      .font-27 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 23px;
       
    }
     }
  

      /* type28 */
    .font-28 .mainfontinv6{
 
      font-family: 'Mr De Haviland' !important;
      font-size: 55px;
    }
    .font-28 .mainfontinv6_chat_box{
      font-family: 'Mr De Haviland';
      font-size: 37px !important;
    }
    .font-28 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 19px !important;
    }
    .font-28 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 17px !important;
    }
    .font-28 .mainfont_size_complimenttem2{
      font-size: 30px !important;
    }
    .font-28 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-28 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-28 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-28 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-28 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-28 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-28 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-28 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 3rem !important;
  }
  .font-28 .mainfontinv6.font-27-spl {
    font-size: 38px !important;
}
.font-28 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2.875rem;
}


    @media screen and (max-width: 1000px) {
      .font-28 .subfontinv6 {
       font-size: 17px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-28 .mainfontinv6 {
       font-size: 30px !important;
          
       }
       .font-28 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
        font-size: 2.875rem;
      }
      
       .font-28 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-28 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-28 .mainfontinv6.big-fonts{
        font-size: 55px;
      }
      .font-28 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }

    .font-28 .mainfont_size_compliment {
      font-size: 30px !important;
  }
  .font-28 .mainfontinv6.font-27-spl {
    font-size: 38px !important;
}
     }
  

      /* type29 */
    .font-29 .mainfontinv6{
 
      font-family: 'Grand Hotel' !important;
      font-size: 40px;
    }
    .font-29 .mainfontinv6_chat_box{
      font-family: 'Grand Hotel';
      font-size: 28px !important;
    }
    .font-29 .subfontinv6{
      font-family: 'Aladin' !important;
      font-size: 20px !important;
    }
    .font-29 .subfontinv6_chat_box{
      font-family: 'Aladin';
      font-size: 17px !important;
    }
    .font-29 .mainfont_size_complimenttem2{
      font-size: 27px !important;
    }
    .font-29 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-29 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-29 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-29 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-29 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-29 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-29 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-29 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 3rem !important;
  }
  .font-29 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-29 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}

    @media screen and (max-width: 1000px) {
      .font-29 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-29 .mainfontinv6 {
       font-size: 25px !important;
          
       }
       .font-29 .mainfont_size_compliment {
        font-size: 30px !important;
    }
      .font-29 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-29 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-29 .mainfontinv6.big-fonts{
        font-size: 50px;
      }
      .font-29 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-29 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 3rem !important;
    }
    .font-29 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-29 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
  
     }


     /* type30 */
    .font-30 .mainfontinv6{
 
      font-family: 'Pompiere' !important;
      font-size: 40px;
    }
    .font-30 .mainfontinv6_chat_box{
      font-family: 'Pompiere';
      font-size: 29px !important;
    }
    .font-30 .subfontinv6{
      font-family: 'IM Fell DW Pica' !important;
      font-size: 19px !important;
    }
    .font-30 .subfontinv6_chat_box{
      font-family: 'IM Fell DW Pica';
      font-size: 17px !important;
    }
    .font-30 .mainfont_size_complimenttem2{
      font-size: 27px !important;
    }
    .font-30 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-30 .fontlg_temp1{
      font-size: 37px !important;
    }

    .font-30 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-30 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-30 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }
    .font-30 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-30 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-30 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 3rem !important;
  }
  .font-30 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-30 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}
    
    @media screen and (max-width: 1000px) {
      .font-30 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-30 .mainfontinv6 {
       font-size: 28px !important;
          
       }
       .font-30 .mainfont_size_compliment {
        font-size: 30px !important;
    }
      .font-30 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-30 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-30 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-30 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-30 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 3rem !important;
    }
    .font-30 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-30 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }

      /* type31 */
    .font-31 .mainfontinv6{
 
      font-family: 'Monsieur La Doulaise' !important;
      font-size: 39px;
    }
    .font-31 .mainfontinv6_chat_box{
      font-family: 'Monsieur La Doulaise';
      font-size: 33px !important;
    }
    .font-31 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 18px !important;
    }
    .font-31 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 17px !important;
    }
    .font-31 .mainfont_size_complimenttem2{
      font-size: 23px !important;
    }
    .font-31 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-31 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-31 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-31 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-31 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-31 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-31 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-31 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 3rem !important;
  }
  .font-31 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-31 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}
    
    @media screen and (max-width: 1000px) {
      .font-31 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-31 .mainfontinv6 {
       font-size: 28px !important;
          
       }
       .font-31 .mainfont_size_compliment {
        font-size: 30px !important;
    }
      .font-31 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-31 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
      .font-31 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-31 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-31 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 3rem !important;
    }
    .font-31 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-31 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }


      /* type32 */
    .font-32 .mainfontinv6{
 
      font-family: 'UnifrakturMaguntia' !important;
      font-size: 38px;
    }
    .font-32 .mainfontinv6_chat_box{
      font-family: 'UnifrakturMaguntia';
      font-size: 28px !important;
    }
    .font-32 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 19px !important;
    }
    .font-32 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 17px !important;
    }
    .font-32 .mainfont_size_complimenttem2{
      font-size: 23px !important;
    }
    .font-32 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-32 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-32 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-32 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-32 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-32 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-32 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-32 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2.5rem !important;
  }
  .font-32 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-32 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}
    
    @media screen and (max-width: 1000px) {
      .font-32 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-32 .mainfontinv6 {
       font-size: 28px !important;
          
       }
       .font-32 .mainfont_size_compliment {
        font-size: 30px !important;
    }
      .font-32 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-32 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-32 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-32 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-32 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2.5rem !important;
    }
    .font-32 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-32 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }
  
  
      /* type33 */
    .font-33 .mainfontinv6{
 
      font-family: 'Montez' !important;
      font-size: 40px;
    }
    .font-33 .mainfontinv6_chat_box{
      font-family: 'Montez';
      font-size: 30px !important;
    }
    .font-33 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 19px !important;
    }
    .font-33 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 17px !important;
    }
    .font-33 .mainfont_size_complimenttem2{
      font-size: 24px !important;
    }
    .font-33 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-33 .fontlg_temp1{
      font-size: 37px !important;
    }
    
    .font-33 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-33 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-33 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-33 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-33 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-33 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2.5rem !important;
  }
  .font-33 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-33 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}
    @media screen and (max-width: 1000px) {
      .font-33 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-33 .mainfontinv6 {
       font-size: 28px !important;
          
       }
       .font-33 .mainfont_size_compliment {
        font-size: 30px !important;
    }
      .font-33 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-33 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-33 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-33 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-33 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2.5rem !important;
    }
    .font-33 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-33 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }


      /* type34 */
    .font-34 .mainfontinv6{
 
      font-family: 'Qahiri' !important;
      font-size: 50px;
    }
    .font-34 .mainfontinv6_chat_box{
      font-family: 'Qahiri';
      font-size: 32px !important;
    }
    .font-34 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 18px !important;
    }
    .font-34 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 16px !important;
    }
    .font-34 .mainfont_size_complimenttem2{
      font-size: 30px !important;
    }
    .font-34 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-34 .fontlg_temp1{
      font-size: 37px !important;
    }
    
    .font-34 .mainfont_size_compliment {
      font-size: 30px !important;
  }
    .font-34 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-34 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-34 .mainfontinv6.big-fonts{
      font-size: 75px;
    }
    .font-34 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-34 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2.5rem !important;
  }
  .font-34 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-34 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2.5rem;
}

    @media screen and (max-width: 1000px) {
      .font-34 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-34 .mainfontinv6 {
       font-size: 35px !important;
          
       }
       .font-34 .mainfont_size_compliment {
        font-size: 30px !important;
    }
      .font-34 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-34 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-34 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-34 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-34 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2.5rem !important;
    }
    .font-34 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-34 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }


      /* type35 */
    .font-35 .mainfontinv6{
 
      font-family: 'Festive' !important;
      font-size: 40px;
    }
    .font-35 .mainfontinv6_chat_box{
      font-family: 'Festive';
      font-size: 24px !important;
    }
    .font-35 .subfontinv6{
      font-family: 'Katibeh' !important;
      font-size: 27px !important;
    }
    .font-35 .subfontinv6_chat_box{
      font-family: 'Katibeh';
      font-size: 18px !important;
    }
    .font-35 .mainfont_size_complimenttem2{
      font-size: 24px !important;
    }
    .font-35 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-35 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-35 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
      font-size: 22px !important;
    }
    .font-35 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
      font-size: 23px !important;
    }
    .font-35 .mainfont_size_compliment {
      font-size: 26px !important;
    margin-right: 19px;
  }
    .font-35 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-35 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-35 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-35 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-35 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2.5rem !important;
  }
  .font-35 .mainfontinv6.font-27-spl {
    font-size: 29px !important;
}
.font-35 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}
    @media screen and (max-width: 1000px) {
      .font-35 .subfontinv6 {
       font-size: 20px !important;
          
       }
       .font-35 .mainfont_size_complimenttem2{
        font-size: 15px !important;
      }
     }
     @media screen and (max-width: 1000px) {
      .font-35 .mainfontinv6 {
       font-size: 28px !important;
          
       }
       .font-35 .mainfont_size_complimenttem2{
        font-size: 15px !important;
      }
    

   
      .font-35 .mainfont_size_compliment {
        font-size: 26px !important;
        margin-right: 19px;
    }
      .font-35 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-35 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-35 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-35 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-35 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2.5rem !important;
    }
    .font-35 .mainfontinv6.font-27-spl {
      font-size: 29px !important;
  }
  .font-35 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }
  

      /* type36 */
    .font-36 .mainfontinv6{
 
      font-family: 'Acme' !important;
      font-size: 31px;
    }
    .font-36 .mainfontinv6_chat_box{
      font-family: 'Acme';
      font-size:21px !important;
    }
    .font-36 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 20px !important;
    }
    .font-36 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 18px !important;
    }
    .font-36 .mainfont_size_complimenttem2{
      font-size: 18px !important;
    }
    .font-36 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-36 .fontlg_temp1{
      font-size: 37px !important;
    }
    .font-36 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
      font-size: 18px !important;
    }
    .font-36 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
      font-size: 20px !important;
    }
    .font-36 .mainfont_size_compliment {
      font-size: 20px !important;
    margin-right: 19px;
  }
    .font-36 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-36 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-36 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-36 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-36 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2rem !important;
  }
  .font-36 .mainfontinv6.font-27-spl {
    font-size: 24px !important;
}
.font-36 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 2rem;
}
    @media screen and (max-width: 1000px) {
      .font-36 .subfontinv6 {
       font-size: 18px !important;
          
       }
       .font-36 .mainfont_size_complimenttem2{
        font-size: 13px !important;
      }
     }
     @media screen and (max-width: 1000px) {
      .font-36 .mainfontinv6 {
       font-size: 24px !important;
          
       }
       .font-36 .mainfont_size_complimenttem2{
        font-size: 15px !important;
      }
      .font-36 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
        font-size: 18px !important;
      }
      .font-36 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
        font-size: 20px !important;
      }
      .font-36 .mainfont_size_compliment {
        font-size: 20px !important;
      margin-right: 19px;
    }
      .font-36 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-36 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-36 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-36 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-36 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2rem !important;
    }
    .font-36 .mainfontinv6.font-27-spl {
      font-size: 24px !important;
  }
  .font-36 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem;
  }
     }
  

      /* type37 */
    .font-37 .mainfontinv6{
 
      font-family: 'Merienda' !important;
      font-size: 34px ;
    }
    .font-37 .mainfontinv6_chat_box{
      font-family: 'Merienda';
      font-size: 20px !important;
    }
    .font-37 .subfontinv6{
      font-family: 'Fondamento' !important;
      font-size: 19px !important;
    }
    .font-37 .subfontinv6_chat_box{
      font-family: 'Fondamento';
      font-size: 17px !important;
    }
    .font-37 .mainfont_size_complimenttem2{
      font-size: 17px !important;
    }
    .font-37 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-37 .fontlg_temp1{
      font-size: 27px !important;
    }
    .font-37 .mainfont_size_compliment {
      font-size: 17px !important;
    }
    .font-37 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
      font-size: 29px !important;
    }
    .font-37 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
      font-size: 34px !important;
    }
    .font-37 .mainfont_size_complimenttem2{
      font-size: 17px !important;
    }
    .font-37 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
      font-size: 18px !important;
    }
    .font-37 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
      font-size: 20px !important;
    }
    .font-37 .mainfont_size_compliment {
      font-size: 20px !important;
    margin-right: 19px;
  }
    .font-37 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-37 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-37 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-37 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-37 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2rem !important;
  }
  .font-37 .mainfontinv6.font-27-spl {
    font-size: 24px !important;
}
.font-37 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 1.5rem;
}
.font-37 .mainfontinv6.temp_1_mainfont.blue_main_font{
  font-size: 2.225rem !important;
}
    
    @media screen and (max-width: 1000px) {
      .font-37 .subfontinv6 {
       font-size: 17px !important;
          
       }
       .font-37 .mainfont_size_complimenttem2{
        font-size: 16px !important;
      }
     }
     @media screen and (max-width: 1000px) {
      .font-37 .mainfontinv6 {
       font-size: 20px !important;
          
       }
       .font-37 .mainfont_size_complimenttem2{
        font-size: 17px !important;
      }
      
      .font-37 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
        font-size: 18px !important;
      }
      .font-37 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
        font-size: 20px !important;
      }
      .font-37 .mainfont_size_compliment {
        font-size: 20px !important;
      margin-right: 19px;
    }
      .font-37 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-37 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-37 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-37 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-37 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2rem !important;
    }
    .font-37 .mainfontinv6.font-27-spl {
      font-size: 24px !important;
  }
  .font-37 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 1.5rem;
  }
  .font-37 .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2rem !important;
}
     }
  
   
    /* type38 */
    .font-38 .mainfontinv6{
 
      font-family: 'Philosopher' !important;
      font-size: 40px;
    }
    .font-38 .mainfontinv6_chat_box{
      font-family: 'Philosopher';
      font-size: 24px !important;
    }
    .font-38 .subfontinv6{
      font-family: "Times New Roman", Times, serif !important;
      font-size: 20px !important;
    }
    .font-38 .subfontinv6_chat_box{
      font-family: "Times New Roman", Times, serif;
      font-size: 18px !important;
    }
    .font-38 .mainfont_size_complimenttem2{
      font-size: 18px !important;
    }
    .font-38 .ae_spltemp2{
      font-size: 268px !important;
    }
    .font-38 .fontlg_temp1{
      font-size: 37px !important;
    }
    
    .font-38 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
      font-size: 34px !important;
    }
    .font-38 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
      font-size: 34px !important;
    }
    .font-38 .mainfont_size_complimenttem2{
      font-size: 22px !important;
    }
    .font-38 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
      font-size: 18px !important;
    }
    .font-38 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
      font-size: 20px !important;
    }
    .font-38 .mainfont_size_compliment {
      font-size: 20px !important;
    margin-right: 19px;
  }
    .font-38 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-38 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 40px !important;
    
    }

    .font-38 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-38 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-38 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2rem !important;
  }
  .font-38 .mainfontinv6.font-27-spl {
    font-size: 24px !important;
}
.font-38 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 1.5rem;
}
.font-38 .mainfontinv6.temp_1_mainfont.blue_main_font{
  font-size: 2.225rem !important;
}
.font-38 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 6.225rem !important;
}
    @media screen and (max-width: 1000px) {
      .font-38 .subfontinv6 {
       font-size: 18px !important;
          
       }
     }
     @media screen and (max-width: 1000px) {
      .font-38 .mainfontinv6 {
       font-size: 23px !important;
          
       }
       .font-38 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
        font-size: 2.225rem !important;
    }
       .font-38 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
        font-size: 29px !important;
      }
      .font-38 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
        font-size: 34px !important;
      }
      .font-38 .mainfont_size_complimenttem2{
        font-size: 17px !important;
      }
      .font-38 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
        font-size: 18px !important;
      }
      .font-38 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
        font-size: 20px !important;
      }
      .font-38 .mainfont_size_compliment {
        font-size: 20px !important;
      margin-right: 19px;
    }
      .font-38 .category.subfontinv6{
        font-size: 18px !important;
      }
      .font-38 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
        font-size: 30px !important;
      
      }
  
      .font-38 .mainfontinv6.big-fonts{
        font-size: 65px;
      }
      .font-38 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
        font-size: 26px;
       
    }
  
    .font-38 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
      font-size: 2rem !important;
    }
    .font-38 .mainfontinv6.font-27-spl {
      font-size: 24px !important;
  }
  .font-38 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 1.5rem;
  }
  .font-38 .mainfontinv6.temp_1_mainfont.blue_main_font{
    font-size: 2.225rem !important;
  }
     }
  
  /* type39 */
  .font-39 .mainfontinv6{
 
    font-family: 'Saira' !important;
    font-size: 37px;
  }
  .font-39 .mainfontinv6_chat_box{
    font-family: 'Saira';
    font-size: 22px !important;
  }
  .font-39 .subfontinv6{
    font-family: "Times New Roman", Times, serif !important;
    font-size: 20px !important;
  }
  .font-39 .subfontinv6_chat_box{
    font-family: "Times New Roman", Times, serif;
    font-size: 17px !important;
  }
  .font-39 .mainfont_size_complimenttem2{
    font-size: 23px !important;
  }
  .font-39 .ae_spltemp2{
    font-size: 268px !important;
  }
  .font-39 .fontlg_temp1{
    font-size: 37px !important;
  }
  .font-39 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
    font-size: 34px !important;
  }
  .font-39 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
    font-size: 34px !important;
  }
  .font-39 .mainfont_size_complimenttem2{
    font-size: 22px !important;
  }
  .font-39 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-39 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
    font-size: 20px !important;
  }
  .font-39 .mainfont_size_compliment {
    font-size: 20px !important;
  margin-right: 19px;
}
  .font-39 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-39 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 40px !important;
  
  }

  .font-39 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-39 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}

.font-39 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 2rem !important;
}
.font-39 .mainfontinv6.font-27-spl {
  font-size: 24px !important;
}
.font-39 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-39 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-39 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 7.225rem !important; 
}
  
  @media screen and (max-width: 1000px) {
    .font-39 .subfontinv6 {
     font-size: 18px !important;
        
     }
   }
   @media screen and (max-width: 1000px) {
    .font-39 .mainfontinv6 {
     font-size: 22px !important;
        
     }
     .font-39 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
      font-size: 25px !important;
    }
    .font-39 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
      font-size: 34px !important;
    }
    .font-39 .mainfont_size_complimenttem2{
      font-size: 22px !important;
    }
    .font-39 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
      font-size: 18px !important;
    }
    .font-39 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
      font-size: 20px !important;
    }
    .font-39 .mainfont_size_compliment {
      font-size: 20px !important;
    margin-right: 19px;
  }
    .font-39 .category.subfontinv6{
      font-size: 18px !important;
    }
    .font-39 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
      font-size: 30px !important;
    
    }

    .font-39 .mainfontinv6.big-fonts{
      font-size: 65px;
    }
    .font-39 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
      font-size: 26px;
     
  }

  .font-39 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 2rem !important;
  }
  .font-39 .mainfontinv6.font-27-spl {
    font-size: 24px !important;
}
.font-39 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 1.5rem;
}
.font-39 .mainfontinv6.temp_1_mainfont.blue_main_font{
  font-size: 2.225rem !important;
}
.font-39 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 3.225rem !important;
}
   }

 
/* type40 */
.font-40 .mainfontinv6{
 
  font-family: 'Pridi', serif !important;
  font-size: 37px;
}
.font-40 .mainfontinv6_chat_box{
  font-family: 'Pridi', serif;
  font-size: 23px !important;
}
.font-40 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-40 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-40 .mainfont_size_complimenttem2{
  font-size: 20px !important;
}
.font-40 .ae_spltemp2{
  font-size: 268px !important;
}
.font-40 .fontlg_temp1{
  font-size: 37px !important;
}
.font-40 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
  font-size: 34px !important;
}
.font-40 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
  font-size: 34px !important;
}
.font-40 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-40 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-40 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
  font-size: 20px !important;
}
.font-40 .mainfont_size_compliment {
  font-size: 20px !important;
margin-right: 19px;
}
.font-40 .category.subfontinv6{
  font-size: 18px !important;
}
.font-40 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-40 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-40 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 26px;
 
}

.font-40 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 2rem !important;
}
.font-40 .mainfontinv6.font-27-spl {
font-size: 24px !important;
}
.font-40 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-40 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-40 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 7.225rem !important; 
}

@media screen and (max-width: 1000px) {
  .font-40 .subfontinv6 {
   font-size: 17px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-40 .mainfontinv6 {
   font-size: 21px !important;
      
   }
   .font-40 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
    font-size: 25px !important;
  }
  .font-40 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
    font-size: 34px !important;
  }
  .font-40 .mainfont_size_complimenttem2{
    font-size: 22px !important;
  }
  .font-40 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-40 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
    font-size: 20px !important;
  }
  .font-40 .mainfont_size_compliment {
    font-size: 20px !important;
  margin-right: 19px;
}
  .font-40 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-40 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }

  .font-40 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-40 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}

.font-40 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 2rem !important;
}
.font-40 .mainfontinv6.font-27-spl {
  font-size: 24px !important;
}
.font-40 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-40 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-40 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 3.225rem !important;
}
.font-40 .tep5-gm-bd1 {
  
  margin-top: 27px !important;
}
 }

/* type41 */
.font-41 .mainfontinv6{
 
  font-family: 'Zilla Slab' !important;
  font-size: 37px;
}
.font-41 .mainfontinv6_chat_box{
  font-family: 'Zilla Slab';
  font-size: 23px !important;
}
.font-41 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-41 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-41 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-41 .ae_spltemp2{
  font-size: 268px !important;
}
.font-41 .fontlg_temp1{
  font-size: 37px !important;
}
.font-41 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
  font-size: 34px !important;
}
.font-41 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
  font-size: 34px !important;
}

.font-41 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-41 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
  font-size: 20px !important;
}
.font-41 .mainfont_size_compliment {
  font-size: 20px !important;
margin-right: 19px;
}
.font-41 .category.subfontinv6{
  font-size: 18px !important;
}
.font-41 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-41 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-41 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 26px;
 
}

.font-41 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 2rem !important;
}
.font-41 .mainfontinv6.font-27-spl {
font-size: 24px !important;
}
.font-41 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-41 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-41 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 7.225rem !important; 
}

@media screen and (max-width: 1000px) {
  .font-41 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-41 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-41 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
    font-size: 25px !important;
  }
  .font-41 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
    font-size: 34px !important;
  }
  .font-41 .mainfont_size_complimenttem2{
    font-size: 22px !important;
  }
  .font-41 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-41 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
    font-size: 20px !important;
  }
  .font-41 .mainfont_size_compliment {
    font-size: 20px !important;
  margin-right: 19px;
}
  .font-41 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-41 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }

  .font-41 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-41 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}

.font-41 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 2rem !important;
}
.font-41 .mainfontinv6.font-27-spl {
  font-size: 24px !important;
}
.font-41 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-41 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-41 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 3.225rem !important;
}
.font-41 .tep5-gm-bd1 {
  
  margin-top: 27px !important;
}
 }

 /* type42 */
.font-42 .mainfontinv6{
 
  font-family: 'Handlee' !important;
  font-size: 37px;
}
.font-42 .mainfontinv6_chat_box{
  font-family: 'Handlee';
  font-size: 23px !important;
}
.font-42 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-42 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-42 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-42 .ae_spltemp2{
  font-size: 268px !important;
}
.font-42 .fontlg_temp1{
  font-size: 37px !important;
}

.font-42 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
  font-size: 34px !important;
}
.font-42 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
  font-size: 34px !important;
}

.font-42 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-42 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
  font-size: 20px !important;
}
.font-42 .mainfont_size_compliment {
  font-size: 20px !important;
margin-right: 19px;
}
.font-42 .category.subfontinv6{
  font-size: 18px !important;
}
.font-42 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-42 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-42 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 26px;
 
}

.font-42 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 2rem !important;
}
.font-42 .mainfontinv6.font-27-spl {
font-size: 24px !important;
}
.font-42 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-42 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-42 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 7.225rem !important; 
}

@media screen and (max-width: 1000px) {
  .font-42 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-42 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-42 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
    font-size: 25px !important;
  }
  .font-42 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
    font-size: 34px !important;
  }
  .font-42 .mainfont_size_complimenttem2{
    font-size: 22px !important;
  }
  .font-42 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-42 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
    font-size: 20px !important;
  }
  .font-42 .mainfont_size_compliment {
    font-size: 20px !important;
  margin-right: 19px;
}
  .font-42 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-42 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }

  .font-42 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-42 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}

.font-42 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 2rem !important;
}
.font-42 .mainfontinv6.font-27-spl {
  font-size: 24px !important;
}
.font-42 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-42 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-42 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 3.225rem !important;
}
.font-42 .tep5-gm-bd1 {
  
  margin-top: 27px !important;
}
 }


 /* type43 */
.font-43 .mainfontinv6{
 
  font-family: 'Shrikhand' !important;
  font-size: 30px;
}
.font-43 .mainfontinv6_chat_box{
  font-family: 'Shrikhand';
  font-size: 21px !important;
}
.font-43 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-43 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-43 .mainfont_size_complimenttem2{
  font-size: 20px !important;
}
.font-43 .ae_spltemp2{
  font-size: 268px !important;
}
.font-43 .fontlg_temp1{
  font-size: 27px !important;
}
.font-43 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
  font-size: 28px !important;
}
.font-43 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
  font-size: 34px !important;
}

.font-43 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-43 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
  font-size: 20px !important;
}
.font-43 .mainfont_size_compliment {
  font-size: 20px !important;
margin-right: 19px;
}
.font-43 .category.subfontinv6{
  font-size: 18px !important;
}
.font-43 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-43 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-43 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 20px;
 
}

.font-43 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 2rem !important;
}
.font-43 .mainfontinv6.font-27-spl {
font-size: 20px !important;
}
.font-43 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.5rem;
}
.font-43 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.225rem !important;
}
.font-43 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 7.225rem !important; 
}

@media screen and (max-width: 1000px) {
  .font-43 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-43 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-43 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
    font-size: 25px !important;
  }
  .font-43 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
    font-size: 34px !important;
  }
  .font-43 .mainfont_size_complimenttem2{
    font-size: 22px !important;
  }
  .font-43 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-43 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
    font-size: 20px !important;
  }
  .font-43 .mainfont_size_compliment {
    font-size: 20px !important;
  margin-right: 19px;
}
  .font-43 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-43 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }

  .font-43 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-43 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}

.font-43 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 2rem !important;
}
.font-43 .mainfontinv6.font-27-spl {
  font-size: 20px !important;
}
.font-43 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.25rem !important;
}
.font-43 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2rem !important;
}
.font-43 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 3.225rem !important;
}
.font-43 .tep5-gm-bd1 {
  
  margin-top: 27px !important;
}
 }


 /* type44 */
.font-44 .mainfontinv6{
 
  font-family: 'Lemonada' !important;
  font-size: 30px;
}
.font-44 .mainfontinv6_chat_box{
  font-family: 'Lemonada';
  font-size: 20px !important;
}
.font-44 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-44 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-44 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-44 .ae_spltemp2{
  font-size: 268px !important;
}
.font-44 .fontlg_temp1{
  font-size: 27px !important;
}
.font-44 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
  font-size: 28px !important;
}
.font-44 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
  font-size: 34px !important;
}

.font-44 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-44 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
  font-size: 20px !important;
}
.font-44 .mainfont_size_compliment {
  font-size: 20px !important;
margin-right: 19px;
}
.font-44 .category.subfontinv6{
  font-size: 18px !important;
}
.font-44 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-44 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-44 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
  font-size: 20px;
 
}

.font-44 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 1.575rem !important;
}
.font-44 .mainfontinv6.font-27-spl {
font-size: 20px !important;
}
.font-44 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.25rem !important;
}
.font-44 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2.125rem !important;
}
.font-44 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 7.225rem !important; 
}


@media screen and (max-width: 1000px) {
  .font-44 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-44 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-44 h2.mainfontinv6.temp_1_mainfont.yellow_blue_spl.cyan_spl_white{
    font-size: 25px !important;
  }
  .font-44 .bride_groom.mainfontinv6.temp_1_mainfont.cyan_spl_white.yellow_blue_spl{
    font-size: 34px !important;
  }
  .font-44 .mainfont_size_complimenttem2{
    font-size: 22px !important;
  }
  .font-44 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-44 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template {
    font-size: 20px !important;
  }
  .font-44 .mainfont_size_compliment {
    font-size: 20px !important;
  margin-right: 19px;
}
  .font-44 .category.subfontinv6{
    font-size: 18px !important;
  }
  .font-44 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }

  .font-44 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-44 .testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 {
    font-size: 26px;
   
}

.font-44 .venue-details .mainfontinv6.temp_1_mainfont.blue_main_font {
  font-size: 2rem !important;
}
.font-44 .mainfontinv6.font-27-spl {
  font-size: 20px !important;
}
.font-44 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
font-size: 1.15rem !important;
}
.font-44 .mainfontinv6.temp_1_mainfont.blue_main_font{
font-size: 2rem !important;
}
.font-44 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
font-size: 3.225rem !important;
}
.font-44 .tep5-gm-bd1 {
  
  margin-top: 27px !important;
}

 }


 /* type45 */
.font-45 .mainfontinv6{
 
  font-family: 'Aladin' !important;
  font-size: 36px;
}
.font-45 .mainfontinv6_chat_box{
  font-family: 'Aladin';
  font-size: 29px !important;
}
.font-45 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-45 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-45 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-45 .ae_spltemp2{
  font-size: 268px !important;
}
.font-45 .fontlg_temp1{
  font-size: 27px !important;
}
.font-45 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-45 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-45 .mainfontinv6.big-fonts{
  font-size: 65px;
}

@media screen and (max-width: 1000px) {
  .font-45 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-45 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-45 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }

  .font-45 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
 }


 /* type46 */
.font-46 .mainfontinv6{
 
  font-family: 'IM Fell DW Pica' !important;
  font-size: 36px;
}
.font-46 .mainfontinv6_chat_box{
  font-family: 'IM Fell DW Pica';
  font-size: 22px !important;
}
.font-46 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-46 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-46 .mainfont_size_complimenttem2{
  font-size: 22px !important;
}
.font-46 .ae_spltemp2{
  font-size: 268px !important;
}
.font-46 .fontlg_temp1{
  font-size: 27px !important;
}
.font-46 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-46 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-46 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-46 .mainfontinv6.temp_1_mainfont.blue_main_font{
  font-size: 2rem !important;
  }
  .font-46 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 1.15rem !important;
    }
    
    .font-46 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 6.225rem !important;
    }
@media screen and (max-width: 1000px) {
  .font-46 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-46 .mainfontinv6 {
   font-size: 22px !important;
      
   }
   .font-46 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }
  
  .font-46 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-46 .box-4 .container h2.mainfontinv6.temp_1_mainfont.blue_main_font {
    font-size: 3.225rem !important;
    }
 }

 /* end */

 .img-edit-btnsave{
  position: absolute !important;
  left: 35% !important;
  top: 40% !important;
 }

 
 /* type47 */
.font-47 .mainfontinv6{
 
  font-family: 'Bad Script' !important;
  font-size: 36px;
}
.font-47 .mainfontinv6_chat_box{
  font-family: 'Bad Script';
  font-size: 25px !important;
}
.font-47 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-47 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-47 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-47 .ae_spltemp2{
  font-size: 268px !important;
}
.font-47 .fontlg_temp1{
  font-size: 27px !important;
}
.font-47 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-47 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}

.font-47 .mainfontinv6.big-fonts{
  font-size: 65px;
}
@media screen and (max-width: 1000px) {
  .font-47 .subfontinv6 {
   font-size: 19px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-47 .mainfontinv6 {
   font-size: 25px !important;
      
   }
   .font-47 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }
  
  .font-47 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
 }

 /* end */

 /* type48 */
.font-48 .mainfontinv6{
 
  font-family: 'Racing Sans One' !important;
  font-size: 36px;
}
.font-48 .mainfontinv6_chat_box{
  font-family: 'Racing Sans One';
  font-size: 20px !important;
}
.font-48 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-48 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-48 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-48 .ae_spltemp2{
  font-size: 268px !important;
}
.font-48 .fontlg_temp1{
  font-size: 27px !important;
}
.font-48 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-48 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}
.font-48 .mainfontinv6.big-fonts{
  font-size: 65px;
}

@media screen and (max-width: 1000px) {
  .font-48 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-48 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-48 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-48 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }
  .font-48 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-48 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 1.25rem !important;
    }
 }

 /* end */

 /* type49 */
.font-49 .mainfontinv6{
 
  font-family: 'MonteCarlo' !important;
  font-size: 36px;
}
.font-49 .mainfontinv6_chat_box{
  font-family: 'MonteCarlo';
  font-size: 34px !important;
}
.font-49 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 18px !important;
}
.font-49 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-49 .mainfont_size_complimenttem2{
  font-size: 23px !important;
}
.font-49 .ae_spltemp2{
  font-size: 268px !important;
}
.font-49 .fontlg_temp1{
  font-size: 27px !important;
}
.font-49 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-49 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}
.font-49 .mainfontinv6.big-fonts{
  font-size: 65px;
}

@media screen and (max-width: 1000px) {
  .font-49 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-49 .mainfontinv6 {
   font-size: 23px !important;
      
   }
   .font-49 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-49 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }
  .font-49 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-49 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 1.25rem !important;
    }
 }

 /* end */

 
 /* type50 */
.font-50 .mainfontinv6{
 
  font-family: 'Qwigley' !important;
  font-size: 42px;
}
.font-50 .mainfontinv6_chat_box{
  font-family: 'Qwigley';
  font-size: 34px !important;
}
.font-50 .subfontinv6{
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
}
.font-50 .subfontinv6_chat_box{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-50 .mainfont_size_complimenttem2{
  font-size: 29px !important;
}
.font-50 .ae_spltemp2{
  font-size: 268px !important;
}
.font-50 .fontlg_temp1{
  font-size: 27px !important;
}
.font-50 .emma_heading {
  font-size: 40px !important;
}
.font-50 .roko_heading {
  font-size: 40px !important;
}
.font-50 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
  font-size: 18px !important;
}
.font-50 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
  font-size: 40px !important;

}
.font-50 .mainfontinv6.big-fonts{
  font-size: 65px;
}
.font-50 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
  font-size: 3rem !important;
  }
  .font-50 .mainfontinv6.some-famous-clr{
    font-size: 27px !important;
  }

@media screen and (max-width: 1000px) {
  .font-50 .subfontinv6 {
   font-size: 18px !important;
      
   }
 }
 @media screen and (max-width: 1000px) {
  .font-50 .mainfontinv6 {
   font-size: 25px !important;
      
   }
   .font-50 .subfontinv6.temp_1_subfont.font-temp3-13.black_color_temp3.button_bg_all_template.fonts_inv2_3.mar-to-temp2 {
    font-size: 18px !important;
  }
  .font-50 .subfontinv6.smal-fonts.temp_1_mainfont.mainfont_template3_color {
    font-size: 30px !important;
  
  }
  .font-50 .mainfontinv6.big-fonts{
    font-size: 65px;
  }
  .font-50 .mainfontinv6.temp_1_mainfont.cyan_spl_white.rose_spl_white.bl_spl{
    font-size: 2rem !important;
    }
 }

 /* end */

 .inv-2 .box-3 .img-box1 img {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* end */
 .inv-1 .p-btn {
  background: #D5636F ;
  border-radius: 2px;

  color: #ffffff;
  font-style: normal;
  border: 1px solid #D5636F;

}

.inv-1.color-2 .p-btn {
  background:#444444;
  border-color: #444444;
  color: #cb9e0b;
}

.inv-1.color-3 .p-btn {
  background:#20827b;
  border-color:#20827b;
  color:white;
}
.inv-1.color-3 p {
  color:white;
}
.inv-1.color-3 h2 {
  color:white;
}
.inv-1.color-4 .p-btn {
  background: #005482;
  border-color: #005482;
  color: #cb9e0b;
}

.inv-1.color-5 .p-btn {
  background: #810034;
  border-color: #810034;
  color: #cb9e0b;
}

.inv-1.color-6 .p-btn {
  background: #722620;
  border-color:#722620;
  color:white;
}
.color-6 .inv-1 .box-7  .item .text p b {
  font-weight: bold;
  float: right;
  color: white !important;
}
.color-6 .message{
  color:white !important;
}
.color-6 h4{
  color:#722620 !important;
}
.color-6 h2{
  color:#722620 !important;
}
.color-7 h4{
  color:black !important;
}
.color-7 h2{
  color:black !important;
}
.color-7 .message{
  color:white !important;
}
.inv-1.color-7 .p-btn {
  background: #050533;
  border-color:#050533;
  color:white !important;
}
.inv-1.color-8 .p-btn {
  background:#75e6da;
  border-color:#75e6da;
  color:black !important;
}
.color-8 .message{
  color:black !important;
}
.color-8 .inv-1 .box-7 .item .text p b {
  font-weight: bold;
  float: right;
 color:black !important;
}

.inv-1 p {
  font-size: 1rem;
  color: black !important;
}
.color-8 h2{
  color:#75e6da !important;
}

.inv-1.color-9 .p-btn {
  background:#080a52;
  border-color:#080a52;
  color:#eb2188 !important;
}
.color-9 h4{
  color:#080a52 !important;
}
.color-9 h2{
  color:#080a52 !important;
}
.color-9 .message{
  color:#EB2188 !important;
}
.color-9 p {
  color: #eb2188 !important;
}

.inv-1.color-10 .p-btn {
  background:#283350;
  border-color:#283350;
  color:white !important;
}

.color-10 h4{
  color:#080a52 !important;
}
.color-10 h2{
  color:#080a52 !important;
}
.color-10 .message{
  color:white !important;
}
.color-10 p {
  color: white !important;
}
.color-2 .message{
  color: #cb9e0b !important;
}
.color-2 p {
  color: #cb9e0b !important;
}
.color-3 .message{
  color: white !important;
}
.color-3 p {
  color: white !important;
}
.color-4 .message{
  color: #cb9e0b !important;
}
.color-4 p {
  color: #cb9e0b !important;
}
.color-5 .message{
  color: #cb9e0b !important;
}
.color-5 p {
  color: #cb9e0b !important;
}
.color-6 .message{
  color: white !important;
}
.color-6 p {
  color: white !important;
}
.color-7 .message{
  color: white !important;
}
.color-7 p {
  color: white !important;
}

.create_inv_popup{
  color:#000;
  margin-top: 30px;
}
.create_inv_popup1{
  color:#000;
 
}

.inv-1.color-1 .box-5 .bg-color {
  background: #d5636f2e;
}
.inv-1.color-1 .box-1 .bg-color, .inv-1.color-1 .box-5 .bg-color {
  background: #d5636f2e;
}
.inv-1.color-1 .box-7 .item {
  background: #d5636f2e;
}

.inv-2.color-1 .box-2:before {
  background: #d5636f2e;
}


.color-4 p.category.subfontinv6{
  color:#cb9e0b !important;
}
.color-4 .emma_heading.mainfontinv6{
  color:#cb9e0b !important;
}
.color-4 .roko_heading.mainfontinv6{
  color:#cb9e0b !important;
}
.color-4 p.centersplcolor{
  color:#cb9e0b !important;
}
.color-4 h2.centersplcolor{
  color:#cb9e0b !important;
}
.color-4 h5.centersplcolor{
  color:#cb9e0b !important;
}


.color-5 p.category.subfontinv6{
  color:#cb9e0b !important;
}
.color-5 .emma_heading.mainfontinv6{
  color:#cb9e0b !important;
}
.color-5 .roko_heading.mainfontinv6{
  color:#cb9e0b !important;
}
.color-5 p.centersplcolor{
  color:#cb9e0b !important;
}
.color-5 h2.centersplcolor{
  color:#cb9e0b !important;
}
.color-5 h5.centersplcolor{
  color:#cb9e0b !important;
}

/* color-4 start */

.color-4 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  background: #00548282 !important;
}

.color-4 .mainfontinv6{
  
  color: #cb9e0b !important;
  
}
.color-4 .subfontinv6{
 
  color: white !important;

}

.color-4 h1.mainfontinv6.name_colorinv6 {
  /* color:#cb9e0b !important; */
  color:white !important;
  background: #ff1700e0;
    padding: 7px;
    border-radius: 9px;
    opacity: 1;
    justify-content: center;
}
.color-4 h1.subfontinv6.name_colorinv6 {
  /* color:#cb9e0b !important; */
  color:white;
  background: #ff1700e0;
    padding: 7px;
    border-radius: 9px;
    opacity: 1;
    margin-top: 116px;
    justify-content: center;
    margin-left: 30px;
}
.color-4 h3.subfontinv6.name_colorinv6 {
  /* color:#cb9e0b !important; */
  color:white;
  background: #ff1700e0;
    padding: 7px;
    border-radius: 9px;
    opacity: 1;
    justify-content: center;
    margin-top: 92px;
    margin-left: 30px;
}
.img-heart-icon{
  margin-top: 144px;
  /* background: #ff1700e0; */
  border-radius: 9px;
  justify-content: center;
  margin-left: 30px;
}


@media only screen and (max-width: 700px) {
  .color-4 h1.mainfontinv6.name_colorinv6 {
    /* color:#cb9e0b !important; */
    color:white !important;
    background: #ff1700e0;
      padding: 2px;
      border-radius: 9px;
      opacity: 1;
      justify-content: center;
      font-size: 9px !important;
  }
  .color-4 h1.subfontinv6.name_colorinv6 {
    /* color:#cb9e0b !important; */
    color:white;
    background: #ff1700e0;
      padding: 2px;
      border-radius: 9px;
      opacity: 1;
      margin-top: 21px;
      justify-content: center;
      margin-left: 30px;
      font-size: 9px !important;
  }
  .color-4 h3.subfontinv6.name_colorinv6 {
    /* color:#cb9e0b !important; */
    color:white;
    background: #ff1700e0;
      padding: 2px;
      border-radius: 9px;
      opacity: 1;
      margin-top: 15px;
      justify-content: center;
      margin-left: 30px;
      font-size: 9px !important;
  }
  .img-heart-icon{
    margin-top: 26px;
    /* background: #ff1700e0; */
    border-radius: 9px;
    justify-content: center;
    margin-left: 30px;
  }
  
  
  
}
.color-4 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #005482 !important;
}
.color-4 .social_profile_inv61{
  color:white !important;
}
.color-4 .lookatubg{
  /* background: #A2DBFA !important; */
  background: #005482 !important;
}
.color-4 .lookatu{
  color: white !important;
}
.color-4 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-4 .subfontinv6_ourbest_color{
  color:red !important;
}


.color-4 .wd_overlay{
  background: #053742 !important;
}
.color-4 .wd_story_covers_box_left{
  background: #005482 !important;
}
.color-4 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #c490e4;
  border-left: 35px solid rgb(0 84 130);
  border-bottom: 25px solid transparent;
}

.color-4 .wd_story_covers_box_right{
  background: #005482!important;
}
.color-4 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #c490e4;
  border-right: 35px solid rgb(0 84 130);
  border-bottom: 25px solid transparent;
}
.color-4 .mainfontinv6_chat_box.mainfontinv6{
  color: yellow !important;
}
.color-4 .chat_section_inv6  h1.mainfontinv6{
  color: yellow !important;
}
.color-4 .subfontinv6_ourbest_color{
  color: red !important;
}
/* color-4 end */


/* color-5 start */

.color-5 .background_image_section_overlay{
  position: absolute !important;
  top: 0 !important;
  left:0 !important;
  width:100% !important;
  height: 100% !important;
  /* background: #26001ba6 !important; */
  background: #8100347a !important;
}

.color-5 .mainfontinv6{
  
  color: #26001B !important;
  
}
.color-5 .subfontinv6{
 
  color:#F2EEE5 !important;

}

.color-5 h1.mainfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-5 h1.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-5 h3.subfontinv6.name_colorinv6 {
  color:#cb9e0b !important;
}
.color-5 .zero3 button.upload-btn1.plus-btn-ceremony{
  background: #810034 !important;
}
.color-5 .social_profile_inv61{
  color:#F2EEE5 !important;
}
.color-5 .lookatubg{
  /* background: yellow !important; */
  background: #810034 !important;
}
.color-5 .lookatu{
  color: white !important;
}
.color-5 .subfontinv6_dont_color{
  color:#001932 !important;
}
.color-5 .subfontinv6_ourbest_color{
  color:red !important;
}


.color-5 .wd_overlay{
  
  background: #26001B !important;
  
}
.color-5 .wd_story_covers_box_left{
  /* background: #26001B !important; */
  background: #810034 !important;
}
.color-5 .wd_story_covers_box_left:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #810034;
  border-left: 35px solid rgb(129 0 52);
  border-bottom: 25px solid transparent;
}

.color-5 .wd_story_covers_box_right{
  /* background:#26001B!important; */
  background: #810034 !important;
}
.color-5 .wd_story_covers_box_right:after {
  content: "";
  position: absolute;
  left: -35px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid #810034;
  border-right: 35px solid rgb(129 0 52);
  border-bottom: 25px solid transparent;
}
.color-5 .mainfontinv6_chat_box.mainfontinv6{
  color: yellow !important;
}
.color-5 .chat_section_inv6  h1.mainfontinv6{
  color: yellow !important;
}
.color-5 .subfontinv6_ourbest_color{
  color:  #26001B !important;
}
/* color-5 end */

.compli_name_locate{
  font-weight: bold !important;
  float: right !important;
  /* text-align: center; */
  margin-right: 20px;
}

.border_img_box{
  border: 2px solid #20bbb1 !important;
  /* margin-top: 20px !important; */
  margin-top: 5px !important;
}


/* nov20 start */
.container-fonts{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.card-fonts {
  background: rgb(4, 47, 82);
  width: 190px;
  height: 171px;
  margin: 10px;
  border-radius: 15px;
  color: white;
}

.card-fonts h6{
  padding-top: 40px;
  text-align: center;

}
.card-fonts p{
  /* padding-top: 20px; */
  text-align: center;
}

.card-fonts:hover {
  background-color: rgb(62,62,62);
  color: white;
  cursor: pointer;
  transform: scale(1.03);
  transition: all 1s ease;
}
.max-width-modal-fonts{
  max-width: 972px;
}
.sele-font-color{
  color: #000;
}

.font-1-main-card{
  font-family: 'Dancing Script';
  font-size: 25px;
}
.font-1-sub-card{
  font-family: 'Acme';
  font-size: 18px;
}
.font-2-main-card{
  font-family: 'Niconne';
  font-size: 27px;
}
.font-2-sub-card{
  font-family: "Times New Roman", Times, serif;
  font-size: 18px !important;
}
.font-3-main-card{
  font-family: 'Great Vibes';
  font-size: 25px !important;
}
.font-3-sub-card{
  font-family: 'Merienda';
  font-size: 16px !important;
}
.font-4-main-card{
  font-family: 'Sacramento';
  font-size: 25px;
}
.font-4-sub-card{
  font-family: 'Philosopher';
  font-size: 17px;
}
.font-5-main-card{
  
 font-family: 'Tangerine';
 font-size: 35px;

}
.font-5-sub-card{
  font-family: 'Saira';
  font-size: 17px;
}


.font-6-main-card{
  font-family: 'Oleo Script Swash Caps';
  font-size: 19px;
 }
 .font-6-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-7-main-card{
  font-family: 'Marck Script';
  font-size: 21px;
 }
 .font-7-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-8-main-card{
  font-family: 'Satisfy';
  font-size: 21px;
 }
 .font-8-sub-card{
  font-family: 'Acme';
   font-size: 17px;
 }

 .font-9-main-card{
  font-family: 'Niconne';
  font-size: 23px;
 }
 .font-9-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-10-main-card{
  font-family: 'Norican';
  font-size: 22px;
 }
 .font-10-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-11-main-card{
  font-family: 'Festive', cursive;
  font-size: 35px;
 }
 .font-11-sub-card{
  font-family: 'Pridi', serif;
   font-size: 17px;
 }

 .font-12-main-card{
  font-family: 'Courgette';
  font-size: 20px;
 }
 .font-12-sub-card{
  font-family: 'Zilla Slab';
   font-size: 17px;
 }

 .font-13-main-card{
  font-family: 'Lobster Two';
  font-size: 25px;
 }
 .font-13-sub-card{
  font-family: 'Zilla Slab';
   font-size: 17px;
 }

 .font-14-main-card{
  font-family: 'Parisienne';
  font-size: 25px;
 }
 .font-14-sub-card{
  font-family: 'Handlee';
   font-size: 17px;
 }

 .font-15-main-card{
  font-family: 'Allura';
  font-size: 25px;
 }
 .font-15-sub-card{
  font-family: 'Zilla Slab';
   font-size: 17px;
 }

 .font-16-main-card{
  font-family: 'Nanum Pen Script';
  font-size: 25px;
 }
 .font-16-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-17-main-card{
  font-family: 'Alex Brush';
  font-size: 25px;
 }
 .font-17-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-18-main-card{
  font-family: 'Allison';
  font-size: 25px;
 }
 .font-18-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-19-main-card{
  font-family: 'Pinyon Script';
  font-size: 25px;
 }
 .font-19-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-20-main-card{
  font-family: 'Caveat Brush';
  font-size: 25px;
 }
 .font-20-sub-card{
  font-family: "Times New Roman", Times, serif;

   font-size: 17px;
 }

 .font-21-main-card{
  font-family: 'Fredericka the Great';
  font-size: 17px;
 }
 .font-21-sub-card{
  font-family: 'Shrikhand';
   font-size: 17px;
 }

 .font-22-main-card{
  font-family: 'Allan';
  font-size: 25px;
 }
 .font-22-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-23-main-card{
  font-family: 'Herr Von Muellerhoff';
  font-size: 25px;
 }
 .font-23-sub-card{
  font-family: 'Lemonada';
   font-size: 17px;
 }

 .font-24-main-card{
  font-family: 'Arizonia';
  font-size: 25px;
 }
 .font-24-sub-card{
  font-family: 'Lemonada';
   font-size: 17px;
 }

 .font-25-main-card{
  font-family: 'Charm';
  font-size: 25px;
 }
 .font-25-sub-card{
  font-family: 'Lemonada';
   font-size: 17px;
 }

 .font-26-main-card{
  font-family: 'Yesteryear';
  font-size: 25px;
 }
 .font-26-sub-card{
  font-family: 'Lemonada';
   font-size: 17px;
 }

 .font-27-main-card{
  font-family: 'Style Script', cursive;
  font-size: 25px;
 }
 .font-27-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-28-main-card{
  font-family: 'Mr De Haviland';
  font-size: 25px;
 }
 .font-28-sub-card{
  font-family: "Times New Roman", Times, serif;

   font-size: 17px;
 }
 .font-29-main-card{
  font-family: 'Grand Hotel';
  font-size: 25px;
 }
 .font-29-sub-card{
  font-family: 'Aladin';
   font-size: 17px;
 }
 .font-30-main-card{
  font-family: 'Pompiere';
  font-size: 25px;
 }
 .font-30-sub-card{
  font-family: 'IM Fell DW Pica';
   font-size: 17px;
 }
 .font-31-main-card{
  font-family: 'Monsieur La Doulaise';
  font-size: 19px;
 }
 .font-31-sub-card{
  font-family: "Times New Roman", Times, serif;

   font-size: 17px;
 }
 .font-32-main-card{
  font-family: 'UnifrakturMaguntia';
  font-size: 20px;
 }
 .font-32-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-33-main-card{
  font-family: 'Montez';
  font-size: 25px;
 }
 .font-33-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-34-main-card{
  font-family: 'Qahiri';
  font-size: 35px;
 }
 .font-34-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }

 .font-35-main-card{
  font-family: 'Festive';
  font-size: 25px;
 }
 .font-35-sub-card{
  font-family: 'Katibeh';
   font-size: 17px;
 }
 .font-36-main-card{
  font-family: 'Acme';
  font-size: 25px;
 }
 .font-36-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-37-main-card{
  font-family: 'Merienda';
  font-size: 25px;
 }
 .font-37-sub-card{
  font-family: 'Fondamento';
   font-size: 17px;
 }
 .font-38-main-card{
  font-family: 'Philosopher';
  font-size: 25px;
 }
 .font-38-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-39-main-card{
  font-family: 'Saira';
  font-size: 25px;
 }
 .font-39-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-40-main-card{
  font-family: 'Pridi', serif;
  font-size: 25px;
 }
 .font-40-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-41-main-card{
  font-family: 'Zilla Slab';
  font-size: 25px;
 }
 .font-41-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-42-main-card{
  font-family: 'Handlee';
  font-size: 25px;
 }
 .font-42-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-43-main-card{
  font-family: 'Shrikhand';
  font-size: 22px;
 }
 .font-43-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-44-main-card{
  font-family: 'Lemonada';
  font-size: 21px;
 }
 .font-44-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-45-main-card{
  font-family: 'Aladin';
  font-size: 25px;
 }
 .font-45-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-46-main-card{
  font-family: 'IM Fell DW Pica';
  font-size: 21px;
 }
 .font-46-sub-card{
  font-family: "Times New Roman", Times, serif;

   font-size: 17px;
 }
 .font-47-main-card{
  font-family: 'Bad Script';
  font-size: 25px;
 }
 .font-47-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-48-main-card{
  font-family: 'Racing Sans One';
  font-size: 22px;
 }
 .font-48-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-49-main-card{
  font-family: 'MonteCarlo';
  font-size: 25px;
 }
 .font-49-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }
 .font-50-main-card{
  font-family: 'Qwigley';
  font-size: 25px;
 }
 .font-50-sub-card{
  font-family: "Times New Roman", Times, serif;
   font-size: 17px;
 }


 .card-fonts input:checked + label{
  /* border: 2px solid #0d0df1; */
  border: 5px solid #20bbb1;
  width: 190px;
  height: 171px;
  border-radius: 15px;
}
.card-fonts input{
  display: none;
}


.card-fonts label{
  padding-left: 22px;
  align-items: center;
}



/* start */
@media only screen and (max-width: 600px) {
  
.temp-head {
  display: flex;
  align-items: center;
  margin-top: 0;
  width: 100%;
  position: fixed;
  top: 0% !important;
  /* z-index: 1000 !important; */
  z-index: 1121 !important;
}

.temp-head .close-btn {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  height: 20px;
  color: #ffffff;
  font-size: 13px;
  opacity: 1;
  background: transparent;
  border: 0;
  display: none;
}
.temp-head .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #193131;
  /* padding: 15px 30px; */
  padding: 6px 8px;
  height: 30px !important;
}



.temp-head .content .select-theme {
  display: flex;
}
.temp-head .content .select-theme label {
  display: block;
  color: #ffffff;
  /* font-size: 0.75rem; */
  margin-top: 25px;
  margin-bottom: 0px;
  font-size: 7px;
}
/* .temp-head .content .s-btn {
  margin-right: 20px;
  padding: 5px 20px;
} */
.temp-head .content .s-btn {
  margin-right: 2px;
  padding: 0px 14px;
  font-size: 7px;
  margin-bottom: 0px;
}
.temp-head div.item{
  margin-right: 4px;
}

.s-btn.white {
  border-color: #ffffff;
  color: #ffffff;
}

.s-btn {
  padding: 10px 30px;
  display: inline-block;
  border: 1px solid;
  border-radius: 50px;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.125rem;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}


.temp-head .centre-area {
  width: 310px;
  text-align: center;
}

.temp-head .content h3 {
  color: #ffffff;
  font-family: "Helvetica";
  font-weight: bold;
  font-size: 7px;
}
.s-btn.blue {
  color: #20BBB1;
  border-color: #20BBB1;
}

.temp-head .centre-area {
  
  display: block;
}


}

.s-btn.green {
  background: #20bbb1;
  border-color:#20bbb1; 
  color: white;
 
}


.s-btn.green:hover {
  color: #5F5E48;
  border-color: #5F5E48;
  background: white;
}


/* .fa {
  padding: 20px;
  font-size: 20px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.8;
}

.fa-facebook {
  background: #3B5998;
  color: white;
} */

.width-share{
  width:30% !important;
  display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 600px) {
  .width-share{
    width:100% !important;
    /* display: flex;
      justify-content: center;
      align-items: center; */
      font-size: 8px;
  }
}
@media only screen and (max-width: 600px) {
div.modal-footer{
justify-content: center !important;
}
}
.slide-menu .items a {
  text-align: center;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #5F5E48;
  margin-bottom: 15px;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.profile-mobile-login{
  display: flex;
    justify-content: center;
    /* margin-bottom: 20px; */
}
.nav-link-mobile:hover{
  color: #20BBB1;
}
.dp-btn-mobile{
  background: transparent;
    border: 0;
    display: flex;
    align-items: center;
}
.nav-link-mobile{
  padding: 0.5rem 1rem;
}
.img-box-mobile{
  width: 40px;
    height: 40px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.dp-name-mobile{
  font-size: 32px;
  color: #5f5e48;
}
div.items.items-mobile{
  margin-top: 0px;
}
/* loader start */
 #content-preloader {display: none;}
 #content-preloader1 {display: none;}
 #content-preloader2 {display: none;}
      

        #loader{
            position: absolute;
            margin: auto;
            top:0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
        }

        #loader img{
            width: 300px;
        }

        /* end */

/* switch btn start */

  .checkbox-banner{
   
    position: relative;
    /* width: 100px;
    height: 40px; */
    /* width: 50px;
    height: 20px; */
    width: 57px !important;
    height: 18px !important;
    background:#bdc3c7;
    -webkit-appearance:none;
    border-radius: 20px;
    outline: none;
    transition: .4s;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    cursor: pointer;

   
}
input.checkbox-banner{
  margin-left: 37px;
}
input:checked[type="checkbox"]{
    background: #3498db;
}

    .checkbox-banner::before{
    z-index: 2;
    position: absolute;
    content: "";
    left:0;
    /* width: 40px;
    height: 40px; */
    /* width: 20px;
    height: 20px; */
    width: 24px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: .4s;
}
input:checked[type="checkbox"]::before{
    /* left: 60px; */
    /* left:31px; */
    left: 32px;
}
.toggle-banner{
    position: relative;
    display: inline;
}
.label-banner-edit{
    position: absolute;
    color: #fff;
    /* font-weight: 600; */
    /* font-size: 10px; */
    font-size: 7px;
    pointer-events: none;
}
.onbtn{
    /* bottom: 10px; */
    bottom: 7px;
    /* left: 15px; */
    left: 40px;
}
.ofbtn{
    /* bottom: 10px; */
    /* right: 25px; */
    bottom: 7px;
    right: 14px;
    color: #34495e;
}



/* end */


.compli-separate-page-item{
  border-radius: 30px !important;
 
    height: 250px;
    padding: 0px !important;
}
.compli-separate-page-imgbox{
  height: 250px;
  width: 100%;
  border-radius: 30px;
    
}
.item.compli-separate-page-item div.dp{
  width: 50%;
}
div.dp.compli-separate-page-dp{
  height: 250px !important;
    width: 250px !important;
}
div.img-box.compli-separate-page-imgbox{
  width: 240px !important;
  height: 250px !important;
  overflow: hidden !important;
  border-radius: 30px !important;
}
.inv-1 .box-7.compli-separate-page-box7{
  width: 840px !important;
}
.compli-separate-page-text{
  padding: 20px 20px 20px 0px;
  width: 568px !important;
  text-align: justify;
}
.compli-separate-page-btn{
  border-radius: 9px !important;
}


.img-area_tem555 {
    width: 160px;
    height: 100px;
    display: block;
    border-radius: 50%;
    /* margin: 0 auto; */
    margin-left: -18px;
    margin-top: -19px;
}


div.head.text-center.w-100 h2{
  color: #5f5e48 !important;
}
.top-albums h2{
  color: #5f5e48 !important;
}

/* start dec23 */
.color-l-orange{color:#ff8b8b}
    .color-l-blue{color:#77afea}
    .color-l-yellow{color:#f4d382}
    .color-l-purple{color:#ad8ede}
    .color-l-pink{color:#ff3e75}
    .color-l-green{color:#77dfa2}
    
    
    .titleHR{background:none repeat scroll 0 0 #e1e1e1;height:3px;margin:20px auto 0;position:relative;text-align:center;width:130px;margin-bottom:20px}
    .titleHR span{border-left:5px solid #f7f7f7;border-right:5px solid #f7f7f7;display:inline-block;height:3px;left:0;margin:0 auto;position:absolute;right:0;top:0;width:50px}
    
   
    .services-item{padding:40px 20px}
    .services-item i{font-size:48px;margin-bottom:20px}
    .services-item h5{font-weight:700;font-size:16px;margin-top:20px;text-transform:uppercase}



  .color-black-serviceonly{
    /* color: #000; */
    color: #4f6165;
    line-height: 180%;
    font-size: 0.875rem;
  }
  .color-black-serviceonly-best{
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0.1em;
    color: #5F5E48;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 40px;
  }
/* end dec23 */

/* temp5 border color */

/* color-2 */

.color-2 .wd_about_infobox_img:before {
  
  background-color:#1c1c1c;
  
}
.color-2 .wd_about_infobox_img:after {
 
  background-color: #1c1c1c;
  
}

.color-2 .wd_btn a {
 
  background-color: #1c1c1c;
 
}

.color-2 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #1c1c1c;
  
}

.color-2 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #1c1c1c;
 
}
.color-2 .img-nov-complitemp555 img {
 
  border: 5px solid #353535;
}

/* color-3 */

.color-3 .wd_about_infobox_img:before {
  
  background-color:#20827b;
  
}
.color-3 .wd_about_infobox_img:after {
 
  background-color: #20827b;
  
}

.color-3 .wd_btn a {
 
  background-color: #20827b;
 
}

.color-3 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #20827b;
  
}

.color-3 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #20827b;
 
}
.color-3 .img-nov-complitemp555 img {
 
  border: 5px solid #20827b;
}

/* color-4 */

.color-4 .wd_about_infobox_img:before {
  
  background-color:#053742;
  
}
.color-4 .wd_about_infobox_img:after {
 
  background-color: #053742;
  
}

.color-4 .wd_btn a {
 
  background-color: #053742;
 
}

.color-4 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #053742;
  
}

.color-4 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #053742;
 
}
.color-4 .img-nov-complitemp555 img {
 
  border: 5px solid #053742;
}

/* color-5 */

.color-5 .wd_about_infobox_img:before {
  
  background-color:#26001b;
  
}
.color-5 .wd_about_infobox_img:after {
 
  background-color: #26001b;
  
}

.color-5 .wd_btn a {
 
  background-color: #26001b;
 
}

.color-5 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #26001b;
  
}

.color-5 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #26001b;
 
}
.color-5 .img-nov-complitemp555 img {
 
  border: 5px solid #26001b;
}

/* color-6 */

.color-6 .wd_about_infobox_img:before {
  
  background-color:#722620;
  
}
.color-6 .wd_about_infobox_img:after {
 
  background-color: #722620;
  
}

.color-6 .wd_btn a {
 
  background-color: #722620;
 
}

.color-6 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #722620;
  
}

.color-6 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #722620;
 
}
.color-6 .img-nov-complitemp555 img {
 
  border: 5px solid #722620;
}

/* color-7 */

.color-7 .wd_about_infobox_img:before {
  
  background-color:#050533;
  
}
.color-7 .wd_about_infobox_img:after {
 
  background-color:#050533;
  
}

.color-7 .wd_btn a {
 
  background-color: #050533;
 
}

.color-7 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #050533;
  
}

.color-7 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #050533;
 
}
.color-7 .img-nov-complitemp555 img {
 
  border: 5px solid #050533;
}

/* color-8 */

.color-8 .wd_about_infobox_img:before {
  
  background-color:#210070;
  
}
.color-8 .wd_about_infobox_img:after {
 
  background-color:#210070;
  
}

.color-8 .wd_btn a {
 
  background-color: #210070;
 
}

.color-8 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #210070;
  
}

.color-8 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #210070;
 
}
.color-8 .img-nov-complitemp555 img {
 
  border: 5px solid #210070;
}

/* color-9 */

.color-9 .wd_about_infobox_img:before {
  
  background-color:#080a52;
  
}
.color-9 .wd_about_infobox_img:after {
 
  background-color:#080a52;
  
}

.color-9 .wd_btn a {
 
  background-color:#080a52;
 
}

.color-9 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #080a52;
  
}

.color-9 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #080a52;
 
}
.color-9 .img-nov-complitemp555 img {
 
  border: 5px solid #080a52;
}

/* color-10 */

.color-10 .wd_about_infobox_img:before {
  
  background-color:#f93800;
  
}
.color-10 .wd_about_infobox_img:after {
 
  background-color:#f93800;
  
}

.color-10 .wd_btn a {
 
  background-color:#f93800;
 
}

.color-10 .wd_family_tabbox .nav-tabs > li.active > a img, .wd_family_tabbox .nav-tabs > li.active > a:hover img, .wd_family_tabbox .nav-tabs > li.active > a:focus img {
  border: 4px solid #f93800;
  
}

.color-10 .wd_family_tabbox .nav > li > a > img {
  border: 4px solid #f93800;
 
}
.color-10 .img-nov-complitemp555 img {
 
  border: 5px solid #f93800;
}


/* temp4 compli start */
.temp4-compli-doubleclr{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #111;
}

.testimonials-temp4-doubleclr{
  position: relative;
  max-width: 100%;
  -webkit-box-reflect:below 1px linear-gradient(transparent 70%, #0009);
}

.swiper-slide{
  background-position: center;
  background-size: cover;
  width: 350px !important;
  min-height: 350px !important;
  background: #fff;
  margin: 0 20px;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right{
  background-image: none;
}

.testimonials-temp4-doubleclr .card-double-shade-temp4{
  position: relative;
  /* width: 100%; */
  margin: 0 auto;
  /* background: #333; */
  background: linear-gradient(#03a9f4, #e91ee3);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
  position: absolute;
  top:calc(100% - 2px);
  left:0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#03a9f4, #e91ee3);
  z-index: 1;
  transition: 0.5s;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4:hover .layer-temp4{
  top:0;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4{
  position: relative;
  z-index: 2;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 p{
 font-size: 18px;
 line-height: 24px;
 margin-bottom: 20px;
 color: #fff;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 .imgBx-temp4box{
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
 
}
.testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2{
  font-size: 18px;
  color: #fff;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4 .content-tm4 h2 span{
  font-size: 14px;
  color: #03a9f4;
  transition: 0.5s;
}
.testimonials-temp4-doubleclr .card-double-shade-temp4:hover .content-tm4 h2 span{
  color: #fff;
}
html{
  overflow: hidden;
}

.imgBx-temp4box img{
  width: 100%;
  height: 100%;
}


/* temp4 compli end */


.btn-box-compli-temp4{
  display: flex;
    justify-content: center;
    margin-top: 45px;
}

.box6-temp4-compli{
  background: #edf5f7;
    padding: 10px 0 !important;
}
.head-temp4-compli{
  margin-bottom: 20px !important;
}

/* color */

.color-1 .temp4-compli-doubleclr {
  
  background: #edf5f7;
}
.color-1 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-1 .some-famous-clr{
  color: white !important;
}

.color-1 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}
.color-1 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-2 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#000, #e91ee3);
  
}
.color-2 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#000, #e91ee3);
 
}


.color-2 .temp4-compli-doubleclr {
  
  background: #353535;
}
.color-2 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-2 .some-famous-clr{
  color: white !important;
}

.color-2 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}
.color-2 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

/* color 3 */
.color-3 .temp4-compli-doubleclr {
  
  background: #20827b;
}
.color-3 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-3 .some-famous-clr{
  color: white !important;
}

.color-3 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-3 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-3 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#053742,#20827b);
  
}
.color-3 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#053742,#20827b);
 
}

/* color-4 */

.color-4 .temp4-compli-doubleclr {
  
  background: #005482;
}
.color-4 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-4 .some-famous-clr{
  color: white !important;
}

.color-4 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-4 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-4 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#053742,#20827b);
  
}
.color-4 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#053742,#20827b);
 
}

.color-5 .temp4-compli-doubleclr {
  background: #810034;
}
.color-5 .testimonials-temp4-doubleclr .card-double-shade-temp4 {
  background: linear-gradient(#26001b, #810034);
  
}
.color-5 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#26001b, #810034);
 
}

.color-5 .box6-temp4-compli{
 
    padding: 0px 0 !important;
}
.color-5 .head-temp4-compli{
  margin-bottom: 0px !important;
  padding-top: 20px !important;
}
.color-5 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-5 .some-famous-clr{
  color: white !important;
}

/* color-6 */
.color-6 .temp4-compli-doubleclr {
  
  background: #722620;
}
.color-6 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-6 .some-famous-clr{
  color: white !important;
}

.color-6 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-6 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-6 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#f2bc94,#722620);
  
}
.color-6 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#f2bc94,#722620);
 
}



/* color-7 */
.color-7 .temp4-compli-doubleclr {
  
  background: #050533;
}
.color-7 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-7 .some-famous-clr{
  color: white !important;
}

.color-7 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-7 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-7 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#ecf87f,#050533);
  
}
.color-7 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#ecf87f,#050533);
 
}

/* color-8 */
.color-8 .temp4-compli-doubleclr {
  
  background: #75e6da;
}
.color-8 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-8 .some-famous-clr{
  color: white !important;
}

.color-8 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-8 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-8 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#210070,#050533);
  
}
.color-8 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#210070,#050533);
 
}


/* color-9 */
.color-9 .temp4-compli-doubleclr {
  
  background:#080a52;
}
.color-9 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-9 .some-famous-clr{
  color: white !important;
}

.color-9 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-9 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-9 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#eb2188,#05053352);
  
}
.color-9 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#eb2188,#05053352);
 
}
/* color-10 */
.color-10 .temp4-compli-doubleclr {
  
  background:#283350;
}
.color-10 .temp4-compli-doubleclr {
  
  min-height: 80vh !important;
  
}
.color-10 .some-famous-clr{
  color: white !important;
}

.color-10 .box6-temp4-compli{
 
  padding: 0px 0 !important;
}

.color-10 .head-temp4-compli{
margin-bottom: 0px !important;
padding-top: 20px !important;
}

.color-10 .testimonials-temp4-doubleclr .card-double-shade-temp4{
 
  background: linear-gradient(#f93800,#283350bf);
  
}
.color-10 .testimonials-temp4-doubleclr .card-double-shade-temp4 .layer-temp4{
 
  background: linear-gradient(#f93800,#283350bf);
 
}

/* toggle switch btn */
.checkbox-banner1{
  margin-left: 57px !important;
}
.onbtn1{
  left: 61px !important;
}

/* choose-theme */

.temp-heading-name{
 
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
    font-family: "Helvetica";
    color: #5F5E48;
    font-size: 21px;
}
.rs-name-rate{
  text-align: center;
  margin-top: 8px;
  font-weight: bold;
    font-family: "Helvetica";
    color: #5F5E48;
    font-size: 21px;
}

.cube-only-style{
  font-size:48px;
  color:#ff8b8b;
}

.service-spacing{
  margin-top: 110px;
}
.space-what-we{
  /* margin-top: 50px; */
  margin-top: 62px;
  color: #000000 !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 30px !important;
}
.title.title1{
  margin-bottom: 0px;
}

.modal { overflow: auto !important; }


/* profile section icon color */

.color-1 .fa.fa-youtube-play.fa-2x{
   color: white !important;
}
.color-2 .fa.fa-youtube-play.fa-2x{
  color: #222  !important;
}
.color-3 .fa.fa-youtube-play.fa-2x{
  color: #23A89F !important;
}
.color-4 .fa.fa-youtube-play.fa-2x{
  color: #053742 !important;
}
.color-5 .fa.fa-youtube-play.fa-2x{
  color: #26001B !important;
}
.color-6 .fa.fa-youtube-play.fa-2x{
  color: #f2bc94 !important;
}
.color-7 .fa.fa-youtube-play.fa-2x{
  color: #ECF87F !important;
}
.color-8 .fa.fa-youtube-play.fa-2x{
  color: #210070 !important;
}
.color-9 .fa.fa-youtube-play.fa-2x{
  color: #eb2188 !important;
}
.color-10 .fa.fa-youtube-play.fa-2x{
  color: #f93800 !important;
}

.ttm-team-member-single-content-wrapper .team-media-block .social-icons li {
  font-size: 15px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 35px;
  border: 1px solid transparent;
  border-radius: 3px;
  margin-right: 10px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 8%);
  margin-left: -5px;
  padding-top: 10px;
}

.color-1 .fa.fa-twitter.fa-2x{
  color: white !important;
}
.color-2 .fa.fa-twitter.fa-2x{
  color: #222  !important;
}
.color-3 .fa.fa-twitter.fa-2x{
  color: #23A89F !important;
}
.color-4 .fa.fa-twitter.fa-2x{
  color: #053742 !important;
}
.color-5 .fa.fa-twitter.fa-2x{
  color: #26001B !important;
}
.color-6 .fa.fa-twitter.fa-2x{
  color: #f2bc94 !important;
}
.color-7 .fa.fa-twitter.fa-2x{
  color: #ECF87F !important;
}
.color-8 .fa.fa-twitter.fa-2x{
  color: #210070 !important;
}
.color-9 .fa.fa-twitter.fa-2x{
  color: #eb2188 !important;
}
.color-10 .fa.fa-twitter.fa-2x{
  color: #f93800 !important;
}


.color-1 .fa.fa-pinterest.fa-2x{
  color: white !important;
}
.color-2 .fa.fa-pinterest.fa-2x{
  color: #222  !important;
}
.color-3 .fa.fa-pinterest.fa-2x{
  color: #23A89F !important;
}
.color-4 .fa.fa-pinterest.fa-2x{
  color: #053742 !important;
}
.color-5 .fa.fa-pinterest.fa-2x{
  color: #26001B !important;
}
.color-6 .fa.fa-pinterest.fa-2x{
  color: #f2bc94 !important;
}
.color-7 .fa.fa-pinterest.fa-2x{
  color: #ECF87F !important;
}
.color-8 .fa.fa-pinterest.fa-2x{
  color: #210070 !important;
}
.color-9 .fa.fa-pinterest.fa-2x{
  color: #eb2188 !important;
}
.color-10 .fa.fa-pinterest.fa-2x{
  color: #f93800 !important;
}


/* end */
.content-tm4 p.subfontinv6{
  height: 160px !important;
}

.btn-center-template{
  display: flex !important;
  justify-content: center;
}
.s-btn.s-btn-padding{
  padding: 5px 30px !important;
}

/* profile section mobile view */

@media only screen and (max-width: 960px) {
  img.mplogoinv6 {
    border-radius: 50%;
    width: 213px !important;
    height: 210px !important;
    border: 42px solid #313232;
    margin: 0 auto;
    padding: 20px;
    background: white;
}
}


/* profile section temp5 */

li.profile_box_icon{
  font-size: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 35px;
    border: 1px solid transparent;
    border-radius: 3px;
    margin-right: 10px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 8%);
    margin-left: -5px;
    padding-top: 10px;
}
.color-1 .spl-thank-color{
  color: #5F5E48 !important;
}
.color-2 .spl-thank-color{
  color: #cb9e0b !important;
}
.color-3 .spl-thank-color{
  color: white !important;
}
.color-4 .spl-thank-color{
  color: #cb9e0b !important;
}
.color-5 .spl-thank-color{
  color: #cb9e0b !important;
}
.color-6 .spl-thank-color{
  color: #30110d !important;
}
.color-7 .spl-thank-color{
  color:black !important;
}
.color-8 .spl-thank-color{
  color: #75E6DA !important;
}
.color-9 .spl-thank-color{
  color: #080A52 !important;
}
.color-10 .spl-thank-color{
  color: #080a52 !important;
}


.color-8 .spl-thank-color.spl-thank-color1{
  color: black !important;
}

.what-they-say-ins1{
  display:inline-block !important;
  width:728px !important;
  height:90px !important;
}
.new-date-home-pg{
  text-align: right !important;
}
.modal {
  z-index: 1129 !important;
}


.popup_button.popup_button1{
  color:#1ffbed !important;
    background: #d9020280 !important;
}
.swal2-popup.swal2-toast{
  background: #352929 !important;
}
.swal2-title{
  color: white !important ;
}
.choose-box .width-share{
  width: 20% !important;
}



.inv-4 .box-2 p{
  margin:30px;
}
.ftr-studio-h3{
  cursor: default !important;
}
#weddtemp .popup_button.popup_button1{
cursor: pointer !important;
}


.temp-head.temp6-header-spl-ht {
  height: 0px;
}
.cust-Amt-Mrgn{
  margin-top: 25px;
}



/* gallery image popup start */
.gallery-tep6-popup{
  transition: .5s ease-in-out;
}
.gallery-tep6-popup:hover{
  filter: brightness(80%);
}
/* @media only screen and (min-width:  1280px){
 .fancybox-content{
  transform: translate(275px, 90px) !important;
    width: 790px !important;
    height: 500px !important;
} 
} */
/* gallery image popup end */


/* home page start */
.getaquote .img-box img{
  height: 500px !important;
}
.getaquote .item .content.option-no-undefined p{
  padding: 0 20px !important;
}
/* home page end */


.modal-dialog.modal-lg{
  margin-top: 175px;
}


/* start  */
.positionmainlineinv6 {
 
  top: 30%;
  
}



@media only screen and (min-width: 200px)  and (max-width: 1200px) {
 .tep5-gm-bd1{
   font-size: 20px !important;
   margin-top: 71px !important;
 }
 .subfontinv6.tep5-gm-bd2{
  font-size: 8px !important;
  margin-top: 70px !important;
}
.subfontinv6.tep5-gm-bd3{
  font-size: 8px !important;
  margin-top: 73px !important;
}
.tep5-gm-bd4{
  
  margin-top: 125px !important;
}
}

h1.mainfontinv6.name_colorinv6.positionnameinv6.tep5-gm-bd1 {
  color: #10abc9 !important;
}
h3.subfontinv6.name_colorinv6.positiondateinv6.tep5-gm-bd2{
  color: #10abc9 !important;
}
h1.subfontinv6.name_colorinv6.positionsavedateinv6.tep5-gm-bd3{
  color: #10abc9 !important;
}
/* end */


.arrow-stle{
  font-size:24px;
  
}
.arrow-stle1{
 color: #000;
  padding: 40px 50px 0px 50px;
  font-size: 15px;
  margin: 0px;
}
.box-1.compli{
  padding-top: 50px;
}

a i.fas.arrow-stle{
  color: black;
}
.color-2 a i.fas.arrow-stle{
  color: #cb9e0b;
}
.color-4 a i.fas.arrow-stle{
  color: #cb9e0b;
}
.color-5 a i.fas.arrow-stle{
  color: #cb9e0b;
}
.color-6 b.back-inv-ar{
  color: #722620;
}
.color-7 b.back-inv-ar{
  color: black;
}
.color-8 b.back-inv-ar{
  color: #75e6da;
}
.color-8 a i.fas.arrow-stle{
  color: #75e6da;
}

.color-9 b.back-inv-ar{
  color:  #080a52;
}
.color-9 a i.fas.arrow-stle{
  color:  #080a52;
}

.color-10 b.back-inv-ar{
  color: #080a52;
}
.color-10 a i.fas.arrow-stle{
  color: #080a52;
}

@media only screen and (min-width: 200px)  and (max-width: 300px) {
  .inv-1 .box-7 {
    width: 100%;
}
.inv-1 .box-7.compli-separate-page-box7 {
  width: 280px !important;
}
 }

 @media only screen and (min-width: 315px)  and (max-width: 750px) {
  .inv-1 .box-7 {
    width: 100%;
}
.inv-1 .box-7.compli-separate-page-box7 {
  width: 360px !important;
}
 }

 @media only screen and (min-width: 751px)  and (max-width: 1100px) {
  .inv-1 .box-7 {
    width: 100%;
}
.inv-1 .box-7.compli-separate-page-box7 {
  width: 750px !important;
}
 }


 /* start */
 @media only screen and (max-width: 1200px) {
  .wd_about_infobox h1:after {
    bottom: 2px;
}
 }


 
 /* end */
 .mar-to-temp2{
   margin-top: 50px;
 }
 /* end */
 @media only screen and (max-width: 1000px){
 .inv-5 .box-1 .banner-wrap .text-box {
  top: 46% !important;
}
}

/* end */
.mar-bt-share{
  margin-bottom: 6px !important;
}
.blk-share{
  color: #000 !important;
}