/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Google Fonts
02. Color Variable
03. Typography
04. Preloader
05. Spacing
06. General
07. Slider
08. Video Modal
09. Header
10. Footer
11. Sidebar
12. Hero
13. Cards
14. Iconbox
15. Pricing
16. Testimonial
17. Layouts and Sections
18. Posts Post Details page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 01.  Google Fonts Integration
----------------------------------------------------------------*/
/* Start Outfit */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* End Outfit */
/* Start Urbanist */
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* End Urbanist */
/* Start Inter */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* End Inter */
/*--------------------------------------------------------------
02. Color Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --black-color: #000;
  --heading-color: #0A0A10;
  --body-color: #6C6C6C;
  --purple-color: #1de4eb;
  --accent-color: #FFD000;
  --accent-color-dark:#cca700;
  --border-color: #CACACA;
  --gray-color: #F6F3FE;
  --gray2-color: #A3A2A3;
  --heading-font: "Outfit", sans-serif;
  --body-font: "Urbanist", sans-serif;
}

.dvk_ws_cs_live_chat {
  --heading-font: "Urbanist", sans-serif;
}
.dvk_ws_cs_live_chat h1,
.dvk_ws_cs_live_chat h2,
.dvk_ws_cs_live_chat h3,
.dvk_ws_cs_live_chat h4,
.dvk_ws_cs_live_chat h5,
.dvk_ws_cs_live_chat h6 {
  font-weight: 700;
}

.dvk_ws_cs_task_management {
  --heading-font: "Outfit", sans-serif;
 /* background-color: #05111A;*/
  color: var(--border-color);
  font-size: 18px;
  font-weight: 400 !important;
}
/* .dvk_ws_cs_task_management .dvk_ws_cs_heading_bg {
  background-color: #05111A;
} */

.sisense-blue {
  color: var(--purple-color);
}

/*--------------------------------------------------------------
03. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.75em;
  font-weight: 400;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.2em;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  line-height: 1.6em;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* a:hover {
  text-decoration: none;
  color: var(--accent-color);
} */

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--body-color);
}
table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

input,
textarea {
  color: var(--heading-color);
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
  04. Preloader
----------------------------------------------------------------*/
.bg-dark-blue-gradient{background:radial-gradient(circle at top left, #1f2937, #020617 40%, #000 80%)}
.dvk_ws_cs_preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
}

.dvk_ws_cs_preloader_in {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 50%;
}
.dvk_ws_cs_preloader_in:before, .dvk_ws_cs_preloader_in:after {
  content: "";
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dvk_ws_cs_preloader_in:after {
  border-color: transparent;
  border-top-color: var(--purple-color);
  border-bottom-color: var(--purple-color);
  opacity: 0.8;
  animation: spin 1s ease-in-out infinite;
  z-index: 2;
}
.dvk_ws_cs_preloader_in:before {
  border-color: var(--purple-color);
  opacity: 0.2;
}
.dvk_ws_cs_preloader_in span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--purple-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: bubble-animation 2s linear infinite;
}
.dvk_ws_cs_preloader_in span:nth-child(2) {
  animation-delay: 1s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes bubble-animation {
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
  05. Spacing
----------------------------------------------------------------*/
.dvk_ws_cs_mb_1 {
  margin-bottom: 1px;
}

.dvk_ws_cs_mb_2 {
  margin-bottom: 2px;
}

.dvk_ws_cs_mb_3 {
  margin-bottom: 3px;
}

.dvk_ws_cs_mb_4 {
  margin-bottom: 4px;
}

.dvk_ws_cs_mb_5 {
  margin-bottom: 5px;
}

.dvk_ws_cs_mb_6 {
  margin-bottom: 6px;
}

.dvk_ws_cs_mb_7 {
  margin-bottom: 7px;
}

.dvk_ws_cs_mb_8 {
  margin-bottom: 8px;
}

.dvk_ws_cs_mb_9 {
  margin-bottom: 9px;
}

.dvk_ws_cs_mb_10 {
  margin-bottom: 10px;
}

.dvk_ws_cs_mb_11 {
  margin-bottom: 11px;
}

.dvk_ws_cs_mb_12 {
  margin-bottom: 12px;
}

.dvk_ws_cs_mb_13 {
  margin-bottom: 13px;
}

.dvk_ws_cs_mb_14 {
  margin-bottom: 14px;
}

.dvk_ws_cs_mb_15 {
  margin-bottom: 15px;
}

.dvk_ws_cs_mb_16 {
  margin-bottom: 16px;
}

.dvk_ws_cs_mb_17 {
  margin-bottom: 17px;
}

.dvk_ws_cs_mb_18 {
  margin-bottom: 18px;
}

.dvk_ws_cs_mb_19 {
  margin-bottom: 19px;
}

.dvk_ws_cs_mb_20 {
  margin-bottom: 20px;
}

.dvk_ws_cs_mb_21 {
  margin-bottom: 21px;
}

.dvk_ws_cs_mb_22 {
  margin-bottom: 22px;
}

.dvk_ws_cs_mb_23 {
  margin-bottom: 23px;
}

.dvk_ws_cs_mb_24 {
  margin-bottom: 24px;
}

.dvk_ws_cs_mb_25 {
  margin-bottom: 25px;
}

.dvk_ws_cs_mb_26 {
  margin-bottom: 26px;
}

.dvk_ws_cs_mb_27 {
  margin-bottom: 27px;
}

.dvk_ws_cs_mb_28 {
  margin-bottom: 28px;
}

.dvk_ws_cs_mb_29 {
  margin-bottom: 29px;
}

.dvk_ws_cs_mb_30 {
  margin-bottom: 30px;
}

.dvk_ws_cs_mb_31 {
  margin-bottom: 31px;
}

.dvk_ws_cs_mb_32 {
  margin-bottom: 32px;
}

.dvk_ws_cs_mb_33 {
  margin-bottom: 33px;
}

.dvk_ws_cs_mb_34 {
  margin-bottom: 34px;
}

.dvk_ws_cs_mb_35 {
  margin-bottom: 35px;
}

.dvk_ws_cs_mb_36 {
  margin-bottom: 36px;
}

.dvk_ws_cs_mb_37 {
  margin-bottom: 37px;
}

.dvk_ws_cs_mb_38 {
  margin-bottom: 38px;
}

.dvk_ws_cs_mb_39 {
  margin-bottom: 39px;
}

.dvk_ws_cs_mb_40 {
  margin-bottom: 40px;
}

.dvk_ws_cs_mb_41 {
  margin-bottom: 41px;
}

.dvk_ws_cs_mb_42 {
  margin-bottom: 42px;
}

.dvk_ws_cs_mb_43 {
  margin-bottom: 43px;
}

.dvk_ws_cs_mb_44 {
  margin-bottom: 44px;
}

.dvk_ws_cs_mb_45 {
  margin-bottom: 45px;
}

.dvk_ws_cs_mb_46 {
  margin-bottom: 46px;
}

.dvk_ws_cs_mb_47 {
  margin-bottom: 47px;
}

.dvk_ws_cs_mb_48 {
  margin-bottom: 48px;
}

.dvk_ws_cs_mb_49 {
  margin-bottom: 49px;
}

.dvk_ws_cs_mb_50 {
  margin-bottom: 50px;
}

.dvk_ws_cs_mb_51 {
  margin-bottom: 51px;
}

.dvk_ws_cs_mb_52 {
  margin-bottom: 52px;
}

.dvk_ws_cs_mb_53 {
  margin-bottom: 53px;
}

.dvk_ws_cs_mb_54 {
  margin-bottom: 54px;
}

.dvk_ws_cs_mb_55 {
  margin-bottom: 55px;
}

.dvk_ws_cs_mb_56 {
  margin-bottom: 56px;
}

.dvk_ws_cs_mb_57 {
  margin-bottom: 57px;
}

.dvk_ws_cs_mb_58 {
  margin-bottom: 58px;
}

.dvk_ws_cs_mb_59 {
  margin-bottom: 59px;
}

.dvk_ws_cs_mb_60 {
  margin-bottom: 60px;
}

@media screen and (min-width: 992px) {
  .dvk_ws_cs_height_1 {
    height: 1px;
  }
  .dvk_ws_cs_height_2 {
    height: 2px;
  }
  .dvk_ws_cs_height_3 {
    height: 3px;
  }
  .dvk_ws_cs_height_4 {
    height: 4px;
  }
  .dvk_ws_cs_height_5 {
    height: 5px;
  }
  .dvk_ws_cs_height_6 {
    height: 6px;
  }
  .dvk_ws_cs_height_7 {
    height: 7px;
  }
  .dvk_ws_cs_height_8 {
    height: 8px;
  }
  .dvk_ws_cs_height_9 {
    height: 9px;
  }
  .dvk_ws_cs_height_10 {
    height: 10px;
  }
  .dvk_ws_cs_height_11 {
    height: 11px;
  }
  .dvk_ws_cs_height_12 {
    height: 12px;
  }
  .dvk_ws_cs_height_13 {
    height: 13px;
  }
  .dvk_ws_cs_height_14 {
    height: 14px;
  }
  .dvk_ws_cs_height_15 {
    height: 15px;
  }
  .dvk_ws_cs_height_16 {
    height: 16px;
  }
  .dvk_ws_cs_height_17 {
    height: 17px;
  }
  .dvk_ws_cs_height_18 {
    height: 18px;
  }
  .dvk_ws_cs_height_19 {
    height: 19px;
  }
  .dvk_ws_cs_height_20 {
    height: 20px;
  }
  .dvk_ws_cs_height_21 {
    height: 21px;
  }
  .dvk_ws_cs_height_22 {
    height: 22px;
  }
  .dvk_ws_cs_height_23 {
    height: 23px;
  }
  .dvk_ws_cs_height_24 {
    height: 24px;
  }
  .dvk_ws_cs_height_25 {
    height: 25px;
  }
  .dvk_ws_cs_height_26 {
    height: 26px;
  }
  .dvk_ws_cs_height_27 {
    height: 27px;
  }
  .dvk_ws_cs_height_28 {
    height: 28px;
  }
  .dvk_ws_cs_height_29 {
    height: 29px;
  }
  .dvk_ws_cs_height_30 {
    height: 30px;
  }
  .dvk_ws_cs_height_31 {
    height: 31px;
  }
  .dvk_ws_cs_height_32 {
    height: 32px;
  }
  .dvk_ws_cs_height_33 {
    height: 33px;
  }
  .dvk_ws_cs_height_34 {
    height: 34px;
  }
  .dvk_ws_cs_height_35 {
    height: 35px;
  }
  .dvk_ws_cs_height_36 {
    height: 36px;
  }
  .dvk_ws_cs_height_37 {
    height: 37px;
  }
  .dvk_ws_cs_height_38 {
    height: 38px;
  }
  .dvk_ws_cs_height_39 {
    height: 39px;
  }
  .dvk_ws_cs_height_40 {
    height: 40px;
  }
  .dvk_ws_cs_height_41 {
    height: 41px;
  }
  .dvk_ws_cs_height_42 {
    height: 42px;
  }
  .dvk_ws_cs_height_43 {
    height: 43px;
  }
  .dvk_ws_cs_height_44 {
    height: 44px;
  }
  .dvk_ws_cs_height_45 {
    height: 45px;
  }
  .dvk_ws_cs_height_46 {
    height: 46px;
  }
  .dvk_ws_cs_height_47 {
    height: 47px;
  }
  .dvk_ws_cs_height_48 {
    height: 48px;
  }
  .dvk_ws_cs_height_49 {
    height: 49px;
  }
  .dvk_ws_cs_height_50 {
    height: 50px;
  }
  .dvk_ws_cs_height_51 {
    height: 51px;
  }
  .dvk_ws_cs_height_52 {
    height: 52px;
  }
  .dvk_ws_cs_height_53 {
    height: 53px;
  }
  .dvk_ws_cs_height_54 {
    height: 54px;
  }
  .dvk_ws_cs_height_55 {
    height: 55px;
  }
  .dvk_ws_cs_height_56 {
    height: 56px;
  }
  .dvk_ws_cs_height_57 {
    height: 57px;
  }
  .dvk_ws_cs_height_58 {
    height: 58px;
  }
  .dvk_ws_cs_height_59 {
    height: 59px;
  }
  .dvk_ws_cs_height_60 {
    height: 60px;
  }
  .dvk_ws_cs_height_61 {
    height: 61px;
  }
  .dvk_ws_cs_height_62 {
    height: 62px;
  }
  .dvk_ws_cs_height_63 {
    height: 63px;
  }
  .dvk_ws_cs_height_64 {
    height: 64px;
  }
  .dvk_ws_cs_height_65 {
    height: 65px;
  }
  .dvk_ws_cs_height_66 {
    height: 66px;
  }
  .dvk_ws_cs_height_67 {
    height: 67px;
  }
  .dvk_ws_cs_height_68 {
    height: 68px;
  }
  .dvk_ws_cs_height_69 {
    height: 69px;
  }
  .dvk_ws_cs_height_70 {
    height: 70px;
  }
  .dvk_ws_cs_height_71 {
    height: 71px;
  }
  .dvk_ws_cs_height_72 {
    height: 72px;
  }
  .dvk_ws_cs_height_73 {
    height: 73px;
  }
  .dvk_ws_cs_height_74 {
    height: 74px;
  }
  .dvk_ws_cs_height_75 {
    height: 75px;
  }
  .dvk_ws_cs_height_76 {
    height: 76px;
  }
  .dvk_ws_cs_height_77 {
    height: 77px;
  }
  .dvk_ws_cs_height_78 {
    height: 78px;
  }
  .dvk_ws_cs_height_79 {
    height: 79px;
  }
  .dvk_ws_cs_height_80 {
    height: 80px;
  }
  .dvk_ws_cs_height_81 {
    height: 81px;
  }
  .dvk_ws_cs_height_82 {
    height: 82px;
  }
  .dvk_ws_cs_height_83 {
    height: 83px;
  }
  .dvk_ws_cs_height_84 {
    height: 84px;
  }
  .dvk_ws_cs_height_85 {
    height: 85px;
  }
  .dvk_ws_cs_height_86 {
    height: 86px;
  }
  .dvk_ws_cs_height_87 {
    height: 87px;
  }
  .dvk_ws_cs_height_88 {
    height: 88px;
  }
  .dvk_ws_cs_height_89 {
    height: 89px;
  }
  .dvk_ws_cs_height_90 {
    height: 90px;
  }
  .dvk_ws_cs_height_91 {
    height: 91px;
  }
  .dvk_ws_cs_height_92 {
    height: 92px;
  }
  .dvk_ws_cs_height_93 {
    height: 93px;
  }
  .dvk_ws_cs_height_94 {
    height: 94px;
  }
  .dvk_ws_cs_height_95 {
    height: 95px;
  }
  .dvk_ws_cs_height_96 {
    height: 96px;
  }
  .dvk_ws_cs_height_97 {
    height: 97px;
  }
  .dvk_ws_cs_height_98 {
    height: 98px;
  }
  .dvk_ws_cs_height_99 {
    height: 99px;
  }
  .dvk_ws_cs_height_100 {
    height: 100px;
  }
  .dvk_ws_cs_height_101 {
    height: 101px;
  }
  .dvk_ws_cs_height_102 {
    height: 102px;
  }
  .dvk_ws_cs_height_103 {
    height: 103px;
  }
  .dvk_ws_cs_height_104 {
    height: 104px;
  }
  .dvk_ws_cs_height_105 {
    height: 105px;
  }
  .dvk_ws_cs_height_106 {
    height: 106px;
  }
  .dvk_ws_cs_height_107 {
    height: 107px;
  }
  .dvk_ws_cs_height_108 {
    height: 108px;
  }
  .dvk_ws_cs_height_109 {
    height: 109px;
  }
  .dvk_ws_cs_height_110 {
    height: 110px;
  }
  .dvk_ws_cs_height_111 {
    height: 111px;
  }
  .dvk_ws_cs_height_112 {
    height: 112px;
  }
  .dvk_ws_cs_height_113 {
    height: 113px;
  }
  .dvk_ws_cs_height_114 {
    height: 114px;
  }
  .dvk_ws_cs_height_115 {
    height: 115px;
  }
  .dvk_ws_cs_height_116 {
    height: 116px;
  }
  .dvk_ws_cs_height_117 {
    height: 117px;
  }
  .dvk_ws_cs_height_118 {
    height: 118px;
  }
  .dvk_ws_cs_height_119 {
    height: 119px;
  }
  .dvk_ws_cs_height_120 {
    height: 120px;
  }
  .dvk_ws_cs_height_121 {
    height: 121px;
  }
  .dvk_ws_cs_height_122 {
    height: 122px;
  }
  .dvk_ws_cs_height_123 {
    height: 123px;
  }
  .dvk_ws_cs_height_124 {
    height: 124px;
  }
  .dvk_ws_cs_height_125 {
    height: 125px;
  }
  .dvk_ws_cs_height_126 {
    height: 126px;
  }
  .dvk_ws_cs_height_127 {
    height: 127px;
  }
  .dvk_ws_cs_height_128 {
    height: 128px;
  }
  .dvk_ws_cs_height_129 {
    height: 129px;
  }
  .dvk_ws_cs_height_130 {
    height: 130px;
  }
  .dvk_ws_cs_height_131 {
    height: 131px;
  }
  .dvk_ws_cs_height_132 {
    height: 132px;
  }
  .dvk_ws_cs_height_133 {
    height: 133px;
  }
  .dvk_ws_cs_height_134 {
    height: 134px;
  }
  .dvk_ws_cs_height_135 {
    height: 135px;
  }
  .dvk_ws_cs_height_136 {
    height: 136px;
  }
  .dvk_ws_cs_height_137 {
    height: 137px;
  }
  .dvk_ws_cs_height_138 {
    height: 138px;
  }
  .dvk_ws_cs_height_139 {
    height: 139px;
  }
  .dvk_ws_cs_height_140 {
    height: 140px;
  }
  .dvk_ws_cs_height_141 {
    height: 141px;
  }
  .dvk_ws_cs_height_142 {
    height: 142px;
  }
  .dvk_ws_cs_height_143 {
    height: 143px;
  }
  .dvk_ws_cs_height_144 {
    height: 144px;
  }
  .dvk_ws_cs_height_145 {
    height: 145px;
  }
  .dvk_ws_cs_height_146 {
    height: 146px;
  }
  .dvk_ws_cs_height_147 {
    height: 147px;
  }
  .dvk_ws_cs_height_148 {
    height: 148px;
  }
  .dvk_ws_cs_height_149 {
    height: 149px;
  }
  .dvk_ws_cs_height_150 {
    height: 150px;
  }
}
@media screen and (max-width: 991px) {
  .dvk_ws_cs_mb_lg_1 {
    margin-bottom: 1px;
  }
  .dvk_ws_cs_mb_lg_2 {
    margin-bottom: 2px;
  }
  .dvk_ws_cs_mb_lg_3 {
    margin-bottom: 3px;
  }
  .dvk_ws_cs_mb_lg_4 {
    margin-bottom: 4px;
  }
  .dvk_ws_cs_mb_lg_5 {
    margin-bottom: 5px;
  }
  .dvk_ws_cs_mb_lg_6 {
    margin-bottom: 6px;
  }
  .dvk_ws_cs_mb_lg_7 {
    margin-bottom: 7px;
  }
  .dvk_ws_cs_mb_lg_8 {
    margin-bottom: 8px;
  }
  .dvk_ws_cs_mb_lg_9 {
    margin-bottom: 9px;
  }
  .dvk_ws_cs_mb_lg_10 {
    margin-bottom: 10px;
  }
  .dvk_ws_cs_mb_lg_11 {
    margin-bottom: 11px;
  }
  .dvk_ws_cs_mb_lg_12 {
    margin-bottom: 12px;
  }
  .dvk_ws_cs_mb_lg_13 {
    margin-bottom: 13px;
  }
  .dvk_ws_cs_mb_lg_14 {
    margin-bottom: 14px;
  }
  .dvk_ws_cs_mb_lg_15 {
    margin-bottom: 15px;
  }
  .dvk_ws_cs_mb_lg_16 {
    margin-bottom: 16px;
  }
  .dvk_ws_cs_mb_lg_17 {
    margin-bottom: 17px;
  }
  .dvk_ws_cs_mb_lg_18 {
    margin-bottom: 18px;
  }
  .dvk_ws_cs_mb_lg_19 {
    margin-bottom: 19px;
  }
  .dvk_ws_cs_mb_lg_20 {
    margin-bottom: 20px;
  }
  .dvk_ws_cs_mb_lg_21 {
    margin-bottom: 21px;
  }
  .dvk_ws_cs_mb_lg_22 {
    margin-bottom: 22px;
  }
  .dvk_ws_cs_mb_lg_23 {
    margin-bottom: 23px;
  }
  .dvk_ws_cs_mb_lg_24 {
    margin-bottom: 24px;
  }
  .dvk_ws_cs_mb_lg_25 {
    margin-bottom: 25px;
  }
  .dvk_ws_cs_mb_lg_26 {
    margin-bottom: 26px;
  }
  .dvk_ws_cs_mb_lg_27 {
    margin-bottom: 27px;
  }
  .dvk_ws_cs_mb_lg_28 {
    margin-bottom: 28px;
  }
  .dvk_ws_cs_mb_lg_29 {
    margin-bottom: 29px;
  }
  .dvk_ws_cs_mb_lg_30 {
    margin-bottom: 30px;
  }
  .dvk_ws_cs_mb_lg_31 {
    margin-bottom: 31px;
  }
  .dvk_ws_cs_mb_lg_32 {
    margin-bottom: 32px;
  }
  .dvk_ws_cs_mb_lg_33 {
    margin-bottom: 33px;
  }
  .dvk_ws_cs_mb_lg_34 {
    margin-bottom: 34px;
  }
  .dvk_ws_cs_mb_lg_35 {
    margin-bottom: 35px;
  }
  .dvk_ws_cs_mb_lg_36 {
    margin-bottom: 36px;
  }
  .dvk_ws_cs_mb_lg_37 {
    margin-bottom: 37px;
  }
  .dvk_ws_cs_mb_lg_38 {
    margin-bottom: 38px;
  }
  .dvk_ws_cs_mb_lg_39 {
    margin-bottom: 39px;
  }
  .dvk_ws_cs_mb_lg_40 {
    margin-bottom: 40px;
  }
  .dvk_ws_cs_height_lg_1 {
    height: 1px;
  }
  .dvk_ws_cs_height_lg_2 {
    height: 2px;
  }
  .dvk_ws_cs_height_lg_3 {
    height: 3px;
  }
  .dvk_ws_cs_height_lg_4 {
    height: 4px;
  }
  .dvk_ws_cs_height_lg_5 {
    height: 5px;
  }
  .dvk_ws_cs_height_lg_6 {
    height: 6px;
  }
  .dvk_ws_cs_height_lg_7 {
    height: 7px;
  }
  .dvk_ws_cs_height_lg_8 {
    height: 8px;
  }
  .dvk_ws_cs_height_lg_9 {
    height: 9px;
  }
  .dvk_ws_cs_height_lg_10 {
    height: 10px;
  }
  .dvk_ws_cs_height_lg_11 {
    height: 11px;
  }
  .dvk_ws_cs_height_lg_12 {
    height: 12px;
  }
  .dvk_ws_cs_height_lg_13 {
    height: 13px;
  }
  .dvk_ws_cs_height_lg_14 {
    height: 14px;
  }
  .dvk_ws_cs_height_lg_15 {
    height: 15px;
  }
  .dvk_ws_cs_height_lg_16 {
    height: 16px;
  }
  .dvk_ws_cs_height_lg_17 {
    height: 17px;
  }
  .dvk_ws_cs_height_lg_18 {
    height: 18px;
  }
  .dvk_ws_cs_height_lg_19 {
    height: 19px;
  }
  .dvk_ws_cs_height_lg_20 {
    height: 20px;
  }
  .dvk_ws_cs_height_lg_21 {
    height: 21px;
  }
  .dvk_ws_cs_height_lg_22 {
    height: 22px;
  }
  .dvk_ws_cs_height_lg_23 {
    height: 23px;
  }
  .dvk_ws_cs_height_lg_24 {
    height: 24px;
  }
  .dvk_ws_cs_height_lg_25 {
    height: 25px;
  }
  .dvk_ws_cs_height_lg_26 {
    height: 26px;
  }
  .dvk_ws_cs_height_lg_27 {
    height: 27px;
  }
  .dvk_ws_cs_height_lg_28 {
    height: 28px;
  }
  .dvk_ws_cs_height_lg_29 {
    height: 29px;
  }
  .dvk_ws_cs_height_lg_30 {
    height: 30px;
  }
  .dvk_ws_cs_height_lg_31 {
    height: 31px;
  }
  .dvk_ws_cs_height_lg_32 {
    height: 32px;
  }
  .dvk_ws_cs_height_lg_33 {
    height: 33px;
  }
  .dvk_ws_cs_height_lg_34 {
    height: 34px;
  }
  .dvk_ws_cs_height_lg_35 {
    height: 35px;
  }
  .dvk_ws_cs_height_lg_36 {
    height: 36px;
  }
  .dvk_ws_cs_height_lg_37 {
    height: 37px;
  }
  .dvk_ws_cs_height_lg_38 {
    height: 38px;
  }
  .dvk_ws_cs_height_lg_39 {
    height: 39px;
  }
  .dvk_ws_cs_height_lg_40 {
    height: 40px;
  }
  .dvk_ws_cs_height_lg_41 {
    height: 41px;
  }
  .dvk_ws_cs_height_lg_42 {
    height: 42px;
  }
  .dvk_ws_cs_height_lg_43 {
    height: 43px;
  }
  .dvk_ws_cs_height_lg_44 {
    height: 44px;
  }
  .dvk_ws_cs_height_lg_45 {
    height: 45px;
  }
  .dvk_ws_cs_height_lg_46 {
    height: 46px;
  }
  .dvk_ws_cs_height_lg_47 {
    height: 47px;
  }
  .dvk_ws_cs_height_lg_48 {
    height: 48px;
  }
  .dvk_ws_cs_height_lg_49 {
    height: 49px;
  }
  .dvk_ws_cs_height_lg_50 {
    height: 50px;
  }
  .dvk_ws_cs_height_lg_51 {
    height: 51px;
  }
  .dvk_ws_cs_height_lg_52 {
    height: 52px;
  }
  .dvk_ws_cs_height_lg_53 {
    height: 53px;
  }
  .dvk_ws_cs_height_lg_54 {
    height: 54px;
  }
  .dvk_ws_cs_height_lg_55 {
    height: 55px;
  }
  .dvk_ws_cs_height_lg_56 {
    height: 56px;
  }
  .dvk_ws_cs_height_lg_57 {
    height: 57px;
  }
  .dvk_ws_cs_height_lg_58 {
    height: 58px;
  }
  .dvk_ws_cs_height_lg_59 {
    height: 59px;
  }
  .dvk_ws_cs_height_lg_60 {
    height: 60px;
  }
  .dvk_ws_cs_height_lg_61 {
    height: 61px;
  }
  .dvk_ws_cs_height_lg_62 {
    height: 62px;
  }
  .dvk_ws_cs_height_lg_63 {
    height: 63px;
  }
  .dvk_ws_cs_height_lg_64 {
    height: 64px;
  }
  .dvk_ws_cs_height_lg_65 {
    height: 65px;
  }
  .dvk_ws_cs_height_lg_66 {
    height: 66px;
  }
  .dvk_ws_cs_height_lg_67 {
    height: 67px;
  }
  .dvk_ws_cs_height_lg_68 {
    height: 68px;
  }
  .dvk_ws_cs_height_lg_69 {
    height: 69px;
  }
  .dvk_ws_cs_height_lg_70 {
    height: 70px;
  }
  .dvk_ws_cs_height_lg_71 {
    height: 71px;
  }
  .dvk_ws_cs_height_lg_72 {
    height: 72px;
  }
  .dvk_ws_cs_height_lg_73 {
    height: 73px;
  }
  .dvk_ws_cs_height_lg_74 {
    height: 74px;
  }
  .dvk_ws_cs_height_lg_75 {
    height: 75px;
  }
  .dvk_ws_cs_height_lg_76 {
    height: 76px;
  }
  .dvk_ws_cs_height_lg_77 {
    height: 77px;
  }
  .dvk_ws_cs_height_lg_78 {
    height: 78px;
  }
  .dvk_ws_cs_height_lg_79 {
    height: 79px;
  }
  .dvk_ws_cs_height_lg_80 {
    height: 80px;
  }
  .dvk_ws_cs_height_lg_81 {
    height: 81px;
  }
  .dvk_ws_cs_height_lg_82 {
    height: 82px;
  }
  .dvk_ws_cs_height_lg_83 {
    height: 83px;
  }
  .dvk_ws_cs_height_lg_84 {
    height: 84px;
  }
  .dvk_ws_cs_height_lg_85 {
    height: 85px;
  }
  .dvk_ws_cs_height_lg_86 {
    height: 86px;
  }
  .dvk_ws_cs_height_lg_87 {
    height: 87px;
  }
  .dvk_ws_cs_height_lg_88 {
    height: 88px;
  }
  .dvk_ws_cs_height_lg_89 {
    height: 89px;
  }
  .dvk_ws_cs_height_lg_90 {
    height: 90px;
  }
  .dvk_ws_cs_height_lg_91 {
    height: 91px;
  }
  .dvk_ws_cs_height_lg_92 {
    height: 92px;
  }
  .dvk_ws_cs_height_lg_93 {
    height: 93px;
  }
  .dvk_ws_cs_height_lg_94 {
    height: 94px;
  }
  .dvk_ws_cs_height_lg_95 {
    height: 95px;
  }
  .dvk_ws_cs_height_lg_96 {
    height: 96px;
  }
  .dvk_ws_cs_height_lg_97 {
    height: 97px;
  }
  .dvk_ws_cs_height_lg_98 {
    height: 98px;
  }
  .dvk_ws_cs_height_lg_99 {
    height: 99px;
  }
  .dvk_ws_cs_height_lg_100 {
    height: 100px;
  }
}
/*--------------------------------------------------------------
  06. General
----------------------------------------------------------------*/
.dvk_ws_cs_fs_12 {
  font-size: 12px;
}

.dvk_ws_cs_fs_14 {
  font-size: 14px;
}

.dvk_ws_cs_fs_15 {
  font-size: 15px;
}

.dvk_ws_cs_fs_16 {
  font-size: 16px;
}

.dvk_ws_cs_fs_18 {
  font-size: 18px;
  line-height: 1.56em;
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_18 {
    font-size: 16px;
  }
}

.dvk_ws_cs_fs_20 {
  font-size: 20px;
}

.dvk_ws_cs_fs_21 {
  font-size: 21px;
  line-height: 1.67em;
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_21 {
    font-size: 18px;
  }
}

.dvk_ws_cs_fs_22 {
  font-size: 22px;
  line-height: 1.4em;
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_22 {
    font-size: 20px;
  }
}

.dvk_ws_cs_fs_24 {
  font-size: 24px;
  line-height: 1.4em;
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_24 {
    font-size: 22px;
  }
}

.dvk_ws_cs_fs_29 {
  font-size: 29px;
  line-height: 1.21em;
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_29 {
    font-size: 24px;
  }
}

.dvk_ws_cs_fs_30 {
  font-size: 30px;
  line-height: 1.533em;
}

.dvk_ws_cs_fs_32 {
  font-size: 32px;
  line-height: 1.5em;
}

.dvk_ws_cs_fs_38 {
  font-size: 38px;
  line-height: 1.32em;
}

.dvk_ws_cs_fs_40 {
  font-size: 40px;
  line-height: 1.45em;
}

.dvk_ws_cs_fs_48 {
  font-size: 48px;
  line-height: 1.21em;
}
@media (max-width: 767px) {
  .dvk_ws_cs_fs_48 {
    font-size: 36px;
  }
}

.dvk_ws_cs_fs_50 {
  font-size: 50px;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .dvk_ws_cs_fs_50 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_50 {
    font-size: 36px;
  }
}

.dvk_ws_cs_fs_68 {
  font-size: 68px;
  line-height: 1.2em;
}
@media (max-width: 1199px) {
  .dvk_ws_cs_fs_68 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_fs_68 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .dvk_ws_cs_fs_68 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_68 {
    font-size: 42px;
  }
}

.dvk_ws_cs_fs_70 {
  font-size: 70px;
  line-height: 1.14em;
}
@media (max-width: 1199px) {
  .dvk_ws_cs_fs_70 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .dvk_ws_cs_fs_70 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_fs_70 {
    font-size: 48px;
  }
}

.dvk_ws_cs_heading_font {
  font-family: var(--heading-font);
}

.dvk_ws_cs_body_font {
  font-family: var(--body-font);
}

.dvk_ws_cs_light {
  font-weight: 300;
}

.dvk_ws_cs_normal {
  font-weight: 400;
}

.dvk_ws_cs_medium {
  font-weight: 500;
}

.dvk_ws_cs_semibold {
  font-weight: 600;
}

.dvk_ws_cs_bold {
  font-weight: 700;
}

.dvk_ws_cs_extra_bold {
  font-weight: 800;
}

.dvk_ws_cs_black {
  font-weight: 900;
}

.dvk_ws_cs_white_color {
  color: var(--white-color);
}

.dvk_ws_cs_heading_color {
  color: var(--heading-color);
}

.dvk_ws_cs_body_color {
  color: var(--body-color);
}

.dvk_ws_cs_border_color {
  color: var(--border-color);
}

.dvk_ws_cs_gray2_color {
  color: var(--gray2-color);
}
.dvk_ws_cs_gray_shadow {
  box-shadow:2px 2px 10px #8080808c;
}

.dvk_ws_cs_purple_color {
  color: var(--purple-color);
}

.dvk_ws_cs_accent_color {
  color: var(--accent-color);
}

.dvk_ws_cs_accent_color_dark {
  color: var(--accent-color-dark)!important;
}


/* .dvk_ws_cs_yellow_color {
  background-color: var(--accent-color);
} */

.dvk_ws_cs_white_bg {
  background-color: var(--white-color);
}

.dvk_ws_cs_heading_bg {
  background-color: var(--heading-color);
}

.dvk_ws_cs_purple_bg {
  background-color: var(--purple-color);
}

.dvk_ws_cs_purple_light_bg {
  background-color: #1de4eb28;
}

.dvk_ws_cs_body_bg {
  background-color: var(--body-color);
}

.dvk_ws_cs_accent_bg {
  background-color: var(--accent-color);
}

.dvk_ws_cs_accent_bg_2 {
  background-color: #fffcf2;
}

.dvk_ws_cs_gray_bg {
  background-color: var(--gray-color);
}
.dvk_ws_cs_gray_bg_1 {
  background-color: #f6f6f6;
}
.dvk_ws_cs_gray_bg_2 {
  background-color: rgba(147, 109, 255, 0.07);
}

.dvk_ws_cs_gray_bg_3::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: linear-gradient(270deg, #FFD000 0%, var(--purple-color) 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.dvk_ws_cs_gray_bg_4 {
  background-color: #F7F7FA;
}

.dvk_ws_cs_gray_bg_5 {
  background-color: #00F043;
}

.dvk_ws_cs_gray_bg_6 {
  background-color: #FAF8FF;
}

.dvk_ws_cs_gray_bg_7 {
  background-color: rgba(147, 109, 255, 0.05);
}

.dvk_ws_cs_gray_bg_8 {
  background-color: rgba(0, 204, 97, 0.05);
}

.dvk_ws_cs_gray_bg_9 {
  background-color: rgba(147, 109, 255, 0.08);
}

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

.dvk_ws_cs_bg_fixed {
  background-attachment: fixed;
}
@media (max-width: 1370px) {
  .dvk_ws_cs_bg_fixed {
    background-attachment: initial;
  }
}

.dvk_ws_cs_bg_shape_1 {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  opacity: 0.05;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dvk_ws_cs_radius_3 {
  border-radius: 3px;
}

.dvk_ws_cs_radius_4 {
  border-radius: 4px;
}

.dvk_ws_cs_radius_5 {
  border-radius: 5px;
}

.dvk_ws_cs_radius_7 {
  border-radius: 7px;
}

.dvk_ws_cs_radius_8 {
  border-radius: 8px;
}

.dvk_ws_cs_radius_10 {
  border-radius: 10px;
}

.dvk_ws_cs_radius_15 {
  border-radius: 15px;
}

.dvk_ws_cs_radius_20 {
  border-radius: 20px;
}

.dvk_ws_cs_radius_30 {
  border-radius: 30px;
}

.dvk_ws_cs_radius_40 {
  border-radius: 40px;
}

.dvk_ws_cs_radius_50 {
  border-radius: 50px;
}

.dvk_ws_cs_radius_100 {
  border-radius: 50%;
}

.dvk_ws_cs_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dvk_ws_cs_has_before_after::before, .dvk_ws_cs_has_before_after::after {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  top: 15px;
}
.dvk_ws_cs_has_before_after::before {
  background: linear-gradient(270deg, #6C6C6C 0%, #FFF 100%);
  right: calc(100% + 15px);
}
.dvk_ws_cs_has_before_after::after {
  background: linear-gradient(90deg, #6C6C6C 0%, #FFF 100%);
  left: calc(100% + 15px);
}

/*----------------------------------
  Form Elements Classes
 ----------------------------------*/
.dvk_ws_cs_form_field {
  display: block;
  width: 100%;
  resize: none;
  outline: none;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
}
.dvk_ws_cs_form_field:focus {
  border-color: var(--accent-color);
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dvk_ws_cs_result {
  font-size: 14px;
  color: var(--accent-color);
}

/*----------------------------------
  Bootstrap Classes
 ----------------------------------*/
.dvk_ws_cs_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}
.dvk_ws_cs_row_gap_30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.dvk_ws_cs_row_gap_70 {
  margin-left: -35px;
  margin-right: -35px;
}
.dvk_ws_cs_row_gap_70 > * {
  padding-left: 35px;
  padding-right: 35px;
}

.dvk_ws_cs_gap_y_16 {
  gap: 16px 0;
}

.dvk_ws_cs_gap_y_20 {
  gap: 20px 0;
}

.dvk_ws_cs_gap_y_24 {
  gap: 24px 0;
}

.dvk_ws_cs_gap_y_30 {
  gap: 30px 0;
}

.dvk_ws_cs_gap_y_35 {
  gap: 35px 0;
}

.dvk_ws_cs_gap_y_40 {
  gap: 40px 0;
}

.dvk_ws_cs_gap_y_45 {
  gap: 45px 0;
}

.dvk_ws_cs_gap_y_50 {
  gap: 50px 0;
}

.dvk_ws_cs_gap_y_60 {
  gap: 60px 0;
}

.dvk_ws_cs_gap_y_65 {
  gap: 65px 0;
}

.dvk_ws_cs_gap_y_80 {
  gap: 80px 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 0.5;
}

.dvk_ws_cs_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dvk_ws_cs_center_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dvk_ws_cs_hide_before_after::before, .dvk_ws_cs_hide_before_after::after {
  display: none;
}

/*-----------------------------------
  Buttons & Social Buttons
 ------------------------------------*/
.dvk_ws_cs_btn.dvk_ws_cs_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--heading-color);
  font-weight: 600;
  border: 0;
  outline: 0;
  padding: 17px 35px;
  line-height: 1em;
  border-radius: 50px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1 > * {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1 .dvk_ws_cs_btn_icon {
  transform: rotate(-45deg);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1 i {
  text-shadow: -20px 0px 0px currentColor;
  transition: all 0.3s ease;
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1.dvk_ws_cs_purple_hover::before {
  background-color: var(--purple-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1.dvk_ws_cs_accent_hover::before {
  background-color: var(--accent-color);
  color: #000;
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1.dvk_ws_cs_outline {
  border: 1px solid var(--heading-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--heading-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  transform: translate(-50%, 75px) scale(0.1);
  transition: 0.6s cubic-bezier(0.52, 1.64, 0.37, 0.6);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1:hover {
  color: var(--white-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1:hover::before {
  bottom: 0;
  transform: translate(-50%, 0) scaleX(1.5) scaleY(1.5);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_1:hover i {
  transform: translateX(20px);
}

.dvk_ws_cs_btn.dvk_ws_cs_style_2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 6px;
  border: 1px solid var(--white-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_2 p {
  line-height: 1em;
}
.dvk_ws_cs_btn.dvk_ws_cs_style_2 h3 {
  line-height: 1em;
  transition: all 0.3s ease;
}
.dvk_ws_cs_btn.dvk_ws_cs_style_2:hover {
  background-color: transparent;
  color: var(--white-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_2:hover.dvk_ws_cs_type_1 {
  background-color: var(--white-color);
  color: var(--heading-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_2:hover.dvk_ws_cs_type_1 h3 {
  color: var(--heading-color);
}
.dvk_ws_cs_btn.dvk_ws_cs_style_2:hover h3 {
  color: var(--white-color);
}

.dvk_ws_cs_player_btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.dvk_ws_cs_player_btn .dvk_ws_cs_play_btn_icon {
  width: 35px;
  height: 35px;
  padding-left: 2px;
  border: 1px solid currentColor;
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_player_btn .dvk_ws_cs_play_btn_icon span {
  display: inline-block;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-radius: 2px;
}
.dvk_ws_cs_player_btn .dvk_ws_cs_player_text {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1.5px;
  color: currentColor;
}
.dvk_ws_cs_player_btn:hover .dvk_ws_cs_player_text {
  opacity: 1;
  background-size: 100% 1.5px;
  background-position: 0 calc(100% - 0px);
}

.dvk_ws_cs_player_btn.dvk_ws_cs_style_2 {
  width: 84px;
  height: 84px;
  position: relative;
}
.dvk_ws_cs_player_btn.dvk_ws_cs_style_2::before, .dvk_ws_cs_player_btn.dvk_ws_cs_style_2::after {
  content: "";
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  border: 3px solid var(--white-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scale-up 4s linear infinite;
}
.dvk_ws_cs_player_btn.dvk_ws_cs_style_2::after {
  animation-delay: 2s;
}

.dvk_ws_cs_social_links.dvk_ws_cs_style_1 {
  display: flex;
  justify-content: center;
  gap: 10px 27px;
  flex-wrap: wrap;
}
.dvk_ws_cs_social_links.dvk_ws_cs_style_1 a .dvk_ws_cs_social_icon {
  margin-right: 5px;
}
.dvk_ws_cs_social_links.dvk_ws_cs_style_1 a:hover {
  color: var(--purple-color);
}

/*-------------------------------
 Scroll up button
---------------------------------*/
.dvk_ws_cs_scrollup {
  width: 50px;
  height: 50px;
  border: 0;
  outline: 0;
  position: fixed;
  bottom: 50px;
  right: 30px;
  opacity: 0;
  z-index: 99;
  transform: translateY(100px);
  overflow: hidden;
  transition: all 0.3s ease;
}
.dvk_ws_cs_scrollup::before {
  content: "";
  width: 60%;
  height: 60%;
  background-color: var(--heading-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease;
}
.dvk_ws_cs_scrollup.dvk_ws_cs_scrollup_show {
  transform: translateY(0);
  opacity: 1;
}
.dvk_ws_cs_scrollup svg {
  animation: up-arrow 2s linear infinite;
}
.dvk_ws_cs_scrollup:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/*-------------------------------
 Section Heading
---------------------------------*/
.dvk_ws_cs_section_heading.dvk_ws_cs_style_1 .dvk_ws_cs_section_subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dvk_ws_cs_section_heading.dvk_ws_cs_style_1 .dvk_ws_cs_section_subtitle.dvk_ws_cs_border {
  padding: 5px 20px;
  border: 1px solid currentColor;
}
.dvk_ws_cs_section_heading.dvk_ws_cs_style_1 .dvk_ws_cs_section_subtitle .dvk_ws_cs_pill {
  display: inline-block;
  width: 37px;
  height: 1px;
  margin-left: 9px;
  background-color: var(--body-color);
}
.dvk_ws_cs_section_heading.dvk_ws_cs_style_1 .dvk_ws_cs_gradient_color {
  background: linear-gradient(90deg, #00CC61 19.68%, #E1FFEF 95.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dvk_ws_cs_section_heading.dvk_ws_cs_style_1.dvk_ws_cs_type_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dvk_ws_cs_section_heading.dvk_ws_cs_style_1 .dvk_ws_cs_section_heading_right {
  max-width: 40%;
}
@media (max-width: 991px) {
  .dvk_ws_cs_section_heading.dvk_ws_cs_style_1.dvk_ws_cs_type_1 {
    flex-direction: column;
  }
  .dvk_ws_cs_section_heading.dvk_ws_cs_style_1 .dvk_ws_cs_section_heading_right {
    max-width: 100%;
  }
}

/*------------------------------------
 Shapes
--------------------------------------*/
.dvk_ws_cs_counter_shape_1 {
  width: 150px;
  height: 150px;
  border-radius: 0 0 0 200px;
  top: 0;
  right: 0;
}

.dvk_ws_cs_counter_shape_2 {
  width: 150px;
  height: 150px;
  border-radius: 0 200px 0 0;
  bottom: 0;
  left: 0;
}

.dvk_ws_cs_counter_shape_4 {
  top: 83px;
  right: 10%;
  animation: spinAnimation 20s linear infinite;
}

.dvk_ws_cs_vector_shape_1 {
  top: 76px;
  right: 20%;
  animation: rotation-movement 20s linear infinite;
  animation-delay: 10s;
}

.dvk_ws_cs_vector_shape_2 {
  top: 120px;
  left: 20%;
  animation: rotation-movement 20s linear infinite;
}

/*-----------------------------------
  Start Review 
 ------------------------------------*/
.dvk_ws_cs_rating_percentage,
.dvk_ws_cs_rating {
  overflow: hidden;
}
.dvk_ws_cs_rating_percentage::before,
.dvk_ws_cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.dvk_ws_cs_rating {
  max-width: 120px;
  flex: none;
  height: 24px;
  position: relative;
  color: var(--accent-color);
  font-size: 16px;
  letter-spacing: 7px;
}
.dvk_ws_cs_rating::before {
  font-weight: 400;
}

.dvk_ws_cs_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.dvk_ws_cs_rating_percentage::before {
  font-weight: 900;
}

/*-----------------------------------------
 Lists
-------------------------------------------*/
.dvk_ws_cs_mp_0 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dvk_ws_cs_list.dvk_ws_cs_style_1 li {
  position: relative;
  padding-left: 44px;
}
.dvk_ws_cs_list.dvk_ws_cs_style_1 li:not(:last-child) {
  margin-bottom: 17px;
}
.dvk_ws_cs_list.dvk_ws_cs_style_1 .dvk_ws_cs_list_icon {
  position: absolute;
  top: 2px;
  left: 0;
}

.dvk_ws_cs_list.dvk_ws_cs_style_2 {
  display: flex;
  gap: 15px 24px;
  flex-wrap: wrap;
}
.dvk_ws_cs_list.dvk_ws_cs_style_2 li {
  position: relative;
  padding-left: 25px;
  text-wrap: nowrap;
}
.dvk_ws_cs_list.dvk_ws_cs_style_2 i {
  position: absolute;
  top: 7px;
  left: 0;
}

/*-----------------------------------------
 FAQ & Accordian
-------------------------------------------*/
.dvk_ws_cs_accordian::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--border-color);
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
}
.dvk_ws_cs_accordian:not(:last-child) {
  margin-bottom: 24px;
}
.dvk_ws_cs_accordian > * {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_accordian .dvk_ws_cs_accordian_head {
  padding: 25px 70px 20px 25px;
  cursor: pointer;
}
.dvk_ws_cs_accordian .dvk_ws_cs_accordian_toggle {
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: currentColor;
  top: 40px;
  right: 33px;
  transition: all 0.3s ease;
}
.dvk_ws_cs_accordian .dvk_ws_cs_accordian_toggle::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.dvk_ws_cs_accordian .dvk_ws_cs_accordian_body {
  padding: 0 20px 25px 25px;
  margin-top: -6px;
}
.dvk_ws_cs_accordian.dvk_ws_cs_type_1 {
  border: 1px solid #252D32;
}
.dvk_ws_cs_accordian.dvk_ws_cs_type_1 .dvk_ws_cs_accordian_head {
  padding: 28px 70px 24px 25px;
  cursor: pointer;
}
.dvk_ws_cs_accordian.dvk_ws_cs_type_1::before {
  display: none;
}
.dvk_ws_cs_accordian.dvk_ws_cs_type_2 {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
}
.dvk_ws_cs_accordian.dvk_ws_cs_type_2:not(:last-child) {
  margin-bottom: 30px;
}
.dvk_ws_cs_accordian.dvk_ws_cs_type_2::before {
  display: none;
}
.dvk_ws_cs_accordian.active .dvk_ws_cs_accordian_head {
  pointer-events: none;
}
.dvk_ws_cs_accordian.active .dvk_ws_cs_accordian_toggle {
  transform: rotate(45deg);
}

.dvk_ws_cs_faq_shape_1,
.dvk_ws_cs_faq_shape_2 {
  width: 137px;
  height: 137px;
  filter: blur(150px);
}

.dvk_ws_cs_faq_shape_1 {
  top: 44%;
  left: -65px;
}

.dvk_ws_cs_faq_shape_2 {
  bottom: 20px;
  right: -65px;
}

/*-----------------------------------
  Start Responsive
 ------------------------------------*/
@media (max-width: 1399px) {
  .dvk_ws_cs_vector_shape_1,
  .dvk_ws_cs_vector_shape_2,
  .dvk_ws_cs_vector_1 {
    display: none;
  }
}
@media (max-width: 991px) {
  br,
  .dvk_ws_cs_vector_shape_4,
  .dvk_ws_cs_counter_shape_3,
  .dvk_ws_cs_counter_shape_4 {
    display: none;
  }
}
/*-----------------------------------
  Start Animations 
 ------------------------------------*/
@keyframes rotation-movement {
  50% {
    transform: translate(-80px, 80px) rotate(120deg);
  }
}
@keyframes scale-up {
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
@keyframes up-arrow {
  50% {
    transform: translateY(-2px);
  }
}
/*--------------------------------------------------------------
  07. Slider
----------------------------------------------------------------*/
.dvk_ws_cs_slider {
  position: relative;
  z-index: 1;
}

.img-center{
  margin: auto;
  display: block;
  align-content: center;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.png) 16 9, ew-resize !important;
}

.slick-slide > div {
  display: flex;
  flex-direction: column;
}

.dvk_ws_cs_remove_overflow .slick-list {
  overflow: visible;
}
.dvk_ws_cs_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.dvk_ws_cs_remove_overflow .slick-slide.slick-active {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.dvk_ws_cs_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.dvk_ws_cs_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.dvk_ws_cs_slider_gap_30 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}
.dvk_ws_cs_slider_gap_30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

/*---------------------------------------
 Infinite scrolling slider
-----------------------------------------*/
.dvk_ws_cs_horizontal_slider_wrapper {
  margin: 0 auto;
  overflow: hidden;
}
.dvk_ws_cs_horizontal_slider_wrapper.dvk_ws_cs_type_1 {
  max-width: 810px;
}
.dvk_ws_cs_horizontal_slider_wrapper.dvk_ws_cs_type_2 {
  margin-top: 24px;
}
.dvk_ws_cs_horizontal_slider_wrapper.dvk_ws_cs_type_2 .dvk_ws_cs_tools_wrapper {
  animation-direction: reverse;
  animation-duration: 60s;
}
.dvk_ws_cs_horizontal_slider_wrapper .dvk_ws_cs_slider_in {
  min-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.dvk_ws_cs_horizontal_slider_wrapper .dvk_ws_cs_brands_list {
  min-width: 100%;
  flex: none;
  display: flex;
  align-items: center;
  gap: 74px;
  margin: 0 37px;
  animation: slider-left 30s linear infinite;
}
.dvk_ws_cs_horizontal_slider_wrapper:hover .dvk_ws_cs_brands_list,
.dvk_ws_cs_horizontal_slider_wrapper:hover .dvk_ws_cs_tools_wrapper {
  animation-play-state: paused;
}
.dvk_ws_cs_horizontal_slider_wrapper .dvk_ws_cs_tools_wrapper {
  flex: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 12px;
  animation: slider-left 50s linear infinite;
}

.dvk_ws_cs_pagination.dvk_ws_cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.dvk_ws_cs_pagination.dvk_ws_cs_style_1 li {
  height: 12px;
  width: 12px;
  border-radius: 2px;
  background: var(--purple-color);
  opacity: 0.2;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.dvk_ws_cs_pagination.dvk_ws_cs_style_1 li.slick-active {
  opacity: 1;
}
.dvk_ws_cs_pagination.dvk_ws_cs_style_1 button {
  display: none;
}

@media (max-width: 991px) {
  .dvk_ws_cs_mobile_hide {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .dvk_ws_cs_mobile_show {
    display: none !important;
  }
}
@keyframes slider-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*--------------------------------------------------------------
  08. Video Modal
----------------------------------------------------------------*/
.cs-pd-video .dvk_ws_cs_video_open,
.cs-sample-img .dvk_ws_cs_video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 68px;
  transition: all 0.3s ease;
  line-height: 48px;
}

.cs-pd-video .dvk_ws_cs_video_open:hover,
.cs-sample-img .dvk_ws_cs_video_open:hover {
  color: rgba(255, 255, 255, 0.7);
}

.dvk_ws_cs_video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  transition-delay: 0.3s;
}

.dvk_ws_cs_video_popup.active {
  left: 0;
  transition-delay: 0s;
  left: 0;
}

.dvk_ws_cs_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.dvk_ws_cs_video_popup.active .dvk_ws_cs_video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.dvk_ws_cs_video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  transition: all 0.4s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.dvk_ws_cs_video_popup.active .dvk_ws_cs_video_popup-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.dvk_ws_cs_video_popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.dvk_ws_cs_video_popup-container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.dvk_ws_cs_video_popup-container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dvk_ws_cs_video_popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.dvk_ws_cs_video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.dvk_ws_cs_video_popup-close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.dvk_ws_cs_video_popup-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.dvk_ws_cs_video_popup-close:hover:before,
.dvk_ws_cs_video_popup-close:hover:after {
  background: #000;
}

.dvk_ws_cs_video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.dvk_ws_cs_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
 09. Header
----------------------------------------------------------------*/
.dvk_ws_cs_site_header {
  position: relative;
  z-index: 101;
}

.dvk_ws_cs_site-branding {
  display: inline-block;
  max-width: 180px;
}

.dvk_ws_cs_site_header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  transition: all 0.4s ease;
}

.dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_in,
.dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_top_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100px;
  position: relative;
}
.dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_right {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  position: relative;
}
@media (max-width: 1199px) {
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_right {
    margin-right: 50px;
  }
}
@media (max-width: 480px) {
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_right {
    display: none;
  }
}

.dvk_ws_cs_site_header.dvk_ws_cs_style_1.dvk_ws_cs_fixed_active {
  background-color: #0d0c17;
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.dvk_ws_cs_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

@media screen and (max-width: 1199px) {
  .dvk_ws_cs_main_header .container {
    max-width: 100%;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_nav {
    display: flex;
  }
}
.dvk_ws_cs_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dvk_ws_cs_fixed_header,
.dvk_ws_cs_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.dvk_ws_cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  transition: all 0.4s ease;
  background-color: var(--white-color);
}

.dvk_ws_cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  background-color: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}
.dvk_ws_cs_gescout_show.dvk_ws_cs_type_1 {
  background-color: var(--heading-color);
  box-shadow: 0px 1px 2px 0px rgba(147, 147, 147, 0.1);
}
.dvk_ws_cs_gescout_show.dvk_ws_cs_type_2 {
  background-color: var(--purple-color);
}
.dvk_ws_cs_gescout_show hr {
  display: none;
}

@media screen and (min-width: 1200px) {
  .dvk_ws_cs_main_header {
    position: relative;
  }
  .dvk_ws_cs_main_header .container-fluid {
    padding-right: 40px;
    padding-left: 40px;
  }
  .dvk_ws_cs_site_branding {
    display: inline-block;
  }
  .dvk_ws_cs_site_branding + .dvk_ws_cs_main_header_center {
    margin-left: 40px;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_center .dvk_ws_cs_nav + .dvk_ws_cs_main_header_right {
    margin-left: 30px;
    padding-left: 20px;
    position: relative;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_center .dvk_ws_cs_nav + .dvk_ws_cs_main_header_right::before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: var(--body-color);
    position: absolute;
    left: 0;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_left {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_nav_list a:hover {
    color: var(--accent-color);
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_nav_list a::before {
    background-color: var(--purple-color);
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_nav_list a:hover {
    color: var(--white-color);
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .menu-item-has-children ul a:hover {
    color: var(--purple-color);
  }
  .dvk_ws_cs_nav {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li {
    margin-right: 40px;
    height: inherit;
    position: relative;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li:last-child {
    margin-right: 0;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > a {
    padding: 10px 0;
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
  }

  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > a::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: var(--accent-color);
    left: 0;
    top: 61%;
    transition: all 0.3s ease;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > a:hover {
    color: var(--heading-color);
  }
  /* .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > a:hover::before {
    width: 100%;
  } */
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > ul::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fff;
    transform: rotate(45deg);
    left: 20px;
    top: -5px;
    border-radius: 2px 0 0 0;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 5px;
    transition: all 0.1s ease;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul li:hover ul {
    top: 0px;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
    color: var(--heading-color);
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul a:hover {
    color: var(--accent-color);
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .dvk_ws_cs_menu_toggle,
  .dvk_ws_cs_menu_dropdown_toggle {
    display: none;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list .dvk_ws_cs_mega_menu {
    position: relative;
  }
}
@media screen and (max-width: 1199px) {
  .dvk_ws_cs_site_header_full_width .container {
    padding: 0 15px;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_type_1 .dvk_ws_cs_nav_list {
    background-color: var(--heading-color);
    color: var(--white-color);
  }
  .dvk_ws_cs_menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .dvk_ws_cs_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .dvk_ws_cs_menu_dropdown_toggle span:before, .dvk_ws_cs_menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: all 0.3s ease;
  }
  .dvk_ws_cs_menu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .dvk_ws_cs_menu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .dvk_ws_cs_menu_dropdown_toggle {
    padding: 20px 18px;
  }
  .dvk_ws_cs_site_branding {
    position: relative;
    z-index: 101;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list {
    position: fixed;
    width: 100vw;
    height: 100%;
    left: -100vw;
    background-color: var(--white-color);
    color: var(--heading-color);
    padding: 10px 0;
    top: 80px;
    overflow: auto;
    min-height: 100vh;
    line-height: 1.6em;
    padding: 10px 0 100px;
    transition: all 0.4s ease;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list.dvk_ws_cs_active {
    left: 0vw;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .dvk_ws_cs_nav .menu-item-has-children {
    position: relative;
  }
  .dvk_ws_cs_animo_links > li > a .dvk_ws_cs_animo_text {
    text-shadow: 0 32px 0 currentColor;
  }
  .dvk_ws_cs_animo_links > li > a:hover span {
    transform: translateY(-32px);
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_nav_list {
    background-color: var(--purple-color);
    color: var(--white-color);
  }
  /*Mobile Menu Button*/
  .dvk_ws_cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
  }
  .dvk_ws_cs_menu_toggle span,
  .dvk_ws_cs_menu_toggle span:before,
  .dvk_ws_cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
  .dvk_ws_cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .dvk_ws_cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .dvk_ws_cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .dvk_ws_cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .dvk_ws_cs_toggle_active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .dvk_ws_cs_toggle_active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
  .dvk_ws_cs_nav .dvk_ws_cs_nav_list a {
    position: relative;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_in {
    height: 80px;
  }
  .dvk_ws_cs_site_header .current-menu-item > a:before {
    display: none;
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 .dvk_ws_cs_main_header_center .dvk_ws_cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .dvk_ws_cs_site_header.dvk_ws_cs_style_1 {
    top: 0;
  }
}
/*--------------------------------------------------------------
  10. Footer
----------------------------------------------------------------*/
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_footer_medu li:not(:last-child) {
  margin-bottom: 5px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_footer_medu a:hover {
  color: var(--purple-color);
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_text_widget {
  max-width: 452px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_help_widget {
  padding-left: 30px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_contact_widget {
  padding-left: 60px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_btns_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_btns_group .dvk_ws_cs_btn.dvk_ws_cs_style_2 {
  border-color: var(--border-color);
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_btns_group .dvk_ws_cs_btn.dvk_ws_cs_style_2:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_btns_group .dvk_ws_cs_btn.dvk_ws_cs_style_2:hover h3 {
  color: var(--white-color);
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_footer_bottom {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top:2px solid #ccc;
  background:#f9f9f9;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_support_link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_support_link .dvk_ws_cs_support_icon {
  width: 40px;
  height: 40px;
  background-color: #6DF2D0;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_support_link.dvk_ws_cs_phone .dvk_ws_cs_support_icon {
  background-color: #6DE8F2;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_footer_bottom {
  padding: 45px 0;
  border-top: 1px dashed var(--border-color);
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 hr {
  border-color: #323232;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_footer_bottom {
  padding: 30px 0;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 a:hover {
  color: var(--accent-color);
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_ellipse_1 {
  width: 425px;
  height: 246px;
  border-radius: 425px;
  background: #1DE4EB;
  filter: blur(150px);
  top: -123px;
  left: -125px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_ellipse_2 {
  width: 571px;
  height: 269px;
  border-radius: 571px;
  background: #1de4eb;
  filter: blur(150px);
  top: -160px;
  right: -35px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_ellipse_3 {
  width: 475px;
  height: 304px;
  border-radius: 475px;
  background: #1de4eb;
  filter: blur(150px);
  left: 30%;
  bottom: -215px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_ellipse_4 {
  width: 563px;
  height: 248px;
  border-radius: 563px;
  background: #1DE4EB;
  filter: blur(300px);
  right: -163px;
  bottom: 20px;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_vector_1 {
  top: 10%;
  right: 6%;
  animation: spinAnimation 20s linear infinite;
}
.dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_footer_bottom {
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 1399px) {
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_help_widget {
    padding-left: 10px;
  }
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_links_widget {
    padding-left: 20px;
  }
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_contact_widget {
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_contact_widget {
    padding-left: 20px;
  }
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_links_widget {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_contact_widget,
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_help_widget,
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_links_widget {
    padding-left: 0;
  }
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_footer_bottom {
    justify-content: center;
    text-align: center;
  }
  .dvk_ws_cs_footer.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_footer_bottom {
    padding: 30px 0;
    gap: 15px;
  }
  .dvk_ws_cs_footer.dvk_ws_cs_style_1 .dvk_ws_cs_social_links.dvk_ws_cs_style_1 {
    gap: 10px 20px;
  }
}
/*--------------------------------------------------------------
  11. Sidebar
----------------------------------------------------------------*/
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 {
  position: sticky;
  top: 20px;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_sidebar_widget {
  padding-bottom: 37px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_sidebar_widget:first-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_sidebar_widget:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_sidebar_widget .dvk_ws_cs_form_field {
  padding: 8px 20px 8px 39px;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_sidebar_widget .dvk_ws_cs_form_field:focus {
  border-color: var(--purple-color);
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_sidebar_widget .dvk_ws_cs_search_icon {
  position: absolute;
  top: 10px;
  left: 15px;
  pointer-events: none;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_category_list li {
  margin-bottom: 6px;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_category_list li:last-child {
  margin-bottom: 0;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_category_list li a:hover {
  color: var(--purple-color);
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_latestpost_list li {
  margin-bottom: 18px;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_latestpost_list li:last-child {
  margin-bottom: 0;
}
.dvk_ws_cs_sidebar.dvk_ws_cs_style_1 .dvk_ws_cs_latestpost_list li a:hover {
  color: var(--purple-color);
}

.dvk_ws_cs_tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dvk_ws_cs_tags .dvk_ws_cs_tag_link {
  display: inline-block;
  padding: 8px 23px;
  border: 1px solid var(--body-color);
}
.dvk_ws_cs_tags .dvk_ws_cs_tag_link:hover {
  background-color: var(--purple-color);
  border-color: var(--purple-color);
  color: var(--white-color);
}

/*--------------------------------------------------------------
  12. Hero
----------------------------------------------------------------*/
.dvk_ws_cs_hero.dvk_ws_cs_style_1 {
  height: 100%;
  padding: 220px 0px 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_bg {
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  opacity: 0.05;
  left: 0;
  top: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_text {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_title {
  margin-bottom: 47px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_title mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0.6em;
  max-width: 145px;
  background-color: rgba(229, 72, 0, 0.1);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_subtitle {
  margin-bottom: 45px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_btn_group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_thumbnail {
  width: 50vw;
  min-width: 836px;
  position: relative;
  z-index: 1;
  border-radius: 20px 0 0 20px;
  filter: drop-shadow(0px 0px 20px rgba(83, 83, 83, 0.25));
  margin-left: calc(6vw - 0px);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_thumbnail .dvk_ws_cs_hero_shape_vector {
  top: -70px;
  left: -80px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_thumbnail img {
  border-radius: inherit;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_shape_1 {
  left: -100px;
  top: 0px;
  animation: indication-arrow 3s linear infinite;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_text_check_wrap {
  bottom: 20%;
  right: 85%;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_aiassistant_wrap {
  top: 18%;
  left: 92%;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_1 {
  padding-bottom: 0;
  overflow: initial;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_hero_content {
  max-width: 982px;
  margin: 0 auto;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_hero_thumbnail {
  width: 100%;
  margin-left: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_hero_thumbnail > img {
  width: 100%;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 {
  padding-bottom: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_hero_thumbnail {
  width: 100%;
  margin-left: 0;
  padding: 15px;
  padding-bottom: 0;
  border-radius: 20px 20px 0px 0px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_hero_thumbnail::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1de4eb 0%, #FFD000 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_hero_thumbnail > img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_1,
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_2,
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_3,
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_4 {
  background-color: var(--purple-color);
  filter: blur(300px);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_1 {
  width: 621px;
  height: 606px;
  left: -186px;
  top: -230px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_2 {
  width: 551px;
  height: 572px;
  right: -145px;
  top: -250px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_3 {
  width: 909px;
  height: 888px;
  bottom: -444px;
  left: 113px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_blob_4 {
  width: 565px;
  height: 546px;
  bottom: -243px;
  right: -230px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_hero_shape_1 {
  top: 25%;
  left: 12%;
  animation: circular-rotation 15s linear infinite;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_hero_shape_2 {
  top: 20%;
  right: 12%;
  animation: spinAnimation 15s linear infinite;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 {
  padding: 220px 0px 210px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_hero_text {
  max-width: 640px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_hero_text > * {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_line_1 {
  bottom: -6px;
  right: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_line_2 {
  bottom: -3px;
  right: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_hero_thumbnail {
  width: 100%;
  min-width: 100%;
  margin-left: 0;
  filter: none;
  border-radius: 15px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_hero_thumbnail > img {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_hero_shape_vector {
  top: -70px;
  right: -80px;
  left: initial;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_volume_report {
  top: -80px;
  left: -80px;
  z-index: 2;
  border: 1px solid #edf2f6;
  box-shadow: 0px 3px 13px 0px rgba(238, 238, 238, 0.5);
  animation: slide-right 15s linear infinite;
  animation-delay: 7.5s;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_sells_report {
  bottom: -80px;
  right: -80px;
  z-index: 2;
  border: 1px solid #f8f9fa;
  box-shadow: 0px 3px 13px 0px rgba(238, 238, 238, 0.5);
  animation: slide-right 15s linear infinite;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_blob_5 {
  width: 203px;
  height: 203px;
  transform: rotate(-21deg);
  background-color: #00f043;
  opacity: 0.5;
  filter: blur(125px);
  left: -80px;
  top: 0;
  z-index: 0;
}
@media (max-width: 1550px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_shape_1 {
    left: -45px;
    top: -30px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_thumbnail {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 {
    padding: 80px 0 80px;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_thumbnail {
    min-width: 100%;
    border-radius: 20px;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_text {
    max-width: 100%;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_shape_vector,
  .dvk_ws_cs_hero.dvk_ws_cs_style_1 .dvk_ws_cs_hero_shape_1 {
    display: none;
  }
}

.dvk_ws_cs_hero.dvk_ws_cs_style_2 {
  padding: 100px 0px ;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_thumbnail {
  width: 50vw;
  max-width: 867px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_thumbnail img {
  width: 100%;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_text {
  padding-bottom: 160px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_subtitle {
  display: inline-flex;
  padding: 2px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_shape_1 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  top: 153px;
  left: 140px;
  animation: horizontal-move 100s linear infinite;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_shape_2 {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  top: 53%;
  left: 10%;
  animation: horizontal-move 100s linear infinite;
  animation-delay: 10s;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_shape_3 {
  width: 101px;
  height: 101px;
  background: rgba(255, 255, 255, 0.05);
  left: 40%;
  bottom: 0;
  animation: vertical-move 80s linear infinite;
  animation-delay: 20s;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_shape_4 {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  bottom: 0;
  left: 50%;
  animation: vertical-move 80s linear infinite;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_shape_5 {
  width: 169px;
  height: 169px;
  background: rgba(255, 255, 255, 0.05);
  top: 47%;
  right: -50px;
}
@media (max-width: 1550px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 {
    padding: 170px 0 0;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_text {
    padding-bottom: 120px;
  }
}
@media (max-width: 1399px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_fs_68 {
    font-size: 60px;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_fs_21 {
    font-size: 18px;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_text {
    padding-bottom: 80px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 {
    padding: 100px 0px ;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_text {
    padding-bottom: 0;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_hero_thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_fs_68 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_2 .dvk_ws_cs_fs_68 {
    font-size: 40px;
  }
}
.dvk_ws_cs_hero.dvk_ws_cs_style_reselling {
  padding: 100px 0px ;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 {
  padding: 235px 0 150px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_thumbnail {
  width: 48vw;
  max-width: 907px;
  transform: translateX(-120px);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_thumbnail img {
  width: 100%;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_text {
  max-width: 660px;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_text .dvk_ws_cs_line_1 {
  bottom: -6px;
  right: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_text .dvk_ws_cs_line_2 {
  bottom: -3px;
  right: 0;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_subtitle {
  display: inline-flex;
  padding: 2px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_shape_1 {
  width: 203px;
  height: 203px;
  background-color: var(--accent-color);
  opacity: 0.5;
  transform: rotate(-22deg);
  filter: blur(125px);
  top: 25%;
  left: 12%;
}
@media (max-width: 1399px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 {
    padding: 210px 0 130px;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_thumbnail {
    transform: translateX(-100px);
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_fs_68 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 {
    padding: 160px 0 80px;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_text {
    max-width: 100%;
  }
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_hero_thumbnail {
    width: 100%;
    max-width: 100%;
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_fs_68 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_3 .dvk_ws_cs_fs_68 {
    font-size: 40px;
  }
}

.dvk_ws_cs_hero.dvk_ws_cs_style_4 {
  padding: 161px 0 100px;
  background: linear-gradient(180deg, rgba(0, 204, 97, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}
.dvk_ws_cs_hero.dvk_ws_cs_style_4 .dvk_ws_cs_hero_thumbnail {
  border-color: #3305a2;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_4 .dvk_ws_cs_hero_thumbnail img {
  border-radius: inherit;
}
.dvk_ws_cs_hero.dvk_ws_cs_style_4 .dvk_ws_cs_newsletter_input {
  background-color: transparent;
}
@media (max-width: 1399px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_4 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_hero.dvk_ws_cs_style_4 {
    padding: 160px 0 80px;
  }
}

/*-----------------------------------
 Mini common components
-------------------------------------*/
.dvk_ws_cs_text_check_wrap {
  padding: 0 0 40px 80px;
  animation: slide-right 25s linear infinite;
}
.dvk_ws_cs_text_check_wrap .dvk_ws_cs_arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}

.dvk_ws_cs_aiassistant_wrap {
  padding: 0 80px 40px 0;
  animation: slide-left 30s linear infinite;
}
.dvk_ws_cs_aiassistant_wrap .dvk_ws_cs_arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotateY(180deg);
}

@keyframes indication-arrow {
  50% {
    transform: rotate(10deg);
  }
}
@keyframes spinAnimation {
  0% {
    transform: rotateX(-20deg) rotateY(0deg);
  }
  75% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
@keyframes horizontal-move {
  50% {
    left: 100%;
  }
}
@keyframes vertical-move {
  50% {
    bottom: 90%;
  }
}
/*--------------------------------------------------------------
  13. Cards
----------------------------------------------------------------*/
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_card_thumbnail > img {
  width: 100%;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_active_users_badge {
  top: 67px;
  right: 0;
  z-index: 1;
  animation: slide-right 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_search_badge {
  bottom: 67px;
  left: 0;
  z-index: 1;
  animation: slide-left 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_illustration {
  height: 100%;
  width: 100%;
  padding: 87px 0 82px 39%;
  top: 0;
  right: -120px;
  animation: slide-left 20s linear infinite;
  z-index: 1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_illustration img {
  width: 100%;
  height: 100%;
  border-radius:15px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_thumbnail_before {
  width: 100%;
  height: 100%;
  max-width: 642px;
  max-height: 642px;
  background-color: #CCF5DF;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_illustration_1 {
  width: 100%;
  height: 100%;
  padding: 18% 61% 68% 0;
  top: 0;
  left: 0;
  z-index: 2;
  animation: slide-left 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_illustration_2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 68% 0 20% 42%;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: slide-right 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape {
  top: -90px;
  right: -50px;
  transform: rotate(95deg);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_card_content {
  max-width: 550px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_card_content .dvk_ws_cs_btn.dvk_ws_cs_style_1 {
  margin-top: 40px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape {
  top: -85px;
  right: -50px;
  transform: rotate(90deg);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape_2 {
  bottom: -80px;
  left: -50px;
  transform: rotate(-90deg);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape_3 {
  top: -80px;
  right: 140px;
  transform: rotate(90deg);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_vector_shape_3 {
  width: max-content;
  top: -20px;
  left: -110px;
  transform: rotate(120deg);
  animation: circular-rotation 15s linear infinite;
  animation-direction: reverse;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_vector_shape_4 {
  width: max-content;
  left: 40%;
  bottom: 140px;
  transform: translateX(-40%);
  animation: circular-rotation 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_shadow {
  width: 81px;
  height: 81px;
  background-color: var(--purple-color);
  filter: blur(100px);
  top: 140px;
  right: 40px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_card_thumbnail {
  padding-left: 120px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_chat {
  width: 100%;
  padding-right: 60%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_chat img {
  border-radius: inherit;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_card_thumbnail {
  padding-right: 120px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_message_bubble_wrapper {
  width: 100%;
  height: 100%;
  padding: 20% 0 20% 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_message_bubble_2 {
  transform: translateX(-48px);
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_card_thumbnail {
  padding-left: 120px;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_card_thumbnail img {
  width: auto;
  margin: 0 auto;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_text_check_wrap {
  top: 50%;
  left: 0;
  z-index: 1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_aiassistant_wrap {
  bottom: 10%;
  left: 72%;
  z-index: 1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_blob_1 {
  width: 107px;
  height: 107px;
  background-color: var(--purple-color);
  filter: blur(90px);
  top: 22%;
  right: 4%;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_4 .dvk_ws_cs_card_content {
  max-width: 100%;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_card_content {
  max-width: 100%;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_fast_managing_badge {
  top: 35%;
  left: 0;
  z-index: 1;
  animation: slide-left 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_task_info_badge {
  top: 13%;
  right: 0;
  z-index: 1;
  animation: slide-right 20s linear infinite;
  animation-delay: 10s;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_rating_badge {
  bottom: 15%;
  right: 0;
  z-index: 1;
  animation: slide-right 20s linear infinite;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_btn.dvk_ws_cs_style_1 {
  margin-top: 0;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_funfact_wrapper {
  display: flex;
  gap: 30px 90px;
  flex-wrap: wrap;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_funfact_number {
  display: flex;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_6 .dvk_ws_cs_card_thumbnail {
  padding: 0 93px 0 50px;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_6 .dvk_ws_cs_card_thumbnail > img {
  width: auto;
  height: auto;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_6 .dvk_ws_cs_accent_bg {
  background-color: var(--accent-color);
  opacity: 0.1;
}
.dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_7 .dvk_ws_cs_card_content {
  max-width: 100%;
  padding-left: 85px;
}
@media (max-width: 1399px) {
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_7 .dvk_ws_cs_card_content {
    padding-left: 0;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_7 .dvk_ws_cs_row_gap_70 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_7 .dvk_ws_cs_row_gap_70 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_card.dvk_ws_cs_style_1 br {
    display: none;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_card_thumbnail {
    padding-left: 0;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_card_thumbnail {
    padding-right: 0;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape,
  .dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape_2,
  .dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape_3 {
    display: none;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_card_content {
    max-width: 100%;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_card_thumbnail {
    position: initial;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_message_bubble_wrapper {
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_card_thumbnail {
    padding-left: 60px;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_message_bubble_wrapper {
    padding-left: 20%;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_text_check_wrap {
    top: 35%;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_6 .dvk_ws_cs_card_thumbnail {
    padding: 0;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_illustration_1 {
    padding: 18% 50% 60% 0;
  }
  .dvk_ws_cs_card.dvk_ws_cs_style_1 .dvk_ws_cs_illustration_2 {
    padding: 50% 0 20% 10%;
  }
}
@media (max-width: 450px) {
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_fast_managing_badge,
  .dvk_ws_cs_card.dvk_ws_cs_style_1.dvk_ws_cs_type_5 .dvk_ws_cs_rating_badge {
    display: none;
  }
}

.dvk_ws_cs_card.dvk_ws_cs_style_2 {
  height: 100%;
  padding: 41px 41px 36px;
  border: 1px solid #252D32;
  background-color: #121B21;
  display: flex;
  flex-direction: column;
}
.dvk_ws_cs_card.dvk_ws_cs_style_2 .dvk_ws_cs_card_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.dvk_ws_cs_card.dvk_ws_cs_style_2 .dvk_ws_cs_card_info {
  margin-top: auto;
}
@media (max-width: 1399px) {
  .dvk_ws_cs_card.dvk_ws_cs_style_2 {
    padding: 40px 30px 36px;
  }
}

.dvk_ws_cs_card.dvk_ws_cs_style_3 .dvk_ws_cs_card_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.dvk_ws_cs_card.dvk_ws_cs_style_3 .dvk_ws_cs_social_links.dvk_ws_cs_style_1 {
  padding: 23px 15px;
  border-radius: 0px 3px 3px 0px;
  background: rgba(10, 10, 16, 0.5);
  backdrop-filter: blur(10px);
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotateY(90deg);
  transform-origin: left;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.dvk_ws_cs_card.dvk_ws_cs_style_3 a {
  line-height: 1em;
}
.dvk_ws_cs_card.dvk_ws_cs_style_3:hover .dvk_ws_cs_social_links.dvk_ws_cs_style_1 {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) rotateY(0deg);
}

.dvk_ws_cs_card.dvk_ws_cs_style_4 {
  box-shadow: 0px 0px 30px 0px rgba(10, 10, 16, 0.04);
}
.dvk_ws_cs_card.dvk_ws_cs_style_4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes slide-right {
  50% {
    transform: translateX(70px);
  }
}
@keyframes slide-left {
  50% {
    transform: translateX(-120px);
  }
}
/*--------------------------------------------------------------
  14. Iconbox
----------------------------------------------------------------*/
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_icon {
  width: 100px;
  height: 100px;
  padding: 10px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 img {
  transition: all 0.6s ease-in-out;
  padding: 5px;
  /*background-color: #e4f2f5;
  box-shadow: 1px 1px 10px #e2e2e2;*/
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_info {
  margin-top: auto;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_btn .dvk_ws_cs_btn_icon {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  overflow: hidden;
  margin-top: 4px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_btn .dvk_ws_cs_btn_icon i {
  text-shadow: -30px 0px 0px currentColor;
  transition: all 0.3s ease;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_btn:hover {
  color: var(--purple-color);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_btn:hover .dvk_ws_cs_btn_icon i {
  transform: translatex(30px);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1.dvk_ws_cs_type_1 {
  padding: 60px 15px 54px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon {
  width: 70px;
  height: 70px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1.dvk_ws_cs_type_1 br {
  display: block;
}
.dvk_ws_cs_iconbox .dvk_ws_cs_iconbox_icon_home {
  padding: 20px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_bg_1 {
  background-color: #6DE8F2;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1.dvk_ws_cs_type_1 .dvk_ws_cs_bg_2 {
  background-color: #6DF2A2;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_1:hover img {
  transform: rotatey(360deg);
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_2 {
  height: 100%;
  padding: 40px 35px 35px 40px;
  box-shadow: 0px 0px 30px 0px rgba(10, 10, 16, 0.04);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2 .dvk_ws_cs_iconbox_icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.15, 1);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2 .dvk_ws_cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2 .dvk_ws_cs_iconbox_icon > * {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2 .dvk_ws_cs_iconbox_icon svg {
  transform: translate(0px, 0px);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2 .dvk_ws_cs_iconbox_icon.dvk_ws_cs_purple_color::before {
  background-color: var(--purple-color);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 {
  border: 1px solid #252D32;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon {
  width: 70px;
  height: 70px;
  background-color: #C3AEFF;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon::before {
  display: none;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon.dvk_ws_cs_bg_2 {
  background-color: #6DF2A2;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon.dvk_ws_cs_bg_3 {
  background-color: #6DF2D0;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon.dvk_ws_cs_bg_4 {
  background-color: #6DE8F2;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon.dvk_ws_cs_bg_5 {
  background-color: #9BF26D;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_2 {
  padding: 0;
  box-shadow: none;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_3 {
  padding: 45px 38px 43px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_3 .dvk_ws_cs_iconbox_icon {
  width: max-content;
  height: max-content;
  padding: 0;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2.dvk_ws_cs_type_3 .dvk_ws_cs_iconbox_icon::before {
  display: none;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_2:hover .dvk_ws_cs_iconbox_icon {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_2 {
    padding: 30px 15px;
  }
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_3 {
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_4 {
  display: flex;
  gap: 25px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_4 .dvk_ws_cs_iconbox_icon {
  width: 65px;
  height: 65px;
  padding: 5px;
  flex: none;
  background-color: #6DF2D0;
  color: #008F6B;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_4:nth-child(2) .dvk_ws_cs_iconbox_icon {
  background-color: #6DE8F2;
  color: var(--purple-color);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_4:nth-child(3) .dvk_ws_cs_iconbox_icon {
  background-color: #6DF2A2;
  color: #00A843;
}
@media (max-width: 400px) {
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_4 {
    flex-direction: column;
    gap: 15px;
  }
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_4.dvk_ws_cs_type_1 .dvk_ws_cs_iconbox_icon {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_5 {
  width: 312px;
  height: 141px;
  padding: 20px;
  background-color: #121B21;
  border: 1px solid #252D32;
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_6 {
  display: flex;
  gap: 30px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_6 .dvk_ws_cs_iconbox_icon {
  width: 70px;
  height: 70px;
  flex: none;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_6 .dvk_ws_cs_iconbox_info {
  padding-top: 15px;
}
@media (max-width: 400px) {
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_6 {
    flex-direction: column;
    gap: 25px;
  }
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_6 .dvk_ws_cs_iconbox_info {
    padding-top: 0;
  }
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_7 {
  height: 100%;
  padding: 45px 44px 42px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_7 .dvk_ws_cs_iconbox_icon {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.15, 1);
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_7:hover .dvk_ws_cs_iconbox_icon {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_7 {
    padding: 40px 24px 35px 30px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_7 {
    padding: 40px 20px 35px;
  }
}

.dvk_ws_cs_iconbox.dvk_ws_cs_style_8 {
  display: flex;
  max-width: 439px;
  gap: 30px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_8 .dvk_ws_cs_iconbox_icon {
  position: relative;
  padding: 25px 0 0 24px;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_8 .dvk_ws_cs_iconbox_icon > * {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_8 .dvk_ws_cs_iconbox_icon::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--purple-color);
  transition: all 0.3s ease;
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
}
.dvk_ws_cs_iconbox.dvk_ws_cs_style_8:hover .dvk_ws_cs_iconbox_icon::before {
  opacity: 0.3;
}
@media (max-width: 400px) {
  .dvk_ws_cs_iconbox.dvk_ws_cs_style_8 {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
  15. Pricing
----------------------------------------------------------------*/
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 small {
  margin-left: -6px;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 li,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 h2,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 h3,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 p {
  transition: all 0.3s ease;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .yearlyPrice,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .yearlyText {
  display: none;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .dvk_ws_cs_pricing_feature_list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .dvk_ws_cs_pricing_feature_list li:last-child {
  margin-bottom: 0;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .dvk_ws_cs_pricing_feature_list li i {
  font-size: 20px;
  position: absolute;
  top: 7px;
  left: 0;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .dvk_ws_cs_pricing_btn {
  width: 100%;
  padding: 12px 25px;
  text-align: center;
  line-height: 1.56em;
  border: 1px solid var(--heading-color);
  border-radius: 50px;
  margin-top: auto;
  transition: all 0.3s ease;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 .dvk_ws_cs_pricing_badge {
  padding: 2px 74px;
  background-color: #e54800;
  color: var(--white-color);
  top: 30px;
  right: -70px;
  transform: rotate(45deg);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_1 {
  border: 1px solid var(--border-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_2 {
  box-shadow: none;
  background-color: #121b21;
  border: 1px solid #252d32;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_2 .dvk_ws_cs_pricing_btn {
  border-color: var(--white-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_3 {
  padding: 20px 30px 40px;
  box-shadow: 0px 0px 10px 5px rgba(239, 236, 244, 0.5);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_3 li {
  padding-left: 34px;
  margin-bottom: 12px;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_feature_icon {
  width: 22px;
  height: 22px;
  padding: 3px;
  position: absolute;
  left: 0;
  top: 4px;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_feature_icon i {
  font-size: 12px;
  position: initial;
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_3 .dvk_ws_cs_pricing_btn {
  background-color: var(--white-color);
  color: var(--heading-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active {
  box-shadow: 0px 0px 20px 5px rgba(216, 216, 216, 0.4);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover .dvk_ws_cs_pricing_btn, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active .dvk_ws_cs_pricing_btn {
  background-color: var(--purple-color);
  color: var(--white-color);
  border-color: var(--purple-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover .dvk_ws_cs_pricing_btn:hover, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active .dvk_ws_cs_pricing_btn:hover {
  background-color: var(--white-color);
  color: var(--purple-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_1, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_1 {
  box-shadow: none;
  border-color: var(--heading-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_2, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_2 {
  box-shadow: none;
  transform: scaleY(1.05);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 {
  background-color: var(--purple-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3 .dvk_ws_cs_pricing_btn, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 .dvk_ws_cs_pricing_btn {
  color: var(--heading-color);
  background-color: var(--white-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3 .dvk_ws_cs_pricing_btn:hover, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 .dvk_ws_cs_pricing_btn:hover {
  color: var(--purple-color);
}
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3 li,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3 h2,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3 h3,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1:hover.dvk_ws_cs_type_3 p, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 li,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 h2,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 h3,
.dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.active.dvk_ws_cs_type_3 p {
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 {
    padding: 30px 20px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1 {
    box-shadow: 0px 0px 20px 5px rgba(216, 216, 216, 0.4);
  }
  .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_1, .dvk_ws_cs_pricing_table.dvk_ws_cs_style_1.dvk_ws_cs_type_2 {
    box-shadow: none;
  }
}

.dvk_ws_cs_pricing_table_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (min-width: 1400px) {
  .dvk_ws_cs_pricing_table_wrapper {
    gap: 30px 75px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_pricing_table_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dvk_ws_cs_pricing_table_wrapper_2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 57px;
}
@media (max-width: 1399px) {
  .dvk_ws_cs_pricing_table_wrapper_2 {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_pricing_table_wrapper_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*---------------------------------------------------------------
Pricing controller 
----------------------------------------------------------------*/
.dvk_ws_cs_pricing_control {
  list-style: none;
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 60px;
}
.dvk_ws_cs_pricing_control li {
  display: flex;
  align-items: center;
  position: relative;
}
.dvk_ws_cs_pricing_control li a:hover {
  color: var(--heading-color);
}
.dvk_ws_cs_pricing_control li a[href=yearly]::before {
  left: initial;
  right: 100%;
}
.dvk_ws_cs_pricing_control li.active a {
  pointer-events: none;
}
.dvk_ws_cs_pricing_control li.active .dvk_ws_cs_switch::before {
  left: 5px;
}
.dvk_ws_cs_pricing_control li.active > a {
  color: var(--heading-color);
}
.dvk_ws_cs_pricing_control .dvk_ws_cs_switch {
  display: inline-block;
  position: relative;
  height: 35px;
  width: 60px;
  background: var(--border-color);
  border-radius: 25px;
  margin: 0 15px;
}
.dvk_ws_cs_pricing_control .dvk_ws_cs_switch::before {
  content: "";
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: var(--purple-color);
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.dvk_ws_cs_pricing_control a {
  position: relative;
}
.dvk_ws_cs_pricing_control a::before {
  content: "";
  height: 24px;
  width: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  z-index: 1;
}
.dvk_ws_cs_pricing_control .dvk_ws_cs_offer_info {
  display: flex;
  align-items: center;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  animation: indication 3s linear infinite;
}
.dvk_ws_cs_pricing_control .dvk_ws_cs_offer_info span {
  display: inline-block;
  margin-bottom: -30px;
  text-wrap: nowrap;
}
.dvk_ws_cs_pricing_control.dvk_ws_cs_type_1 .dvk_ws_cs_offer_info {
  top: 7%;
}
.dvk_ws_cs_pricing_control.dvk_ws_cs_type_1 .dvk_ws_cs_offer_info svg {
  transform: rotate(-20deg);
}
.dvk_ws_cs_pricing_control.dvk_ws_cs_type_1 .dvk_ws_cs_offer_info span {
  margin-bottom: 0;
}
.dvk_ws_cs_pricing_control.dvk_ws_cs_type_2 li a {
  color: var(--border-color);
}
.dvk_ws_cs_pricing_control.dvk_ws_cs_type_2 li a:hover {
  color: var(--white-color);
}
.dvk_ws_cs_pricing_control.dvk_ws_cs_type_2 li.active a {
  color: var(--white-color);
}
.dvk_ws_cs_pricing_control .dvk_ws_cs_offer_info.dvk_ws_cs_type_1 {
  top: initial;
  bottom: 50%;
  left: 110%;
  animation: none;
}
.dvk_ws_cs_pricing_control .dvk_ws_cs_offer_info.dvk_ws_cs_type_1 svg {
  transform: rotate(0deg);
}
@media (max-width: 575px) {
  .dvk_ws_cs_pricing_control .dvk_ws_cs_offer_info {
    display: none;
  }
}

@keyframes indication {
  50% {
    transform: translate(5px, -50%) rotate(-2deg);
  }
}
/*--------------------------------------------------------------
  16. Testimonial
----------------------------------------------------------------*/
.dvk_ws_cs_testimonial.dvk_ws_cs_style_1 {
  width: 536px;
  height: 100%;
  padding: 50px;
  background-color: #EDF4F3;
}
.dvk_ws_cs_testimonial.dvk_ws_cs_style_1 blockquote {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  margin-bottom: 32px;
}
.dvk_ws_cs_testimonial.dvk_ws_cs_style_1 > * {
  position: relative;
  z-index: 1;
}
.dvk_ws_cs_testimonial.dvk_ws_cs_style_1 .dvk_ws_cs_quote_icon {
  width: 266px;
  height: 266px;
  background-image: url(../img/quote-right-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 24px;
  right: 63px;
  z-index: 0;
}
@media (max-width: 991px) {
  .dvk_ws_cs_testimonial.dvk_ws_cs_style_1 {
    padding: 30px 15px;
    width: 290px;
  }
  .dvk_ws_cs_testimonial.dvk_ws_cs_style_1 .dvk_ws_cs_quote_icon {
    transform: scale(0.7);
    right: 0;
  }
}

.slick-slide:nth-child(even) .dvk_ws_cs_testimonial.dvk_ws_cs_style_1 {
  background-color: #ECEBFD;
}
.slick-slide:nth-child(even) .dvk_ws_cs_testimonial.dvk_ws_cs_style_1 .dvk_ws_cs_quote_icon {
  background-image: url(../img/quote-right.svg);
}

.dvk_ws_cs_testimonial.dvk_ws_cs_style_2 {
  padding: 50px 30px 53px 32px;
}
.dvk_ws_cs_testimonial.dvk_ws_cs_style_2 blockquote {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  margin-bottom: 30px;
}
.dvk_ws_cs_testimonial.dvk_ws_cs_style_2 .dvk_ws_cs_quote_icon {
  bottom: -1px;
  right: -1px;
}

/*-----------------------------------------
 Avatar
-------------------------------------------*/
.dvk_ws_cs_avatar.dvk_ws_cs_style_1 {
  display: flex;
  gap: 20px;
}
.dvk_ws_cs_avatar.dvk_ws_cs_style_1 .dvk_ws_cs_avatar_icon {
  width: 60px;
  height: 60px;
  flex: none;
}
.dvk_ws_cs_avatar.dvk_ws_cs_style_1 .dvk_ws_cs_avatar_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.dvk_ws_cs_avatar.dvk_ws_cs_style_1 h3 {
  margin-bottom: -2px;
}

/*---------------------------------------------------------
 17. Layouts and Sections
-----------------------------------------------------------*/
.dvk_ws_cs_cta.dvk_ws_cs_style_1 {
  padding: 96px 96px 110px 96px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_cta_thumbnail {
  position: absolute;
  bottom: 0;
  right: 120px;
  z-index: 1;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_cta_thumbnail .dvk_ws_cs_quote_text_img {
  top: -20px;
  left: 45%;
  transform: translateX(-45%);
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_cta_text {
  max-width: 530px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_ellipse_1 {
  width: 407px;
  height: 399px;
  border: 7px solid var(--accent-color);
  opacity: 0.8;
  right: -200px;
  bottom: -135px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_ellipse_2 {
  width: 407px;
  height: 407px;
  border: 7px solid var(--border-color);
  right: -30px;
  bottom: -215px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_vector_1 {
  top: 16%;
  left: 55%;
  transform: translateX(-55%);
  animation: rotation-movement 20s linear infinite;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1399px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_1 br {
    display: none;
  }
  .dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_cta_thumbnail {
    right: 90px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_1 {
    padding: 80px 40px;
  }
  .dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_cta_thumbnail {
    right: 30px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_1 .dvk_ws_cs_quote_text_img {
    display: none;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_1 {
    padding: 80px 20px;
  }
}

.dvk_ws_cs_cta.dvk_ws_cs_style_2 {
  padding: 126px 30px 140px;
  background-color: #05111A;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_cta_text {
  max-width: 690px;
  margin: 0 auto;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_ellipse_1 {
  width: 379px;
  height: 254px;
  border-radius: 379px;
  background: var(--purple-color);
  filter: blur(150px);
  top: -100px;
  left: -100px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_ellipse_2 {
  width: 463px;
  height: 296px;
  border-radius: 463px;
  background: var(--purple-color);
  filter: blur(150px);
  top: -120px;
  right: -100px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_ellipse_3 {
  width: 395px;
  height: 289px;
  border-radius: 395px;
  background: var(--purple-color);
  filter: blur(150px);
  bottom: -120px;
  left: 23%;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_ellipse_4 {
  width: 333px;
  height: 197px;
  border-radius: 333px;
  background: var(--purple-color);
  filter: blur(150px);
  right: -100px;
  bottom: -120px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_vector_1 {
  top: 20%;
  right: 6%;
  animation: spinAnimation 20s linear infinite;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2 .dvk_ws_cs_vector_2 {
  bottom: 20%;
  left: 10%;
  animation: spinAnimation 20s linear infinite;
  animation-delay: 10s;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_2.dvk_ws_cs_type_1 {
  padding: 125px 30px 135px;
}
@media (max-width: 991px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_2 {
    padding: 66px 30px 80px;
  }
  .dvk_ws_cs_cta.dvk_ws_cs_style_2.dvk_ws_cs_type_1 {
    padding: 70px 15px 75px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_2 {
    padding: 66px 15px 80px;
  }
}

.dvk_ws_cs_cta.dvk_ws_cs_style_3 .dvk_ws_cs_cta_shape_1,
.dvk_ws_cs_cta.dvk_ws_cs_style_3 .dvk_ws_cs_cta_shape_2 {
  width: 232px;
  height: 232px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_3 .dvk_ws_cs_cta_shape_1 {
  top: -85px;
  left: -94px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_3 .dvk_ws_cs_cta_shape_2 {
  bottom: -92px;
  right: -104px;
}

.dvk_ws_cs_cta.dvk_ws_cs_style_4 {
  padding: 124px 20px 130px;
}
.dvk_ws_cs_cta.dvk_ws_cs_style_4 .dvk_ws_cs_newsletter_form .dvk_ws_cs_newsletter_input {
  background-color: transparent;
  border-color: var(--heading-color);
  color: var(--heading-color);
}
.dvk_ws_cs_cta.dvk_ws_cs_style_4 .dvk_ws_cs_newsletter_form .dvk_ws_cs_newsletter_input::placeholder {
  color: var(--heading-color);
}
@media (max-width: 991px) {
  .dvk_ws_cs_cta.dvk_ws_cs_style_4 {
    padding: 70px 20px 80px;
  }
}

.dvk_ws_cs_newsletter_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.dvk_ws_cs_newsletter_form .dvk_ws_cs_btn.dvk_ws_cs_style_1 {
  position: absolute;
  /*top: 50%;
  right: 10px;
  transform: translateY(-50%);*/
}
.dvk_ws_cs_newsletter_form .dvk_ws_cs_mail_icon {
  top: 16px;
  left: 23px;
}
.dvk_ws_cs_newsletter_form .dvk_ws_cs_newsletter_input {
  width: 100%;
  padding: 18px 23px;
  outline: 0;
  color: var(--white-color);
  border: 1px solid var(--white-color);
}
.dvk_ws_cs_newsletter_form .dvk_ws_cs_newsletter_input::placeholder {
  color: var(--white-color);
}
.dvk_ws_cs_newsletter_form input + div {
  display: none;
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_1 {
  width: 100%;
  max-width: 552px;
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_1 .dvk_ws_cs_newsletter_input {
  color: var(--heading-color);
  border-color: var(--heading-color);
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_1 .dvk_ws_cs_newsletter_input::placeholder {
  color: var(--heading-color);
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_2 {
  width: 100%;
  max-width: 537px;
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_2 .dvk_ws_cs_newsletter_input {
  padding: 15px 23px 15px 56px;
  color: var(--white-color);
  border-color: var(--body-color);
  background-color: #121B21;
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_2 .dvk_ws_cs_newsletter_input::placeholder {
  color: var(--white-color);
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_2 .dvk_ws_cs_btn.dvk_ws_cs_style_1 {
  right: 5px;
}
.dvk_ws_cs_newsletter_form.dvk_ws_cs_type_3 {
  width: 100%;
  max-width: 552px;
}
@media (max-width: 575px) {
  .dvk_ws_cs_newsletter_form .dvk_ws_cs_newsletter_input {
    padding: 8px 23px;
  }
  .dvk_ws_cs_newsletter_form .dvk_ws_cs_btn.dvk_ws_cs_style_1 {
    width: 100%;
    position: relative;
    transform: initial;
    right: initial !important;
  }
}

.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 {
  padding: 70px 0 63px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 63px 0;
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1 {
  padding: 0 70px;
  border-right: 1px solid rgba(108, 108, 108, 0.3);
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox_icon {
  width: 70px;
  height: 70px;
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(1) .dvk_ws_cs_iconbox_icon {
  background-color: var(--accent-color);
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(2) .dvk_ws_cs_iconbox_icon {
  background-color: #C3AEFF;
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(3) .dvk_ws_cs_iconbox_icon {
  background-color: #6DF2A2;
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(4) .dvk_ws_cs_iconbox_icon {
  background-color: #6DF2D0;
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(5) .dvk_ws_cs_iconbox_icon {
  background-color: #6DE8F2;
}
.dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(6) .dvk_ws_cs_iconbox_icon {
  background-color: #9BF26D;
}
@media (min-width: 1200px) {
  .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(3), .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(6) {
    border-right: 0;
  }
}
@media (max-width: 1399px) {
  .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1 {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(2), .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(4), .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1:nth-child(6) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .dvk_ws_cs_features_wrapper.dvk_ws_cs_style_1 .dvk_ws_cs_iconbox.dvk_ws_cs_style_1 {
    border-right: 0;
  }
}

.dvk_ws_cs_payments_info_wrapper {
  padding: 332px 0;
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_circular_shape {
  width: 100%;
  max-width: 874px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circular-rotation 60s linear infinite;
}
.dvk_ws_cs_payments_info_wrapper::after {
  content: "";
  width: 149px;
  height: 149px;
  border-radius: 50%;
  background-color: var(--accent-color);
  filter: blur(150px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payments_logo_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo {
  width: 312px;
  height: 141px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo:nth-child(1) {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo:nth-child(2) {
  left: 0;
  top: 34%;
  transform: translateY(-34%);
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo:nth-child(3) {
  right: 0;
  top: 34%;
  transform: translateY(-34%);
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo:nth-child(4) {
  top: 72%;
  left: 0;
  transform: translateY(-72%);
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo:nth-child(5) {
  top: 72%;
  right: 0;
  transform: translateY(-72%);
}
.dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo:nth-child(6) {
  bottom: 97px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .dvk_ws_cs_payments_info_wrapper br {
    display: none;
  }
  .dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .dvk_ws_cs_payments_info_wrapper {
    padding: 0;
  }
  .dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_circular_shape {
    max-width: 100%;
    height: auto;
  }
  .dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payments_logo_wrapper {
    margin-top: 60px;
  }
  .dvk_ws_cs_payments_info_wrapper .dvk_ws_cs_payment_logo {
    position: initial;
    transform: translateY(0) !important;
    height: auto;
  }
}

.dvk_ws_cs_support_content_wrapper {
  padding: 36px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dvk_ws_cs_support_content_wrapper .dvk_ws_cs_support_text {
  padding-left: 132px;
  position: relative;
}
.dvk_ws_cs_support_content_wrapper .dvk_ws_cs_support_text img {
  position: absolute;
  left: 0;
  top: 0;
}
.dvk_ws_cs_support_content_wrapper .dvk_ws_cs_btn.dvk_ws_cs_style_1 {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px) {
  .dvk_ws_cs_support_content_wrapper .dvk_ws_cs_support_text {
    padding-left: 0;
    text-align: center;
  }
  .dvk_ws_cs_support_content_wrapper .dvk_ws_cs_support_text img {
    position: initial;
    margin-bottom: 20px;
  }
}

/*-----------------------------
 Register & Login
------------------------------*/
.dvk_ws_cs_register_form_wrapper {
  width: 100%;
  max-width: 472px;
  padding: 43px 58px;
  box-shadow: 0px 0px 20px 5px rgba(181, 181, 181, 0.25);
}
@media (max-width: 575px) {
  .dvk_ws_cs_register_form_wrapper {
    padding: 40px 20px;
  }
}

.dvk_ws_cs_register_form .dvk_ws_cs_form_field {
  padding: 8px 20px 8px 40px;
  border-color: var(--body-color);
}
.dvk_ws_cs_register_form .dvk_ws_cs_form_field:focus {
  border-color: var(--purple-color);
}
.dvk_ws_cs_register_form i {
  position: absolute;
  left: 17px;
  top: 16px;
  pointer-events: none;
}
.dvk_ws_cs_register_form i:nth-child(2) {
  left: initial;
  right: 17px;
  cursor: pointer;
  pointer-events: painted;
}
.dvk_ws_cs_register_form .form-check {
  padding-left: 0;
  box-shadow: none;
}
.dvk_ws_cs_register_form label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--body-color);
}
.dvk_ws_cs_register_form .form-check-input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border-color: var(--heading-color);
  box-shadow: none;
  margin: 7px 10px 0 0;
}
.dvk_ws_cs_register_form .form-check-input:checked {
  border: var(--purple-color);
  background-color: var(--purple-color);
}
.dvk_ws_cs_register_form .form-check-input:focus {
  border-color: var(--heading-color);
}
.dvk_ws_cs_register_form .dvk_ws_cs_login_meta {
  display: flex;
  gap: 10px 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dvk_ws_cs_register_form .dvk_ws_cs_login_meta a:hover {
  color: var(--purple-color);
}

.dvk_ws_cs_social_login .dvk_ws_cs_social_links {
  gap: 10px;
}
.dvk_ws_cs_social_login .dvk_ws_cs_social_links a {
  width: 30px;
  height: 30px;
  padding: 10px;
  font-size: 10px;
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
}
.dvk_ws_cs_social_login .dvk_ws_cs_social_links a:hover {
  background-color: #0A66C2;
  border-color: #0A66C2;
  color: var(--white-color);
}
.dvk_ws_cs_social_login p a:hover {
  color: var(--purple-color);
}

.dvk_ws_cs_register_shape_1,
.dvk_ws_cs_register_shape_2 {
  width: 137px;
  height: 137px;
  filter: blur(150px);
}

.dvk_ws_cs_register_shape_1 {
  left: -65px;
  top: 30%;
}

.dvk_ws_cs_register_shape_2 {
  right: -65px;
  bottom: 200px;
}

/*--------------------------
 Terms & Condition
---------------------------*/
.dvk_ws_cs_terms_condition_wrapper article {
  margin-bottom: 25px;
}
.dvk_ws_cs_terms_condition_wrapper article:last-child {
  margin-bottom: 0;
}
.dvk_ws_cs_terms_condition_wrapper article ul {
  padding-left: 30px;
}
.dvk_ws_cs_terms_condition_wrapper article li {
  list-style: disc;
}

/*--------------------------
 Video Block Sections
---------------------------*/
.dvk_ws_cs_video_block.dvk_ws_cs_style_1 {
  width: 100%;
  min-height: 600px;
}
.dvk_ws_cs_video_block.dvk_ws_cs_style_1 .dvk_ws_cs_feature_shape_3 {
  top: -60px;
  left: -70px;
}
@media (max-width: 991px) {
  .dvk_ws_cs_video_block.dvk_ws_cs_style_1 {
    min-height: 450px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_video_block.dvk_ws_cs_style_1 {
    min-height: 400px;
  }
}

@keyframes circular-rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*--------------------------------------------------------------
  18. Posts Post Details page
----------------------------------------------------------------*/
.dvk_ws_cs_post.dvk_ws_cs_style_1 {
  display: flex;
  align-items: center;
  gap: 50px;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_thumbnail {
  width: 390px;
  overflow: hidden;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 0.6s ease;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_thumbnail:hover img {
  transform: scale(1.06);
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_content {
  flex: 1;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_title:hover a {
  color: var(--purple-color);
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta_wrapper {
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}
@media (max-width: 390px) {
  .dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta_wrapper .dvk_ws_cs_post_meta {
    padding-left: 0;
  }
  .dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta_wrapper .dvk_ws_cs_post_meta::before {
    display: none;
  }
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta {
  padding-left: 20px;
  position: relative;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 12px;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta:first-child {
  padding-left: 0;
}
.dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_meta:first-child::before {
  display: none;
}
@media (max-width: 1199px) {
  .dvk_ws_cs_post.dvk_ws_cs_style_1 {
    flex-direction: column;
    gap: 30px;
  }
  .dvk_ws_cs_post.dvk_ws_cs_style_1 .dvk_ws_cs_post_thumbnail {
    width: 100%;
  }
}

.dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_thumbnail {
  display: flex;
  overflow: hidden;
}
.dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_thumbnail img {
  width: 100%;
  border-radius: inherit;
  transition: all 0.6s ease-in-out;
}
.dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_thumbnail:hover img {
  transform: scale(1.04);
}
.dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_content {
  padding: 36px 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: 0 0 15px 15px;
  border-top: 0;
  margin-top: -16px;
}
.dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_content a:hover {
  color: var(--purple-color);
}
@media (max-width: 767px) {
  .dvk_ws_cs_post.dvk_ws_cs_style_2 .dvk_ws_cs_post_content {
    padding: 36px 15px 20px;
  }
}

.dvk_ws_cs_post_slider_wrapper {
  max-width: 1768px;
  margin: 0 auto;
}

/*-------------------------------------
 Blog Details Page
---------------------------------------*/
.dvk_ws_cs_post_details .dvk_ws_cs_post_meta_wrapper {
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}
.dvk_ws_cs_post_details img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 33px;
}
.dvk_ws_cs_post_details h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 37px;
}
.dvk_ws_cs_post_details h2 {
  font-size: 29px;
  font-weight: 400;
  line-height: 1.21em;
  margin-bottom: 15px;
}
.dvk_ws_cs_post_details p {
  margin-bottom: 30px;
}
.dvk_ws_cs_post_details p:nth-child(4) {
  padding-left: 50px;
}
.dvk_ws_cs_post_details p:nth-child(4):first-letter {
  font-size: 50px;
  font-weight: 600;
  color: var(--heading-color);
  float: left;
  clear: both;
  margin-left: -50px;
  margin-top: 10px;
}
.dvk_ws_cs_post_details article {
  margin-bottom: 30px;
}
.dvk_ws_cs_post_details article p {
  margin-bottom: 13px;
}
.dvk_ws_cs_post_details article p:last-child {
  margin-bottom: 0;
}
.dvk_ws_cs_post_details blockquote {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.67em;
  color: var(--heading-color);
  padding: 60px 0 0 29px;
  position: relative;
  margin-bottom: 33px;
  position: relative;
}
.dvk_ws_cs_post_details blockquote::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--purple-color);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.dvk_ws_cs_post_details blockquote svg {
  color: var(--accent-color);
  position: absolute;
  left: 31px;
  top: 0;
}
.dvk_ws_cs_post_details blockquote small {
  display: block;
  font-size: 18px;
  line-height: 1.67em;
  color: var(--body-color);
  margin-top: 17px;
}
.dvk_ws_cs_post_details button {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--heading-color);
  line-height: 1.67em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dvk_ws_cs_post_details button:hover {
  color: var(--purple-color);
}
.dvk_ws_cs_post_details ul li {
  list-style: disc;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67em;
  margin-bottom: 0;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares .dvk_ws_cs_tags_wrapper {
  display: flex;
  gap: 15px 10px;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares .dvk_ws_cs_socials_wrapper {
  display: flex;
  gap: 15px 28px;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares a:hover {
  color: var(--purple-color);
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares .dvk_ws_cs_post_tags a {
  margin-right: 10px;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares .dvk_ws_cs_post_tags a:last-child {
  margin-right: 0;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares .dvk_ws_cs_social_links a {
  font-size: 15px;
  display: inline-block;
  margin-right: 18px;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_shares .dvk_ws_cs_social_links a:last-child {
  margin-right: 0;
}
.dvk_ws_cs_post_details .dvk_ws_cs_post_btns_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .dvk_ws_cs_post_details h1 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .dvk_ws_cs_post_details h1 {
    font-size: 36px;
  }
  .dvk_ws_cs_post_details h2 {
    font-size: 24px;
  }
  .dvk_ws_cs_post_details p:nth-child(4) {
    padding-left: 0px;
  }
  .dvk_ws_cs_post_details p:nth-child(4):first-letter {
    font-size: 36px;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 5px;
  }
  .dvk_ws_cs_post_details blockquote {
    padding: 60px 0 0 20px;
  }
}

/*--------------------------------------
 Comments
----------------------------------------*/
.dvk_ws_cs_comment_form .dvk_ws_cs_form_field {
  border-color: var(--body-color);
}
.dvk_ws_cs_comment_form .dvk_ws_cs_form_field:focus {
  border-color: var(--purple-color);
}
.dvk_ws_cs_comment_form label {
  color: var(--body-color);
}/*# sourceMappingURL=style.css.map */

/*-------------------------------------
            RESELLING CSS
--------------------------------------*/
  .deployment-box {
    border: 1px solid #666666;
    border-radius: 12px;
    height: 100px; /* fixed consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease;
  }

  .deployment-box p {
    margin: 0;
  }

  .text-custom-yellow {
    color: #FFD000;
  }

  /* optional: subtle hover effect */
  .deployment-box:hover {
    transform: scale(1.03);
  }

  @media (max-width: 767px) {
    .deployment-box {
      height: 90px; /* adjust slightly for mobile */
    }
  }

.reselling-banner {
  background: linear-gradient(  to right,  rgba(18, 26, 35, 0.85),  rgba(18, 26, 35, 0.65),  rgba(148, 245, 240, 0.25)),url('../img/reselling_banner.png?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.text-custom-yellow{
  color: #FFD000;
}
.carousel {
  overflow: visible !important;
}
.carousel-control-prev, .carousel-control-next {
     width: 5%;
     opacity: 1 !important;
}
.carousel-control-prev {
     left: 10px;
}
.carousel-control-next {
    right: 10px;
}
.carousel-control-prev.custom-control, .carousel-control-next.custom-control {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-control-prev.custom-control {
    left: 10px;
}
.carousel-control-next.custom-control {
    right: 10px;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='orange' viewBox='0 0 16 16'%3E%3Cpath d='M11 1L3 8l8 7'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='orange' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E");
}
.btn-custom-yellow {
  background-color: #ffd000;
  border: none;
  color: #000;
}
.btn-custom-yellow:hover {
    background-color: #e6c200; 
    color: #000;
  }
.calculator-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 0 auto;
}
.calculator-header {
  text-align: center;
  font-weight: 700;
  color: #00c1bf;
  margin-bottom: 30px;
  font-size: 1.75rem;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}
.form-control, .form-select {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
  border-color: #00b707;
  box-shadow: 0 0 0 0.25rem rgba(63, 81, 181, 0.25);
}
.input-group-text{
border: 1px solid #ced4da;
border-radius: 8px;
padding: 0.6rem;
font-size: 1.2rem;

}
.quote-box {
color: #3d3c4e;
  padding: 15px 25px;
  min-width: 180px;
  text-align: center;
/*  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
background: linear-gradient(to right, #ffe367, #ffd000);*/
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 8px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(to right, #ffe367, #ffd000);
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 0.25rem 0.75rem rgba(63, 81, 181, 0.4);
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(63, 81, 181, 0.4);
}
.section-title {
  color: #00c1bf;
  font-weight: 600;
}
.storage-switcher {
  display: flex;
  align-items: center;
  background: #f0f2f5;
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 15px;
}
.storage-option {
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.storage-option.active {
  background: #00c1bf;
  color: white;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.data-size-input {
  max-width: 150px;
}
.storage-input-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.unit-toggle {
  display: flex;
  margin: 0 10px;
  background: #f0f2f5;
  border-radius: 50px;
  padding: 2px;
}
.unit-option {
  padding: 5px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}
.unit-option.active {
  background: #00c1bf;
  color: white;
}
.hidden {
  display: none;
}
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}
.was-validated .form-control:invalid ~ .error-message,
.was-validated .form-select:invalid ~ .error-message {
  display: block;
}
.was-validated input:invalid, 
.was-validated select:invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid{
border-color: #00b707;
}

/* Custom phone input styling */
.phone-input-container {
  position: relative;
  margin-bottom: 15px;
}
.iti {
  width: 100%;
}
.iti__selected-flag {
  border-radius: 8px 0 0 8px;
  border-right: 1px solid #ced4da;
}
.iti__flag-container {
  z-index: 5;
}
.iti__country-list {
  position: absolute;
  z-index: 1000;
  width: 300px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scroll */
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
  left: 0 !important; /* Force left alignment */
  right: auto !important; /* Prevent overflow to the right */
}
.iti__country {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add ellipsis for long text */
}
.iti__flag {
  margin-right: 10px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  flex-shrink: 0; /* Prevent flag from shrinking */
}
.iti__country-name {
  flex-grow: 1; /* Allow country name to take available space */
  overflow: hidden;
  text-overflow: ellipsis;
}
.iti__dial-code {
  color: #6c757d;
  margin-left: 10px;
  flex-shrink: 0; /* Prevent dial code from shrinking */
}
#userPhone {
  padding-left: 10px;
}
#userPhone.form-control.is-valid,
.was-validated #userPhone.form-control:valid {
  border-color: #ced4da !important;      /* default gray border */
  background-image: none !important;      /* remove green checkmark */
  box-shadow: none !important;
}
#userPhone::placeholder {
  color: #6c757d;  /* same gray as other inputs */
  opacity: 1;
}
/* Fix for flag display */
.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.20/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.20/img/flags@2x.png");
  }
}

/* Ensure the dropdown doesn't cause horizontal scroll */
.iti__dropdown-content {
  max-width: 100%;
  overflow-x: hidden;
}

/*------------------------------
      SERVICES CSS
-------------------------------*/

.btn-custom-yellow {
  background-color: #ffd000;
  border: none;
  color: #000;
}

.btn-custom-yellow:hover {
  background-color: #e6c200; 
  color: #000;
}




/*------------------------------
    addon css
-------------------------------*/
.video-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.video-container video {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Expand icon button */
.expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
.expand-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Progress bar */
.video-progress {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  z-index: 5;
}
.video-progress-fill {
  height: 100%;
  background: #ffd000;
  border-radius: 10px;
  width: 0%;
}

/* Popup modal */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup.active {
  display: flex;
}

.video-popup-content {
  position: relative;
  background: #000;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 1200px; /* increased from 900px */
  max-height: 85vh;  /* slightly taller */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  animation: popupZoom 0.3s ease;
}

/* Popup video */
.video-popup video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.dvk-card {
  background-color: #121416;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dvk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.feature-image {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.card-text p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* AI Feature Cards Styling */
.ai-card img {
  border-radius: 12px;
  padding: 8px; /* adds padding inside image area */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ai-card img:hover {
  transform: scale(1.05); /* zoom-in effect */
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1); /* subtle glow */
  cursor: pointer;
}

/* Optional: make the zoom smoother across all cards */
.ai-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #0e0e0e;
}
.feature-image {
  display: block;
  width: 100%;
  padding: 1.5rem;              /* space around image */
  border-radius: 10px;          /* rounded corners */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image:hover {
  transform: scale(1.02);  
}

/* Keep cards clean and aligned */
.dvk-card1 {
  overflow: hidden;
  background: linear-gradient(160deg, #3d422a, #2a2c34);
}
.dvk-card {
  overflow: hidden;
  background: #0f0f0f;
}
.dvk-card5 {
  overflow: hidden;
  background: linear-gradient(35deg, #0d333e, #2a2c34);
}
.dvk-card:hover {
  transform: translateY(-4px);
}

.card-text {
  padding-top: 0.75rem;
}

.fusion-img {
  border-radius: 2.2rem !important;
}




/*-----------------------------------
        Services We Serve
-----------------------------------*/

.sector-wrapper{position:relative;height:50rem;width:100%;overflow:hidden;color:#fff;}

/* Background container */
.sector-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Each BG image layer */
.sector-bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.sector-bg .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visible background */
.sector-bg .bg.active {
  opacity: 1;
  z-index: 2;
}


  /* background images that fade between sectors - FIX: Ensure fixed background for better mobile handling */
  .sector-bg .bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-attachment: fixed; /* Ensures background covers viewport and scrolls correctly on mobile */
    opacity:0;
    transition:opacity .8s ease, transform .8s ease;
  }
  .sector-bg .bg.active{opacity:1;transform:scale(1);}

  .sector-bg::after{content:"";position:absolute;inset:0;background:var(--overlay-dark);z-index:2;pointer-events:none;}

  /* grid of sectors (original layout preserved) */
  .sector-grid{position:relative;z-index:10;display:flex;height:100%;}

  .sector-item{
    flex:1;
    padding:50px 30px;
    color:#111;
    cursor:pointer;
    border-right:1px solid rgba(255,255,255,0.12);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    position:relative;
    overflow:visible;
    min-width:0;
  }
  .sector-item:last-child{border-right:none;}

  /* dim the background image for readability */
  .content-overlay{
    z-index:5;
    position:relative;
    color: #fff;
    pointer-events:none;
    margin-top: 50px;
  }

  /* When hovered, fade out the primary visible titles/subtitles */
  .sector-item:hover .primary-header,
  .sector-item:focus .primary-header{
    opacity:0;
    transform: translateY(-5px);
  }

  .primary-header{
    transition: opacity .3s ease, transform .3s ease;
    margin-bottom: 18px;
  }

  .sector-item h5{font-size:26px;margin:0;line-height:1.05;font-weight:700;}
  .sector-item h6{font-size:12px;letter-spacing:2px;text-transform:uppercase;margin:6px 0 0;opacity:.9;}

  /* grey overlay for hovered block */
  .sector-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:background 0.35s ease;
    z-index:3;
    pointer-events:none;
  }
  .sector-item:hover::before,
  .sector-item.active::before{
    background:rgba(0,0,0,0.45);
  }

  
  
  /* White panel that slides down from the top (inside the block) */
  .white-panel{
    position:absolute;
    left:0;
    right:0;
    top:0;
    transform: translateY(-110%);
    background:#fff;
    color:#111;
    padding:22px 28px;
    z-index:7;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  /* Default transition for white panel (will be overridden by specific classes) */
  .white-panel {
      transition: transform 0.45s cubic-bezier(.2,.9,.2,1);
  }

  /* On hover/focus, slide the white panel down to reveal content */
  .sector-item:hover .white-panel,
  .sector-item:focus .white-panel{
    transform: translateY(6px);
  }

  /* Text inside white panel */
  .white-panel .panel-title{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#0b0b0b;
    line-height:1.1;
  }
  .white-panel .panel-subtitle{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:6px 0 0;
    color: #6b6b6b;
  }
  .white-panel .panel-desc{
    display: none;
  }

  /* The content that slides up/down when hovered (the description text) */
  

  .sector-item:hover .inner-content,
  .sector-item:focus .inner-content,
  .sector-item.active .inner-content {
    opacity: 1;
    padding-top: 80px;
  }

  .sector-desc {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  color: rgba(255,255,255,0.92);
}

/* Show only when item is active (hover) */
.sector-item.active .sector-desc {
  opacity: 1;
  transform: translateY(0px);
}


  /* --- UNIQUE TRANSITION EFFECTS FOR EACH SECTOR --- */

  .sector-item.retail-effect .white-panel { transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .sector-item.retail-effect .primary-header { transition: opacity .25s ease, transform .25s ease; }

  .sector-item.energy-effect .white-panel { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .sector-item.energy-effect .primary-header { transition: opacity .5s ease, transform .5s ease; }

  .sector-item.ecom-effect .white-panel { transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .sector-item.ecom-effect .primary-header { transition: opacity .4s ease-out, transform .4s ease-out; }

  .sector-item.pharma-effect .white-panel { transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .sector-item.pharma-effect .primary-header { transition: opacity .6s ease-in-out, transform .6s ease-in-out; }

  .sector-item.aviation-effect .white-panel { transition: transform 0.4s ease-in-out; }
  .sector-item.aviation-effect .primary-header { transition: opacity .3s ease-in-out, transform .3s ease-in-out; }

  .sector-item.insurance-effect .white-panel { transition: transform 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
  .sector-item.insurance-effect .primary-header { transition: opacity .4s linear, transform .4s linear; }


  /* --- MOBILE RESPONSIVENESS FIXES (900px breakpoint) --- */
  @media (max-width:900px){
    .sector-wrapper{height:780px;}
    .sector-grid{flex-direction:column;}
    .sector-item{padding:24px;border-right:none;border-bottom:1px solid rgba(255,255,255,0.08);}
    .sector-item h5{font-size:20px;}
    .white-panel{padding:18px;transform:translateY(-120%);}
    .sector-item:hover .white-panel{transform:translateY(4px);}
    .content-overlay{margin-top: 30px;}
    .sector-item:hover .inner-content,
    .sector-item.active .inner-content {padding-top: 80px;}

    /* Ensure content flows nicely in column layout */
    .sector-item{min-height: 130px;} 
  }

  /* Dashboard image container */
.dashboard-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  z-index: 9999!important; /* ABOVE white panel + text */
  pointer-events: none;
}

/* Right-side placement */
.dashboard-img[data-side="right"] {
  right: -580px;   /* Adjust if needed */
  width: 30rem;
}

/* Left-side placement */
.dashboard-img[data-side="left"] {
  left: -580px;    /* Adjust if needed */
  width: 30rem;
}

/* Image styling */
.dashboard-img img {
  width: 30rem;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.35));
  border-radius: 10px;
}

/* Show dashboard image when sector is active */
.sector-item.active .dashboard-img {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}


/*--------------------------------
          VIDEO STYLES
--------------------------------*/
 
/* Update dvk-wip-hero height */
.dvk-wip-hero {
    position: relative;
    width: 100%;
    height: 70vh; /* Set a specific height */
    overflow: hidden;
    margin-top: 95px;
    z-index: 1;
}

/* Background video */
.dvk-wip-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
	opacity:0.9;
    z-index: 0;
}

/* Center wrapper - Use transform for vertical centering */
.dvk-wip-wrapper {
    position: absolute; /* Changed to absolute to use top/transform relative to hero */
    text-align: center;
    width: 100%;
    top: 10%;
    transform: translateY(-50%);
    margin-top: 0; /* No longer needed */
    z-index: 2; /* Ensure it's above the video */
}

/* Gradient text styling */
.dvk-wip-text {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 4px;
    background:linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;

    /* Mask animation */
    animation: dvk-reveal 3s ease-in backwards;
}
 
/* Reveal mask animation (Corrected for Left-to-Right) */
@keyframes dvk-reveal {
    0% {
        /* clip-path: inset(top right bottom left); */
        /* Start fully hidden by clipping 100% from the RIGHT side */
        clip-path: inset(0 100% 0 0); 
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        /* Fully revealed */
        clip-path: inset(0 0 0 0); 
        opacity: 1;
    }
}