@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&amp;display=swap");

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
  /**
  @font family declaration
  */
  --dc-ff-body: 'Plus Jakarta Sans', sans-serif;
  --dc-ff-heading: 'Plus Jakarta Sans', sans-serif;
  ;
  --dc-ff-p: 'Plus Jakarta Sans', sans-serif;
  ;
  --dc-ff-fontawesome: "Font Awesome 5 Pro";
  /**
  @color declaration
  */
  --dc-common-white: #ffffff;
  --dc-common-black: #070707;
  --dc-common-dark: #0b0b0b;
  --dc-common-dark-2: #0f0f0f;
  --dc-heading-primary: #070707;
  --dc-grey-1: #777777;
  --dc-grey-2: #acb3b7;
  --dc-grey-3: #757c80;
  --dc-grey-4: #999999;
  --dc-grey-5: #bbbbbb;
  --dc-grey-6: #c8c8c8;
  --dc-grey-7: #6e6e6e;
  --dc-grey-8: #a6a6a6;
  --dc-text-body: #000;
  --dc-text-1: #000;
  --dc-theme-bg: #f8fcfc;
  --dc-divine-bg-2: #f6f6f6;
  --dc-theme-bg-3: #f8fbff;
  --dc-theme-bg-4: #d3dbdf;
  --dc-theme-bg-5: #eef4f7;
  --dc-theme-bg-6: #f7f7f7;
  --dc-theme-bg-7: #f2f5f7;
  --dc-theme-bg-8: #e5eaee;
  --dc-theme-bg-9: #ecf8ff;
  --dc-theme-redical: #ff3c58;
  --dc-theme-red: #c5002e;
  --dc-theme-cornblue: #6c60fe;
  --dc-theme-vogue: #f05f22;
  --dc-theme-orange: #f05f22;
  --dc-theme-mirage: #1b1c31;
  --dc-theme-bouquet: #b685a1;
  --dc-theme-wine: #50223c;
  --dc-theme-mandalay: #b08920;
  --dc-theme-seagreen: #0d496b;
  --dc-theme-lochmara: #0686D8;
  --dc-theme-atlantis: #80BE2D;
  --dc-theme-picton: #5FB0E5;
  --dc-border-1: #e6e6e6;
  --dc-border-2: #dce9e9;
  --dc-border-3: #ececec;
  --dc-border-4: #efefef;
  --dc-border-5: #f0f0f0;
  --dc-border-6: #f3f3f3;
  --dc-border-7: #e4e4e4;
  --dc-border-8: #ededed;
  --dc-border-9: #f0f0f0;
  --dc-border-10: #1c1c1c;
  --dc-border-11: #ebebeb;
  --dc-border-12: #e7e7e7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}


body {
  font-family: var(--dc-ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--dc-text-body);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--dc-ff-heading);
  color: var(--dc-heading-primary);
  margin-top: 0px;
  line-height: 1.2;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--dc-ff-p);
  font-size: 14px;
  font-weight: 400;
  color: var(--dc-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}

li {
  list-style: none;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--dc-common-black);
  color: var(--dc-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--dc-common-black);
  color: var(--dc-common-white);
  text-shadow: none;
}

::selection {
  background: var(--dc-common-black);
  color: var(--dc-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--dc-common-black);
  font-size: var(--dc-fz-body);
  opacity: 1;
}

*::-webkit-input-placeholder {
  color: var(--dc-common-black);
  font-size: var(--dc-fz-body);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: var(--dc-common-black);
  font-size: var(--dc-fz-body);
  opacity: 1;
}

*::-ms-input-placeholder {
  color: var(--dc-common-black);
  font-size: var(--dc-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--dc-common-black);
  font-size: var(--dc-fz-body);
  opacity: 1;
}


.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.divine-border-bottom {
  border-bottom: 1px solid var(--dc-border-1);
}

.divine-border-top {
  border-top: 1px solid var(--dc-border-1);
}

.divine-border-bottom-dark {
  border-bottom: 1px solid #1c1c1c;
}

.divine-border-top-dark {
  border-top: 1px solid #1c1c1c;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}



.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}




.divine-black-bg-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #000;
  color: white;
  padding: 17px 30px;
  border-radius: 8px;
  display: inline-block;
}

.divine-black-bg-btn:hover {
  color: var(--dc-common-white);
}

.divine-black-bg-btn:hover span svg:first-child, .divine-black-bg-btn:hover span i:first-child {
  opacity: 1;
  transform: translateZ(0);
}

.divine-black-bg-btn:hover span svg:last-child, .divine-black-bg-btn:hover span i:last-child {
  opacity: 0;
  transform: translateX(30px) translateY(0);
}

.divine-black-bg-btn:hover span i {
  color: var(--dc-common-white);
}

.divine-black-bg-btn span {
  margin-left: 10px;
  display: inline-block;
  position: relative;
}

.divine-black-bg-btn span svg, .divine-black-bg-btn span i {
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.divine-black-bg-btn span svg:first-child, .divine-black-bg-btn span i:first-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-20px) translateY(0);
}

.divine-black-bg-btn span svg:last-child, .divine-black-bg-btn span i:last-child {
  opacity: 1;
  display: block;
  transform: translateY(0) translateY(0);
}

@media (max-width: 767px) {
  .divine-black-bg-btn {
    font-size: 14px;
    padding: 15px 29px;
  }
}





.divine-grd-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dc-common-white);
  background-size: 130% 100%;
  padding: 16px 34px;
  border-radius: 8px;
  display: inline-block;
  background-color: #f05f22;
}

.divine-grd-btn:hover {
  color: var(--dc-common-white);
  background-position: 100% 50%;
}

.divine-grd-btn:hover span svg:first-child, .divine-grd-btn:hover span i:first-child {
  opacity: 1;
  transform: translateZ(0);
}

.divine-grd-btn:hover span svg:last-child, .divine-grd-btn:hover span i:last-child {
  opacity: 0;
  transform: translateX(30px) translateY(0);
}

.divine-grd-btn span {
  display: inline-block;
  position: relative;
}

.divine-grd-btn span svg, .divine-grd-btn span i {
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.divine-grd-btn span svg:first-child, .divine-grd-btn span i:first-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-20px) translateY(0);
}

.divine-grd-btn span svg:last-child, .divine-grd-btn span i:last-child {
  opacity: 1;
  display: block;
  transform: translateY(0) translateY(0);
}

@media (max-width: 767px) {
  .divine-grd-btn {
    font-size: 14px;
    padding: 15px 29px;
  }
}







.down-arrow-btn {
  color: #fff;
  font-size: 18px;
  margin: 0 auto;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, rgb(90, 110, 248) 0%, rgb(254, 122, 143) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(90, 110, 248) 0%, rgb(254, 122, 143) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(90, 110, 248) 0%, rgb(254, 122, 143) 100%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.down-arrow-btn i {
  animation: scroll 1.5s infinite ease-in-out;
}

.down-arrow-btn:hover {
  color: white;
  opacity: 0.9;
}

.border-radious-none {
  border-radius: 0;
}

/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes scroll {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-10px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes scroll {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-10px);
  }

  100% {
    transform: translatey(0px);
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes scroll1 {
  0% {
    top: 0px;
    opacity: 1;
  }

  50% {
    top: 50%;
  }

  100% {
    top: 100%;
    opacity: 0.5;
  }
}

@keyframes scroll2 {
  0% {
    opacity: 1;
    bottom: 0px;
  }

  50% {
    bottom: 50%;
  }

  100% {
    bottom: 100%;
    opacity: 0.5;
  }
}

@keyframes preloader {
  0% {
    transform: scale(0.7, 0.7);
  }

  50% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0.7, 0.7);
  }
}

@-webkit-keyframes divinefadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes divinefadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.divinefadeUp {
  -webkit-animation-name: divinefadeUp;
  animation-name: divinefadeUp;
}


@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}







.white-bg {
  background-color: var(--dc-common-white);
}

.black-bg {
  background-color: var(--dc-common-black);
}

.red-bg {
  background-color: var(--dc-theme-red);
}

.dark-bg {
  background-color: var(--dc-common-dark);
}

.dark-bg-2 {
  background-color: var(--dc-common-dark-2);
}

.cornblue-bg {
  background-color: var(--dc-theme-cornblue);
}

.vogue-bg {
  background-color: var(--dc-theme-vogue);
}

.wine-bg {
  background-color: var(--dc-theme-wine);
}

.seagreen-bg {
  background-color: var(--dc-theme-seagreen);
}

.theme-bg {
  background-color: var(--dc-theme-bg);
}

.divine-bg-2 {
  background-color: var(--dc-divine-bg-2);
}


.divine-offcanvas {
  position: fixed;
  top: 0;
  right: -390px;
  width: 390px;
  height: 100%;
  padding: 60px;
  overflow-y: scroll;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.divine-offcanvas:-webkit-scrollbar {
  display: none;
}

.divine-offcanvas-close {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 16px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.divine-offcanvas-close i {
  line-height: 50px;
}

.divine-offcanvas-close:hover {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
}

.divine-offcanvas__social a {
  font-size: 16px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--dc-common-white);
  border: 2px solid var(--dc-border-6);
  text-align: center;
  line-height: 49px;
  margin-right: 5px;
  border-radius: 8px;
}

.divine-offcanvas__social a:hover {
  background-color: var(--dc-theme-redical);
  color: var(--dc-common-white);
}

.divine-offcanvas.opened {
  right: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width:576px) {
  .divine-offcanvas {
    width: 300px;
    padding: 50px 20px;
  }
}

.offc-top-pattern {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.offc-bottom-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--dc-common-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.mean-container .mean-nav ul li a:hover {
  opacity: 0.8;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--dc-common-white);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--dc-common-black);
  color: var(--dc-common-white);
  border-color: var(--dc-theme-1);
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--dc-common-white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--dc-common-white);
}


.divine-why-us-section {
  position: relative;
  z-index: 1;
}

.divine-why-us-section.text-center .divine-why-us-section__bigtitle {
  left: 0;
  right: 0;
}

.divine-why-us-section__bigtitle {
  color: transparent;
  font-size: 160px;
  position: absolute;
  top: -60px;
  line-height: 0.438;
  font-weight: 700;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(242, 245, 247) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .divine-why-us-section__bigtitle {
    font-size: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-why-us-section__bigtitle {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .divine-why-us-section__bigtitle {
    font-size: 80px;
  }
}

@media (max-width:576px) {
  .divine-why-us-section__bigtitle {
    font-size: 60px;
  }
}

.divine-why-us-section__subtitle {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 18px;
  border-radius: 3px;
  text-transform: capitalize;
  /* box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06); */
  display: inline-block;
  color: #33415C !important;
  background: #ffb494;
}

.divine-why-us-section__subtitle.text-rgb {
  position: relative;
  background-image: linear-gradient(90deg, #5a6ef8, #fe7a8f);
  color: var(--dc-grey-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divine-why-us-section__subtitle.change-icon-size {
  font-weight: 500;
}

.divine-why-us-section__subtitle.change-icon-size i {
  margin-right: 5px;
  font-size: 9px;
  line-height: 17px;
  transform: translateY(-3px);
}

.divine-why-us-section__subtitle.change-icon-size i:nth-child(2) {
  margin-right: 0;
  margin-left: 5px;
}

.divine-section__title {
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 50px;
  font-weight: 700;
}

.divine-section__title span {
  color: #f05f22;
  letter-spacing: -1.1px;
}

/* .divine-section__title span::before {
  content: "";
  background-color: #e2e4ff;
  position: absolute;
  bottom: 7px;
  right: 0;
  width: 100%;
  height: 10px;
  z-index: -1;
} */

@media (max-width: 767px) {
  .divine-section__title span::before {
    height: 3px;
  }
}

.divine-section__title.black-line span::before {
  background-color: rgb(26, 26, 26);
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-section__title br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .divine-section__title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-section__title {
    font-size: 40px;
    letter-spacing: 0;
  }
}

@media (max-width: 767px) {
  .divine-section__title {
    font-size: 35px;
    letter-spacing: 0;
  }
}

@media (max-width:576px) {
  .divine-section__title {
    font-size: 35px;
    letter-spacing: 0;
  }
}





.divine-why-us-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dc-grey-3);
  margin-bottom: 45px;
}

.divine-why-us-section p.text-grey {
  color: var(--dc-grey-1);
}

.divine-why-us-section p.text-fog {
  color: #dedbff;
}

.divine-why-us-section p.text-lily {
  color: #c9b2bf;
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-why-us-section p br {
    display: none;
  }
}

.text-grey {
  color: var(--dc-grey-1);
  font-weight: 400;
}

.text-mirage {
  color: var(--dc-theme-mirage);
}

.text-cornblue {
  color: var(--dc-theme-cornblue);
}

.divine-text-color {
  color: var(--dc-theme-vogue);
}

.wine-text-color {
  color: var(--dc-theme-wine);
}

.seagreen-text-color {
  color: var(--dc-theme-seagreen);
}

.lochmara-text-color {
  color: var(--dc-theme-lochmara);
}

.text-fog {
  color: #dedbff;
}

.text-redical {
  color: var(--dc-theme-redical);
}

.catskill-white-bg {
  background-color: #f6f9fb;
}

.before-border {
  transform: translateY(-5px);
  height: 2px;
  width: 24px;
  margin-right: 8px;
  background-color: #3d3f40;
  display: inline-block;
}

.after-border {
  transform: translateY(-5px);
  height: 2px;
  width: 24px;
  margin-left: 8px;
  background-color: #3d3f40;
  display: inline-block;

}





.divine-header-nav {
  border-radius: 50%;
  /* background-color: #f05f22; */
  /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1); */
  width: 40px;
  height: 40px;
  cursor: pointer;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}

.divine-header-nav-black {
  background-color: var(--dc-common-black);
}

.divine-header-nav span:first-child {
  width: 25px;
  height: 2px;
  background-color: #000;
  margin-bottom: 4px;
}

.divine-header-nav span:nth-child(2) {
  width: 25px;
  height: 2px;
  background-color: #000;
  margin-bottom: 4px;
}

.divine-header-nav span:last-child {
  width: 25px;
  height: 2px;
  background-color: #000;
}

.divine-header-nav:hover span:first-child {
  width: 15px;
}

.divine-header-nav:hover span:last-child {
  width: 10px;
}


.divine-header-nav-2 {
  width: 110px;
  height: 110px;
  font-size: 38px;
  line-height: 110px;
  color: white;
  display: block;
  border-radius: 0;
  text-align: center;
  flex: 0 0 auto;
  background-image: linear-gradient(100.16deg, #5a6ef8 9.94%, #a874c6 54.82%, #fe7a8f 95.56%);
  padding-left: 0;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .divine-header-nav-2 {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    margin: 15px;
  }
}

.transparent-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

.divine-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.divine-header-sticky.dark-header {
  border-bottom: 1px solid #2b2a2a;
}


.divine-header-sticky .divine-header-cta-btn {
  margin-top: 0;
}

.divine-header-sticky .divine-header-cta-btn p {
  display: none;
}



@media (max-width: 767px) {
  .divine-header-sticky.dc-ha-header__main {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}



#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dc-common-white);
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#loading img {
  width: 70px;
  animation: preloader 3s linear infinite;
}

.divine-mobile-menu.mean-container {
  overflow: hidden;
  clear: both;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu {
    margin-left: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul {
    float: right;
  }
}

.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 48px;
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .main-menu ul li {
    margin-right: 40px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1499px) {
  .main-menu ul li {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 25px;
  }
}

.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dc-common-black);
  padding: 43px 0;
  text-transform: uppercase;
}

.main-menu ul li.has-dropdown>a {
  position: relative;
}

.main-menu ul li.has-dropdown>a::after {
  content: "\f067";
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 16px;
  color: var(--dc-theme-redical);
  font-family: var(--dc-ff-fontawesome);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.main-menu ul li.has-megamenu {
  position: static;
}

.main-menu ul li .submenu {
  padding: 25px 10px;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  background-color: var(--dc-common-black);
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -moz-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -ms-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -o-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: top;
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
  border-radius: 0 0 10px 10px;
}

.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 0;
}

.main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.main-menu ul li .submenu li a {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  font-size: 14px;
  color: var(--dc-common-white);
  padding: 8px 20px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0;
  text-align: left;
}

.main-menu ul li .submenu li a::before {
  position: absolute;
  top: 50%;
  left: 30px;
  content: "";
  width: 14px;
  height: 1px;
  display: inline-block;
  background-color: var(--dc-theme-redical);
  transform: translateY(-50%);
  opacity: 0;
}

.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.main-menu ul li .submenu li:hover>a {
  color: var(--dc-theme-redical);
  background-color: rgba(150, 144, 162, 0.06);
  padding-left: 40px;
}

.main-menu ul li .submenu li:hover>a::after {
  color: var(--dc-theme-redical);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.main-menu ul li .submenu li:hover>a::before {
  opacity: 1;
  left: 20px;
}

.main-menu ul li .submenu li:hover>.submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.main-menu ul li .mega-menu {
  padding: 35px 50px;
  position: absolute;
  top: 120%;
  width: 1200px;
  background-color: var(--dc-common-black);
  left: 0;
  right: 0;
  z-index: 99;
  margin-left: -50px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -moz-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -ms-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -o-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: top;
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: space-between;
  flex: 0 0 auto;
  margin: 0 auto;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul li .mega-menu {
    width: 1100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li .mega-menu {
    width: 1000px;
    margin-right: -100px;
    margin-left: -100px;
  }
}

.main-menu ul li .mega-menu li {
  width: 150px;
  text-align: left;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul li .mega-menu li {
    width: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li .mega-menu li {
    width: 120px;
  }
}

.main-menu ul li .mega-menu li a {
  color: var(--dc-grey-1);
  padding: 0;
  padding: 10px;
}

.main-menu ul li .mega-menu li ul {
  padding-left: 0;
  text-align: left;
}

.main-menu ul li .mega-menu li ul li a {
  position: relative;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-transform: capitalize;
  text-align: start;
}

.main-menu ul li .mega-menu li ul li a::before {
  position: absolute;
  top: 50%;
  left: 30px;
  content: "";
  width: 14px;
  height: 1px;
  display: inline-block;
  background-color: var(--dc-theme-redical);
  transform: translateY(-50%);
  opacity: 0;
}

.main-menu ul li .mega-menu li ul li:hover>a {
  color: var(--dc-theme-redical);
  transform: translateX(25px);
}

.main-menu ul li .mega-menu li ul li:hover>a::after {
  color: var(--dc-theme-redical);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.main-menu ul li .mega-menu li ul li:hover>a::before {
  opacity: 1;
  transform: translateX(-40px);
}

.main-menu ul li .mega-menu li ul li:hover>.submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.main-menu ul li:hover>a {
  color: var(--dc-theme-redical);
}

.main-menu ul li:hover>a::after {
  color: var(--dc-theme-redical);
}

.main-menu ul li:hover.has-dropdown>a::after {
  content: "\f068";
}

.main-menu ul li:hover>.submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}

.main-menu ul li:hover>.mega-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}

.main-manu-before::before {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #e2e2e2;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-manu-before::before {
    display: none;
  }
}

.header-mail-info {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dc-common-black);
}

.header-mail-info i {
  margin-right: 7px;
  color: var(--dc-theme-cornblue);
}

.header-border-button {
  border-bottom: 1px solid var(--dc-border-2);
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .header-mail-info {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 1499px) {
  .header-mail-info {
    display: none;
  }
}


.divine-menu {
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .divine-menu ul {
    padding-left: 0;
  }
}

.divine-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 48px;
}

@media only screen and (min-width: 1711px) and (max-width: 1850px) {
  .divine-menu ul li {
    margin-right: 35px;
  }
}

@media only screen and (min-width: 1550px) and (max-width: 1710px) {
  .divine-menu ul li {
    margin-right: 35px;
  }
}

@media only screen and (min-width: 1500px) and (max-width: 1550px) {
  .divine-menu ul li {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1500px) {
  .divine-menu ul li {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .divine-menu ul li {
    margin-right: 22px;
  }
}

.divine-menu ul li a {
  color: var(--dc-common-black);
  padding: 38px 10px;
}

@media only screen and (min-width: 1300px) and (max-width: 1500px) {
  .divine-menu ul li a {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .divine-menu ul li a {
    font-size: 14px;
  }
}

.divine-menu ul li.has-dropdown>a {
  position: relative;
}

.divine-menu ul li.has-dropdown>a::after {
  color: var(--dc-common-black);
}

.divine-menu ul li .submenu {
  padding: 15px 0;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: var(--dc-common-white);
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -moz-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -ms-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  -o-box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  box-shadow: 0px 20px 30px rgba(3, 6, 31, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: top;
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
}

.divine-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 0;
}

.divine-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.divine-menu ul li .submenu li a {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  font-size: 14px;
  color: var(--dc-text-body);
  padding: 5px 20px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0;
  text-align: left;
}

.divine-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.divine-menu ul li .submenu li:hover>a {
  color: var(--dc-theme-redical);
  background-color: rgba(150, 144, 162, 0.06);
}

.divine-menu ul li .submenu li:hover>a::after {
  color: var(--dc-theme-redical);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.divine-menu ul li .submenu li:hover>.submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.divine-menu ul li .mega-menu {
  background-color: white;
}

.divine-menu ul li .mega-menu li ul li a {
  color: var(--dc-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .divine-menu ul li .mega-menu {
    margin-right: 0;
    margin-left: 150px;
  }
}

.divine-menu ul li:hover>a {
  color: var(--dc-theme-redical);
}

.divine-menu ul li:hover>a::after {
  color: var(--dc-theme-redical);
}

.divine-menu ul li:hover.has-dropdown>a::after {
  content: "\f068";
}

.divine-menu ul li:hover>.submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}

.divine-menu::before {
  display: none;
}





.divine-header-cta-btn p {
  color: var(--dc-grey-4);
  font-size: 16px;
}

.divine-header-cta-btn p b {
  color: var(--dc-common-black);
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .divine-header {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1499px) {
  .divine-header {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .divine-header {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .divine-header {
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-header {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .divine-header {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width:576px) {
  .divine-header {
    padding-left: 0;
    padding-right: 0;
  }
}












.divine-hero-area {
  padding-top: 170px;
  padding-bottom: 150px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .divine-hero-area::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  display: inline-block;
  z-index: 1;
  opacity: 60%;
} */

/* .divine-hero-area::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 30%;
  background-image: linear-gradient(0deg, rgba(80, 34, 60, 0) 0%, rgb(80, 34, 60) 100%);
  display: inline-block;
  z-index: 1;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-hero-area {
    margin-top: 0;
    padding-top: 200px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .divine-hero-area {
    margin-top: 0;
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

.divine-hero__content {
  position: relative;
  z-index: 2;
}

.divine-hero__content-subtitle {
  color: #fff;
  font-size: 24px;
  display: inline-block;
}

.divine-hero__content-title {
  font-size: 100px;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .divine-hero__content-title {
    font-size: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .divine-hero__content-title {
    font-size: 70px;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-hero__content-title {
    font-size: 50px;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .divine-hero__content-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .divine-hero__content-title {
    font-size: 40px;
    letter-spacing: -0.7px;
    line-height: 1.1;
  }

  .divine-hero__content-title br {
    display: none;
  }
}

.divine-hero__content p {
  color: #fefefe;
  font-size: 20px;
}

@media (max-width: 767px) {
  .divine-hero__content p {
    font-size: 18px;
  }
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .divine-hero__content p br {
    display: none;
  }
}


.line_wrap {
  top: 0;
  left: 51%;
  bottom: 0px;
  width: 70%;
  z-index: -1;
  display: block;
  position: fixed;
  transform: translateX(-50%);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.line_wrap:before {
  width: 1px;
  left: -1px;
  content: "";
  height: 100px;
  position: absolute;
  animation: scroll1 15s ease-out infinite;
  background-image: linear-gradient(0deg, #000000, transparent);
}

.line_wrap .line_item {
  width: 32.33%;
  float: left;
  height: 100%;
  position: relative;
  display: inline-block;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.line_wrap .line_item:before {
  width: 1px;
  right: -1px;
  content: "";
  height: 100px;
  position: absolute;
}

.line_wrap .line_item:nth-child(odd):before {
  animation: scroll2 15s ease-out infinite;

}

.line_wrap .line_item:nth-child(even):before {
  animation: scroll1 15s ease-out infinite;
  background-image: linear-gradient(0deg, #000000, transparent);
}

.line_wrap.line_white {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.line_wrap.line_white:before {
  background-image: linear-gradient(0deg, #ffffff, transparent);
}

.line_wrap.line_white .line_item {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.line_wrap.line_white .line_item:nth-child(odd):before {
  background-image: linear-gradient(0deg, transparent, #ffffff);
}

.line_wrap.line_white .line_item:nth-child(even):before {
  background-image: linear-gradient(0deg, #ffffff, transparent);
}








.divine-diff-counter {
  counter-reset: count;
}

.divine-service__item {
  position: relative;
  padding-top: 60px;
  padding-bottom: 50px;
  padding-left: 45px;
  padding-right: 45px;
  border-radius: 8px;
  border: 2px solid var(--dc-border-9);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.divine-service__item::after {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  content: "0"counter(count);
  counter-increment: count;
  font-size: 160px;
  font-weight: 900;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgb(234, 234, 234) 100%);
  color: var(--dc-grey-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -11;
}

@media (max-width:576px) {
  .divine-service__item {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.divine-service__item-title {
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--dc-theme-vogue);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .divine-service__item-title {
    font-size: 23px;
  }
}

.divine-service__item-title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.divine-service__item-title a:hover {
  background-size: 0 1px, 100% 1px;
}

.divine-service__item p {
  font-size: 16px;
  color: var(--dc-grey-1);
  text-align: justify;
}

.divine-service__item:hover {
  border-color: transparent;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.divine-service__item:hover .divine-servicce__item-img img {
  transform: translateY(-10px) translate3d(0, -10px, 0);
}




.divine-product-button-prev,
.divine-product-button-next {
  font-size: 20px;
  /* position: absolute; */
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: #f05f22;
  color: white;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 3;
}

/* .divine-product-button-prev::after,
.divine-product-button-next::after {
  content: "";
  background-image: linear-gradient(100.16deg, #f05f22 9.94%, #33415C 95.56%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
} */

.divine-product-button-prev:hover,
.divine-product-button-next:hover {
  color: var(--dc-common-white);
}

.divine-product-button-prev:hover::after,
.divine-product-button-next:hover::after {
  opacity: 1;
}

.divine-product-button-prev {
  margin-right: 30px;
}

/* .divine-product-active {
  margin-right: -275px;
} */

.divine-product-active .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divine-product-active .divine-product-item {
  height: 450px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* .divine-product-active .divine-product-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  border-radius: 8px;
  display: inline-block;
} */

.divine-product-active .divine-product-item__info {
  position: absolute;
  bottom: 0;
  padding: 0 40px;
  opacity: 0;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.divine-product-active .divine-product-item__info span {
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
}

@media (max-width: 767px) {
  .divine-product-active .divine-product-item__info {
    padding: 0 20px;
  }
}

.divine-product-active .divine-product-item__title {
  color: #fff;
  font-size: 24px;
}

.divine-product-active .divine-product-item__title a {
  background-image: linear-gradient(#fe7a8f, #5a6ef8), linear-gradient(#fe7a8f, #5a6ef8);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

/* .divine-product-active .divine-product-item__title a:hover {
  background-size: 0 1px, 100% 1px;
} */

.divine-product-active .divine-product-item:hover::after {
  opacity: 0.6;
}

/* .divine-product-active .divine-product-item:hover img {
  transform: scale(1.1);
} */

.divine-product-active .divine-product-item:hover .divine-product-item__info {
  bottom: 40px;
  opacity: 1;
}

.divine-product-active .swiper-slide {
  width: 25%;
}

.divine-product-active .swiper-slide:nth-child(2n) {
  width: 25%;
}

.divine-product-active .swiper-slide:nth-child(3n) {
  width: 25%;
}


.divine-contact__info span {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #3d3f40;
  position: relative;
}

@media (max-width:576px) {
  .divine-contact__info span {
    font-size: 18px;
  }
}

.divine-contact__info span::after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: #ececec;
  width: 313px;
  height: 1px;
  display: inline-block;
  margin-left: 38px;
}

@media (max-width:576px) {
  .divine-contact__info span::after {
    width: 200px;
  }
}

.divine-contact__info span i {
  margin-right: 18px;
  color: #3d3f40;
}

.divine-contact__info span:last-child::after {
  display: none;
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .divine-contact-form {
    margin-top: 50px;
  }
}

.divine-contact-form .input-item {
  position: relative;
  font-size: 16px;
  margin-bottom: 20px;
}

.divine-contact-form .input-item input, .divine-contact-form .input-item select, .divine-contact-form .input-item .nice-select {
  width: 100%;
  height: 60px;
  padding-left: 45px;
  padding-right: 10px;
  border-radius: 8px;
  border: 2px solid var(--dc-border-8);
  background-color: transparent;
}

.divine-contact-form .input-item input::-webkit-input-placeholder, .divine-contact-form .input-item select::-webkit-input-placeholder, .divine-contact-form .input-item .nice-select::-webkit-input-placeholder {
  color: var(--dc-grey-5);
}

.divine-contact-form .input-item input:-moz-placeholder, .divine-contact-form .input-item select:-moz-placeholder, .divine-contact-form .input-item .nice-select:-moz-placeholder {
  color: var(--dc-grey-5);
}

.divine-contact-form .input-item input::-moz-placeholder, .divine-contact-form .input-item select::-moz-placeholder, .divine-contact-form .input-item .nice-select::-moz-placeholder {
  color: var(--dc-grey-5);
}

.divine-contact-form .input-item input:-ms-input-placeholder, .divine-contact-form .input-item select:-ms-input-placeholder, .divine-contact-form .input-item .nice-select:-ms-input-placeholder {
  color: var(--dc-grey-5);
}

.divine-contact-form .input-item input:focus, .divine-contact-form .input-item select:focus, .divine-contact-form .input-item .nice-select:focus {
  border-color: var(--dc-theme-vogue);
}

.divine-contact-form .input-item span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  color: var(--dc-grey-5);
  font-size: 14px;
}

.divine-contact-form .input-item span.current {
  padding-left: 17px;
}

.input-item-textarea {
  position: relative;
  font-size: 16px;
  margin-bottom: 20px;
}

.input-item-textarea textarea {
  padding: 20px 45px;
  width: 100%;
  height: 200px;
  resize: none;
  border: 2px solid var(--dc-border-8);
  border-radius: 8px;
  background-color: transparent;
}

.input-item-textarea textarea::-webkit-input-placeholder {
  color: var(--dc-grey-5);
}

.input-item-textarea textarea:-moz-placeholder {
  color: var(--dc-grey-5);
}

.input-item-textarea textarea::-moz-placeholder {
  color: var(--dc-grey-5);
}

.input-item-textarea textarea:-ms-input-placeholder {
  color: var(--dc-grey-5);
}

.input-item-textarea textarea:focus {
  outline: 0;
  border-color: var(--dc-theme-vogue);
}

.input-item-textarea span {
  position: absolute;
  top: 34px;
  transform: translateY(-50%);
  left: 25px;
  color: var(--dc-theme-vogue);
}

.divine-contact-form-submit {
  width: 100%;
  height: 60px;
  text-align: center;
  background-color: var(--dc-theme-orange);
  border: 2px solid var(--dc-border-8);
  border-radius: 8px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.divine-contact-form-submit:hover {
  background-color: var(--dc-theme-vogue);
}


.divine-about-right h3 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .divine-about-right h3 {
    font-size: 24px;
    letter-spacing: inherit;
  }
}


@media (max-width: 767px) {
  .divine-grd-btn {
    margin-right: 0;
    margin-bottom: 30px;
  }
}






.logo {
  width: 65%;
}

.divine-custom-about-title {
  font-size: 48px;
}

.divine-custom-about-para {
  font-weight: 300;
  font-size: 36px;
  line-height: 134%;
  letter-spacing: -0.03em;
  margin-bottom: 50px;
}

.building-bg {

  /* position: absolute; */
  width: 100%;
  height: 100%;
  background: #fff url(https://www.prismjohnson.in/wp-content/themes/prismjohnson/images/overview_bg.png) no-repeat right center;
  z-index: 1;
}

.divine-custome-who-we-space {
  padding-right: 50px;
  text-align: justify;
}

.icon-size {
  width: 100px;
}

@media (max-width: 767px) {
  .logo {

    width: 120%;
  }

  .mobile-display-none {
    display: none;
  }

  .divine-custome-who-we-space {
    padding: 0;
  }

  .divine-section__title {
    line-height: 42px;
  }

  .mobile-size-slide {
    width: 100% !important;
    height: 100% !important
  }

  .custom-column-1 {
    width: 70%;
  }

  .custom-column-2 {
    width: 30%;
    margin-top: 13px;
  }

  .divine-product-button-prev, .divine-product-button-next {
    width: 48px;
    height: 48px;
  }

  .divine-product-button-prev {
    margin-right: 57px;
  }

  .divine-custom-about-title {
    font-size: 40px;
  }

  .divine-product-button-prev, .divine-product-button-next {
    line-height: 50px;
  }

  .divine-custom-about-para {
    font-size: 24px;
  }

  .mpb-60 {
    padding-bottom: 60px;
  }

  .mpt-60 {
    padding-top: 60px;
  }

  .mptb-60 {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .nmptb {
    padding-bottom: none;
    padding-top: none;
  }


}

.divine-light-text {
  font-weight: 300;
}

.divine-animate-button {
  animation: jod 2s ease-in-out infinite;

}

@keyframes jod {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(1.5deg);
  }


  75% {
    transform: rotate(-1.5deg);
  }

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

.parallax {
  height: 100vh;

  background-image: url('../upload/Parbg.webp');

  background-size: cover;

  background-attachment: fixed;

  background-position: center;

}

.text-effect {
  background: url(https://img.freepik.com/free-vector/white-grunge-distressed-texture-vector_53876-78199.jpg?w=1380&t=st=1681124418~exp=1681125018~hmac=512de848377bfa0c0cee0a173aeead28ed5f19850841a0fc9333f453dd1685ac) no-repeat scroll;
  background-size: cover;
  -webkit-background-clip: text;
  color: transparent;
}

.divine-product-navigation {
  display: flex;
  place-content: center;
}

.new-div-navigation {
  display: block;
    position: relative;
    margin-bottom: 45px;
}

@media (max-width: 767px) {
  .divine-product-button-prev {
    margin-right: 20px;
  }

  .divine-product-button-prev, .divine-product-button-next {
    line-height: 55px;
  }

  .divine-product-button-prev, .divine-product-button-next {
    width: 55px;
    height: 55px;
  }
 }
