@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("/wp-content/themes/doday/assets/fonts/Inter/Inter-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter SemiBold";
  src: url("/wp-content/themes/doday/assets/fonts/Inter/Inter-SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Bold";
  src: url("/wp-content/themes/doday/assets/fonts/Inter/Inter-Bold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Black";
  src: url("/wp-content/themes/doday/assets/fonts/Inter/Inter-Black.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/wp-content/themes/doday/assets/fonts/Work_Sans/WorkSans-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSerif Light";
  src: url("/wp-content/themes/doday/assets/fonts/Noto_Serif/static/NotoSerif-Light.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSerif Regular";
  src: url("/wp-content/themes/doday/assets/fonts/Noto_Serif/static/NotoSerif-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSerif SemiBold";
  src: url("/wp-content/themes/doday/assets/fonts/Noto_Serif/static/NotoSerif-SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSerif Bold";
  src: url("/wp-content/themes/doday/assets/fonts/Noto_Serif/static/NotoSerif-Bold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSerif Black";
  src: url("/wp-content/themes/doday/assets/fonts/Noto_Serif/static/NotoSerif-Black.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat Regular";
  src: url("/wp-content/themes/doday/assets/fonts/Caveat/Caveat-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("/wp-content/themes/doday/assets/fonts/Bahnschrift/Bahnschrift.ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  color: #353535;
  background: #FFF2BB;
  font-family: "Bahnschrift";
  font-size: 20px;
  line-height: 30px;
  padding: 20px;
}

h1, h2, h3 {
  color: #353535;
}

h4, h5, h6 {
  color: #353535;
}

h1 {
  line-height: 110%;
  font-size: 110px;
  font-family: "NotoSerif Light";
}

h2 {
  font-family: "NotoSerif Light";
  line-height: 1;
  font-size: 76px;
}

h3 {
  font-family: "NotoSerif Light";
  line-height: 1;
  font-size: 66px;
}

h4 {
  font-family: "NotoSerif Light";
  line-height: 1;
  font-size: 48px;
}

h5 {
  font-family: "NotoSerif Light";
  line-height: 20px;
  font-size: 32px;
}

h6 {
  font-family: "NotoSerif Light";
  line-height: 1;
  font-size: 28px;
}

p {
  line-height: 30px;
  color: #353535;
  font-family: "Bahnschrift";
}

strong {
  font-family: "NotoSerif SemiBold";
}

.container {
  max-width: 1400px;
}

a {
  position: relative;
  text-decoration: none;
  color: #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: #E30B5D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.is_onmobile {
  display: none;
}

.no_mobile {
  display: contents;
}

.right_side {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

svg {
  -webkit-background-clip: text;
}

header {
  padding: 10px 15px;
}
header .custom-logo {
  width: 90px;
  height: auto;
}

.section_overlay {
  background-color: rgba(16, 16, 16, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-filter: contrast(200%);
          filter: contrast(200%);
}

select {
  font-family: Verdana;
}

.cta_btn {
  padding: 10px 25px;
  background: #FFA200;
  font-size: 16px;
  border-radius: 4px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: "NotoSerif SemiBold";
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  overflow: hidden;
  display: block;
  display: inline-block;
}
.cta_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: glow-slide 5s infinite;
          animation: glow-slide 5s infinite;
  z-index: 2;
}
@-webkit-keyframes glow-slide {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
@keyframes glow-slide {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.cta_btn:hover {
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #E30B5D;
}

.cta_btn_transparent {
  padding: 10px 30px;
  background: none;
  border: 1px solid #FFA200;
  font-size: 16px;
  border-radius: 4px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: "NotoSerif SemiBold";
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
  color: #FFA200;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}
.cta_btn_transparent:hover {
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #E30B5D;
}

#wp-admin-bar-wp-logo {
  display: none;
}

.purchase-button {
  color: #fff;
  font-size: 24px !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0 auto;
  background: #E30B5D;
  font-weight: 600 !important;
  padding: 20px 40px !important;
  font-family: "Proxima Nova Extra Condensed Black Italic";
}
.purchase-button:hover {
  background: #E30B5D;
}

.order_section {
  margin-bottom: 100px;
}
.order_section .order_content {
  margin-bottom: 50px;
}
.order_section .order_form {
  background: #FFA200;
  border-radius: 19px;
  padding: 50px 65px;
}
.order_section .order_form label {
  color: #fff;
}
.order_section .order_form h4 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
}
.order_section .order_form input[type=text] {
  margin-bottom: 25px !important;
  border: 1px solid #B3B3B3;
  border-radius: 20px;
  padding: 10px 20px !important;
  color: #B3B3B3;
}
.order_section .order_form .gform_button {
  padding: 8px 30px;
  background: #E30B5D;
  border-radius: 30px;
  color: #FFA200;
  border: 0;
  margin: 0 auto;
  font-weight: 600;
}
.order_section .order_form .gform_button:hover {
  background: #E30B5D;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.order_section .order_form .gfield_radio {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.order_section .order_form .gfield_radio div {
  display: inline-block;
  margin-right: 20px;
}
.order_section .order_form .gfield_radio .gfield-choice-input + label {
  max-width: none;
}
.order_section .order_form .gform_fileupload_rules, .order_section .order_form .gform_drop_instructions {
  display: none;
}
.order_section .order_form #field_2_8, .order_section .order_form #field_2_9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 24px;
  padding: 10px 20px !important;
  text-align: left;
  margin-bottom: 25px;
}
.order_section .order_form #field_2_8 .gfield_description, .order_section .order_form #field_2_9 .gfield_description {
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
}
.order_section .order_form .ginput_container_fileupload input #file-upload-button {
  background: #333 !important;
  padding: 20px !important;
  display: block;
}
.order_section .order_form .gform_drop_area {
  padding: 0;
  margin-bottom: 0;
}
.order_section .order_form .gform_drop_area button {
  background: url(/wp-content/themes/doday/assets/images/Download.png) 50% 50% no-repeat;
  font-size: 0;
  border: 0;
  padding: 10px 10px;
  width: 10pxpx;
  height: 10px;
}

.read_more_link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  background: #FF0061;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  border-radius: 99px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: "NotoSerif Light";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  overflow: hidden;
  border-bottom: 4px solid #AB0B48;
  display: block;
  position: relative;
}
.read_more_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: glow-slide 5s infinite;
          animation: glow-slide 5s infinite;
  z-index: 2;
}
@keyframes glow-slide {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.read_more_link:hover {
  background: #E30B5D;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.search_form_panel .read_more_link {
  margin-right: 20px;
  margin-top: 40px;
}
.search_form_panel .read_more_link::after {
  content: none !important;
}
.search_form_panel .read_more_link::before {
  font-family: bootstrap-icons;
  content: "\f12f";
  margin-right: 10px;
  top: 3px;
  position: relative;
}

.lost_page > .container {
  margin-top: 50px;
  margin-bottom: 100px;
}

.lost_page h1 {
  font-size: 300px;
  color: #DEDEDE;
  font-weight: 900;
  text-align: center;
  line-height: 363px;
}
.lost_page h2 {
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #353535;
  line-height: 44px;
  margin-bottom: 50px;
}
.lost_page .cta_btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.lost_page .lost_search {
  position: relative;
  padding: 60px 0 80px 0;
  background: #E30B5D;
  border-bottom: 10px solid #FFC400;
}
.lost_page .lost_search h6 {
  color: #FAFAFA;
  margin-bottom: 50px;
  font-weight: 300;
}
.lost_page .lost_search form {
  position: relative;
}
.lost_page .lost_search form label,
.lost_page .lost_search form input[type=search] {
  width: 100%;
}
.lost_page .lost_search form input[type=submit] {
  right: 20px;
}

.pum-theme-cutting-edge .pum-container {
  background-color: #39192A !important;
  border: 0 !important;
  padding: 60px !important;
  border-radius: 30px !important;
}
.pum-theme-cutting-edge .pum-title {
  color: #DD2228 !important;
  text-align: center !important;
  text-shadow: 0px 0px 0px rgba(2, 2, 2, 0.23);
  font-family: "Poppins Bold" !important;
  font-size: 36px !important;
  line-height: 42px !important;
  margin-bottom: 30px !important;
}
.pum-theme-cutting-edge p {
  color: #fff;
  margin-bottom: 20px;
}
.pum-theme-cutting-edge .gform_wrapper.gravity-theme .gform_footer input {
  border-radius: 30px;
  color: #fff;
  margin: 0 auto;
  background: #DD2228;
  border: 0;
  padding: 10px 40px;
}
.pum-theme-cutting-edge .gform-body input,
.pum-theme-cutting-edge .gform-body textarea,
.pum-theme-cutting-edge .gform-body select {
  border: 0;
  padding: 10px 20px !important;
  border-radius: 20px;
  font-size: 15px;
  color: #333;
  background: #fff;
  font-family: Verdana, Tahoma, sans-serif;
  margin-bottom: 10px !important;
}
.pum-theme-cutting-edge .pum-close {
  color: #fff !important;
  background: #DD2228 !important;
  border-radius: 50% !important;
  height: 31px !important;
  width: 24px !important;
  right: 20px !important;
  top: 20px !important;
}

.header_area {
  z-index: 9999;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
}
.header_area .site-header {
  max-width: 100%;
  width: 100%;
  padding: 0 60px;
}

.header_search.no_mobile {
  display: block;
}

.header_area.header_sticky {
  position: fixed !important;
  top: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0) !important;
}
.header_area.header_sticky .custom-logo {
  width: 90px;
}

.mob_menu .header_search {
  max-width: none;
  position: relative;
  margin-top: 30px;
}
.mob_menu .header_search a {
  background: #FFA200;
  margin: 0;
  padding: 15px 30px;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
.mob_menu .header_search a::before {
  font-family: bootstrap-icons;
  content: "";
  background-image: url(/wp-content/themes/doday/assets/images/icons/Chat.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  position: relative;
  font-weight: 300;
  overflow: hidden;
}

.site-navigation {
  width: auto;
}
.site-navigation .menu-icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  float: left;
  margin-right: 15px;
  background-size: contain;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}
.site-navigation a .menu-image {
  display: block;
  width: 60px;
  height: 60px;
  float: left;
}
.site-navigation .shop_btn {
  display: inline-block;
  position: relative;
  margin-left: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  background: #FF0061;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  border-radius: 99px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: "NotoSerif Light";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  overflow: hidden;
  border-bottom: 4px solid #AB0B48;
}
.site-navigation .shop_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: glow-slide 5s infinite;
          animation: glow-slide 5s infinite;
  z-index: 2;
}
@keyframes glow-slide {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.site-navigation .shop_btn:hover {
  background: #E30B5D;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.site-navigation .shop_btn:hover > a {
  color: #E30B5D;
}
.site-navigation .shop_btn a {
  color: #353535;
  font-weight: 600;
}
.site-navigation .shop_btn a::after {
  font-family: bootstrap-icons;
  content: "\f138";
  margin-left: 10px;
  top: 3px;
  position: relative;
}
.site-navigation .shop_btn a:hover {
  border-bottom: 0;
  padding-bottom: 0;
  color: #E30B5D;
}
.site-navigation ul {
  margin-bottom: 0;
  position: relative;
  margin-left: 2em;
  padding-left: 0;
  text-align: center;
}
.site-navigation ul li {
  display: inline-block;
  padding: 5px 10px;
  position: relative;
  margin-right: 0px;
}
.site-navigation ul li a {
  text-decoration: none;
  color: #353535;
  font-family: "NotoSerif Bold";
  font-size: 16px;
  padding-bottom: 10px;
}
.site-navigation ul li a:hover {
  border-bottom: 1px dotted #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 5px;
  color: #FFA200;
  border-color: #FFA200;
  padding-bottom: 10px;
}
.site-navigation ul li a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFA200;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.site-navigation ul li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-navigation ul .sub-menu {
  text-align: left;
  position: absolute;
  left: 0;
  top: -500px;
  opacity: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFC400;
  padding: 0;
  margin: 0;
  z-index: -1;
}
.site-navigation ul .sub-menu li {
  display: block;
  padding: 0;
  margin: 0;
}
.site-navigation ul .sub-menu li a {
  color: #353535;
  display: initial;
  padding: 10px 20px;
  display: block;
}
.site-navigation ul .sub-menu li a:hover {
  color: #353535;
  background: #FD6A00;
}
.site-navigation ul .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #353535;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.site-navigation ul .sub-menu li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-navigation ul > .menu-item-has-children .sub-menu .menu-item-has-children::after {
  content: "";
}
.site-navigation ul > .menu-item-has-children:hover .sub-menu {
  top: 35px;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.service-menu ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.service-menu ul a {
  color: #353535;
  font-family: "Bahnschrift";
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-menu ul a:hover {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.one_column .sub-menu {
  -webkit-column-count: 1 !important;
     -moz-column-count: 1 !important;
          column-count: 1 !important;
  gap: 0px !important;
}

.navbar-toggler-icon {
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
  position: absolute;
  right: 40px;
  top: 25px;
  z-index: 99999;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13, 64, 114, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: 70%;
}

.header_sticky .navbar-toggler-icon {
  top: 15px;
}

.mob_menu {
  background: rgba(0, 0, 0, 0.9019607843);
  padding: 40px;
  width: 100%;
  position: fixed;
  height: 100%;
  overflow: scroll;
  padding-top: 100px;
  top: 0;
  left: 0;
  position: fixed;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
}
.mob_menu ul {
  padding: 0;
}
.mob_menu ul li {
  display: block;
  padding: 15px 15px;
  list-style: none;
  position: relative;
}
.mob_menu ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Bahnschrift";
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}
.mob_menu ul li a .description {
  display: block;
  color: #808080;
  margin-top: 10px;
  font-size: 28px;
  line-height: 30px;
  font-weight: 300;
  font-family: Verdana, Tahoma, sans-serif;
}
.mob_menu ul .shop_btn {
  float: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #fff;
  padding: 15px 30px;
  font-weight: 600;
  background: #E30B5D;
  border-radius: 30px;
}
.mob_menu ul .shop_btn a {
  color: #FAFAFA;
}
.mob_menu ul .sub-menu {
  margin-left: 15px;
}
.mob_menu ul .sub-menu li a {
  font-weight: 400;
  font-size: 16px;
}
.mob_menu ul .mega_menu a {
  color: #FAFAFA;
}
.mob_menu ul .mega_menu .menu-item-has-children::before {
  content: none;
}
.mob_menu ul .mega_menu .menu-item-has-children > a {
  color: #E30B5D;
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
}

.mob_menu .menu-main-menu-container .menu li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.mob_menu .menu > .menu-item-has-children::after {
  content: "\f282";
  width: 20px;
  height: 20px;
  display: block;
  font-family: bootstrap-icons;
  float: right;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 10px;
  color: #fff;
  top: 14px;
  position: absolute !important;
  left: 25vh;
  z-index: 9999;
  cursor: pointer;
}
.mob_menu .menu > .menu-item-has-children:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
  content: "\f282";
  color: #fff;
  width: 20px;
  height: 20px;
  display: block;
  font-family: bootstrap-icons;
  position: relative;
  left: 25vh;
  cursor: pointer;
}
.mob_menu .menu > .menu-item-has-children .menu-trigger {
  width: 20px;
  height: 20px;
  display: block;
  float: right;
  margin-left: 10px;
  top: 14px;
  position: absolute !important;
  left: 25vh;
  z-index: 99999;
  cursor: pointer;
}

.pagination {
  margin-top: 30px;
}
.pagination .nav-links {
  margin: 0 auto;
}
.pagination .nav-links .page-numbers {
  color: #333;
  text-decoration: none;
  margin-right: 15px;
  font-size: 16px;
}
.pagination .nav-links .page-numbers:hover {
  color: #E30B5D;
}
.pagination .nav-links .page-numbers .current {
  color: #E30B5D;
}

.header_search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_search form input[type=search] {
  padding: 5px 20px;
  padding-right: 40px;
  border: 0;
  border-radius: 20px;
  font-size: 14px;
}
.header_search form input[type=submit] {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 45px;
  font-size: 0;
  background: url(/wp-content/themes/doday/assets/images/search.png) 50% 50%;
  background-size: cover;
  border: 0;
}

.site-footer {
  background: #FFC400;
  padding: 45px;
  border-radius: 50px;
}
.site-footer .container-fluid > img {
  width: 100%;
}
.site-footer .container-fluid {
  padding: 0;
}

footer {
  font-family: "Bahnschrift";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}
footer .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
footer .footer_copyright_menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
footer .footer_copyright_menu ul a {
  font-size: 16px;
  font-family: "Bahnschrift";
  color: #353535;
  text-decoration: none;
}
footer .footer_copyright_menu ul a:hover {
  color: #333;
  text-decoration: underline;
}
footer .footer-logo {
  margin-bottom: 15px;
  display: block;
}
footer .footer-logo img {
  width: 70px;
  height: auto;
}
footer .site_name {
  color: #fff;
}
footer h3 {
  color: #fff;
  font-size: 28px;
  line-height: 22px;
  margin-bottom: 25px;
  margin-top: 10px;
  text-transform: uppercase;
}
footer .site-branding div {
  margin-bottom: 10px;
}
footer .site-branding div div, footer .site-branding div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer_nav {
  background: #FFF2BB;
  border-radius: 30px;
  border-bottom: 5px solid #FD6A00;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer_nav a,
footer .footer_nav p {
  color: #FD6A00;
  font-family: "Caveat Regular";
  margin: 0;
  font-size: 40px;
}
footer .footer_nav .company-physical-adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer_nav .physical_adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer_nav .physical_adress i {
  color: #FD6A00;
  font-size: 30px;
  margin-right: 10px;
}
footer .footer_nav .social_links a {
  text-decoration: underline;
}
footer .footer_nav .social_links a:hover {
  color: #FD6A00;
}
footer .company-info,
footer .social_links {
  position: relative;
  padding: 0 25px;
}
footer .company-info:not(:last-child),
footer .social_links:not(:last-child) {
  border-right: 2px solid rgba(253, 105, 0, 0.1843137255);
}
@media (max-width: 768px) {
  footer .footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  footer .company-info,
  footer .social_links {
    padding: 10px 0;
    border-right: none;
  }
}

.hero-section {
  position: relative;
  margin-bottom: 50px;
}
.hero-section .hero-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 200px;
  min-height: 45vw;
  border-radius: 50px;
  position: relative;
}
.hero-section .hero-container .container {
  z-index: 1;
  position: relative;
}
.hero-section .hero-container .container h1 {
  color: #353535;
  margin-bottom: 60px;
  position: relative;
}
.hero-section .hero-container .container h1 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  display: block;
  position: relative;
}
.hero-section .hero-container .container h1 .highlight::after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_14_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.hero-section .hero-container .container h1::before {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_0_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 240px;
  height: 200px;
  display: block;
  position: absolute;
  left: 0px;
  top: 200px;
}
.hero-section .hero-container .container .hero-content {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 50px;
  max-width: 460px;
}
.hero-section .hero-container .container .hero-content p {
  color: #353535;
  font-size: 20px;
  line-height: 30px;
  font-family: "Bahnschrift";
}
.hero-section .timer_bar {
  padding: 45px;
  background: #FFF2BB;
  border-radius: 30px;
  border-bottom: 4px solid #FD6A00;
  position: relative;
  max-width: 944px;
  margin: 0 auto;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero-section .timer_bar .timer_bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section .timer_bar .timer_bar-text {
  font-family: "Caveat Regular";
  font-size: 32px;
  line-height: 1.5;
  width: 50%;
  background: url(/wp-content/themes/doday/assets/images/icons/flame.png) 0 50% no-repeat;
  padding-left: 70px;
}
.hero-section .timer_bar .timer_bar-countdown {
  width: 50%;
  background: url(/wp-content/themes/doday/assets/images/icons/sign.png) 0 50% no-repeat;
  padding-left: 90px;
  background-size: contain;
}
.hero-section .timer_bar .timer_bar-digits,
.hero-section .timer_bar .timer_bar-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero-section .timer_bar .js-timer-hours,
.hero-section .timer_bar .js-timer-minutes,
.hero-section .timer_bar .js-timer-seconds {
  color: #FD6A00;
  font-size: 72px;
  margin-bottom: 20px;
  font-family: "NotoSerif Light";
}
.hero-section .timer_bar .timer_bar-separator {
  color: #FFA200;
  font-size: 72px;
}

.hero-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hero-form-modal.active {
  opacity: 1;
  visibility: visible;
}
.hero-form-modal.active .hero-form-modal-content {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.hero-form-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.hero-form-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
  background: #FFC107;
  border-radius: 30px;
  max-width: 600px;
  width: 90%;
  padding: 40px 30px;
  max-height: none;
  overflow-y: auto;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10000;
}
@media (max-width: 768px) {
  .hero-form-modal-content {
    padding: 40px 30px;
    max-width: 95%;
  }
}
.hero-form-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  font-size: 50px;
  color: #E91E63;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  z-index: 10001;
}
.hero-form-modal-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #C2185B;
}
.hero-form-modal-body h3 {
  color: #353535;
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.2;
  text-align: center;
}
.hero-form-modal-body h3 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 48px;
}
@media (max-width: 768px) {
  .hero-form-modal-body h3 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form p {
  margin: 0;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #353535;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text],
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email],
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel],
.hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background: #FFF9E6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text]:focus,
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email]:focus,
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel]:focus,
.hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea:focus {
  outline: none;
  background: #fff;
  -webkit-box-shadow: 0 0 0 2px #FD6A00;
          box-shadow: 0 0 0 2px #FD6A00;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text]::-webkit-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email]::-webkit-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel]::-webkit-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea::-webkit-input-placeholder {
  color: #999;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text]::-moz-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email]::-moz-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel]::-moz-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea::-moz-placeholder {
  color: #999;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text]:-ms-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email]:-ms-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel]:-ms-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea:-ms-input-placeholder {
  color: #999;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text]::-ms-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email]::-ms-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel]::-ms-input-placeholder, .hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea::-ms-input-placeholder {
  color: #999;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text]::placeholder,
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email]::placeholder,
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel]::placeholder,
.hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea::placeholder {
  color: #999;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: vertical;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=submit] {
  background: #E91E63;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Bahnschrift";
  font-weight: 600;
  width: 100%;
  border-bottom: 4px solid #AB0B48;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=submit]:hover {
  background: #C2185B;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
          box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #d32f2f;
  font-size: 14px;
  margin-top: 5px;
}
.hero-form-modal-body .hero-form-wrapper .wpcf7-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.hero-section.single-post .hero-container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 150px;
  padding-bottom: 150px;
}
.hero-section.single-post .hero-container .container {
  height: 100%;
}
.hero-section.single-post .hero-container .container .row {
  height: 100%;
}
.hero-section.single-post .hero-container .container .row .single-post-hero-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.hero-section.single-post .hero-container .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.two_columns_section {
  margin-bottom: 100px;
  overflow: hidden;
}
.two_columns_section h2 {
  margin-bottom: 50px;
  color: #353535;
}
.two_columns_section h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.two_columns_section .section_two_columns {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.two_columns_section .section_two_columns .col-lg-6 {
  width: 48%;
}
.two_columns_section .section_two_columns .two_columns_image {
  position: relative;
}
.two_columns_section .section_two_columns .two_columns_image .play_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.two_columns_section .section_two_columns .two_columns_image .play_video:hover .play_btn {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
          transform: translateX(-50%) translateY(-50%) scale(1.1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.two_columns_section .section_two_columns .two_columns_image .play_video .play_btn {
  width: 65px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0.8;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.two_columns_section .section_two_columns .two_columns_image img {
  width: 100%;
  height: 22vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.two_columns_section .section_two_columns .two_columns_image .icon {
  width: 120px;
  height: 120px;
  position: absolute;
  z-index: 5;
  -o-object-fit: contain;
     object-fit: contain;
  left: -20px;
  top: 0px;
}
.two_columns_section .section_two_columns .two_columns_image.right_side .icon {
  right: 20px;
  left: auto;
  top: -40px;
}
.two_columns_section .section_two_columns .two_columns_image.fit_image img {
  height: auto;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
.two_columns_section .section_two_columns .two_columns_content .title_content {
  font-family: "Caveat Regular";
  color: #353535;
  font-size: 40px;
  margin-bottom: 50px;
}
.two_columns_section .section_two_columns .two_columns_content .title_content h3, .two_columns_section .section_two_columns .two_columns_content .title_content h4, .two_columns_section .section_two_columns .two_columns_content .title_content h5, .two_columns_section .section_two_columns .two_columns_content .title_content h6 {
  color: #353535;
}
.two_columns_section .section_two_columns .two_columns_content h4 {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 40px;
}
.two_columns_section .section_two_columns .two_columns_content .content {
  margin-bottom: 50px;
  font-family: "Bahnschrift";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.two_columns_section.two_columns_details_section {
  overflow: hidden;
}
.two_columns_section.two_columns_details_section .content {
  margin-bottom: 30px;
}
.two_columns_section.two_columns_details_section .content p:last-child {
  margin-bottom: 0;
}
.two_columns_section.two_columns_details_section .content_list {
  margin-bottom: 30px;
  padding-left: 0;
}
.two_columns_section.two_columns_details_section .content_list li {
  list-style: none;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.two_columns_section.two_columns_details_section .content_list li::before {
  content: "";
  display: block;
  margin-right: 20px;
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/doday/assets/images/icons/cheked.svg) 50% 50% no-repeat;
  background-size: cover;
}
.two_columns_section.two_columns_details_section .cta_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.two_columns_section.two_columns_details_section .two_columns_icons {
  text-align: center;
  background: #FFF2BB;
  padding: 60px;
  border: 1px solid #E5E8ED;
  -webkit-box-shadow: 0px 20px 30px #d7d7d7;
          box-shadow: 0px 20px 30px #d7d7d7;
}
.two_columns_section.two_columns_details_section .two_columns_icons .two_columns_icons_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 50px;
}
.two_columns_section.two_columns_details_section .two_columns_icons .two_columns_icons_grid .two_columns_icons_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  cursor: pointer;
}
.two_columns_section.two_columns_details_section .two_columns_icons .two_columns_icons_grid .two_columns_icons_item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.two_columns_section.two_columns_details_section .two_columns_icons .two_columns_icons_grid .two_columns_icons_item h4 {
  margin-bottom: 15px;
}
.two_columns_section.two_columns_details_section .two_columns_icons .two_columns_icons_grid .two_columns_icons_item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.two_columns_section.two_columns_details_section .two_columns_icons .subtitle {
  margin-bottom: 30px;
}
.two_columns_section.two_columns_details_section .two_columns_icons .subdescription {
  margin-bottom: 0;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}
.video-modal .video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: slideIn 0.3s ease-in-out;
          animation: slideIn 0.3s ease-in-out;
}
.video-modal .video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 10000;
  line-height: 1;
}
.video-modal .video-modal-close:hover {
  color: #FD6A00;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.video-modal .video-modal-body {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-modal .video-modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .video-modal .video-modal-content {
    width: 95%;
  }
  .video-modal .video-modal-close {
    top: -35px;
    font-size: 35px;
  }
}
.highlighted_articles {
  margin-top: 50px;
  margin-bottom: 100px;
  position: relative;
}
.highlighted_articles h2 {
  font-size: 66px;
  line-height: 1;
  margin-bottom: 30px;
}
.highlighted_articles .more_posts {
  text-decoration: none;
  color: #E30B5D;
  margin-left: 50px;
  margin-bottom: 30px;
  font-family: "Brother 1816";
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
}
.highlighted_articles .more_posts::after {
  content: "\f138";
  color: #E30B5D;
  display: block;
  font-family: bootstrap-icons;
  float: right;
  margin-left: 10px;
}
.highlighted_articles .more_posts:hover {
  color: #E30B5D;
}
.highlighted_articles .more_posts:hover::after {
  color: #E30B5D;
}
.highlighted_articles .articles-item {
  margin-bottom: 20px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.highlighted_articles .articles-item:hover .articles-content {
  background: #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.highlighted_articles .articles-item:hover h4 a {
  color: #FFA200;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.highlighted_articles .articles-item:hover a,
.highlighted_articles .articles-item:hover .content {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.highlighted_articles .articles-item .articles-content {
  padding: 40px 30px 30px;
}
.highlighted_articles .articles-item a {
  text-decoration: none;
  color: #FFA200;
}
.highlighted_articles .articles-item h4 {
  margin-bottom: 20px;
}
.highlighted_articles .articles-item h4 a {
  color: #353535;
}
.highlighted_articles .articles-item img {
  width: 100%;
  height: 16vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.highlighted_articles .articles-item .post-meta {
  margin-bottom: 15px;
  font-size: 14px;
  color: #9A9CA5;
}
.highlighted_articles .articles-item .post-meta a {
  color: #9A9CA5;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.highlighted_articles .articles-item .post-meta a:hover {
  color: #FFA200;
}
.highlighted_articles .articles-item .post-meta .separator {
  margin: 0 15px;
}
.highlighted_articles .articles-item .content {
  margin-bottom: 0px;
}
.highlighted_articles .articles-item .content p {
  margin-bottom: 0px;
}
.highlighted_articles .articles-item .meta_data {
  font-family: "Bahnschrift";
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 10px;
  display: block;
}
.highlighted_articles .tns-controls button {
  border: 0;
  border-radius: 50%;
  background: #E30B5D;
  font-size: 0;
  width: 40px;
  height: 40px;
}
.highlighted_articles .tns-controls [data-controls=prev] {
  position: absolute;
  top: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  right: 20vw;
}
.highlighted_articles .tns-controls [data-controls=prev]::after {
  content: "\f284";
  color: #fff;
  display: block;
  font-family: bootstrap-icons;
  font-size: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.highlighted_articles .tns-controls [data-controls=next] {
  position: absolute;
  top: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  right: 15vw;
}
.highlighted_articles .tns-controls [data-controls=next]::after {
  content: "\f285";
  color: #fff;
  display: block;
  font-family: bootstrap-icons;
  font-size: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.highlighted_articles [data-action=stop],
.highlighted_articles [data-action=start] {
  display: none !important;
}

.blog-banner {
  position: relative;
  margin-bottom: 50px;
}

.banner-inner {
  margin-bottom: 50px;
}
.banner-inner img {
  width: 80%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -100px;
  z-index: 2;
  position: relative;
}

.blog-details-area .container {
  margin-bottom: 100px;
}
.blog-details-area .container .blog-details-content {
  position: relative;
}
.blog-details-area .container h2 {
  margin-top: 50px;
  margin-bottom: 30px;
}
.blog-details-area .container h3 {
  margin-bottom: 30px;
}
.blog-details-area .container p {
  margin-bottom: 30px;
}
.blog-details-area .container p img {
  width: 100%;
  height: auto;
}
.blog-details-area .container .wp-block-image {
  margin: 80px 0;
  width: calc(100% + 8vw);
  translate: -4vw;
}
.blog-details-area .container .wp-block-image img {
  height: auto;
}
.blog-details-area .container .wp-block-quote {
  margin-top: 50px;
  margin-bottom: 30px;
  font-family: "Bahnschrift";
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-style: normal;
}
.blog-details-area .container .wp-block-quote::before {
  content: "\f6b0";
  font-family: bootstrap-icons;
  color: #FFA200;
  font-size: 48px;
  line-height: 1;
}
.blog-details-area .container .wp-block-quote p em {
  font-size: 48px;
  line-height: 1;
  font-style: normal;
}
.blog-details-area .container ul {
  padding-left: 1em;
}
.blog-details-area .container ul li {
  list-style: none;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-details-area .container ul li::before {
  content: "";
  display: block;
  margin-right: 20px;
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/doday/assets/images/icons/cheked.svg) 50% 50% no-repeat;
  background-size: cover;
}
.blog-details-area .social-share-block {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}
.blog-details-area .share-container {
  gap: 15px;
}
.blog-details-area .share-label {
  font-weight: 800;
  color: #353535;
  font-size: 22px;
}
.blog-details-area .social-icons {
  gap: 10px;
}
.blog-details-area .social-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-details-area .social-icon i {
  font-size: 24px;
  color: #666666;
}
.blog-details-area .social-icon i:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-decoration: none;
  color: #FFA200;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-sharing-section {
  margin-top: 50px;
}
.social-sharing-section .social-sharing a {
  color: #E30B5D;
  text-decoration: none;
  font-size: 21px;
  margin-right: 10px;
}
.social-sharing-section .social-sharing a:hover {
  color: #000;
}

.edit_provider_info_section .acf-fields > .acf-tab-wrap .acf-tab-group li a {
  border-radius: 10px 10px 0 0;
  padding: 10px 30px;
  font-size: 18px;
  font-family: "NotoSerif Bold";
}
.edit_provider_info_section form input,
.edit_provider_info_section form textarea,
.edit_provider_info_section form select {
  padding: 10px 20px !important;
  border-radius: 10px;
  border: 1px solid #b5b5b5;
}
.edit_provider_info_section form label {
  font-family: "NotoSerif Bold";
}
.edit_provider_info_section .acf-field-radio.acf-field-63b5b38102495 li label {
  font-size: 28px;
}
.edit_provider_info_section .acf-checkbox-list li,
.edit_provider_info_section .acf-radio-list li {
  display: inline-block;
  margin-right: 20px;
}
.edit_provider_info_section .acf-checkbox-list li label,
.edit_provider_info_section .acf-radio-list li label {
  font-size: 18px;
}
.edit_provider_info_section a {
  color: #8c52ff;
  font-size: 16px;
  text-decoration: none;
}
.edit_provider_info_section a:hover {
  text-decoration: underline;
}
.edit_provider_info_section .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
  height: 40px;
  padding: 5px 20px;
}
.edit_provider_info_section .select2-container.-acf .select2-selection {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #b5b5b5;
}
.edit_provider_info_section #provider-edit-form .acf-form-submit [type=button] {
  border: 0;
  padding: 10px 30px;
  background: #8c52ff;
  color: #fff;
  border-radius: 8px;
  font-family: "NotoSerif Bold";
  font-size: 28px;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.edit_provider_info_section #provider-edit-form .acf-form-submit [type=button]:hover {
  background: #FFC400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.edit_provider_info_section #update-message .success {
  margin: 30px auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  background: #59f9ff;
  padding: 20px 50px;
  border-radius: 20px;
  border: 2px solid #E30B5D;
  font-family: "NotoSerif Bold";
}
.edit_provider_info_section #update-message a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #E30B5D;
}

.services_grid {
  margin-bottom: 100px;
}
.services_grid h2 {
  margin: 0 auto;
  margin-bottom: 30px;
  color: #353535;
  text-align: center;
}
.services_grid h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
  display: block;
}
.services_grid .sub_title {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 48px;
  margin-bottom: 30px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20vw;
}
.services_grid .sub_title::before {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_13_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 120px;
  height: 55px;
  display: block;
  position: absolute;
  left: -130px;
  top: 35px;
}
.services_grid .services_grid_container {
  padding-top: 50px;
}
.services_grid .services_grid_container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.services_grid .post_item {
  margin-bottom: 50px;
}
.services_grid .post_item:last-child {
  margin-bottom: 0;
}
.services_grid .service-item {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services_grid .service-item h6 {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 72px;
  margin-bottom: 0;
  margin-right: 20px;
}
.services_grid .service-item .description {
  line-height: 1.2;
}
.services_grid .services_grid-content {
  position: relative;
}
.services_grid .services_grid-content .label_description {
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/doday/assets/images/icons/serv_label.png) 50% 50% no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF2BB;
  font-family: "Caveat Regular";
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  right: 0;
}
.services_grid .services_grid-content .label_description span {
  width: 60%;
}
.services_grid :not(:root:root) .equal-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.services_grid :not(:root:root) .equal-height > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
}

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service-modal.active {
  opacity: 1;
  visibility: visible;
}
.service-modal.active .service-modal-content {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.service-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.service-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
  background: #FFC107;
  border-radius: 20px;
  max-width: 800px;
  min-height: 400px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10000;
  background-image: url(/wp-content/themes/doday/assets/images/icons/flame_3_bg.png);
  background-position: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .service-modal-content {
    padding: 40px 30px;
    max-width: 95%;
  }
}
.service-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  font-size: 50px;
  color: #FF5722;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  z-index: 10001;
}
.service-modal-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #D84315;
}
.service-modal-body h3 {
  font-family: "Caveat Regular";
  color: #FF5722;
  font-size: 64px;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .service-modal-body h3 {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.service-modal-body .modal-short-description {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .service-modal-body .modal-short-description {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.service-modal-body .modal-description {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
.service-modal-body .modal-description p {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .service-modal-body .modal-description {
    font-size: 18px;
  }
}

.video_section {
  margin-bottom: 150px;
}
.video_section h2 {
  margin-bottom: 25px;
  font-size: 36px;
}
.video_section .video_content {
  margin-bottom: 80px;
  font-family: "Bahnschrift";
}
.video_section iframe, .video_section video {
  margin: 0 auto;
  display: block;
}
.video_section iframe {
  height: 40vw;
  width: 100%;
}
.video_section video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogrid_articles {
  margin: 100px 0;
}
.blogrid_articles h2 {
  font-size: 66px;
  line-height: 1;
  margin-bottom: 30px;
}
.blogrid_articles .blogrid-content {
  margin-bottom: 30px;
}
.blogrid_articles .post_item {
  margin-bottom: 30px;
  padding: 0 15px;
  position: relative;
}
.blogrid_articles .post_item .articles-item {
  padding: 0;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.blogrid_articles .post_item .articles-content {
  padding: 20px;
  height: 100%;
}
.blogrid_articles .post_item .articles-content h4 {
  margin-bottom: 20px;
}
.blogrid_articles .post_item .articles-content h4 a {
  color: #353535;
}
.blogrid_articles .post_item .articles-content .post-meta {
  margin-bottom: 20px;
}
.blogrid_articles .post_item .articles-content .post-meta a {
  color: #FFA200;
}
.blogrid_articles .post_item .articles-content .content {
  margin-bottom: 20px;
}
.blogrid_articles .post_item .articles-content a {
  text-decoration: none;
}
.blogrid_articles .post_item:hover .articles-content {
  background: #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blogrid_articles .post_item:hover h4 a {
  color: #FFA200;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blogrid_articles .post_item:hover a,
.blogrid_articles .post_item:hover .content,
.blogrid_articles .post_item:hover .date {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blogrid_articles .post_item img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogrid_articles .post_item .cta_btn {
  color: #fff;
}
.blogrid_articles .post_item .cta_btn:hover {
  color: #fff;
}

.work_stages_section {
  margin-bottom: 100px;
}
.work_stages_section h2 {
  margin: 0 auto;
  margin-bottom: 50px;
  color: #353535;
}
.work_stages_section h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.work_stages_section .work_stages_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 90px;
  position: relative;
}
.work_stages_section .work_stages_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 600px;
}
.work_stages_section .work_stages_item:nth-child(1) {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 5%;
}
.work_stages_section .work_stages_item:nth-child(1) h6:after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_1_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 810px;
  height: 280px;
  display: block;
  position: absolute;
  left: -50px;
  top: -90px;
}
.work_stages_section .work_stages_item:nth-child(2) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 10%;
}
.work_stages_section .work_stages_item:nth-child(2) .work_stages_index:after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_2_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 90px;
  height: 90px;
  display: block;
  position: absolute;
  left: -25px;
  top: -5px;
}
.work_stages_section .work_stages_item:nth-child(2) h6:after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_3_bg.png) no-repeat 50% 50%;
  background-size: cover;
  width: 250px;
  height: 180px;
  display: block;
  position: absolute;
  left: -70%;
  top: -20px;
}
.work_stages_section .work_stages_item:nth-child(3) {
  -ms-flex-item-align: center;
      align-self: center;
}
.work_stages_section .work_stages_item:nth-child(3) h6:after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_4_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 150px;
  height: 150px;
  display: block;
  position: absolute;
  right: 100px;
  top: 70px;
}
.work_stages_section .work_stages_item:nth-child(4) {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 5%;
}
.work_stages_section .work_stages_item:nth-child(4) h6:after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_5_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 230px;
  height: 130px;
  display: block;
  position: absolute;
  right: -50px;
  top: 90px;
}
.work_stages_section .work_stages_item:nth-child(5) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 0%;
}
.work_stages_section .work_stages_item:nth-child(5) h6:after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_6_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  right: -40px;
  top: -40px;
}
.work_stages_section .work_stages_item h6 {
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
}
.work_stages_section .work_stages_item .work_stages_index {
  font-family: "NotoSerif Light";
  font-size: 72px;
  line-height: 110%;
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.work_stages_section .work_stages_item .work_stages_description {
  margin: 0;
  font-size: 20px;
  position: relative;
}
.work_stages_section .work_stages_item .stages_content_highlight h6 {
  font-family: "Caveat Regular";
  text-align: center;
  font-size: 38px;
}
.work_stages_section .work_stages_item .work_stages_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.work_stages_section .work_stages_item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.work_stages_section .work_stages_item:first-child h6 {
  width: 75%;
}
@media (max-width: 992px) {
  .work_stages_section .work_stages_item:nth-child(odd) {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: 5%;
    margin-right: 0;
  }
  .work_stages_section .work_stages_item:nth-child(even) {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-right: 5%;
    margin-left: 0;
  }
  .work_stages_section .work_stages_item:nth-child(3) {
    -ms-flex-item-align: center;
        align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  ннннн .work_stages_item {
    max-width: 100%;
    padding: 0 20px;
  }
  ннннн .work_stages_item:nth-child(n) {
    -ms-flex-item-align: center;
        align-self: center;
    margin-left: 0;
    margin-right: 0;
  }
  ннннн .work_stages_item .work_stages_index {
    font-size: 56px;
    margin-right: 20px;
  }
}

.technical_specifications_section {
  overflow: hidden;
  position: relative;
}
.technical_specifications_section .section_technical_specifications {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.technical_specifications_section .section_technical_specifications h3 {
  margin-bottom: 50px;
  position: relative;
}
.technical_specifications_section .section_technical_specifications h3::after {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_8_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 180px;
  height: 330px;
  display: block;
  position: absolute;
  right: 80px;
  top: 20px;
  z-index: 3;
}
.technical_specifications_section .section_technical_specifications h3 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.technical_specifications_section .section_technical_specifications p {
  margin-bottom: 30px;
  color: #fff;
}
.technical_specifications_section .section_technical_specifications p:last-child {
  margin-bottom: 0;
}
.technical_specifications_section .technical_specifications_content img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.technical_specifications_section .technical_specifications_list .specification_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.technical_specifications_section .technical_specifications_list .specification_item:first-child {
  padding-top: 0;
}
.technical_specifications_section .technical_specifications_list .specification_item h6 {
  margin: 0;
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 72px;
}
.technical_specifications_section .technical_specifications_list .specification_item span {
  color: #353535;
}
.technical_specifications_section .technical_specifications_list .read_more_link {
  margin-top: 40px;
}

.advantages_grid_section {
  margin-bottom: 100px;
  background: #FFF2BB;
  overflow: hidden;
  position: relative;
}
.advantages_grid_section h2 {
  margin-bottom: 60px;
  line-height: 1.2;
}
.advantages_grid_section h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.advantages_grid_section .advantages_description {
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 50px;
  color: #787A80;
}
.advantages_grid_section .advantages-grid {
  position: relative;
}
.advantages_grid_section .advantages-grid .grid_item {
  padding: 0 15px;
  position: relative;
  margin-bottom: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.advantages_grid_section .advantages-grid .grid_item .grid_item_inner {
  text-align: center;
  color: #353535;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advantages_grid_section .advantages-grid .grid_item .grid_item_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hover-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.advantages_grid_section .advantages-grid .grid_item .grid_item_inner .advantage-content {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.advantages_grid_section .advantages-grid .grid_item .grid_item_inner h6 {
  margin-bottom: 15px;
  color: #353535;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin: 0;
  margin-bottom: 20px;
}
.advantages_grid_section .advantages-grid .grid_item .grid_item_inner img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}
.advantages_grid_section .advantages-grid .grid_item .grid_item_inner .benefit_description {
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.advantages_grid_section .advantages-grid .grid_item:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.advantages_grid_section .sub_description {
  margin-top: 50px;
  font-family: "Caveat Regular";
  color: #353535;
  width: 75%;
  line-height: 1.2;
}
.advantages_grid_section .label_description {
  width: 22vw;
  height: 22vw;
  background: url(/wp-content/themes/doday/assets/images/icons/serv_label.png) 50% 50% no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF2BB;
  font-family: "Caveat Regular";
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  right: 0;
  bottom: -30%;
}
.advantages_grid_section .label_description span {
  rotate: -15deg;
  width: 50%;
}
.advantages_grid_section .label_description span a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #FFF2BB;
}
.advantages_grid_section .label_description span a:hover {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.advantages_grid_section :not(:root:root) .equal-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}
.advantages_grid_section :not(:root:root) .equal-height > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
}

.benefits_grid_section {
  background-color: #FFC400;
  background-image: url(/wp-content/themes/doday/assets/images/icons/flame_bg.png);
  background-repeat: no-repeat;
  background-position: 10% 90%;
  background-size: auto;
  padding: 120px 50px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  margin-bottom: 100px;
}
.benefits_grid_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  -webkit-animation: glow-slide 5s infinite;
          animation: glow-slide 5s infinite;
  z-index: 2;
  opacity: 0.3;
}
@keyframes glow-slide {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.benefits_grid_section h2 {
  margin-bottom: 60px;
  color: #353535;
}
.benefits_grid_section h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.benefits_grid_section .benefits_description {
  color: #fff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.benefits_grid_section .benefits-grid {
  position: relative;
}
.benefits_grid_section .grid_item {
  text-align: center;
  color: #fff;
  padding: 30px;
  position: relative;
}
.benefits_grid_section .grid_item h4 {
  margin-bottom: 25px;
  color: #FD6A00;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Caveat Regular";
}
.benefits_grid_section .grid_item p {
  margin-bottom: 0;
  color: #353535;
  font-size: 20px;
  width: 60%;
  margin: 0 auto;
  line-height: 1.2;
}
.benefits_grid_section .grid_item:hover h4 {
  scale: 1.1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.benefits_grid_section .sub_description {
  margin-top: 200px;
  font-family: "Caveat Regular";
  color: #353535;
  width: 75%;
  line-height: 1.2;
  margin-left: 100px;
}

.text_editor_section {
  margin-bottom: 100px;
}
.text_editor_section h2 {
  margin-bottom: 60px;
}
.text_editor_section h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.text_editor_section .text_editor_block h4 {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 40px;
  margin-top: 30px;
}
.text_editor_section .text_editor_block h4:first-child {
  margin-top: 0;
}
.text_editor_section .text_editor_block p {
  font-size: 18px;
}
.text_editor_section .sub_description {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-size: 48px;
  line-height: 1.2;
  position: relative;
}
.text_editor_section .sub_description::before {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_7_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 200px;
  height: 100px;
  display: block;
  position: absolute;
  left: -150px;
  top: 40px;
}

.quote_section_section {
  margin-bottom: 100px;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  background: #FFC400;
}
.quote_section_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  -webkit-animation: glow-slide 5s infinite;
          animation: glow-slide 5s infinite;
  z-index: 0;
  opacity: 0.3;
}
.quote_section_section .section_two_columns {
  position: relative;
}
.quote_section_section .section_two_columns h2 {
  margin-bottom: 30px;
  color: #353535;
  position: relative;
}
.quote_section_section .section_two_columns h2 p {
  line-height: inherit;
}
.quote_section_section .section_two_columns h2 .highlight a {
  color: #FD6A00;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.quote_section_section .section_two_columns h2 .highlight a:hover {
  color: #AB0B48;
  text-decoration: underline;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.quote_section_section .section_two_columns h2::before {
  content: "";
  background: url(/wp-content/themes/doday/assets/images/icons/stage_12_bg.png) no-repeat 50% 50%;
  background-size: contain;
  width: 150px;
  height: 150px;
  display: block;
  position: absolute;
  left: -170px;
  top: 100px;
}
.quote_section_section .section_two_columns h2 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.quote_section_section .section_two_columns .two_columns_image img {
  width: 100%;
  height: 45vw;
  -o-object-fit: contain;
     object-fit: contain;
}
.quote_section_section .section_two_columns .two_columns_content {
  padding-top: 100px;
  padding-bottom: 100px;
}
.quote_section_section .section_two_columns .content {
  margin-bottom: 40px;
}
.quote_section_section .section_two_columns .under_content {
  font-family: "Caveat Regular";
  font-size: 40px;
  margin-bottom: 40px;
}

.vacancies_section {
  padding: 0;
  margin-bottom: 250px;
  border-radius: 50px;
  position: relativ;
  background: #FFC400;
}
.vacancies_section .vacancies_section_container {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.vacancies_section .vacancies_section_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  -webkit-animation: glow-slide-large 5s infinite;
          animation: glow-slide-large 5s infinite;
  z-index: 0;
  opacity: 0.3;
}
@-webkit-keyframes glow-slide-large {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
@keyframes glow-slide-large {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.vacancies_section .container {
  position: relative;
  padding: 120px 40px 0 40px;
  z-index: 2;
}
.vacancies_section h3 {
  margin-bottom: 60px;
  max-width: 750px;
}
.vacancies_section h3 .highlight {
  font-family: "Caveat Regular";
  color: #FD6A00;
  font-weight: 300;
  font-size: 102px;
}
.vacancies_section .vacancies_list_item:first-child .grid_item .read_more_link, .vacancies_section .vacancies_list_item:last-child .grid_item .read_more_link {
  background: #FFF2BB;
  color: #FF0061;
  border: 2px solid #FF0061;
}
.vacancies_section .vacancies_list_item:first-child .grid_item .read_more_link:hover, .vacancies_section .vacancies_list_item:last-child .grid_item .read_more_link:hover {
  background: #FFD2E3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.vacancies_section .grid_item {
  border-radius: 30px;
  background: #FFF2BB;
  padding: 30px;
}
.vacancies_section .grid_item .read_more_link {
  width: 100%;
  font-size: 18px;
  padding: 10px;
  text-align: center;
}
.vacancies_section .grid_item hr {
  margin: 30px 0;
  color: #a8a8a8;
  height: 2px;
}
.vacancies_section .grid_item .old_price_box {
  min-height: 100px;
}
.vacancies_section .grid_item .title_price {
  text-align: center;
  font-family: "NotoSerif Light";
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 40px;
}
.vacancies_section .grid_item .old_price {
  font-family: "Caveat Regular";
  color: #FD6A00;
  text-transform: uppercase;
  text-decoration: line-through;
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
}
.vacancies_section .grid_item .above_description {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
.vacancies_section .recipient_content.accordion-block,
.vacancies_section .price_content.accordion-block {
  position: relative;
}
.vacancies_section .recipient_content .accordion-header,
.vacancies_section .price_content .accordion-header {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  padding-right: 30px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vacancies_section .recipient_content .accordion-header:hover,
.vacancies_section .price_content .accordion-header:hover {
  color: #FD6A00;
}
.vacancies_section .recipient_content .accordion-header .accordion-arrow,
.vacancies_section .price_content .accordion-header .accordion-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 18px;
  color: #FD6A00;
}
.vacancies_section .recipient_content .accordion-content,
.vacancies_section .price_content .accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.vacancies_section .recipient_content .accordion-content p, .vacancies_section .recipient_content .accordion-content ul,
.vacancies_section .price_content .accordion-content p,
.vacancies_section .price_content .accordion-content ul {
  margin-top: 15px;
}
.vacancies_section .recipient_content.active .accordion-header .accordion-arrow,
.vacancies_section .price_content.active .accordion-header .accordion-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.vacancies_section .recipient_content h5,
.vacancies_section .price_content h5 {
  font-family: "Caveat Regular";
  font-size: 25px;
  margin-bottom: 15px;
}
.vacancies_section .recipient_content p,
.vacancies_section .price_content p {
  font-size: 20px;
  line-height: 1.2;
}
.vacancies_section .recipient_content ul,
.vacancies_section .price_content ul {
  margin: 12px 0 16px 0;
  padding: 0;
  list-style: none;
}
.vacancies_section .recipient_content ul li,
.vacancies_section .price_content ul li {
  list-style: none;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.vacancies_section .recipient_content ul li:before,
.vacancies_section .price_content ul li:before {
  content: "\f4fe";
  color: #FD6A00;
  display: block;
  margin-right: 15px;
  font-size: 20px;
  font-family: "bootstrap-icons";
}
.vacancies_section .timer_bar {
  padding: 45px;
  background: #FFF2BB;
  border-radius: 30px;
  border-bottom: 4px solid #FD6A00;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 2;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.vacancies_section .timer_bar .timer_bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vacancies_section .timer_bar .timer_bar-text {
  width: 80%;
}
.vacancies_section .timer_bar .timer_bar-text h4 {
  font-family: "Caveat Regular";
  font-size: 32px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.vacancies_section .timer_bar .timer_bar-text h4::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(/wp-content/themes/doday/assets/images/icons/flame.png) 50% 50% no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.vacancies_section .timer_bar .timer_bar-text h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(/wp-content/themes/doday/assets/images/icons/sign.png) 50% 50% no-repeat;
  background-size: contain;
  margin-left: 20px;
}
.vacancies_section .timer_bar .timer_bar-text p {
  font-family: "NotoSerif Light";
  font-size: 16px;
  line-height: 1.2;
}
.vacancies_section .timer_bar .timer_bar-text p:first-child {
  font-size: 20px;
}
.vacancies_section .timer_bar .timer_bar-text p:last-child {
  font-size: 14px;
}
.vacancies_section .timer_bar .timer_bar-countdown {
  width: 20%;
}
.vacancies_section .timer_bar .timer_bar-digits,
.vacancies_section .timer_bar .timer_bar-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vacancies_section .timer_bar .js-timer-hours,
.vacancies_section .timer_bar .js-timer-minutes,
.vacancies_section .timer_bar .js-timer-seconds {
  color: #FD6A00;
  font-size: 72px;
  margin-bottom: 20px;
  font-family: "NotoSerif Light";
}
.vacancies_section .timer_bar .timer_bar-separator {
  color: #FFA200;
  font-size: 72px;
}
@media (max-width: 768px) {
  .vacancies_section .vacancies_grid {
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
  }
  .vacancies_section .vacancies_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 15px;
    padding: 0 20px;
  }
  .vacancies_section .vacancies_list::-webkit-scrollbar {
    display: none;
  }
  .vacancies_section .vacancies_list_item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
  }
  .vacancies_section .vacancies_list_item.clone {
    opacity: 1;
  }
  .vacancies_section .slider-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
  .vacancies_section .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .vacancies_section .slider-dot.active {
    background-color: #ff1493;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    border-color: rgba(255, 20, 147, 0.3);
  }
  .vacancies_section .vacancies_list {
    scroll-behavior: smooth;
  }
}

.slider_loop_section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.slider_loop_section .container {
  position: relative;
}
.slider_loop_section h2 {
  margin-bottom: 30px;
}
.slider_loop_section .slider_description {
  margin-bottom: 50px;
}
.slider_loop_section .slide_item {
  max-height: 600px;
}
.slider_loop_section .slide_item img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider_loop_section .tns-controls button {
  border: 0;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: none;
}
.slider_loop_section .tns-controls [data-controls=prev] {
  position: absolute;
  bottom: 40%;
  z-index: 9;
  left: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5254901961);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.slider_loop_section .tns-controls [data-controls=prev]:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  background: #FFA200;
}
.slider_loop_section .tns-controls [data-controls=prev]::after {
  content: "\f12f";
  color: #353535;
  display: block;
  font-family: bootstrap-icons;
  font-size: 32px;
}
.slider_loop_section .tns-controls [data-controls=next] {
  position: absolute;
  bottom: 40%;
  z-index: 9;
  right: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5254901961);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.slider_loop_section .tns-controls [data-controls=next]:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #FFA200;
  opacity: 1;
}
.slider_loop_section .tns-controls [data-controls=next]::after {
  content: "\f138";
  color: #353535;
  display: block;
  font-family: bootstrap-icons;
  font-size: 32px;
}
.slider_loop_section [data-action=stop],
.slider_loop_section [data-action=start] {
  display: none !important;
}
.slider_loop_section .tns-horizontal.tns-subpixel > .tns-item {
  padding: 0;
}
.slider_loop_section .slider_thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slider_loop_section .thumbnail_item {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.slider_loop_section .thumbnail_item:hover {
  opacity: 1;
  border-color: #007cba;
}
.slider_loop_section .thumbnail_item.active {
  opacity: 1;
  border-color: #007cba;
  -webkit-box-shadow: 0 0 10px rgba(0, 124, 186, 0.3);
          box-shadow: 0 0 10px rgba(0, 124, 186, 0.3);
}
.slider_loop_section .thumbnail_item img {
  display: block;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.slider_loop_section .thumbnail_item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 1550px) {
  .quote_section_section .section_two_columns .two_columns_image img {
    height: 65vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1400px) {
  .quote_section_section .section_two_columns .two_columns_image img {
    height: 65vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1350px) {
  .work_stages_section .work_stages_item:nth-child(4) h6:after {
    right: 50px;
  }
  .quote_section_section .section_two_columns h2 {
    font-size: 56px;
  }
  .quote_section_section .section_two_columns h2 p {
    font-size: 64px;
  }
  .quote_section_section .section_two_columns h2 .highlight {
    font-size: 82px;
  }
  .quote_section_section .section_two_columns .two_columns_image img {
    height: 65vw;
  }
}
@media screen and (max-width: 1240px) {
  .quote_section_section .section_two_columns h2 {
    font-size: 46px;
  }
  .quote_section_section .section_two_columns h2 p {
    font-size: 68px;
  }
  .quote_section_section .section_two_columns h2 .highlight {
    font-size: 72px;
  }
  .quote_section_section .section_two_columns .two_columns_content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .hero-section .hero-container .container h1::before {
    left: -50px;
    top: 210px;
  }
  .quote_section_section .section_two_columns .two_columns_image img {
    height: 65vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-section .timer_bar,
  .vacancies_section .timer_bar {
    max-width: 90%;
    padding: 25px;
  }
  .hero-section .timer_bar .timer_bar-inner,
  .vacancies_section .timer_bar .timer_bar-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-section .timer_bar .timer_bar-text,
  .vacancies_section .timer_bar .timer_bar-text {
    line-height: 1.2;
    margin-bottom: 25px;
    width: 100%;
  }
  .hero-section .timer_bar .timer_bar-countdown,
  .vacancies_section .timer_bar .timer_bar-countdown {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: none;
    padding-left: 0;
  }
  .technical_specifications_section .section_technical_specifications h3::after {
    right: 10px;
    top: 70px;
  }
  .advantages_grid_section .label_description {
    width: 32vw;
    height: 30vw;
    bottom: 0%;
  }
  .advantages_grid_section .label_description span {
    rotate: -10deg;
    width: 60%;
  }
}
@media screen and (max-width: 1110px) {
  .quote_section_section .section_two_columns h2,
  .quote_section_section .section_two_columns h2 p {
    font-size: 46px;
  }
  .quote_section_section .section_two_columns h2 .highlight {
    font-size: 52px;
  }
  .quote_section_section .section_two_columns p {
    font-size: 16px;
  }
  .quote_section_section .section_two_columns .two_columns_image img {
    height: 60vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .quote_section_section .section_two_columns .under_content {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .quote_section_section .section_two_columns h2::before {
    width: 150px;
    height: 150px;
    left: -150px;
    top: -30px;
  }
  .work_stages_section .work_stages_item:nth-child(2) h6:after {
    left: -60%;
    top: 30px;
    rotate: -30deg;
  }
  .work_stages_section .work_stages_item:nth-child(4) h6:after {
    right: 300px;
  }
  .quote_section_section .section_two_columns h2,
  .quote_section_section .section_two_columns h2 p {
    font-size: 52px;
  }
  .quote_section_section .section_two_columns h2 .highlight {
    font-size: 62px;
  }
  .quote_section_section .section_two_columns .two_columns_content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .quote_section_section .section_two_columns h2::before {
    width: 170px;
    height: 170px;
    left: -180px;
    top: 100px;
  }
  footer .footer_nav a, footer .footer_nav p {
    font-size: 30px;
  }
}
@media screen and (max-width: 1050px) {
  .quote_section_section .section_two_columns h2,
  .quote_section_section .section_two_columns h2 p {
    font-size: 44px;
  }
  .quote_section_section .section_two_columns h2::before {
    width: 140px;
    height: 140px;
    left: -140px;
    top: 50px;
  }
}
@media screen and (max-width: 980px) {
  .is_onmobile {
    display: contents;
  }
  .no_mobile {
    display: none;
  }
}
@media screen and (max-width: 990px) {
  .quote_section_section .section_two_columns .two_columns_image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
  }
  .quote_section_section .section_two_columns .two_columns_content {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .quote_section_section .section_two_columns h2::before {
    display: none;
  }
  .quote_section_section .section_two_columns .two_columns_image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .vacancies_list .vacancies_list_item {
    margin-bottom: 40px;
  }
  .two_columns_section {
    margin-bottom: 30px;
  }
  .technical_specifications_section .technical_specifications_list .read_more_link,
  .technical_specifications_section .technical_specifications_content img {
    display: none;
  }
  .technical_specifications_section .technical_specifications_list {
    margin-bottom: 200px;
  }
  .technical_specifications_section {
    background: url(/wp-content/uploads/2025/12/flame_2_bg.png) no-repeat 10% 100%;
    background-size: 200px;
  }
  .technical_specifications_section .section_technical_specifications h3 {
    margin-bottom: 150px;
  }
  .technical_specifications_section .section_technical_specifications h3::after {
    background: url(/wp-content/themes/doday/assets/images/icons/mob_ico_2.png) no-repeat 50% 50%;
    background-size: contain;
    width: 150px;
    height: 150px;
    left: 60%;
    top: 60px;
    rotate: 90deg;
  }
}
@media screen and (max-width: 900px) {
  footer .footer_nav a, footer .footer_nav p {
    font-size: 32px;
  }
  footer .footer_nav {
    padding: 30px 10px;
  }
  .hero-section .hero-container {
    background-position: 90% 100% !important;
  }
  .hero-section .hero-container .container h1::before {
    display: none;
  }
  .hero-section {
    margin-bottom: 0;
  }
  .hero-section .timer_bar,
  .vacancies_section .timer_bar {
    max-width: 90%;
    padding: 25px;
  }
  .hero-section .timer_bar .timer_bar-inner,
  .vacancies_section .timer_bar .timer_bar-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-section .timer_bar .timer_bar-text,
  .vacancies_section .timer_bar .timer_bar-text {
    line-height: 1.2;
    margin-bottom: 25px;
    width: 100%;
  }
  .hero-section .timer_bar .timer_bar-countdown,
  .vacancies_section .timer_bar .timer_bar-countdown {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: none;
    padding-left: 0;
  }
  .work_stages_section .work_stages_item:nth-child(1) h6:after {
    width: 210px;
    height: 270px;
    left: 32%;
    top: -93px;
    background: url(/wp-content/themes/doday/assets/images/icons/mob_ico_1.png) no-repeat 50% 50%;
    background-size: contain;
  }
  .work_stages_section .work_stages_item:nth-child(2) .work_stages_index:after {
    display: none;
  }
  .work_stages_section .work_stages_item:nth-child(2) h6:after {
    background: url(/wp-content/themes/doday/assets/images/icons/stage_3_bg.png) no-repeat 50% 50%;
    background-size: cover;
    width: 170px;
    height: 150px;
    left: -35%;
    top: 60px;
    rotate: -50deg;
  }
  .work_stages_section .work_stages_item:nth-child(3) h6:after {
    background: url(/wp-content/themes/doday/assets/images/icons/stage_4_bg.png) no-repeat 50% 50%;
    background-size: contain;
    width: 150px;
    height: 150px;
    right: 20px;
    top: 70px;
  }
  .work_stages_section .work_stages_item:nth-child(4) h6:after {
    background: url(/wp-content/themes/doday/assets/images/icons/stage_5_bg.png) no-repeat 50% 50%;
    background-size: contain;
    width: 170px;
    height: 100px;
    right: 70%;
    top: 90px;
  }
  .work_stages_section .work_stages_item:nth-child(5) {
    margin-top: 30px;
  }
  .quote_section_section .section_two_columns h2,
  .quote_section_section .section_two_columns h2 p {
    font-size: 52px;
  }
  .quote_section_section .section_two_columns h2 .highlight {
    font-size: 72px;
  }
  .quote_section_section .section_two_columns .under_content {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .quote_section_section .section_two_columns p {
    font-size: 20px;
  }
  h2 .highlight {
    display: block;
  }
  .benefits_grid_section .sub_description {
    margin-top: 50px;
    margin-left: 0;
  }
  .benefits_grid_section {
    background-position: 105% 105%;
    padding: 50px 30px;
    margin-bottom: 100px;
  }
  .advantages_grid_section .sub_description {
    width: 100%;
    text-align: center;
  }
  .advantages_grid_section .label_description {
    width: 100%;
    height: 300px;
    margin-top: 30px;
    position: relative;
  }
  .text_editor_section .sub_description {
    width: 90%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 100px;
  }
  .text_editor_section .text_editor_block {
    width: 90%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .text_editor_section .sub_description::before {
    background: url(/wp-content/themes/doday/assets/images/icons/mob_ico_2.png) no-repeat 50% 50%;
    background-size: contain;
    width: 150px;
    height: 150px;
    left: 50%;
    top: 100px;
  }
  .vacancies_section .container {
    padding: 80px 20px 0 20px;
  }
  .vacancies_section h3 .highlight {
    display: block;
  }
  .vacancies_list .vacancies_list_item {
    margin-bottom: 30px;
  }
  .two_columns_section .section_two_columns .two_columns_image.right_side .icon,
  .two_columns_section .section_two_columns .two_columns_image .icon {
    display: none;
  }
  .two_columns_section .section_two_columns .col-lg-6 {
    width: 100%;
  }
  .order-first {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .two_columns_section .section_two_columns .two_columns_image img {
    height: auto;
    margin-bottom: 50px;
  }
  .two_columns_section {
    margin-bottom: 30px;
  }
  .quote_section_section .two_columns_image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .quote_section_section .section_two_columns .two_columns_image img {
    height: 80vw;
  }
  .quote_section_section .section_two_columns .two_columns_content {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .quote_section_section .section_two_columns .read_more_link {
    width: 100%;
    text-align: center;
  }
  .services_grid .sub_title,
  .services_grid .sub_title::before {
    display: none;
  }
  .services_grid .services_grid-content .label_description {
    height: 50vw;
    position: relative;
  }
  footer .company-info:not(:last-child), footer .social_links:not(:last-child) {
    border-right: 0;
  }
  .work_stages_section .work_stages_item:nth-child(odd) {
    margin-left: 0;
  }
  .work_stages_section .work_stages_item:nth-child(5) {
    margin-top: 0;
  }
  .work_stages_section .work_stages_item:nth-child(even) {
    margin-right: 0;
  }
  footer .company-info:not(:last-child), footer .social_links:not(:last-child) {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .company-info,
  footer .social_links {
    padding-top: 20px;
  }
  footer .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-logo img {
    width: 20vw;
    margin-bottom: 30px;
  }
  footer .footer_copyright_menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .work_stages_section .work_stages_item:first-child h6 {
    width: auto;
  }
  .work_stages_section .work_stages_item:first-child,
  .work_stages_section .work_stages_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .work_stages_section .work_stages_item .work_stages_content {
    text-align: center;
  }
}
@media screen and (max-width: 760px) {
  footer .company-info:not(:last-child), footer .social_links:not(:last-child) {
    border-bottom: 1px solid rgba(253, 106, 0, 0.168627451);
  }
}
@media screen and (max-width: 768px) {
  .vacancies_list .vacancies_list_item {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 680px) {
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2.5em;
  }
  h2 .highlight {
    font-size: 1.5em !important;
    line-height: 1;
  }
  .work_stages_section .work_stages_item:nth-child(2) h6:after {
    left: -15%;
  }
  .work_stages_section .work_stages_item .stages_content_highlight h6 {
    margin-top: 70px;
  }
  .work_stages_section .work_stages_item:nth-child(4) h6:after {
    right: 50%;
  }
  .services_grid .services_grid_container > div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 580px) {
  .hero-section .timer_bar .timer_bar-countdown, .vacancies_section .timer_bar .timer_bar-countdown {
    padding: 20px 0;
  }
  .work_stages_section .work_stages_item:nth-child(1) h6:after {
    left: 27%;
  }
  .services_grid .services_grid-content .label_description {
    height: 80vw;
  }
  .services_grid .services_grid-content .label_description span {
    width: 75%;
  }
  .vacancies_section .timer_bar .timer_bar-text h4 {
    font-size: 40px;
    line-height: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .text_editor_section {
    margin-bottom: 50px;
  }
  .text_editor_section .sub_description::before {
    top: 140px;
  }
  .benefits_grid_section .grid_item p {
    width: 100%;
  }
  .work_stages_section .work_stages_item h6 {
    font-weight: 600;
  }
  .benefits_grid_section .sub_description {
    font-size: 42px;
    width: 95%;
  }
  .benefits_grid_section .grid_item {
    padding: 20px 0;
  }
  .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=text],
  .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=email],
  .hero-form-modal-body .hero-form-wrapper .wpcf7-form input[type=tel],
  .hero-form-modal-body .hero-form-wrapper .wpcf7-form textarea {
    padding: 10px 20px;
  }
  .hero-form-modal-body .hero-form-wrapper .wpcf7-form {
    gap: 10px;
  }
  .hero-form-modal-close {
    top: 10px;
    right: 15px;
  }
  .vacancies_section .timer_bar {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  .hero-section .timer_bar .js-timer-hours,
  .hero-section .timer_bar .js-timer-minutes,
  .hero-section .timer_bar .js-timer-seconds,
  .vacancies_section .timer_bar .js-timer-hours,
  .vacancies_section .timer_bar .js-timer-minutes,
  .vacancies_section .timer_bar .js-timer-seconds {
    font-size: 62px;
  }
}
@media screen and (max-width: 480px) {
  .header_area .site-header {
    padding: 0 30px;
  }
  .service-menu ul a {
    font-size: 16px;
  }
  .work_stages_section .work_stages_item:nth-child(5) h6:after {
    right: -20px;
    top: -70px;
  }
  body {
    padding: 20px 15px;
  }
  .w-75 {
    width: 100% !important;
  }
  .hero-section .hero-container .container h1 .highlight::after {
    width: 70%;
    left: 60px;
    bottom: -20px;
  }
  .read_more_link {
    padding: 14px 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 380px) {
  .work_stages_section .work_stages_item:nth-child(1) h6:after {
    left: 17%;
  }
  .work_stages_section .work_stages_item:nth-child(3) h6:after {
    right: -15px;
  }
  .work_stages_section .work_stages_item:nth-child(4) h6:after {
    top: 130px;
    right: 40%;
  }
  h2 .highlight {
    font-size: 1.3em !important;
    line-height: 1;
  }
  .advantages_grid_section,
  .advantages_grid_section .container {
    padding: 0;
  }
  .advantages_grid_section .label_description span {
    width: 60%;
    line-height: 1;
  }
  .text_editor_section .sub_description::before {
    top: 220px;
  }
  .technical_specifications_section .section_technical_specifications h3::after {
    left: 58%;
    top: 120px;
    rotate: 70deg;
  }
  .benefits_grid_section {
    padding: 50px 15px;
  }
  .services_grid .services_grid_container {
    padding-top: 0;
  }
  .work_stages_section h2,
  .quote_section_section .section_two_columns h2,
  .benefits_grid_section h2,
  .text_editor_section h2,
  .vacancies_section h3,
  .two_columns_section h2,
  .services_grid h2,
  .advantages_grid_section h2 {
    font-size: 3em;
    font-weight: 600;
  }
  .hero-section .hero-container .container h1 .highlight::after {
    width: 80%;
    left: 35px;
  }
  .quote_section_section .section_two_columns h2 .highlight,
  .benefits_grid_section h2 .highlight,
  .advantages_grid_section h2 .highlight,
  .text_editor_section h2 .highlight,
  .two_columns_section h2 .highlight,
  .services_grid h2 .highlight,
  .vacancies_section h3 .highlight,
  h2 .highlight {
    font-size: 1.1em !important;
  }
  .services_grid .services_grid-content .label_description span {
    font-size: 32px;
  }
  .hero-section .timer_bar {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
  .services_grid {
    margin-bottom: 50px;
  }
  .site-footer {
    padding: 45px 15px 15px 15px;
  }
  footer .footer_nav a, footer .footer_nav p {
    font-size: 32px;
  }
}/*# sourceMappingURL=style.css.map */