@charset "UTF-8";
/**
 * 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;
  background-color: #f7f7ef !important;
 }

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; }

.font-2 h6 {
  font-family: "Poppins"; }
.font-2 h2 {
  font-family: "Great Vibes"; }
.font-2 p {
  font-family: "Poppins"; }

.font-3 h6 {
  font-family: "Comfortaa"; }
.font-3 h2 {
  font-family: "Comfortaa";
  font-weight: 500; }
.font-3 p {
  font-family: "Poppins"; }

.font-4 h6 {
  font-family: "Comfortaa"; }
.font-4 h2 {
  font-family: "Dancing Script"; }
.font-4 p {
  font-family: "Poppins"; }

.font-5 h6 {
  font-family: "Poppins"; }
.font-5 h2 {
  font-family: "Pacifico"; }
.font-5 p {
  font-family: "Cormorant Garamond", serif; }

.font-6 h6 {
  font-family: "Montaga"; }
.font-6 h2 {
  font-family: "Great Vibes"; }
.font-6 p {
  font-family: "Montaga"; }

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-right: auto;
      margin-left: auto;
      padding: 10px 5px;
      text-align: center; }
    .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: 432px !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; }
  @media (max-width: 599.98px) {
    .temp-head {
      display: none;
      width: 250px;
      height: 100%;
      right: 0;
      bottom: 0;
      z-index: 11; }
      .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;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/inv-img/edit.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px;
  background-color: #ffffff;
  border: 1px solid #666666;
  border-radius: 50px; }
.invite-box .img-edit-btn {
  background-image: url(../images/inv-img/upload.svg); }
.invite-box .img-box {
  position: relative; }
.invite-box.prv-mode .text-edit-btn,
.invite-box.prv-mode .img-edit-btn,
.invite-box.prv-mode .style-change {
  display: none; }
.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; }
  .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; }
      .inv-1 .box-7 .item .text p b {
        font-weight: bold; }
  .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: #D5636F;
  border-radius: 2px;
  color: #ffffff;
  font-style: normal;
  border: 1px solid #D5636F; }
.inv-1 .s-btn {
  background: transparent;
  border-radius: 2px;
  border-radius: 1px solid #a5a2a2;
  color: #D5636F;
  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: #000000; }
  .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: #444444; }
  .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: #F37821;
    border-color: #F37821; }
  .inv-1.color-2 .s-btn {
    border-color: #F37821;
    color: #F37821; }
.inv-1.color-3 {
  background: #CDF0EA; }
  .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: #F6C6EA; }
  .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: #C490E4;
    border-color: #C490E4; }
  .inv-1.color-3 .s-btn {
    border-color: #C490E4;
    color: #C490E4; }
.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: .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-1{
      background: #ffffff;
    }
  .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: 3rem;
      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-5 {
  --box-2-img-width: 555px; }
  @media (min-width: 600px) and (max-width: 1023.98px) {
    .inv-5 {
      --box-2-img-width: 100%; } }
  @media (max-width: 599.98px) {
    .inv-5 {
      --box-2-img-width: 100%; } }
  .inv-5 img {
    display: block; }
  .inv-5 h6 {
    font-size: 0.75rem;
    font-weight: 400;
    font-weight: 500;
    font-size: 12px;
    color: #f97c17; }
  .inv-5 h2 {
    font-size: 2.375rem;
    font-weight: 400; }
  .inv-5 p {
    font-size: 1rem; }
  .inv-5 .text-edit-btn {
    z-index: 2; }
  .inv-5 .box-1 h2 {
    font-size: 4.5rem; }
    @media (max-width: 599.98px) {
      .inv-5 .box-1 h2 {
        font-size: 2.625rem; } }
  .inv-5 .box-1 h6 {
    font-size: 2rem; }
    @media (max-width: 599.98px) {
      .inv-5 .box-1 h6 {
        font-size: 1.125rem; } }
  .inv-5 .box-1 .banner-wrap {
    height: 580px;
    overflow: hidden; }
    @media (min-width: 600px) and (max-width: 1023.98px) {
      .inv-5 .box-1 .banner-wrap {
        height: auto; } }
    @media (max-width: 599.98px) {
      .inv-5 .box-1 .banner-wrap {
        height: auto; } }
    .inv-5 .box-1 .banner-wrap img {
      width: 100%; }
    .inv-5 .box-1 .banner-wrap .img-box {
      z-index: 1; }
    .inv-5 .box-1 .banner-wrap .gray-cover {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000000;
      z-index: 2;
      opacity: 0.4; }
    .inv-5 .box-1 .banner-wrap .text-box {
      top: 30%;
      left: 0;
      right: 0;
      text-align: center;
      position: absolute;
      z-index: 3; }
      .inv-5 .box-1 .banner-wrap .text-box h2, .inv-5 .box-1 .banner-wrap .text-box h6 {
        color: #ffffff; }
  .inv-5 .box-2 {
    position: relative;
    z-index: 5;
    margin-top: -100px; }
    @media (min-width: 600px) and (max-width: 1023.98px) {
      .inv-5 .box-2 {
        margin-top: 10px; } }
    @media (max-width: 599.98px) {
      .inv-5 .box-2 {
        margin-top: 10px; } }
    .inv-5 .box-2 .container {
      display: flex; }
      @media (min-width: 600px) and (max-width: 1023.98px) {
        .inv-5 .box-2 .container {
          display: block; } }
      @media (max-width: 599.98px) {
        .inv-5 .box-2 .container {
          display: block; } }
    .inv-5 .box-2 .and-line {
      width: 200px;
      margin: 0 auto;
      border-bottom: 1px solid #cccccc;
      margin-bottom: 20px; }
      .inv-5 .box-2 .and-line span {
        font-size: 0.875rem;
        position: relative;
        bottom: -9px;
        background: #ffffff;
        padding: 10px;
        color: #666666; }
    .inv-5 .box-2 .left-area .img-box {
      width: var(--box-2-img-width);
      height: 700px;
      overflow: hidden; }
      @media (min-width: 600px) and (max-width: 1023.98px) {
        .inv-5 .box-2 .left-area .img-box {
          height: auto; } }
      @media (max-width: 599.98px) {
        .inv-5 .box-2 .left-area .img-box {
          height: auto; } }
      .inv-5 .box-2 .left-area .img-box img {
        width: 100%; }
    .inv-5 .box-2 .right-area {
      width: calc(100% - var(--box-2-img-width));
      position: relative;
      z-index: 5;
      padding-top: 100px; }
      @media (min-width: 600px) and (max-width: 1023.98px) {
        .inv-5 .box-2 .right-area {
          width: 90%;
          margin: 0 auto; } }
      @media (max-width: 599.98px) {
        .inv-5 .box-2 .right-area {
          width: 90%;
          margin: 0 auto; } }
      .inv-5 .box-2 .right-area .content .wrap {
        width: 100%;
        padding: 80px 30px;
        border: 20px solid #f97c17;
        border-left: transparent;
        text-align: center; }
        @media (max-width: 599.98px) {
          .inv-5 .box-2 .right-area .content .wrap {
            border: 10px solid #f97c17; } }
  .inv-5 .box-3 {
    position: relative;
    padding: 80px 0; }
    .inv-5 .box-3 .content {
      width: 80%;
      margin: 0 auto;
      text-align: center; }
    .inv-5 .box-3 h2 {
      margin-bottom: 30px; }
  .inv-5 .box-4 {
    padding: 80px 0; }
    .inv-5 .box-4 .content h2 {
      font-size: 1.75rem; }
    .inv-5 .box-4 .item-wrap {
      box-shadow: 0 0 10px 0 rgba(18, 31, 56, 0.1);
      margin-top: 30px;
      text-align: center;
      padding: 35px; }
      .inv-5 .box-4 .item-wrap .item {
        padding: 10px 0;
        border-bottom: 1px solid #ededed;
        min-height: 77px;
        display: flex;
        align-items: center;
        justify-content: center; }
        .inv-5 .box-4 .item-wrap .item.time {
          min-height: 0; }
        .inv-5 .box-4 .item-wrap .item.btn-box {
          border: 0; }
  .inv-5 .box-5 {
    padding: 80px 0; }
    .inv-5 .box-5 .invite-box {
      margin-top: 30px; }
  .inv-5 .box-6 {
    background: #edf5f7;
    padding: 80px 0; }
    .inv-5 .box-6 .head {
      text-align: center;
      margin-bottom: 40px; }
    .inv-5 .box-6 .item {
      position: relative; }
      .inv-5 .box-6 .item .dp {
        position: absolute;
        width: 80px;
        left: -43px;
        border-radius: 100px;
        overflow: hidden;
        top: calc(50% - 80px/2);
        z-index: 2; }
        .inv-5 .box-6 .item .dp img {
          width: 100%; }
      .inv-5 .box-6 .item .content {
        padding-left: 50px;
        padding-right: 70px;
        border-left: 1px solid #dcdcdc; }
        .inv-5 .box-6 .item .content .icon svg {
          width: 50px;
          height: 50px;
          margin-bottom: 10px; }
          .inv-5 .box-6 .item .content .icon svg path:nth-child(2) {
            fill: #D5636F; }
    .inv-5 .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-5 .box-6 .slick-arrow:after {
        display: block;
        width: 15px;
        height: 15px;
        content: "";
        border: 1px solid #000000;
        position: relative; }
      .inv-5 .box-6 .slick-arrow.slick-next {
        right: -90px; }
        .inv-5 .box-6 .slick-arrow.slick-next::after {
          top: 6px;
          right: -18px;
          transform: rotate(45deg);
          border-bottom: 0;
          border-left: 0; }
      .inv-5 .box-6 .slick-arrow.slick-prev {
        left: -90px; }
        .inv-5 .box-6 .slick-arrow.slick-prev::after {
          top: 6px;
          left: -5px;
          transform: rotate(45deg);
          border-top: 0;
          border-right: 0; }
    .inv-5 .box-6 .btn-box {
      text-align: center;
      margin-top: 30px; }
  .inv-5 .box-7 {
    padding: 80px 0; }
    .inv-5 .box-7 .content {
      text-align: center; }
      .inv-5 .box-7 .content a {
        display: block;
        text-align: center;
        font-size: 0.875rem;
        color: #5F5E48; }
  .inv-5.color-1 h2,
  .inv-5.color-1 p,
  .inv-5.color-1 h4 {
    color: #5F5E48; }
  .inv-5.color-1 h6 {
    color: #f97c17; }
  .inv-5.color-1 .p-btn {
    background: #D5636F;
    border-color: #D5636F;
    color: #ffffff; }
  .inv-5.color-1 .s-btn {
    border-color: #D5636F;
    color: #D5636F; }
    .inv-5.color-1 .s-btn:hover {
      background: #D5636F;
      color: #ffffff; }
  .inv-5.color-1 .box-4 .icon-box {
    margin-bottom: 15px; }
    .inv-5.color-1 .box-4 .icon-box svg {
      height: 50px; }
      .inv-5.color-1 .box-4 .icon-box svg path {
        fill: #f97c17; }
  .inv-5.color-2 {
    --color-1: #844a4a;
    --color-2: #444444;
    --color-3: #cb9e0b;
    background: #000000; }
    .inv-5.color-2 .bg-color {
      background: var(--color-2); }
    .inv-5.color-2 h2,
    .inv-5.color-2 h4,
    .inv-5.color-2 p {
      color: var(--color-3); }
    .inv-5.color-2 h6 {
      color: var(--color-3); }
    .inv-5.color-2 .p-btn {
      background: var(--color-3);
      border-color: var(--color-3);
      color: #ffffff; }
    .inv-5.color-2 .s-btn {
      border-color: var(--color-3);
      color: var(--color-3); }
      .inv-5.color-2 .s-btn:hover {
        background: var(--color-3);
        color: #ffffff; }
    .inv-5.color-2 .box-2 .right-area .content .wrap {
      border-color: var(--color-1); }
    .inv-5.color-2 .box-2 .and-line span {
      background: var(--color-2);
      color: var(--color-3); }
    .inv-5.color-2 .box-4 .item-wrap .item {
      border-bottom: 1px solid #808080; }
    .inv-5.color-2 .box-4 .icon-box {
      margin-bottom: 15px; }
      .inv-5.color-2 .box-4 .icon-box svg {
        height: 50px; }
        .inv-5.color-2 .box-4 .icon-box svg path {
          fill: var(--color-3); }
    .inv-5.color-2 .box-6 .content .icon svg path:nth-child(2) {
      fill: var(--color-3); }
    .inv-5.color-2 .box-7 .content a {
      color: var(--color-3); }
  .inv-5.color-3 {
    --color-1: #844a4a;
    --color-2: #F6C6EA;
    --color-3: #343A40;
    background: #CDF0EA; }
    .inv-5.color-3 .bg-color {
      background: var(--color-2); }
    .inv-5.color-3 h2,
    .inv-5.color-3 h4,
    .inv-5.color-3 p {
      color: var(--color-3); }
    .inv-5.color-3 h6 {
      color: var(--color-3); }
    .inv-5.color-3 .p-btn {
      background: var(--color-3);
      border-color: var(--color-3);
      color: #ffffff; }
    .inv-5.color-3 .s-btn {
      border-color: var(--color-3);
      color: var(--color-3); }
      .inv-5.color-3 .s-btn:hover {
        background: var(--color-3);
        color: #ffffff; }
    .inv-5.color-3 .box-2 .right-area .content .wrap {
      border-color: var(--color-1); }
    .inv-5.color-3 .box-2 .and-line span {
      background: var(--color-2);
      color: var(--color-3); }
    .inv-5.color-3 .box-4 .item-wrap .item {
      border-bottom: 1px solid #808080; }
    .inv-5.color-3 .box-4 .icon-box {
      margin-bottom: 15px; }
      .inv-5.color-3 .box-4 .icon-box svg {
        height: 50px; }
        .inv-5.color-3 .box-4 .icon-box svg path {
          fill: var(--color-3); }
    .inv-5.color-3 .box-6 .content .icon svg path:nth-child(2) {
      fill: var(--color-3); }
    .inv-5.color-3 .box-7 .content a {
      color: var(--color-3); }
  .inv-5.color-4 {
    --color-1: #63c8ff;
    --color-2: #005482;
    --color-3: #daa520;
    background: #053742; }
    .inv-5.color-4 .bg-color {
      background: var(--color-2); }
    .inv-5.color-4 h2,
    .inv-5.color-4 h4,
    .inv-5.color-4 p {
      color: var(--color-3); }
    .inv-5.color-4 h6 {
      color: var(--color-3); }
    .inv-5.color-4 .p-btn {
      background: var(--color-3);
      border-color: var(--color-3);
      color: #ffffff; }
    .inv-5.color-4 .s-btn {
      border-color: var(--color-3);
      color: var(--color-3); }
      .inv-5.color-4 .s-btn:hover {
        background: var(--color-3);
        color: #ffffff; }
    .inv-5.color-4 .box-2 .right-area .content .wrap {
      border-color: var(--color-1); }
    .inv-5.color-4 .box-2 .and-line span {
      background: var(--color-2);
      color: var(--color-3); }
    .inv-5.color-4 .box-4 .item-wrap .item {
      border-bottom: 1px solid #808080; }
    .inv-5.color-4 .box-4 .icon-box {
      margin-bottom: 15px; }
      .inv-5.color-4 .box-4 .icon-box svg {
        height: 50px; }
        .inv-5.color-4 .box-4 .icon-box svg path {
          fill: var(--color-3); }
    .inv-5.color-4 .box-6 .content .icon svg path:nth-child(2) {
      fill: var(--color-3); }
    .inv-5.color-4 .box-7 .content a {
      color: var(--color-3); }
  .inv-5.color-5 {
    --color-1: #e47ba5;
    --color-2: #810034;
    --color-3: #cb9e0b;
    background: #26001B; }
    .inv-5.color-5 .bg-color {
      background: var(--color-2); }
    .inv-5.color-5 h2,
    .inv-5.color-5 h4,
    .inv-5.color-5 p {
      color: var(--color-3); }
    .inv-5.color-5 h6 {
      color: var(--color-3); }
    .inv-5.color-5 .p-btn {
      background: var(--color-3);
      border-color: var(--color-3);
      color: #ffffff; }
    .inv-5.color-5 .s-btn {
      border-color: var(--color-3);
      color: var(--color-3); }
      .inv-5.color-5 .s-btn:hover {
        background: var(--color-3);
        color: #ffffff; }
    .inv-5.color-5 .box-2 .right-area .content .wrap {
      border-color: var(--color-1); }
    .inv-5.color-5 .box-2 .and-line span {
      background: var(--color-2);
      color: var(--color-3); }
    .inv-5.color-5 .box-4 .item-wrap .item {
      border-bottom: 1px solid #808080; }
    .inv-5.color-5 .box-4 .icon-box {
      margin-bottom: 15px; }
      .inv-5.color-5 .box-4 .icon-box svg {
        height: 50px; }
        .inv-5.color-5 .box-4 .icon-box svg path {
          fill: var(--color-3); }
    .inv-5.color-5 .box-6 .content .icon svg path:nth-child(2) {
      fill: var(--color-3); }
    .inv-5.color-5 .box-7 .content a {
      color: var(--color-3); }

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;
      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: 75%;
    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; */
        font-size: 13px !important;
        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%; }
  .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; }
      @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"; }
      @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 */


.userinvtd{
  background: #fff;
  color: black;
  font-size: 14px;
}
.userinvborder{
  border-radius: 6px;
  box-shadow: 5px 5px #d7dccd;
}
.userinvbgcolor{
  background: #20BBB1;
  border-radius: 6px;
}




