@charset "UTF-8";
:root {
  --adata-primary-color: #16A571;
  --adata-secondary-color: #164343;
  --adata-title-color: #164343;
  --adata-text-color: #5B7575;
  --adata-white: #FFFFFF;
  --adata-stock-color: #D9D9EB;
  --adata-black: #000000;
  --adata-rating-color: #F0AE0F;
  --adata-accent-color: #08A6E0;
  --adata-border-color: #ddd;
  --adata-primary-font: "Rubik", sans-serif;
  --adata-secondary-font: "Rubik", sans-serif;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
	## Social Profiles
	## Top Bar Icon List
	## Top Bar Menu
	## Contact Methods
	## Nav Search Form
	## Nav Mini Cart
	## Swiper Dots and Arorws
# Forms
# Navigation
	## Links
	## Primary Menu
# Accessibility
# Alignments
# Clearings
# Layout
	## Topbar
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--adata-text-color);
  font-family: var(--adata-primary-font);
  font-size: 16px;
  line-height: 28px;
}

a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  clear: both;
  font-family: var(--adata-secondary-font);
  line-height: 1.2;
  font-weight: 700;
  color: var(--adata-title-color);
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

h1, .h1 {
  font-size: 34px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 26px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1rem;
}

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

address {
  margin: 0 0 1rem;
}

pre {
  background: var(--adata-border-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 100%;
  overflow: auto;
  padding: 16px;
}

code {
  color: var(--adata-primary-color);
}

code, kbd, tt, var {
  font-size: 18px;
}

abbr, acronym {
  border-bottom: 1px dotted var(--adata-border-color);
  cursor: help;
}

mark, ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}
button:focus {
  border: inherit;
  outline: inherit;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  margin-top: 0 !important;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: var(--adata-white);
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  overflow-x: hidden;
  color: var(--adata-text-color);
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.comment-list ul, .comment-list ol {
  padding-left: 25px;
  margin-bottom: 30px;
}
.comment-list ol ol, .comment-list ol ul, .comment-list ul ol, .comment-list ul ul {
  margin-bottom: 0;
}

ul ul {
  list-style-type: disc;
}

.tt-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tt-list li {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 3px;
  gap: 8px;
}
.tt-list li span {
  font-weight: 600;
}
.tt-list li p {
  margin: 0;
}
.tt-list li a {
  color: var(--adata-secondary-color);
  display: block;
}
.tt-list li a:hover {
  color: var(--adata-primary-color);
}
.tt-list.list-dice li {
  padding-left: 25px;
  display: block;
}
.tt-list.list-dice li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 15px;
  background: #6730e3;
  transform: translateY(-50%);
  transition: all 0.5s;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
.pr {
  position: relative;
}

.no-scroll {
  overflow: hidden;
}

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

.pt-100 {
  padding-top: 110px;
}
@media (max-width: 576px) {
  .pt-100 {
    padding-top: 50px;
  }
}

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

.h-100 {
  height: 100%;
}

.site-main {
  min-height: 30vh;
}

@media (max-width: 767px) {
  .position-default {
    position: static !important;
  }
}

.pts-18 {
  padding-top: 18%;
}
@media (max-width: 1024px) {
  .pts-18 {
    padding-top: 30%;
  }
}
@media (max-width: 576px) {
  .pts-18 {
    padding-top: 40%;
  }
}

@media (min-width: 992px) {
  .pl_30 {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .at-order-2 {
    order: 2;
  }
}
.pb-50 {
  padding-bottom: 50px;
}

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

.mb-70 {
  margin-bottom: 67px !important;
  font-weight: 500 !important;
}
strong,
b {
  font-weight: 700;
}

figure {
  margin: 1rem 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

.container-full {
  max-width: 1670px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.tt-image-responsive img {
  margin: 0 auto;
}
@media (max-width: 576px) {
  .tt-image-responsive img {
    max-width: 100% !important;
  }
}

.tt-svg-responsive img {
  width: 100%;
}

.swiper-container {
  overflow: hidden;
}

table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #dce0e5;
}
table thead {
  background: #f5f5f5;
}
table th {
  text-align: left;
  padding: 10px 15px;
  color: var(--adata-secondary-color);
  font-size: 16px;
  font-weight: 600;
  min-width: 130px;
  vertical-align: middle;
}
table th a {
  color: var(--adata-secondary-color);
}
table th a:hover {
  color: var(--adata-primary-color);
}
table td {
  padding: 10px 15px;
  border-top: none;
  border-right: none;
  vertical-align: middle;
}
table td:last-child {
  border-right: 1px solid #dce0e5;
}

.wp-block-calendar table th {
  min-width: 40px;
  text-align: center;
}

tbody {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  direction: ltr;
}
tbody > tr {
  border-top: 1px solid #dce0e5;
}

tfoot tr #prev a:hover, tfoot tr #next a:hover {
  color: var(--adata-primary-color);
}

caption {
  caption-side: top;
  text-align: center;
}

.calendar_wrap caption {
  text-align: center;
  background: #f0f2f9;
  color: var(--adata-secondary-color);
  font-weight: 500;
}
.calendar_wrap table tr, .calendar_wrap table td {
  border: 0;
}
.calendar_wrap table thead tr {
  border: 0;
}
.calendar_wrap table thead tr th {
  border: 0;
}

nav.wp-calendar-nav {
  background: #f0f2f9;
  padding: 5px 20px;
}

.wp-calendar-nav-next {
  float: right;
}

@media (max-width: 576px) {
  table th {
    min-width: 80px;
  }
}
/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/
.at-btn {
  padding: 14px 29px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid var(--adata-primary-color);
  background-color: var(--adata-primary-color);
  color: var(--adata-white);
  font-size: 17px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: 0.4s;
  line-height: 30px;
}
.at-btn:hover {
  color: var(--adata-white);
  background-color: var(--adata-secondary-color);
  border-color: var(--adata-secondary-color);
}
.at-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  transition: 0.5s;
}
.at-btn i {
  text-align: center;
  /* transition: .5s; */
}
.at-btn.btn-small {
  padding: 5px 30px;
}
.at-btn.btn-lg {
  padding: 14px 35px;
  font-size: 20px;
}
.at-btn.btn-outline {
  background-color: var(--adata-white);
  color: var(--adata-secondary-color);
  border-color: var(--adata-white);
}
.at-btn.btn-outline:hover {
  color: var(--adata-white);
  background-color: var(--adata-primary-color);
  border-color: var(--adata-primary-color);
}
.at-btn.btn-outline i {
  color: var(--adata-secondary-color);
  background-color: var(--adata-white);
  border: 1px solid var(--adata-stock-color);
}
.at-btn.btn-outline:hover i {
  color: var(--adata-white);
  background-color: var(--adata-primary-color);
  border-color: var(--adata-white);
}
.at-btn.btn-light {
  color: var(--adata-secondary-color);
  border-color: var(--adata-white);
}
.at-btn.btn-light:before {
  background: var(--adata-white);
  border-color: var(--adata-white);
}
.at-btn.btn-light:hover {
  color: var(--adata-white);
  background: transparent;
  border-color: var(--adata-white);
}
@media screen and (max-width:1200px) {
  .at-btn {
    padding: 10px 20px;
    font-size: 15px;
	font-weight: 500;
  }
}
/*--------------------------------------------------------------
## Swiper Dots and Arorws
--------------------------------------------------------------*/
.swiper_prev, .swiper_next {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--adata-white);
  font-size: 24px;
  border-radius: 4px;
  background-color: var(--adata-primary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  transition: .5s;
}
.swiper_prev {
  left: 0;
}
.swiper-pagination {
  bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  opacity: 1;
  width: 20px;
  height: 20px;
  border: 1px solid var(--adata-white);
  border-radius: 50%;
  outline: 0;
  transition: all 0.3s ease-in-out;
  display: block;
  left: auto;
  right: 0;
  margin: 8px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--adata-white);
  height: 20px;
}

/*--------------------------------------------------------------
## Slick Dots and Arorws
--------------------------------------------------------------*/
.slick-slide {
  margin: 0px 12px;
}
.slick-list {
  margin: 0px -12px;
}
button.slick-arrow {
  font-size: 0;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  color: var(--adata-white);
  background: var(--adata-primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: calc(50% - 20px);
  right: -40px;
  padding: 0 0 !important;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
button.slick-arrow.slick-prev {
  right: 100%;
}
button.slick-arrow::before {
  font-family: themify;
  content: "\e649";
  font-size: 20px;
}
button.slick-arrow.slick-prev::before {
  content: "\e64a";
}
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 100%;
}
.slick-dots li {
  line-height: 0px;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.slick-dots li button {
  font-size: 0px;
  width: 15px;
  height: 15px;
  padding: 0 0 !important;
  border-radius: 50%;
  background-color: var(--adata-secondary-color);
  transition: 0.5s;
  border: 0px solid var(--adata-secondary-color);
}
.slick-dots li.slick-active button {
  width: 20px;
  height: 20px;
  background: var(--adata-primary-color);
}

/*--------------------------------------------------------------
## Animation
--------------------------------------------------------------*/
@keyframes shape_one {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(2000px, 2000px) rotate(72deg);
    transform: translate(2000px, 2000px) rotate(72deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_two {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
    transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
    transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
    transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
    transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_three {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
    transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
    transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
    transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
    transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
    transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
    transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
    transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
    transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
    transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
    transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
    transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
    transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
    transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
    transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
    transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
    transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
    transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
    transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
    transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
    transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
    transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
    transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
    transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
    transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
.adataUpX {
  animation-name: adataUpX;
}

@keyframes adataUpX {
  0% {
    opacity: 0;
    transform: translate(-80px, 30px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes zoommd {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
@keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }
  100% {
    -webkit-transform: translateX(30px) scale(1.1) translateY(10px);
    transform: translateX(30px) scale(1.1) translateY(10px);
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.1) translate(0px);
  }
}

/*--------------------------------------------------------------
## Section Heading
--------------------------------------------------------------*/
.section-heading {
  position: relative;
  z-index: 2;
}
.section-heading .subtitle {
  color: var(--adata-primary-color);
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  line-height: 18px;
  align-items: center;
}
.section-heading .subtitle i {
    margin-right: 10px;
    display: inline-block;
}
.section-heading .circle_bar, .section-heading .subtitle:has(.left_right_bar)::after {
  display: block;
  width: 35px;
  height: 2px;
  background-color: var(--adata-primary-color);
  margin-right: 15px;
  position: relative;
}
.section-heading .subtitle:has(.left_right_bar)::after {
  content: '';
  margin-left: 15px;
}
.section-heading .circle_bar::before {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--adata-primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: left_to_right 2s alternate linear infinite;
}
.section-heading .circle_bar.left_right_bar::before, .circle_bar.left_bar::before {
  display: none;
}
@keyframes left_to_right {
  from {
    left: 0;
  }
  to {
    left: calc( 100% - 5px );
  }
}
.section-heading .section-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 9px;
}
@media (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .section-heading .section-title br {
    display: none;
  }
}
.section-heading .description {
  font-weight: 400;
  margin: 0;
}
@media (max-width: 991px) {
  .section-heading .description br {
    display: none;
  }
}
.section-heading.text-left .description {
  margin: 0;
}
.section-heading.text-right .description {
  margin: 0 0 0 auto;
}
.section-heading.style-two .subtitle {
  background-color: #e3f4ff;
  padding: 18px 28px 14px;
  border-radius: 30px;
  margin-bottom: 26px;
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
.banner {
  height: 1025px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .banner {
    height: auto;
    padding: 140px 0 80px;
  }
}
.banner__content, .banner__feature-image {
  position: relative;
  z-index: 3;
}
.banner__feature-image {
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .banner__feature-image {
    margin-bottom: 50px;
  }
}

.banner__top__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--adata-primary-color);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.banner__bottom__title {
  font-size: 60px;
  font-weight: 700;
  color: var(--adata-secondary-color);
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  .banner__bottom__title {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .banner__bottom__title {
    font-size: 40px;
  }
  .banner__bottom__title br {
    display: none;
  }
}
.banner__description {
  margin-bottom: 50px;
  font-size: 16px;
}
@media (max-width: 1200px) {
  .banner__description br {
    display: none;
  }
}
.banner__top__title span, .banner__bottom__title span {
  display: inline-block;
}
.banner__btns .banner-btn {
  border-radius: 4px;
  padding: 11px 35px;
  font-size: 16px;
  font-weight: 500;
}
.banner__shape {
  position: absolute;
  right: -15px;
  top: 0;
  z-index: 1;
}
@media (max-width: 1400px) {
  .banner__shape {
    max-width: 800px;
  }
}
@media (max-width: 1024px) {
  .banner__shape {
    max-width: 650px;
  }
}
.banner__shape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 115px;
  width: 100%;
  overflow: hidden;
}
.banner__shape-bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 109px solid transparent;
  border-left: 1900px solid var(--adata-white);
  border-bottom: 0px solid var(--adata-white);
}
@media (max-width: 576px) {
  .banner__shape-bg:after {
    border-top: 80px solid transparent;
    width: 1000px;
  }
}
.banner__animated-shape {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  list-style: none;
}
.banner__animated-shape li {
  position: absolute;
}
.banner__animated-shape li:nth-child(1) {
  position: absolute;
  left: -16%;
  top: -17%;
  background-color: rgba(130, 71, 239, 0.078);
  width: 585px;
  height: 585px;
  border-radius: 50%;
}
.banner__animated-shape li:nth-child(2) {
  border: 2px solid #d98712;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 16%;
  top: 22%;
}
.banner__animated-shape li:nth-child(3) {
  border: 2px solid var(--adata-black);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 19%;
  top: 43%;
}
.banner__animated-shape li:nth-child(4) {
  background-color: #ff75e2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 12%;
  top: 50%;
}
.banner__animated-shape li:nth-child(5) {
  border: 2px solid #f722ba;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  left: 17%;
  top: 60%;
}
.banner__animated-shape li:nth-child(6) {
  border: 2px solid #f722ba;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  left: 17%;
  top: 60%;
}
.banner__animated-shape li:nth-child(7) {
  background-color: #8247ef;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: 34%;
  top: 60%;
}
.banner__animated-shape li:nth-child(8) {
  background-color: #e9901c;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 31%;
  top: 64%;
}
.banner__animated-shape li:nth-child(9) {
  border: 2px solid #d98712;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  left: 50%;
  bottom: 50px;
}
.banner__animated-shape li:nth-child(10) {
  background-color: #f722ba;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 35%;
  bottom: 100px;
}
.banner__animated-shape li:nth-child(11) {
  border: 2px solid #8247ef;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 43%;
  bottom: 130px;
}
@media (min-width: 992px) {
  .banner--one .container {
    margin-top: 65px;
  }
}
.banner.banner--two {
  background-image: linear-gradient(to right, #5a169f 6%, #9a3e9a 100%);
  height: 895px;
  padding: 136px 0 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .banner.banner--two {
    height: 700px;
  }
}
@media (max-width: 768px) {
  .banner.banner--two {
    padding: 150px 0;
  }
}
@media (max-width: 991px) {
  .banner.banner--two {
    height: auto;
  }
}
.banner.banner--two .banner-animate-image {
  position: absolute;
  left: 140px;
  top: 95px;
}
@media (max-width: 1600px) {
  .banner.banner--two .banner-animate-image {
    left: 128px;
    top: 90px;
    max-width: 350px;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .banner.banner--two .banner-animate-image {
    left: 90px;
    top: 80px;
    max-width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner.banner--two .banner-animate-image {
    left: 75px;
    top: 70px;
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .banner.banner--two .banner-animate-image {
    left: 90px;
    top: 62px;
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .banner.banner--two .banner-animate-image {
    left: 70px;
    top: 50px;
    max-width: 209px;
  }
}
@media (max-width: 420px) {
  .banner.banner--two .banner-animate-image {
    left: 55px;
    top: 39px;
    max-width: 160px;
  }
}
@media (max-width: 1600px) {
  .banner.banner--two .banner__feature-image {
    max-width: 650px;
  }
}
@media (max-width: 1400px) {
  .banner.banner--two .banner__feature-image {
    margin: 0;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .banner.banner--two .banner__feature-image {
    max-width: 545px;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner.banner--two .banner__feature-image {
    max-width: 420px;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .banner.banner--two .banner__feature-image {
    max-width: 500px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 575px) {
  .banner.banner--two .banner__feature-image {
    max-width: 380px;
  }
}
@media (max-width: 420px) {
  .banner.banner--two .banner__feature-image {
    max-width: 290px;
  }
}
.banner.banner--two .banner__content {
  position: relative;
  z-index: 2;
}
@media (min-width: 1600px) {
  .banner.banner--two .banner__content {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .banner.banner--two .banner__content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
}
.banner.banner--two .banner__content .banner__bottom__title {
  color: var(--adata-white);
  font-size: 65px;
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .banner.banner--two .banner__content .banner__bottom__title {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  .banner.banner--two .banner__content .banner__bottom__title {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .banner.banner--two .banner__content .banner__bottom__title {
    font-size: 32px;
  }
}
.banner.banner--two .banner__content p {
  color: var(--adata-white);
  max-width: 550px;
  margin-bottom: 40px;
  font-size: 18px;
}
.banner.banner--two .banner__btns .banner-btn:hover {
  color: var(--adata-white);
  border-color: var(--adata-white);
}
.banner .content_shape {
  position: absolute;
  top: 115px;
  right: -140px;
}
@media (max-width: 992px) {
  .banner .content_shape {
    display: none;
  }
}

.animated-shape-small {
  margin: 0;
  padding: 0;
  list-style: none;
}
.animated-shape-small li {
  position: absolute;
  z-index: 1;
}
.animated-shape-small li:nth-child(1) {
  top: 20%;
  left: 10%;
  -webkit-animation: shape_oneegg 60s alternate infinite linear;
  animation: shape_oneegg 60s alternate infinite linear;
}
.animated-shape-small li:nth-child(2) {
  top: 30%;
  left: 12%;
  -webkit-animation: shape_twoo 30s alternate infinite linear;
  animation: shape_twoo 30s alternate infinite linear;
}
.animated-shape-small li:nth-child(3) {
  top: 40%;
  left: 3%;
  -webkit-animation: shape_threee 30s alternate infinite linear;
  animation: shape_threee 30s alternate infinite linear;
}
.animated-shape-small li:nth-child(4) {
  top: 50%;
  left: 7%;
  -webkit-animation: shape_fourr 30s alternate infinite linear;
  animation: shape_fourr 30s alternate infinite linear;
}
.animated-shape-small li:nth-child(5) {
  top: 75%;
  left: 35%;
  -webkit-animation: shape_fivee 30s alternate infinite linear;
  animation: shape_fivee 30s alternate infinite linear;
}
.animated-shape-small li:nth-child(6) {
  top: 65%;
  left: 30%;
  -webkit-animation: shape_sixx 30s alternate infinite linear;
  animation: shape_sixx 30s alternate infinite linear;
}
.animated-shape-small li.big-circle {
  top: -26%;
  left: -22.5%;
  height: 700px;
  width: 700px;
  background: #f5f1fe;
  border-radius: 50%;
}

@keyframes shape_oneegg {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(500px, 500px) rotate(72deg);
    transform: translate(500px, 500px) rotate(72deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_twoo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
    transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
    transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
    transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
    transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_threee {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
    transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
    transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
    transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
    transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_fourr {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
    transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
    transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
    transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_fourr {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
    transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
    transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
    transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_fivee {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
    transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
    transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
    transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_fivee {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
    transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
    transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
    transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_sixx {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
    transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
    transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
    transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
    transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_sixx {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
    transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
    transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
    transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
    transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
/*--------------------------------------------------------------
## Banner Slider
--------------------------------------------------------------*/
.banner__slider {
  height: 820px;
  position: relative;
}
.banner__slider .swiper-slide {
  height: 820px;
  width: 100%;
}
.banner__slider .banner__image {
  height: 820px;
}
.banner__slider .banner__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.banner__slider .banner__slide {
  position: relative;
  overflow: hidden;
}
.banner__slider .banner__slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.banner__slider .banner__content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 3;
  transform: translateY(-50%);
}
.banner__content__inner {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.banner__slider .banner__bottom__title, .banner__slider .banner__description {
  color: var(--adata-white);
}
.banner__slider .banner__bottom__title {
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .banner__slider .banner__bottom__title {
    font-size: 50px;
    line-height: 60px;
  }
}
/* banner button 2 */
.banner__slider .at-btn.btn-outline {
  margin-left: 30px;
}
@media (max-width: 400px) {
  .banner__slider .at-btn.btn-outline {
    margin-left: 0;
    margin-top: 20px;
  }
}
.banner_right_image {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: -1;
}
.banner__slider .swiper-slide-active .banner__top__title {
  animation: fadeInUp 1s both .7s;
}
.banner__slider .swiper-slide-active .banner__bottom__title {
  animation: fadeInUp 1s both 1s;
}
.banner__slider .swiper-slide-active .banner__description {
  animation: fadeInUp 1s both 1.2s;
}
.banner__slider .swiper-slide-active .at-btn {
  animation: fadeInUp 1s both 1.5s;
}
.banner__slider .swiper-slide-active .banner_right_image img {
  animation: fadeInUp 2s both 1s;
}

/*--------------------------------------------------------------
## Popup Video Box
--------------------------------------------------------------*/
.video_section {
  overflow: hidden;
}

.video_section {
  overflow: hidden;
}
.video_section.video_sec_padding {
  padding: 130px 0 120px;
}
@media (max-width: 991px) {
  .video_section.video_sec_padding {
    padding: 100px 0;
  }
}
.video_section .video_section_content {
  position: relative;
  z-index: 1;
}
.video_section .video_section_content .video_popup {
  height: 80px;
  width: 80px;
  box-shadow: 10px 17.321px 40px 0px rgba(1, 16, 58, 0.14);
}
.video_section .video_section_content .video_popup img {
  max-width: 14px;
  margin-left: 3px;
}
@media (max-width: 991px) {
  .video_section .video_section_content .video_popup {
    height: 60px;
    width: 60px;
  }
}
.video_section .about_img_shape {
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}
.video_section .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  right: -130px;
  bottom: -65px;
  width: 280px;
  height: 280px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}
@media (max-width: 991px) {
  .video_section .round_shape_animation {
    width: 150px;
    height: 150px;
    right: -70px;
  }
}

.video_popup_section .video_popup {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.video_popup_section .video_popup i {
  font-size: 18px;
  color: var(--adata-primary-color);
  margin-left: 5px;
}

.video_popup.play_animation:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.video_popup img {
  position: relative;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video_popup {
  background-color: var(--adata-white);
  height: 65px;
  width: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_popup:hover {
  background-color: var(--adata-primary-color);
}
.video_popup:hover i {
  color: var(--adata-white);
}

.popup-video-box.video_section .round_shape_animation {
  top: auto;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
## Parallax Image
--------------------------------------------------------------*/
.img_section {
  position: relative;
  min-height: 490px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .img_section {
    min-height: 410px;
  }
}
.img_section .about_img_1 {
  position: absolute;
  bottom: 35px;
  z-index: -2;
  left: 30px;
}
@media (max-width: 767.98px) {
  .img_section .about_img_1 {
    bottom: 52px;
    left: 30px;
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_1 {
    left: 30px;
    max-width: 300px;
  }
}
.img_section .about_img_1 {
  position: absolute;
  bottom: -25px;
  z-index: -1;
  left: -67px;
}
@media (max-width: 767.98px) {
  .img_section .about_img_1 {
    bottom: 62px;
    left: 30px;
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_1 {
    left: -62px;
    max-width: 300px;
  }
}
@media (max-width: 576px) {
  .img_section .about_img_2 {
    max-width: 235px;
  }
}
.img_section .about_img_3 {
  position: absolute;
  top: 160px;
  right: 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .img_section .about_img_3 {
    max-width: 250px;
    right: 0;
    top: 108px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_3 {
    right: -70px;
    top: 167px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .img_section .about_img_3 {
    right: -70px;
    top: 60px;
  }
}

.about_section_img {
  display: flex;
  max-width: 540px;
}
.about_section_img .about_us_img {
  position: relative;
  margin-right: 30px;
  z-index: 1;
  margin-top: 50px;
}
.about_section_img .about_us_img:last-child {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .about_section_img .about_us_img:last-child {
    margin-top: 10px;
  }
}
.about_section_img .about_us_img .about_img_shape {
  position: absolute;
  position: absolute;
  left: -45px;
  top: -15px;
  z-index: -1;
}
.about_section_img .about_us_img .round_shape_animation {
  border-radius: 50%;
  background: #acf2f0;
  position: absolute;
  left: -45px;
  bottom: -70px;
  width: 110px;
  height: 110px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}
@media (max-width: 991px) {
  .about_section_img .about_us_img .round_shape_animation {
    bottom: -30px;
  }
}

.round_shape_animation {
  border-radius: 50%;
  background: #85b0fc;
  position: absolute;
  right: 95px;
  top: 60px;
  width: 190px;
  height: 190px;
  -webkit-animation: circleAnimation 5s linear infinite;
  animation: circleAnimation 5s linear infinite;
  z-index: -1;
}

.about_img {
  position: relative;
  z-index: 1;
  max-width: 475px;
  margin-left: auto;
}
@media (max-width: 1440px) {
  .about_img {
    margin-left: 40px;
  }
}
@media (max-width: 1280px) {
  .about_img {
    margin-left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .about_img {
    max-width: 350px;
  }
}
@media (max-width: 1280px) {
  .about_img {
    margin-left: 0;
  }
}
.about_img .about_overlay {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1440px) {
  .about_img .about_overlay {
    right: -100px;
  }
}

/*--------------------------------------------------------------
## Project Carousel
--------------------------------------------------------------*/
.project__single__item {
  position: relative;
  overflow: hidden;
}
.project_thumb {
  position: relative;
  overflow: hidden;
}
.project_thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
}
.project__single__item:hover .project_thumb::before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);

}
.project_cont_box {
  position: absolute;
  bottom: -250px;
  left: 0;
  right: 0;
  padding: 20px;
  background: var(--adata-secondary-color);
  border-radius: 10px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
}
.project__single__item:hover .project_cont_box {
  bottom: 0;
}
.project_cont_box_inner {
  display: flex;
  flex-direction: column;
}
.project_cont_box h4, .project_cont_box p {
  color: var(--adata-white);
}

/* project style 2 */
.project__single__item.project_two .project_cont_box {
  bottom: 0;
}
.project_two .project_btn {
  height: 0;
  overflow: hidden;
  transition: .5s;
}
.project_two:hover .project_btn {
  height: 60px;
}

/* project style 3 */
.project__single__item.style-3 .project_cont_box {
  top: 0;
  bottom: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project__single__item.style-3:hover .project_cont_box {
  opacity: 1;
}
/*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
.portfolios {
  padding: 120px 0 40px;
}

.portfolios-two,
.portfolios-three {
  padding: 120px 0;
}

.at-isotope-filter {
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.at-isotope-filter li {
  display: inline-block;
  margin-bottom: 10px;
}
.at-isotope-filter li a {
  color: #8f8f8f;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 27px;
  border-radius: 3px;
  display: inline-block;
  line-height: 1;
}
.at-isotope-filter li.current a {
  background-color: var(--adata-primary-color);
  color: var(--adata-primary-color);
  color: var(--adata-white);
}

.at-portfolio-item .post-thumbnail-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.at-portfolio-item .post-thumbnail-wrapper .post-thumbnail,
.at-portfolio-item .post-thumbnail-wrapper a.post-permalink {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.at-portfolio-item .post-thumbnail-wrapper .post-thumbnail img,
.at-portfolio-item .post-thumbnail-wrapper a img {
  transition: all 0.3s ease-in-out;
}
.at-portfolio-item .post-thumbnail-wrapper img {
  transition: all 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.at-portfolio-item .post-thumbnail-wrapper .portfolio-info {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -110px;
  opacity: 0;
  padding: 26px 30px 24px;
  background: var(--adata-primary-color);
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.at-portfolio-item .overlay-two .post-thumbnail-wrapper .portfolio-info {
	background: transparent
}
.overlay-two .post-thumbnail-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background: var(--adata-primary-color);
	z-index: 1;
	transition: .5s;
}
.at-portfolio-item:hover .overlay-two .post-thumbnail-wrapper::before {
	opacity: 1;
}
.at-portfolio-item .overlay-three .post-thumbnail-wrapper .portfolio-info {
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.at-portfolio-item .post-thumbnail-wrapper .portfolio-info .portfolio-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: var(--adata-white);
}
.at-portfolio-item .post-thumbnail-wrapper .portfolio-info .portfolio-title a {
  color: var(--adata-white);
}
.at-portfolio-item .post-thumbnail-wrapper .portfolio-info .portfolio-title:hover {
  color: #f2f2f2;
}
.at-portfolio-item .post-thumbnail-wrapper .portfolio-info .portfolio-cat {
  font-size: 18px;
  color: var(--adata-white);
}
.at-portfolio-item .post-thumbnail-wrapper .portfolio-info .portfolio-cat:hover {
  color: #f2f2f2;
}
.at-portfolio-item .post-thumbnail-wrapper:hover .portfolio-info {
  bottom: 0;
  opacity: 1;
}
.at-portfolio-item .post-thumbnail-wrapper:hover .post-thumbnail img {
  transform: scale(1.07);
}
.portfolio-single {
  padding: 116px 0 100px;
}
.portfolio-feature-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
}
.portfolio-feature-image img {
  border-radius: 15px;
}
.portfolio_btn {
  order: 3;
}
.portfolio_btn .at-btn i {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.at-blockquote {
  margin: 0;
}
.portfolio-cat .cat {
  position: relative;
  margin-right: 5px;
  display: inline-block;
}
.portfolio-cat .cat:not(:last-child):after {
  content: ",";
  position: absolute;
  right: -5px;
  bottom: 1px;
  font-size: 22px;
}
.portfolio-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.portfolio-nav li {
  font-size: 20px;
  display: flex;
  align-items: end;
}
.portfolio-nav li i {
  font-size: 30px;
  vertical-align: middle;
}
.portfolio-nav li a {
  color: #797687;
}
.portfolio-nav li a:hover {
  color: var(--adata-primary-color);
}
.portfolio-nav li.prev i {
  margin-right: 10px;
}
.portfolio-nav li.next i {
  margin-left: 10px;
}

.related-portfolio {
  padding-bottom: 100px;
}
.related-portfolio .portfolio-item .feature-image {
  position: relative;
}
.related-portfolio .portfolio-item .feature-image img {
  width: 100%;
}
.related-portfolio .portfolio-item .feature-image a {
  display: block;
  position: relative;
}
.related-portfolio .portfolio-item .feature-image a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.related-portfolio .portfolio-item .feature-image:hover a:before {
  opacity: 1;
}
.related-portfolio .portfolio-item .port-info {
  padding: 25px 40px 0;
}
.related-portfolio .portfolio-item .port-info h3 {
  font-size: 24px;
  margin-bottom: 3px;
  line-height: 32px;
}
.related-portfolio .portfolio-item .port-info h3 a {
  color: #2b2350;
}
.related-portfolio .portfolio-item .port-info h3 a:hover {
  color: var(--adata-primary-color);
}

.portfolio-single-wrapper {
  padding: 120px 0 95px;
}

.portfolio-nav-wrapper {
  border-bottom: 1px solid #dce0e5;
  padding: 50px 0;
}

.related-portfolio .section-title {
  margin-bottom: 30px;
}
.related-portfolio .section-title .title {
  font-size: 28px;
}
.related-portfolio .at-portfolio-item {
  margin-bottom: 30px;
}
.related-portfolio .at-portfolio-item .post-thumbnail-wrapper img {
  min-height: 300px;
  width: 100%;
  object-fit: cover;
}
.related-portfolio .at-portfolio-item .portfolio-info h3 {
  font-size: 30px;
  margin: 0;
}
.related-portfolio .at-portfolio-item .portfolio-info h3 a {
  color: var(--adata-white);
}

.portfolio-info-wrapper {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e6e6e6;
  padding: 35px 60px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .portfolio-info-wrapper {
    flex-wrap: wrap;
    padding: 35px 60px 5px;
  }
}
@media (max-width: 576px) {
  .portfolio-info-wrapper {
    flex-wrap: wrap;
    padding: 35px 30px 5px;
  }
}
@media (max-width: 991px) {
  .portfolio-info-wrapper .portfolio-info-item {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .portfolio-info-wrapper .portfolio-info-item {
    width: 100%;
  }
}
.portfolio-info-wrapper .portfolio-info-item .title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.portfolio-info-wrapper .portfolio-info-item p {
  margin: 0;
  color: var(--adata-text-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}

@media (max-width: 991px) {
  .portfolios {
    padding: 80px 0 50px;
  }

  .at-isotope-filter {
    margin-bottom: 40px;
  }

  .portfolios-two,
.portfolios-three {
    padding: 80px 0;
  }

  .at-portfolio-items.portfolio-one .at-portfolio-item {
    margin-bottom: 120px;
  }
  .at-portfolio-items.portfolio-one .at-portfolio-item .portfolio-info {
    max-width: 290px;
    left: 20px;
  }
  .at-portfolio-items.column-3 {
    width: 103%;
  }
  .at-portfolio-items.column-3 .at-portfolio-item,
.at-portfolio-items.column-3 .grid-sizer {
    width: 47%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .portfolio-single {
    padding: 76px 0 80px;
  }

  .port-header {
    display: block;
  }
  .port-header .portfolio-title .title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .at-portfolio-items.portfolio-one .at-portfolio-item .portfolio-info {
    max-width: 60%;
    left: 20px;
  }
  .at-portfolio-items.column-2, .at-portfolio-items.column-3 {
    width: 100%;
  }
  .at-portfolio-items.column-2 .at-portfolio-item,
.at-portfolio-items.column-2 .grid-sizer, .at-portfolio-items.column-3 .at-portfolio-item,
.at-portfolio-items.column-3 .grid-sizer {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .at-portfolio-items.column-2 .at-portfolio-item img,
.at-portfolio-items.column-2 .grid-sizer img, .at-portfolio-items.column-3 .at-portfolio-item img,
.at-portfolio-items.column-3 .grid-sizer img {
    width: 100%;
  }
  .at-portfolio-items.column-2 .at-portfolio-item {
    margin-bottom: 120px;
  }

  .portfolio-content img {
    margin-bottom: 30px;
  }
  .portfolio-content .content-inner {
    padding-right: 0;
    border-right: 0;
  }

  .related-portfolio {
    padding-top: 60px;
  }

  .portfolio-content .portfolio-info {
    padding-left: 0;
    padding-top: 30px;
  }

  .portfolio-nav {
    margin-top: 30px;
  }
}
/* Portfolio Slider */
.portfolio-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.portfolio-slider.style-one:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--adata-primary-color) 0%, var(--adata-primary-color) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  opacity: .75;
}
.portfolio-slider.style-one img {
  transition: all 0.3s ease-in-out;
  min-height: 400px;
  width: 100%;
  object-fit: cover;
}
.portfolio-slider.style-one .portfolio-info {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  height: max-content;
  overflow: hidden;
}
.portfolio-slider.style-one .portfolio-info .portfolio-title {
  font-size: 22px;
  font-size: 1.5em;
  margin: 0;
  transition: all 0.4s ease-in-out;
  transform: translateY(-20px);
}
.portfolio-slider.style-one .portfolio-info .portfolio-title a {
  color: var(--adata-white);
}
.portfolio-slider.style-one .portfolio-info .portfolio-cat {
  color: var(--adata-white);
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.portfolio-slider.style-one:hover:before,
.portfolio-slider.style-one:hover .portfolio-info {
  opacity: .75;
  visibility: visible;
}
.portfolio-slider.style-one:hover img {
  transform: scale(1.07);
}
.portfolio-slider.style-one:hover .portfolio-info .portfolio-title,
.portfolio-slider.style-one:hover .portfolio-info .portfolio-cat {
  transform: translateY(0);
}
.portfolio-slider.style-two .post-thumbnail img {
  width: 100%;
  border-radius: 10px !important;
}
.portfolio-slider.style-two .portfolio-info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -100px;
  opacity: 0;
  padding: 44px 30px 40px;
  background: var(--adata-primary-color);
  transition: all 0.4s ease-in-out;
}
.portfolio-slider.style-two .portfolio-info .portfolio-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.portfolio-slider.style-two .portfolio-info .portfolio-title a {
  color: var(--adata-white);
}
.portfolio-slider.style-two .portfolio-info .portfolio-cat {
  font-size: 20px;
  color: var(--adata-white);
}
.portfolio-slider.style-two .portfolio-info .cat {
  position: relative;
  margin-right: 5px;
}
.portfolio-slider.style-two:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.slider-control {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
}

.adata-next,
.adata-prev {
  position: absolute;
  border-radius: 50%;
  background-color: var(--adata-white);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  outline: 0;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
}
.adata-next:after,
.adata-prev:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.adata-next:hover,
.adata-prev:hover {
  color: var(--adata-white);
}
.adata-next:hover:after,
.adata-prev:hover:after {
  height: 300%;
}
.adata-prev {
  left: 0;
}
.adata-next {
  right: 0;
}
.protfolio-slider-wrap {
  padding: 0 40px;
  position: relative;
}
@media (max-width: 767px) {
  .protfolio-slider-wrap {
    padding: 0;
  }
}

/*--------------------------------------------------------------
## Testimonial
--------------------------------------------------------------*/
.adata_testimonial__item {
  background-color: var(--adata-white);
  padding: 16px;
  box-shadow: 0px 0px 17px 0px rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  position: relative;
  transition: .5s;
  z-index: 1;
}
.adata_testimonial__item h2 {
  font-size: 22px;
  margin-bottom: 16px;
}
.adata_testimonial__item .author {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--adata-primary-color);
  overflow: hidden;
  transition: .5s;
  display: inline-flex;
}
.adata_testimonial__item .author img {
  width: 100%;
  height: 100%;
}
.adata_testimonial__item .ratings .rating-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.adata_testimonial__item .ratings i {
  font-size: 18px;
}
.adata_testimonial__item .desig, .adata_testimonial__item .designation {
  margin: 5px 0px;
  font-style: normal;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--adata-text-color);
}
.adata_testimonial__item p {
  font-style: italic;
}
.checked {
  color: orange;
}
.testimonial {
  padding: 20px;
  margin: 0;
  display: flex;
}
.testimonial .bio-wrapper .name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--adata-black);
}
.swiper_thumbs .swiper-slide {
  transition: .5s;
  display: flex;
  align-items: center;
}
.avatar.author {
  transition: .5s;
}
.avatar.author img {
  width: 100%;
  height: 100%;
  transition: .5s;
}
.testimonial-area .swiper-pagination .swiper-pagination-bullet {
  border-color: var(--adata-primary-color);
}
.testimonial-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--adata-primary-color);
}
.testimonial-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--adata-primary-color);
    border-radius: 50%;
    transform: translate(-20%, -20%);
}
@media screen and (max-width: 767px) {
  .dt__testimonial-container .contents {
    order: 1;
  }
  .dt__testimonial-container .thumbs {
    order: 2;
    margin-top: 30px;
  }
}
/*--------------------------------------------------------------
## Counter Up
--------------------------------------------------------------*/
.counter_wrap {
  display: inline-flex;
}
.counter_icon i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--adata-primary-color);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 8px;
  position: relative;
}
.counter3 .counter_icon i::after {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: -2px;
    left: -2px;
    border: 1px dashed var(--adata-primary-color);
    background-color: transparent;
    border-radius: 50%;
	animation: rotate_360 20s running linear infinite;
}
/*--------------------------------------------------------------
## Counting
--------------------------------------------------------------*/
.countdown-container {
  position: relative;
}
.countdown-container .countdown_img {
  position: absolute;
  right: 50px;
  top: 0;
}
@media (max-width: 1200px) {
  .countdown-container .countdown_img {
    display: none;
  }
}

.at-countdown-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .at-countdown-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .at-countdown-wrapper {
    display: block;
  }
}
.at-countdown-wrapper .at-countdown .counter-icon {
  font-size: 46px;
  margin-bottom: 30px;
  color: var(--adata-primary-color);
}
.at-countdown-wrapper .at-countdown .counter {
  color: var(--adata-secondary-color);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.at-countdown-wrapper .at-countdown .counter-title {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
}
.at-countdown-wrapper.style-two {
  width: calc(100% + 30px);
}
@media (max-width: 480px) {
  .at-countdown-wrapper.style-two {
    width: 100%;
  }
}
.at-countdown-wrapper.style-two .at-countdown {
  margin-bottom: 60px;
  padding: 40px 30px;
  width: calc(33.33% - 30px);
  background: var(--adata-white);
  margin-right: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .at-countdown-wrapper.style-two .at-countdown {
    width: calc(50% - 30px);
  }
}
@media (max-width: 480px) {
  .at-countdown-wrapper.style-two .at-countdown {
    width: 100%;
  }
}

/*--------------------------------------------------------------
## Logo Carousel
--------------------------------------------------------------*/
.client-logo {
  padding: 20px;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}
.client-logo:hover {
  opacity: 1;
}

.at-client-logo .swiper-wrapper {
  display: flex;
  align-items: center;
}
/*--------------------------------------------------------------
## Pricing
--------------------------------------------------------------*/
.pricing {
  position: relative;
}
.pricing .animated-shape {
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.pricing-switch-wrap {
  align-items: center;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  justify-content: space-between;
}
.pricing-switch-wrap span {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  width: 50%;
  text-align: center;
  z-index: 2;
  position: relative;
  line-height: 35px;
  color: var(--adata-white);
}
.pricing-switch-wrap span.beforeinput.active {
  color: var(--adata-primary-color);
}
.pricing-switch-wrap span.afterinput.active {
  color: var(--adata-primary-color);
}
.pricing-switch-wrap .switch-icon {
  position: relative;
  width: 200px;
  height: 37px;
  border: 1px solid var(--adata-primary-color);
  border-radius: 25px;
  transition: all 0.3s linear;
  background: var(--adata-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
}
.pricing-switch-wrap .switch-icon:after {
  content: "";
  position: absolute;
  left: 4px;
  width: 100px;
  height: 35px;
  background-color: var(--adata-primary-color);
  border-radius: 25px;
  transform: translate3d(-6px, 0, 0);
  transition: all 0.2s ease-in-out;
}
.pricing-switch-wrap.yearly .switch-icon:after {
  transform: translate3d(95px, 0, 0);
}

.yearly-price {
  display: none;
}

.pricing-table {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--adata-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.pricing-table svg {
  position: absolute;
  left: 51%;
  z-index: -1;
  transform: translateX(-50%);
  top: -262px;
}
.pricing-table svg path {
  transition: all 0.3s ease-in-out;
}
.pricing-table .table-feature-image {
  padding: 26px 0 15px;
}
.pricing-table .price-content-wrapper {
  padding: 30px 30px 60px;
}
.pricing-table .pricing-header {
  padding-bottom: 10px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--adata-border-color);
}
.pricing-table .pricing-header .price {
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  color: var(--adata-primary-color);
  margin-bottom: 0;
}
.pricing-table .pricing-header .price-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--adata-black);
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.pricing-table .price-feture {
  margin: 0 0 40px;
  padding: 0 15px;
  list-style: none;
  text-align: left;
}
.pricing-table .price-feture li {
  position: relative;
  z-index: 1;
  padding-left: 25px;
  margin-bottom: 10px;
  padding-left: 24px;
}
.pricing-table .price-feture li:before {
  position: absolute;
  font-size: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 0;
}
.pricing-table .price-feture li.have:before {
  content: "\f00c";
  color: #1cc941;
}
.pricing-table .price-feture li.not:before {
  content: "\f00d";
  color: #f72323;
}
.pricing-table:hover, .pricing-table.featured {
  border-color: var(--adata-primary-color);
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
}

.section-circle-shape {
  position: absolute;
  width: 270px;
  height: 305px;
}
.pricing_wrapper .grid {
  z-index: 2;
}

.at-pricing-table-simple {
  border: 1px solid var(--adata-border-color);
  text-align: center;
  padding: 60px 50px;
  border-radius: 5px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.at-pricing-table-simple:before {
  border-radius: 5px;
  content: "";
  position: absolute;
  z-index: 0;
  background-color: var(--adata-white);
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
}
.at-pricing-table-simple:hover:before {
  transform: scale(1.08);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.at-pricing-table-simple .pricing__icon {
  height: 130px;
  width: 130px;
  line-height: 130px;
  color: var(--adata-primary-color);
  background-color: #dcf1ff;
  border-radius: 50%;
  font-size: 50px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.at-pricing-table-simple .pricing__title {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.at-pricing-table-simple .pricing__title h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.at-pricing-table-simple .pricing__price {
  margin-bottom: 23px;
}
.at-pricing-table-simple .price {
  font-size: 34px;
  font-size: 2.4285714286em;
  font-weight: 700;
  color: var(--adata-primary-color);
  margin: 0;
  position: relative;
  z-index: 2;
}
.at-pricing-table-simple .price span {
  font-size: 18px !important;
}
.at-pricing-table-simple .pricing__feature {
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  text-align: left;
  position: relative;
  z-index: 2;
}
.at-pricing-table-simple .pricing__feature li {
  font-size: 16px;
  line-height: 30px;
  padding-left: 25px;
  position: relative;
  margin-bottom: 7px;
}
.at-pricing-table-simple .pricing__feature li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 15px;
  color: #1cc941;
}
.at-pricing-table-simple.featured {
  position: relative;
}
.at-pricing-table-simple.featured .pricing__icon {
  background-color: #ef530e;
  color: var(--adata-white);
}
.at-pricing-table-simple.featured .price {
  color: #ef530e;
}
.at-pricing-table-simple.featured .at-btn {
  border-color: #ef530e;
}
.at-pricing-table-simple.featured .at-btn:before {
  background: #ef530e;
}
.at-pricing-table-simple.featured .at-btn:hover {
  color: #ef530e;
}

/*--------------------------------------------------------------
## circle Progressbar
--------------------------------------------------------------*/
.circle-progress-item {
  text-align: center;
  margin-bottom: 20px;
}
.circle-progress-item .circle-progress {
  display: inline-flex;
  position: relative;
  margin-bottom: 0px;
  z-index: 2;
}
.circle-progress-item .circle-progress canvas {
  /* background-color: var(--adata-primary-color); */
  border-radius: 50%;
}
.circle-progress-item .circle-progress .suffix {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 28px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.circle-progress-item .progress-title {
  font-size: 24px;
  font-weight: 500;
}

.counddown-container {
  position: relative;
}

.at-progress-wrapper > div:not(:last-child) .circle-progress:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 180px;
  top: 60px;
  left: 120px;
  border-bottom: 1px dashed rgba(247, 247, 254, 0.788);
}
@media (max-width: 576px) {
  .at-progress-wrapper > div:not(:last-child) .circle-progress:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .at-progress-wrapper > div:nth-child(2) .circle-progress:before {
    display: none;
  }
}

/*--------------------------------------------------------------
## Progressbar
--------------------------------------------------------------*/

.skill__bar__wrapper {
  overflow-x: hidden;
}
.skill__wrapper {
  margin-bottom: 5px;
  position: relative;
}
.skill__wrapper p {
  font-weight: 600;
  margin-bottom: 8px;
}
.skill__wrapper::before {
  width: 100%;
  height: 5px;
  content: "";
  display: block;
  position: absolute;
  background: #e4e4e4;
  bottom: 0;
}
.skill__wrapper .skill-bar {
  width: 100%;
  height: 5px;
  background-color: var(--adata-primary-color);
  display: block;
  margin-bottom: 20px;
}
.skill__wrapper .skill1 {
  width: 58%;
}
.skill__wrapper span {
  position: absolute;
  border-top: 0px solid transparent;
  top: 0px;
  right: 0px;
  padding: 0;
  font-size: 16px;
  padding: 3px 0;
  font-weight: 500;
}
.elementor-edit-area .animated {
  animation-fill-mode: both !important;
}

/* progressbar 2 style */
.progressbar2 .skill__wrapper span {
  top: -32px;
}
.progressbar2 .skill-bar::after {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--adata-primary-color);
  display: block;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


.tt-screenshots {
  padding: 20px 0;
}

.screenshot-slider img {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12) !important;
  border-radius: 30px !important;
}

.elementor .screenshot-frame {
  position: absolute;
  width: 270px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 480px;
  top: 9px;
}
.elementor .screenshot-frame img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

/*--------------------------------------------------------------
## Slip Text
--------------------------------------------------------------*/
.text_slip_wrap {
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.single_item {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide-left 60s linear infinite;
  gap: 10px;
}
@keyframes slide-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.single_item h3 {
  margin-bottom: 0;
  color: var(--adata-primary-color);
  font-size: 70px;
  display: flex;
  align-items: center;
}
.single_item h3.slip_text2 {
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: var(--adata-primary-color);
  stroke: var(--adata-primary-color);
  color: var(--adata-white);
}
.single_item h3 i {
  margin-right: 10px;
  font-size: 50px;
  animation: rotate_360 15s reverse linear infinite;
}

/*--------------------------------------------------------------
## Shape Box
--------------------------------------------------------------*/
.adata_shape_box {
  position: relative
}
.shape {
  position: absolute;
  right: auto;
  bottom: auto;
  animation: moveX_50 5s linear alternate running;
  animation-iteration-count: 10;
  z-index: -1;
}
@keyframes moveX_20 {
  0% {
      transform: translateX(0)
  }
  100% {
      transform: translateX(20px)
  }
}
@-webkit-keyframes moveX_20 {
  0% {
      transform: translateX(0)
  }
  100% {
      transform: translateX(20px)
  }
}
@keyframes moveX_50 {
  0% {
      transform: translateX(0)
  }
  100% {
      transform: translateX(50px)
  }
}
@-webkit-keyframes moveX_50 {
  0% {
      transform: translateX(0)
  }
  100% {
      transform: translateX(50px)
  }
}
@keyframes moveY_20 {
  0% {
      transform: translateY(0)
  }
  100% {
      transform: translateY(20px)
  }
}
@-webkit-keyframes moveY_20 {
  0% {
      transform: translateY(0)
  }
  100% {
      transform: translateY(20px)
  }
}
@keyframes moveY_50 {
  0% {
      transform: translateY(0)
  }
  100% {
      transform: translateY(50px)
  }
}
@-webkit-keyframes moveY_50 {
  0% {
      transform: translateY(0)
  }
  100% {
      transform: translateY(50px)
  }
}

@keyframes rotate_360 {
  0% {
      transform: rotate(0deg)
  }
  100% {
      transform: rotate(360deg)
  }
}
@-webkit-keyframes rotate_360 {
  0% {
      transform: rotate(0deg)
  }
  100% {
      transform: rotate(360deg)
  }
}

@keyframes scale {
  0% {
      transform: scale(0)
  }
  100% {
      transform: scale(1)
  }
}
@-webkit-keyframes scale {
  0% {
      transform: scale(0)
  }
  100% {
      transform: scale(1)
  }
}

/*--------------------------------------------------------------
## Video Box
--------------------------------------------------------------*/
.adata-video-image {
  position: relative;
}
.adata-video-image::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.video-icon {
  width: 60px;
  border-radius: 50%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--adata-white);
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.video-icon a {
  height: 100%;
  width: 100%;
  text-align: center;
  color: var(--adata-primary-color);
  position: relative;
}
.video-icon::before, .video-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  animation: waves 3s infinite linear;
  animation-delay: 0s;
  z-index: -2;
}
.video-icon::after {
  animation-delay: 1s;
}
@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4, 1.4);
    opacity: 0;
  }
}
@-webkit-keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4, 1.4);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
## Social Profiles
--------------------------------------------------------------*/
.dt-social-link {
  margin: 0;
}
.dt-social-link li {
  display: inline-block;
  color: var(--adata-text-color);
  font-size: 14px;
  margin-right: 23px;
}
.dt-social-link li:last-child {
  margin-right: 0;
}
.dt-social-link li a {
  color: #696969;
  display: block;
}
.dt-social-link li a:hover {
  color: var(--adata-primary-color);
}

/*--------------------------------------------------------------
## Service Image Box
--------------------------------------------------------------*/
.tt-icon-image-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: 15px;
  padding: 3rem;
}
.tt-icon-image-box:after {
  z-index: 1;
  top: 100%;
  background-image: linear-gradient(75deg, rgba(26, 44, 121, 0.75) 10%, rgba(232, 5, 102, 0.8));
  content: "";
  height: 100%;
  right: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.tt-icon-image-box:before {
  top: 80%;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(40%);
  filter: brightness(40%);
}
.tt-icon-image-box .box-image {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 80%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.tt-icon-image-box .box-image a {
  display: block;
}
.tt-icon-image-box .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.tt-icon-image-box .box-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.tt-icon-image-box .box-info {
  position: relative;
  z-index: 2;
}
.tt-icon-image-box .box-info .icon {
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--adata-primary-color);
}
.tt-icon-image-box .box-info .box-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.tt-icon-image-box .box-info .box-title a {
  color: var(--adata-secondary-color);
}
.tt-icon-image-box .box-info .box-title a:hover {
  color: var(--adata-primary-color);
}
.tt-icon-image-box .box-info p {
  margin: 0;
}
.tt-icon-image-box:hover:after {
  top: 0;
}
.tt-icon-image-box:hover .icon {
  color: var(--adata-white);
}
.tt-icon-image-box:hover .box-info .box-title {
  color: var(--adata-white);
}
.tt-icon-image-box:hover .box-info .box-title a {
  color: var(--adata-white);
}
.tt-icon-image-box:hover .box-info p {
  color: var(--adata-white);
}
.tt-icon-image-box:hover .box-image {
  top: 0;
  opacity: 1;
  transition: all 0.17s ease-out 0.18s;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.team-items, .team-member {
  position: relative;
  z-index: 1;
}
.team-member .member-avater {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.team-member .member-avater a {
  position: relative;
  display: block;
  overflow: hidden;
}
.team-member .member-avater a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team-member .member-avater a img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.team-member .member-avater a:hover:before {
  opacity: 1;
}
.team-member .member-avater a:hover img {
  transform: scale(1.06);
}
.team-member .team-info {
  text-align: center;
  padding-top: 15px;
  position: relative;
  background-color: var(--adata-white);
}
.team-member .team-info .name {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
}
.team-member .team-info .name a {
  color: var(--adata-secondary-color);
}
.team-member .team-info .name a:hover {
  color: var(--adata-primary-color);
}
.team-member .team-info .member-social {
  position: relative;
  height: 40px;
  width: 100%;
  margin-top: 10px;
}
.team-member .team-info .member-social a, .team-member .team-info .member-social .social_link_expand {
  height: 40px;
  width: 40px;
  font-size: 14px;
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team-member .team-info .member-social a:hover, .team-member .team-info .member-social .social_link_expand:hover {
  background: var(--adata-secondary-color);
  color: var(--adata-white);
}
.team-member .team-info .member-social .social_link_expand {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  cursor: pointer;
}
.team-member .team-info .member-social .social_link_expand i {
  transition: all 0.3s ease-in-out;
}
.team-member .team-info .member-social:hover a {
  opacity: 1;
  visibility: visible;
}
.team-member .team-info .member-social:hover a:nth-child(1) {
  transform: translateX(-70px);
}
.team-member .team-info .member-social:hover a:nth-child(2) {
  transform: translateX(30px);
}
.team-member .team-info .member-social:hover a:nth-child(3) {
  transform: translateX(-120px);
}
.team-member .team-info .member-social:hover a:nth-child(4) {
  transform: translateX(80px);
}
/*
.team-member .team-info .member-social.active .social_link_expand i {
  transform: rotate(45deg);
}*/
.team-member.style-two .member-social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  text-align: center;
  height: 0;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team-member.style-two .member-social li {
  display: inline-block;
}
.team-member.style-two .member-social li:not(:last-child) {
  margin-right: 10px;
}
.team-member.style-two .member-social li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  color: var(--adata-white);
  background-color: var(--adata-primary-color);
  border-radius: 50%;
  font-size: 13px;
}
.team-member.style-two .member-social li a:before {
  display: none;
}
.team-member.style-two .member-avater {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 0.5s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}
.team-member.style-two .member-avater img {
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}
.team-member.style-two .member-avater:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.team-member.style-two .member-avater:hover {
  transform: scale(0.9);
}
.team-member.style-two .member-avater:hover:before {
  opacity: 1;
}
.team-member.style-two .member-avater:hover img {
  transform: scale(1);
}
.team-member.style-two .member-avater:hover .member-social {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.team-member.style-two .team-info {
  padding-top: 27px;
}
.team-member.style-two .team-info .name {
  font-weight: 600;
}
.member__image, .team__info {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.member__image img {
    width: 100%;
}
.team__info__wrapper {
  border-radius: 15px;
  background-color: var(--adata-white);
  overflow: hidden;
}
.team__info__wrapper .info {
  position: relative;
  z-index: 22;
}
.team__info__wrapper .team__info .team_content p {
  max-width: 100%;
  font-size: 16px;
  line-height: 26px;
}
.team__info__wrapper .team__info {
  position: relative;
}
@media (max-width: 767px) {
  .team__info__wrapper .team__info {
    padding: 30px 30px 0;
  }
}
.team__info__wrapper .team__info .member__name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--adata-stock-color);
    padding-bottom: 22px;
}
.team__info__wrapper .team__info .member__name span {
    font-size: 16px;
    display: block;
    font-weight: 400;
    margin-top: 10px;
    font-family: var(--adata-primary-font_);
}
.team__info__wrapper .team__info p {
  font-size: 18px;
  line-height: 40px;
  color: var(--adata-text-color);
  max-width: 300px;
}
.team__info__wrapper .team__info p strong {
  color: var(--adata-secondary-color);
}
.team__info__wrapper .team__info .member-social {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}
.team__info__wrapper .team__info .member-social li {
  display: inline-block;
}
.team__info__wrapper .team__info .member-social li:not(:last-child) {
  margin-right: 8px;
}
.team__info__wrapper .team__info .member-social li a {
  display: inline-block;
  height: 35px;
  width: 35px;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.content_title {
  font-size: 25px;
  font-weight: 700;
}
.content_title.profession_title {
    border-bottom: 1px solid var(--adata-stock-color);
    padding-bottom: 32px;
    margin-bottom: 16px;
}
.team-single-wrapper {
  padding: 120px 0 97px;
}
@media (max-width: 991px) {
  .team-single-wrapper {
    padding: 80px 0 41px;
  }
}
#skills {
  position: relative;
  max-width: 550px;
}
.skills.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
	margin-top: 10px;
}
.skill-wrapper .skill:not(:last-child) {
  margin-bottom: 40px;
}
.skill-wrapper .skill-label {
  font-size: 16px;
  color: var(--adata-title-color);
  font-weight: 500;
}

.skill-wrapper .skill .line {
  background-color: #eaecf2;
  position: relative;
  width: 100%;
  height: 6px;
  margin: 10px 0 0 0;
  border-radius: 6px;
}
.skill-wrapper .skill .line .active-line {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 1.5s ease;
  background-color: var(--adata-primary-color);
  border-radius: 6px;
}
.skill-wrapper .skill.color--two .line .active-line {
  background-color: #6b64fe;
}
.skill-wrapper .skill.color--three .line .active-line {
  background-color: #43bdab;
}

.progress-box {
  margin-bottom: 32px;
}
.progress-box p {
  font-size: 20px;
  font-weight: 700;
  color: var(--adata-secondary-color);
  margin: 10px;
}
.progress-box .bar-wrapper {
  padding: 2px;
  border: none;
  position: relative;
}
.progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 100%;
  transition: all 1500ms ease;
  background: var(--adata-primary-color);
}
.progress-box .bar {
  position: relative;
  width: 100%;
  height: 10px;
  border: 1px solid var(--adata-primary-color);
  border-radius: 10px;
  overflow: hidden;
}
.progress-box .count-text {
  position: absolute;
  top: -40px;
  right: 0px;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  color: var(--adata-secondary-color);
  opacity: 1;
  transition: all 500ms ease;
}
.team__contact-form {
  margin-top: 40px;
  background-color: rgb(227 249 245 / 30%);
  padding: 20px;
  border-radius: 5px;
}
.contact-form-title {
  font-size: 25px;
  font-weight: 700;
  margin: 6px 0 24px;
}
.team__contact-form input:not([type=checkbox]):not([type=submit]),.team__contact-form textarea {
  background: var(--adata-white);
}
.team__contact-form label {
  width: 100%;
}
.team__contact-form input[type=submit], .team__contact-form button {
    background-color: var(--adata-primary-color);
    color: var(--adata-white);
    border-radius: 5px;
    padding: 10px 22px;
    font-family: var(--adata-secondary-font);
    font-weight: 700;
    font-size: 16px;
}
.team__contact-form input[type=submit]:hover, .team__contact-form button:hover {
  color: var(--adata-white);
  background-color: var(--adata-secondary-color);
}

/* Team Style Three */
.team-member.style-three {
  margin-left: 20px;
  margin-top: 20px;
}
.team-member.style-three::before {
  content: '';
  display: block;
  position: absolute;
  top: -20px;
  left: -20px;
  right: 0;
  bottom: 20px;
  background: transparent;
  z-index: -1;
  border: 3px solid var(--adata-stock-color);
  border-radius: 10px;
  clip-path: polygon(80% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  transition: .5s;
}
.team-member.style-three:hover::before {
  border-color: var(--adata-primary-color);
}
.team-member.style-three .member-avater {
  border-radius: 0;
  clip-path: polygon(80% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}
.team-member.style-three .member-avater a::before {
  display: none;
}
.team-member.style-three .member-avater a:hover img {
  transform: scale(1);
}
.team-member.style-three .team-info .member-social {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  width: auto;
  right: 0;
}
.team-member.style-three .team-info .member-social a, .team-member.style-three .team-info .member-social .social_link_expand {
  left: auto;
  right: 20px;
  transform: translateX(0);
}
.team-member.style-three .team-info .member-social a, .team-member.style-three .team-info .member-social .social_link_expand {
  width:50px;
  height: 50px;
}
.team-member .team-info .member-social .social_link_expand {
  background-color: var(--adata-secondary-color);
}
.team-member.style-three .team-info .member-social a:hover, .team-member.style-three .team-info .member-social .social_link_expand:hover {
  background-color: var(--adata-primary-color);
}
/* team social icon */
/* .team-member.style-three .team-info .member-social a {
  background-color: rgba(255, 255, 255, 0.3);
} */
.team-member.style-three .team-info .member-social:hover a:nth-child(1) {
  transform: translateY(-60px);
}
.team-member.style-three .team-info .member-social:hover a:nth-child(2) {
  transform: translateY(-120px);
}
.team-member.style-three .team-info .member-social:hover a:nth-child(3) {
  transform: translateY(-180px);
}
.team-member.style-three .team-info .member-social:hover a:nth-child(4) {
  transform: translateY(-240px);
}
/* Team Style Four */
.team-member.style-four .member-avater {
  border-radius: 0;
}
.team-member.style-four .member-avater a::before {
  display: none;
}
.team-member.style-four .member-avater a:hover img {
  transform: scale(1);
}
.team-member.style-four .team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--adata-white);
    margin: 20px;
    border-radius: 10px;
	opacity: 0;
	visibility: hidden;
    z-index: 9;
	transition: .5s;
}
.team-member.style-four:hover .team-info {
	opacity: 1;
	visibility: visible;
}

/* Team Style Five */
.team-member.style-five .member-avater a:hover img {
  transform: scale(1);
}
.team-member.style-five .team-info .designation {
  margin: 0;
  transition: .5s;
}
.team-member.style-five:hover .team-info .designation {
  height: 0;
  overflow: hidden;
  transition: .5s;
}
.team-member.style-five .team-info .member-social {
  height: 0;
  overflow: hidden;
  transition: .5s;
}
.team-member.style-five:hover .team-info .member-social {
  height: 40px;
}
.team-member.style-five .team-info .member-social a {
  position: relative;
  transform: translate(0)!important;
  visibility: visible;
  opacity: 1;
  left: 0;
}
/*--------------------------------------------------------------
## Blog Post Grid
--------------------------------------------------------------*/
.tt-blog-posts {
  position: relative;
}
.tt-blog-posts .section-circle-shape {
  left: 0;
  bottom: 75px;
  width: 320px;
}
.tt-blog-posts .section-circle-shape .circle-bottom {
  right: 0;
  bottom: 0;
}
/*--------------------------------------------------------------
## Single Image
--------------------------------------------------------------*/
.single_image {
  position: relative;
  display: inline-block;
}
.style2 .single_image::before, .style2 .single_image::after {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50%;
  height: 50%;
  background-color: var(--adata-primary-color);
  border-radius: 0 10px 0 0;
  animation: 10s imageborder linear alternate infinite;
  z-index: -1;
}
/* .style2 .single_image::after {
  top:  auto;
  right: auto;
  left: -30px;
  bottom: -30px;
  border-width: 0 0 10px 10px;
} */
@keyframes imageborder {
  0% {
    width: 50%;
	height: 50%
  }
  100% {
    width: 100%;
	height: 100%
  }
}
@-webkit-keyframes bordermove {
  0% {
    width: 50%;
	height: 50%
  }
  100% {
    width: 100%;
	height: 100%
  }
}
/* Image Style 3 */
.style3 .single_image::before {
    content: '';
    width: 110%;
    height: 110%;
    display: block;
    position: absolute;
    top: -5%;
    left: -5%;
    border: 5px dashed var(--adata-primary-color);
    animation: rotate_360 30s linear running infinite;
}
/*--------------------------------------------------------------
## Blog Post Carousel
--------------------------------------------------------------*/
.adata_blog__single__item {
  position: relative;
  transition: .5s;
}
.block_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.adata_blog__poster {
  border: none;
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.adata_blog__poster::before {
  height: 0%;
}
.adata_blog__poster img {
  border: none;
  outline: none;
  width: 100%;
}
.adata_blog__post__meta {
  padding: 22px 20px 27px;
  background-color: var(--adata-white);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: .5s;
}
.blog_two .adata_blog__post__meta {
  height: 100%;
}
.adata_blog__post__meta__head {
  display: flex;
  align-items: center;
  gap: 20px;
}
/*
.adata_blog__single__item.blog_one .adata_blog__post__meta .tertiary.date {
  display: inline-block;
  padding: 8px;
  background: var(--adata-white);
  color: var(--adata-secondary-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--adata-secondary-font);
  border-radius: 5px;
  position: absolute;
  top: -26px;
  right: 20px;
  box-shadow: 0 -1px 10px 2px rgb(0,0,0,.1);
  transition: .5s;
}
.adata_blog__single__item.blog_one .adata_blog__post__meta .tertiary.date:hover {
  background-color: var(--adata-primary-color);
  color: var(--adata-white);
} */
.adata_blog__post__meta span:not(:last-child) {
  margin-right: 8px;
}
.adata_blog__post__meta span {
  text-transform: capitalize;
  display: inline-block;
}
.adata_blog__post__meta span i {
  margin-right: 4px;
}
.adata_blog__poster::before {
  height: 0%;
}
.adata_blog__single__item:hover .adata_blog__poster::before {
  width: 100%;
  height: 100%;
}
.adata_overlay_secondary {
  position: relative;
  overflow: hidden;
}
.adata_overlay_secondary::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-color: var(--adata-primary-color);
  transition: all 0.2s ease-in;
  opacity: .7;
}
/* post carousel style 03 */
.adata_blog__single__item.blog_three .adata_blog__post__meta {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* background: linear-gradient(transparent, var(--adata-primary-color)); */
}
/* post carousel style 03 */
.adata_blog__single__item.blog_three:hover .adata_blog__post__meta {
  opacity: 1;
  visibility: visible;
}
.top_meta span {
  display: inline-block;
  padding: 4px 12px;
  background: var(--adata-white);
  font-size: 20px;
  font-weight: bold;
  font-family: var(--adata-secondary-font);
  border-radius: 2px;
}
.adata_blog__post__meta__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.author_avatar {
  width: 48px;
  height: 48px;
  border: 2px solid var(--adata-white);
  border-radius: 50%;
  overflow: hidden;
}
.author_avatar img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .adata_blog__poster img {
	width: auto;
  }
}
/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
.icon-box {
  transition: .5s;
}
.service_content {
	overflow: hidden;
}
.service_top_text {
  display: block;
}
.icon-box {
  padding: 20px;
}
.icon-box-icon {
  color: var(--adata-text-color);
  font-size: 40px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.icon-box .icon-box-icon i {
  margin-bottom: 25px;
  display: inline-block;
  color: var(--adata-primary-color);
  text-align: center;
  transition: .5s;
}
.icon-box-title {
  overflow: hidden;
}
.icon-box-title h2, .icon-box-title h3 {
  margin: 0 0 15px 0;
  font-size: 20px;
  padding: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.icon-box-title h2:hover{
  color:var(--adata-primary-color);
}
.icon-box-desc p {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.icon-btn {
  margin-top: 10px;
  transition: .5s;
  overflow: hidden;
}
.slick-slide,
.slick-slider {
  outline: 0 !important;
}
/*
.icon-box.main-style:hover .icon-btn a {
  background: var(--adata-primary-color);
  border-color: var(--adata-primary-color);
  color: var(--adata-white) !important;
}*/
/* Icon Box Style Two */
.icon-box.icon-style-two {
  padding: 60px 30px 58px;
  text-align: center;
  position: relative;
  background: var(--adata-white);
  transition: .5s;
  z-index: 1;
  box-shadow: 0px 0 6px rgba(26, 46, 85, 0.10);
}
.icon-box.icon-style-two::before {
  width: 100%;
  height: 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: var(--adata-primary-color);
}
.icon-box.icon-style-two:hover::before{
height:100%;
}
.icon-box.icon-style-two:hover {
  transform: translateY(-8px);
}

.icon-box.icon-style-two .icon-box-icon i {
  font-size: 60px;
  display: inline-block;
  color: var(--adata-primary-color);
  transition: .5s;
  margin: 0;
}
.icon-box.icon-style-two .icon-box-title h2 {
  margin: 25px 0 15px 0;
  transition: .5s;
  font-size: 20px;
  font-weight: 500;
}
.icon-box.icon-style-two .icon-btn {
  margin-top: 0;
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  opacity: 0;
  transition:.4s;
  transform:scale(0);
}
.icon-box.icon-style-two:hover .icon-btn{
  opacity:1;
  transform:scale(1);
}
.icon-box.icon-style-two .icon-btn > a {
  color: var(--adata-primary-color);
  display: inline-block;
}
.icon-box.icon-style-two .icon-btn > a i {
  margin-left: 0;
  font-size: 21px;
  width: 50px;
  height: 50px;
  color: var(--adata-primary-color);
  background: var(--adata-white);
  line-height: 50px;
  box-shadow: 0 0 4px rgba(0,0,0,0.20);
  border-radius: 100%;
}
.icon-box.icon-style-two .icon-btn > a,
.icon-box.icon-style-two .icon-box-desc p {
  transition:.5s;
}
.icon-box.icon-style-two:hover .icon-box-title h2,
.icon-box.icon-style-two:hover .icon-box-title h3,
.icon-box.icon-style-two:hover .icon-btn > a,
.icon-box.icon-style-two:hover .icon-box-icon i,
.icon-box.icon-style-two:hover .icon-box-desc p {
  color:var(--adata-white);
}

/* Icon Box Style Three */

.icon-box.icon-style-three {
  padding: 0;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.20);
  transition: .5s;
  position: relative;
  overflow: hidden;
}
.icon-box.icon-style-three .icon-content-front {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.70);
  width: 100%;
  padding: 0;
  transition:.4s;
}
.icon-box.icon-style-three:hover .icon-content-front{
bottom:-100%;
}
.icon-box.icon-style-three .icon-content-front .icon-box-icon {
  color: var(--adata-white);
  font-size: 40px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  float: left;
  margin-right: 20px;
}
.icon-box.icon-style-three .icon-content-front .icon-box-icon i {
  margin-bottom: 0;
  display: inline-block;
  color: var(--adata-white);
  background: var(--adata-primary-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.icon-box.icon-style-three .icon-content-front .icon-box-title h2 {
  margin: 20px 0 0 0;
  font-size: 20px;
  padding: 0;
  color: var(--adata-white);
}
.icon-box.icon-style-three .icon-box-desc p {
  color: rgba(255,255,255,0.85);
}
.icon-box.icon-style-three .icon-btn {
  margin-top: 30px;
}
.icon-box.icon-style-three .icon-btn > a {
  color: var(--adata-primary-color);
  transition: .5s;
  background: var(--adata-white);
  padding: 14px 30px;
  display: inline-block;
  border-radius: 4px;
  transition: all .5s;
}
.icon-box.icon-style-three .icon-btn > a:hover{
  background:var(--adata-white);
  color: var(--adata-primary-color);
}
.icon-content-back {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background: rgba(12, 90, 219,0.80);
  padding: 0 32px;
  transition:.4s;
}
.icon-box.icon-style-three:hover .icon-content-back{
  top:0;
}
.icon-content-back-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.icon-box .icon-content-back .icon-box-icon i {
  margin-bottom: 0;
  display: inline-block;
  color: var(--adata-white);
  font-size: 60px;
}
.icon-box .icon-content-back .icon-box-title h2 {
  margin: 5px 0 15px 0;
  font-size: 20px;
  padding: 0;
  color: var(--adata-white);
}

/* Service Style 4 */
.icon-box.icon-style-four {
  text-align: center;
  padding: 25px 24px 40px;
  border: 1px solid var(--adata-border-color);
  position: relative;
  z-index: 1;
  background: var(--adata-white);
  border-radius: 4px;
  overflow: hidden;
}
.icon-box.icon-style-four::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  content: "";
  background: var(--adata-primary-color);
  transition: .3s;
  z-index: -1;
}
.icon-box.icon-style-four:hover::before{
  width: 100%;
  height: 100%;
}
.icon-box.icon-style-four .icon-box-icon i{
  color: var(--adata-primary-color);
  font-size: 55px;
}
.icon-box.icon-style-four .icon-box-content h2{
  font-size: 23px;
}
.icon-box.icon-style-four .icon-box-content p{
  margin: 0;
}
.icon-box.icon-style-four:hover .icon-box-icon i,
.icon-box.icon-style-four:hover .icon-box-content h2,
.icon-box.icon-style-four:hover .icon-box-content p{
    color: var(--adata-white);
}
/* Service Style 5 */
.icon-box.style-five {
  padding: 0 20px;
}
.style-five .icon-box-title h3 {
  font-size: 32px;
}
.icon-box-number {
	position: relative;
	color: var(--adata-primary-color);
	font-size: 19px;
	font-weight: 700;
	margin-right: 50px;
	display: block;
}
.icon-box.style-five .icon-box-number::before {
  position: absolute;
  right: -40px;
  top: 16px;
  width: 30px;
  height: 1px;
  background: var(--adata-primary-color);
  content: "";
}
.icon-list {
  padding-left: 0;
  list-style: none;
}
.icon-list li a {
  display: block;
  color: var(--adata-secondary-color);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  padding: 5px 0px;
  transition: .3s;
  }
.icon-list li a:hover {
  margin-left: 15px;
  color: var(--adata-primary-color);
}
.style-five .icon-btn > a {
  color: var(--adata-primary-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.slick-slide.icon-box{
  margin:10px 15px 30px;
}

/* Service Box Style Six */
.icon-box.icon-style-six {
  padding: 40px 30px 40px;
  text-align: center;
  position: relative;
  background: var(--adata-white);
  transition: .5s;
  z-index: 1;
  margin: 0 15px 30px;
  box-shadow: 0px 0 6px rgba(26, 46, 85, 0.10);
}
.icon-box.icon-style-six::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: var(--adata-primary-color);
  transform:scale(0);
}
.icon-box.icon-style-six:hover::before{
transform:scale(1);
}
.icon-box.icon-style-six .icon-box-icon i {
  margin-bottom: 15px;
  display: inline-block;
  color: var(--adata-primary-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-radius: 0;
  margin: 15px 0 25px;
  transition: 0.5s;
}
.icon-box.icon-style-six .icon-box-title h2 {
  margin: 0 0 20px 0;
  font-size: 23px;
}
.icon-box.icon-style-six:hover .icon-box-title h2,
.icon-box.icon-style-six:hover .icon-btn > a,
.icon-box.icon-style-six:hover .icon-box-desc p {
  color: var(--adata-white);
}
.icon-box.icon-style-six:hover .icon-box-icon i{
  background:var(--adata-white);
  color:var(--adata-primary-color);
}

/* Service Box Style Seven */
.icon-box.style-seven{
	margin: 0;
}
.icon-box.style-seven .icon-box-icon i {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #e8ecfc;
  margin-bottom: 33px;
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-align: center;
}
.icon-box.style-seven:hover .icon-box-icon i{
    background: var(--adata-primary-color);
    color: var(--adata-white);
}
.icon-box.style-seven .icon-box-inner h2{
	position: relative;
	font-size: 22px;
}
.icon-box.style-seven .icon-box-inner h2:before{
	content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  background: #d1d1d1;
  width: 100px;
  height: 1px;
  -o-transition: .6s;
  transition: .6s;
  -webkit-transition: .6s;
  right: 0;
  margin: auto;
}
.icon-box.style-seven .icon-btn a {
  border: 1px solid #e8ecfc;
  padding: 10px 27px;
  margin-top: 14px;
  font-weight: 600;
  border-radius: 0 15px;
}
.icon-box.style-seven:hover .icon-btn a{
	color: var(--adata-white);
  background: var(--adata-primary-color);
}

/* Service Box Style Eight */
.icon-box.icon-style-eight {
	padding: 60px 30px 55px;
	text-align: center;
	position: relative;
	background: var(--adata-white);
	box-shadow: 2px 10px 50px rgba(158,158,158,.25);
	border: 2px solid transparent;
	border-radius: 7px;
	margin-bottom: 30px;
	transition: .5s;
  display: flex;
  gap: 10px;
}
.icon-box.icon-style-eight:hover {
	border: 2px solid var(--adata-primary-color);
}
/* Service Style Nine */
.icon-box.icon-style-nine {
  padding: 28px 30px 28px;
  text-align: center;
  position: relative;
  background: var(--adata-white);
  border-radius: 7px;
  transition: .5s;
  box-shadow: 2px 10px 50px rgba(158,158,158,.25);
  z-index: 999;
}
.icon-box.icon-style-nine:hover {
	background: var(--adata-primary-color);
  transform: translateY(-8px);
}
.icon-box.icon-style-nine .icon-box-icon i {
  font-size: 48px;
  display: inline-block;
  color: var(--adata-primary-color);
  transition: .5s;
  margin-bottom: 5px;
}
.icon-box.icon-style-nine .icon-box-title h2 {
    margin: 0 0 12px;
    transition: .5s;
    font-size: 22px;
}
.icon-box.icon-style-nine .icon-btn a:before{
content: '';
  width: 0;
  height: 0;
  border-width: 5px 0 5px 7px;
  border-style: solid;
  display: block;
  right: -38px;
  border-color: transparent transparent transparent #f5f5f5;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
}
.icon-box.icon-style-nine .icon-btn a:after{
  content: "";
  position: absolute;
  right: -32px;
  background: var(--adata-white);
  width: 22px;
  height: 2px;
  top: 55%;
  z-index: 1;
  transform: translateY(-50%);
}
.icon-box.icon-style-nine:hover .icon-box-icon i,
.icon-box.icon-style-nine:hover .icon-box-title h2,
.icon-box.icon-style-nine:hover .icon-box-desc p,
.icon-box.icon-style-nine:hover .icon-btn a{
  color: var(--adata-white);
}
.icon-box.icon-style-nine:hover .icon-btn a{
	color: var(--adata-white)!important;
}
/* Service Style Ten */
.icon-box.icon-style-ten {
  min-height: 400px;
  padding: 35px 30px 40px;
  z-index: 1;
  transition: .3s;
  overflow: hidden;
  position: relative;
}
.icon-box.icon-style-ten:hover{
  transform: translateY(-5px);
}
.icon-box.icon-style-ten::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(1, 4, 20, 0.99)));
  background-image: linear-gradient(to bottom, transparent, rgba(1, 4, 20, 0.99)); 
}
.icon-box.icon-style-ten::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(to bottom,rgba(37, 19, 209,.7),#2513d1);
  background-image: linear-gradient(to bottom,rgba(37, 19, 209,.7),#2513d1);
  opacity: 0.8;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.icon-box.icon-style-ten:hover::after{
  height: 100%;
  top: 0;
  bottom: auto;
}
.icon-box.icon-style-ten .icon-box-content{
  position: absolute;
  bottom: 50px;
  left: 30px;
}
.icon-box.icon-style-ten .icon-box-content h2{
  margin: 0 0 10px 0;
  color: var(--adata-white);
}
.icon-box.icon-style-ten .icon-box-content p{
  color: var(--adata-white);
}
/*service section style eleven*/
.icon-box.icon-style-eleven {
  background: #E6EFFF;
  padding: 36px 39px 42px;
  border-radius: 7px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: .5s;
}
.icon-box.icon-style-eleven:hover {
  transform: translate3d(0,-5px,0);
}
.icon-box.icon-style-eleven .service__box--icon {
  float: right;
  position: relative;
  top: 20px;
}
.icon-box.icon-style-eleven .icon-box-title h2, .icon-box-title h3 {
  margin: 0 0 15px 0;
  font-size: 24px;
}

.icon-box.icon-style-eleven .icon-btn {
  margin-top: 34px;
}
.icon-box.icon-style-eleven .icon-btn > a {
  display: inline-block;
  color: var(--adata-white);
  font-weight: 400;
  padding: 9px 28px;
  background: var(--adata-primary-color);
  border-radius: 5px;
  transition: .5s;
  border: 1px solid #1129B9;
  font-size: 16px;
  transition: .5s;
}
.icon-box.icon-style-eleven:before {
  position: absolute;
  content: "";
  z-index:-1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--adata-primary-color);
  border-radius: 10px;
  transition: .5s;
}
.icon-box.icon-style-eleven:hover:before{
	left: 0;
	width: 100%;
}
.icon-box.icon-style-eleven:hover .icon-box-title h2, .icon-box-title h3,
.icon-box.icon-style-eleven:hover .icon-box-desc p{
	color: var(--adata-white);
}
.icon-box.icon-style-eleven:hover .icon-btn > a{
	border-color: var(--adata-white);
	background: transparent;
}
/*service box style twelve*/
.icon-box.icon-style-twelve {
  border-radius: 5px;
  filter: drop-shadow(0px 5px 30px rgba(162,188,231,0.1));
  background-color: var(--adata-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 10px;
  margin-right: 10px;
  transition: .5s;
}
.icon-box.icon-style-twelve:hover {
    transform: translate3d(0,-6px,0);
}
.icon-box.icon-style-twelve:after {
  position: absolute;
  content: "";
  z-index: -1;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: url(../images/box-bg2.png);
  transition: .5s;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.icon-box.icon-style-twelve:hover:after{
	left: 0;
	width: 100%;
}
.icon-box.icon-style-twelve .icon-inner-content {
  padding: 17px 32px 13px;
}

.icon-box.icon-style-twelve .icon-box-icon {
  display: inline-block;
  margin-right: 8px;
}
.icon-box.icon-style-twelve .icon-box-icon i {
  color: var(--adata-white);
  height: 37px;
  width: 37px;
  border-radius: 100%;
  background: #0ED1B3;
  font-size: 18px;
  line-height: 37px;
  text-align: center;
  margin: 0 0 24px;
}
.two .icon-box.icon-style-twelve .icon-box-icon i{
  background: #FFB301!important;
}
.three .icon-box.icon-style-twelve .icon-box-icon i{
  background: #18A8FF!important;
}
.four .icon-box.icon-style-twelve .icon-box-icon i{
	 background: #F752D9!important;
}
.five .icon-box.icon-style-twelve .icon-box-icon i{
  background: #FF6A34!important;
}
.six .icon-box.icon-style-twelve .icon-box-icon i{
  background: #974DFF!important;
}
.icon-box.icon-style-twelve .icon-box-title {
  overflow: hidden;
  display: inline-block;
}
.icon-box.icon-style-twelve .icon-box-title h2, .icon-box-title h3 {
  margin: 0;
  font-size: 15px;
  padding: 0;
  color: var(--adata-primary-color);
  font-weight: 500;
}
.icon-box.icon-style-twelve .icon-box-content h2 {
  font-size: 24px;
  margin: 0 0 0;
}
.icon-box.icon-style-twelve .icon-box-desc p {
  margin: 14px 0 21px;
}
.icon-box.icon-style-twelve .icon-btn {
  margin: 0 0 0;
  position: relative;
  padding: 15px 32px 21px;
  border-top: 1px solid rgba(35,35,35,0.07058823529411765);
  transition: .5s;
}
.icon-box.icon-style-twelve .icon-btn a {
  display: inline-block;
  color: var(--adata-primary-color);
  transition: .5s;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.icon-box.icon-style-twelve .icon-btn a:after {
  position: absolute;
  content: "";
  top: 18px;
  left: 0;
  height: 1px;
  width: 73%;
  background: var(--adata-primary-color);
  transition: .5s;
}
.icon-box.icon-style-twelve:hover .icon-box-title h2, .icon-box-title h3,
.icon-box.icon-style-twelve:hover .icon-box-content h2,
.icon-box.icon-style-twelve:hover .icon-box-desc p,
.icon-box.icon-style-twelve:hover .icon-btn a{
	color: var(--adata-white)f;
}
.icon-box.icon-style-twelve:hover .icon-btn{
	border-color: rgba(255,255,255,0.1019607843137254);
}
.icon-box.icon-style-twelve:hover .icon-btn a:after{
	background: var(--adata-white);
}
/*service box xtyle thirteen*/
.icon-box.icon-style-thirteen {
  overflow: hidden;
  margin-bottom: 7px;
  position: relative;
  transition: .5s;
  border-radius: 10px;
  filter: drop-shadow(0 0 20px rgba(170,192,228,0.3));
  background-color: var(--adata-white);
  padding: 20px 20px 29px;
  margin-right: 7px;
}
.icon-box.icon-style-thirteen:hover {
    transform: translate3d(0,-6px,0);
}
.icon-box.icon-style-thirteen .thumb{
	position: relative;
	z-index: 1;
}
.icon-box.icon-style-thirteen .thumb:before {
  position: absolute;
  content: "";
  left:50%;
  bottom: 0;
  width:0;
  height:100%;
  border-radius: 10px;
  background-color: rgba(4,96,248,0.6);
  transition: .8s;
}
.icon-box.icon-style-thirteen:hover .thumb:before{
	width: 100%;
	left: 0;
}
.icon-box.icon-style-thirteen .icon-box-icon {
  display: inline-block;
}
.icon-box.icon-style-thirteen .icon-box-content {
  padding: 16px 11px 0;
}
.icon-box.icon-style-thirteen .icon-box-icon {
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 100%;
  background: #D4E4FF;
  font-size: 12px;
  margin: 0 0 8px;
}
.icon-box.icon-style-thirteen .icon-box-icon i {
  font-size: 12px;
  margin: 0;
}
.icon-box.icon-style-thirteen .title {
  display: inline-block;
  position: relative;
  top: 4px;
  left: 6px;
}
.icon-box.icon-style-thirteen .icon-box-title{
  display: inline-block;
}
.icon-box.icon-style-thirteen .icon-box-title h2 {
  font-size: 16px!important;
  color: var(--adata-primary-color);
  margin: 0;
  font-weight: 500!important;
}
.icon-box.icon-style-thirteen .icon-box-content h2 {
  font-size: 24px;
  margin: 4px 0 0;
  font-weight: 700;
}
/*style fourteen*/
.icon-box.icon-style-fourteen {
  height: inherit;
  border-radius: 5px;
  filter: drop-shadow(0px 5px 30px rgba(162,188,231,0.3));
  background-color: var(--adata-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 8px 8px 0;
  text-align: center;
  padding: 18px 23px 15px;
  transition: .3s;
}
.icon-box.icon-style-fourteen:hover {
  transform: translate3d(0,-6px,0);
}
.icon-box.icon-style-fourteen:before {
  position: absolute;
  content: "";
  bottom: 0;
  left:50%;
  height:100%;
  width:0;
  background: #02CB99;
  z-index: -1;
  transition: .5s;
}
.two .icon-box.icon-style-fourteen:before {
  background: #EA599E;
}
.three .icon-box.icon-style-fourteen:before {
  background:#FF6A01;
}
.four .icon-box.icon-style-fourteen:before {
  background: var(--adata-primary-color);
}
.five .icon-box.icon-style-fourteen:before {
  background: #774BE5;
}
.icon-box.icon-style-fourteen:hover:before{
  width: 100%;
  left: 0;
}
.icon-box.icon-style-fourteen:hover .icon-box-title h2,
.icon-box.icon-style-fourteen:hover .icon-box-desc p{
  color: var(--adata-white);
}
.icon-box.icon-style-fourteen:hover .icon-box-icon i{
  background: var(--adata-white)!important;
}
.four .icon-box.icon-style-fourteen:hover .icon-box-icon i{
  background: var(--adata-white);
}
.icon-box.icon-style-fourteen .icon-box-icon i {
  width: 116px;
  height: 116px;
  line-height:116px;
  background: #DFF3E7;
  border-radius: 100%;
  color: #00CC99;
  display: inline-block;
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
  font-size: 50px;
}
.two .icon-box.icon-style-fourteen .icon-box-icon i {
  background: #FCE2EF;
  color: #E63D8E;
}
.three .icon-box.icon-style-fourteen .icon-box-icon i {
  background: #FFEAD9;
  color: #FE6A00;
}
.four .icon-box.icon-style-fourteen .icon-box-icon i {
  background: rgba(12, 79, 289, .3);
  color: #0C59DB;
}
.five .icon-box.icon-style-fourteen .icon-box-icon i {
  background: #EEEAFB;
  color: #8E6DE0;
}

.icon-box.icon-style-fourteen .icon-box-title h2, .icon-box-title h3 {
  margin: 2px 0 12px 0;
  font-size: 22px;
}
.icon-box.icon-style-fourteen .icon-box-desc p {
  line-height: 30px;
}
/*style 15*/

.icon-box.style-15 {
  padding: 6px 18px 29px;
  position: relative;
  border: 1px solid #FF9A62;
  border-radius: 4px;
  transition: .5s;
}
.two .icon-box.style-15 {
  border: 1px solid #2875FF;
}
.three .icon-box.style-15 {
  border: 1px solid#54D7AF;
}
.four .icon-box.style-15 {
  border: 1px solid#F05D8A;
}
.icon-box.style-15:hover {
  transform: translate3d(0,-6px,0);
}
.icon-box.style-15 .icon-box-icon {
  display: inline-block;
  height: 100px;
  width: 90px;
  line-height: 100px;
  background: #FF9A62;
  clip-path: polygon(0% 11%, 104% 0, 100% 100%, 0% 100%);
  border-radius: 6px;
  text-align: center;
}
.icon-box.style-15 .icon-box-title h2, .icon-box-title h3 {
  margin: 25px 0 14px 0;
  line-height: 34px;
}
.icon-box.style-15 .icon-btn {
  margin-top: 21px;
}
.icon-box.style-15 .icon-btn > a {
  border-radius: 0;
  color: var(--adata-white);
  font-size: 16px;
  font-weight: 500;
}
.icon-box.style-15 .icon-btn > a i {
    margin-left: 0;
}
.two .icon-box.style-15 .icon-box-icon {
  background: var(--adata-primary-color);
  clip-path: polygon(0% 0%, 100% 9%, 100% 100%, 0% 100%);
}
.four .icon-box.style-15 .icon-box-icon {
  background: #F05D8A;
  clip-path: polygon(0% 11%, 104% 0, 100% 100%, 0% 100%);
}

/*style sisteen*/
.icon-box.style-16 {
  padding: 17px 8px 19px 44px;
  border-width: 10px !important;
  border-style: solid!important;
  border-color: var(--adata-border-color);
  border-bottom-color: var(--adata-primary-color);
  border-top-color: var(--adata-primary-color);
	transition: .5s;
  border-radius: 20px;
}
.icon-box.style-16:hover {
    border-color: var(--adata-primary-color);
}
.icon-box.style-16::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px dashed var(--adata-border-color);
  border-radius: 20px;
}

/*--------------------------------------------------------------
## Process Box
--------------------------------------------------------------*/
.prosess-box-wrapper {
  position: relative;
}
.prosess-box-wrapper .border-shape {
  position: absolute;
  top: 85px;
  left: 54%;
  transform: translateX(-50%);
  z-index: 1;
  width: fit-content;
  text-align: center;
}
@media (max-width: 1024px) {
  .prosess-box-wrapper .border-shape {
    display: none;
  }
}

.at-process-box {
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  background-color: var(--adata-white);
  border-radius: 5px;
  padding: 50px 35px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.at-process-box .icon-container {
  font-size: 45px;
  color: var(--adata-primary-color);
  display: block;
  margin-bottom: 18px;
}
.at-process-box .icon-container i {
  line-height: 1;
}
.at-process-box .box-content .box-title {
  margin-bottom: 3px;
}
.at-process-box .box-content p {
  margin-bottom: 20px;
}

/* ==================== ##Services 3 ==================== */
.at_circuit_services .services_wrapper {
  position: relative;
  z-index: 1;
  height: 0;
  padding-top: 100%;
}

.at_circuit_services .services_wrapper:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 10%;
  top: 10%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.05);
}
.at_circuit_services .services_item-icon {
  position: absolute;
  z-index: 1;
  width: 18%;
  height: 18%;
  color: var(--adata-primary-color);
  font-size: 50px;
  border-radius: 50%;
  box-shadow: 0 0 46px 0 rgba(0, 0, 0, 0.1);
  left: 41%;
  top: 41%;
  cursor: pointer;
  background-color: var(--adata-white);
  transition: all 0.3s ease-in-out;
}
.at_circuit_services .services_item-icon .services_icon {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 1;
  line-height: 1;
}
.at_circuit_services .services_item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25% 27%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.at_circuit_services .services_item-wrap.active .services_item-icon {
  color: var(--adata-white);
  background-color: var(--adata-primary-color);
}

.at_circuit_services .services_item-wrap.active .services_item-icon + .services_item-content {
  opacity: 1;
  visibility: visible;
}

.at_circuit_services .services_subtitle {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  color: var(--adata-primary-color);
}

.at_circuit_services .services_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.at_circuit_services.tablet_resp .services_descr {
  display: none;
}

.at_circuit_services.tablet_resp .services_title {
  font-size: 22px;
  margin-bottom: 0;
}

.at_circuit_services.tablet_resp .services_icon {
  font-size: 75%;
}

.at_circuit_services.mobile_resp .services_descr {
  display: none;
}

.at_circuit_services.mobile_resp .services_title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}

.at_circuit_services.mobile_resp .services_subtitle {
  font-size: 13px;
}

.at_circuit_services.mobile_resp .services_icon {
  font-size: 55%;
}

@-webkit-keyframes circuit_service_hexagon_1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circuit_service_hexagon_1 {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circuit_service_hexagon_1 {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circuit_service_hexagon_1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes circuit_service_hexagon_2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@-moz-keyframes circuit_service_hexagon_2 {
  0% {
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@-o-keyframes circuit_service_hexagon_2 {
  0% {
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@keyframes circuit_service_hexagon_2 {
  0% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@-moz-document url-prefix() {
  .services_icon-grad1,
.services_icon-grad2 {
    -webkit-text-fill-color: initial;
  }
}
.prosess-box-two {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}
.prosess-box-two:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #f7fbff;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.prosess-box-two img {
  border-radius: 5px;
}
.prosess-box-two .box-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 100px 40px;
}
.prosess-box-two .box-icon {
  font-size: 70px;
  color: var(--adata-primary-color);
  line-height: 1;
  margin-bottom: 25px;
}
.prosess-box-two .serial-number {
  font-size: 90px;
  font-size: 6.4285714286em;
  font-weight: 700;
  color: #ecf0f3;
  position: absolute;
  right: 40px;
}
.prosess-box-two .box-title {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
}
.prosess-box-two:hover:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
}
.prosess-box-two:hover .box-title {
  color: var(--adata-white);
}
.prosess-box-two:hover .description {
  color: var(--adata-white);
}
.prosess-box-two:hover .serial-number {
  color: rgba(255, 255, 255, 0.2);
}

.prosess-box-three .serial-number {
  font-size: 50px;
  color: var(--adata-white);
  height: 100px;
  width: 100px;
  line-height: 110px;
  background: var(--adata-primary-color);
  border-radius: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
}
.prosess-box-three .box-title {
  font-size: 30px;
  margin-bottom: 11px;
  font-weight: 600;
}
.prosess-box-three .description {
  margin-bottom: 0;
}

.image-overlay-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-height: 767px) {
  .image-overlay-box {
    min-height: 350px;
  }
}
.image-overlay-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
}
.image-overlay-box img {
  border-radius: 15px !important;
  height: 100% !important;
  object-fit: cover;
}
.image-overlay-box .box-content {
  position: absolute;
  left: 90px;
  bottom: 75px;
  z-index: 2;
  max-width: 500px;
}
@media (max-width: 991px) {
  .image-overlay-box .box-content {
    bottom: auto;
    transform: translateY(-50%);
    top: 50%;
  }
}
@media (max-width: 767px) {
  .image-overlay-box .box-content {
    left: 0;
    padding: 30px;
  }
}
.image-overlay-box .box-title {
  font-size: 40px;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--adata-white);
}
@media (max-width: 991px) {
  .image-overlay-box .box-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .image-overlay-box .box-title br {
    display: none;
  }
}
@media (max-width: 576px) {
  .image-overlay-box .box-title {
    font-size: 24px;
  }
}
.image-overlay-box .description {
  color: var(--adata-white);
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .image-overlay-box .description {
    font-size: 14px;
    line-height: 26px;
  }
}
.image-overlay-box .at-btn {
  padding: 9px 20px;
}

.btm-shape {
  position: relative;
}
.btm-shape:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: var(--adata-white);
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #newsletter {
    padding: 40px 30px;
  }
}
#newsletter .section-heading {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #newsletter .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
}
#newsletter .section-heading .section-title {
  color: var(--adata-white);
  font-size: 45px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  #newsletter .section-heading .section-title {
    font-size: 30px;
  }
}
#newsletter .section-heading .subtitle {
  font-size: 18px;
  color: var(--adata-white);
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #newsletter .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
}

.newsletter-form, .score-form {
  max-width: 1050px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .newsletter-form, .score-form {
    max-width: 800px;
  }
}
@media (max-width: 1200px) {
  .newsletter-form, .score-form {
    max-width: 700px;
  }
}
.newsletter-form .newsletter-inner, .score-form .newsletter-inner {
  display: flex;
  border-radius: 30px;
  padding: 5px;
}
.newsletter-form .form-result, .score-form .form-result {
  margin: 20px 5px 0;
}
.newsletter-form input:not([type=checkbox]):not([type=submit]), .score-form input:not([type=checkbox]):not([type=submit]) {
  border-radius: 5px;
  padding: 17px 25px;
  line-height: 19px;
  font-size: 18px;
  height: 60px;
  flex: 1;
  background: transparent;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.149);
  color: var(--adata-white);
}
.newsletter-form input:not([type=checkbox]):not([type=submit])::placeholder, .score-form input:not([type=checkbox]):not([type=submit])::placeholder {
  color: var(--adata-white);
}
.newsletter-form input:not([type=checkbox]):not([type=submit]):focus, .score-form input:not([type=checkbox]):not([type=submit]):focus {
  border-color: var(--adata-white);
  box-shadow: none;
}
.newsletter-form .newsletter-submit, .score-form .newsletter-submit {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  height: 60px;
  border: 1px solid var(--adata-primary-color);
  padding: 0 30px;
  border-radius: 5px;
  width: 100%;
  outline: 0;
}
.newsletter-form .newsletter-submit:hover, .score-form .newsletter-submit:hover {
  color: var(--adata-white);
  border-color: var(--adata-white);
}
.newsletter-form .newsletter-submit .fa-spin, .score-form .newsletter-submit .fa-spin {
  display: none;
}
.newsletter-form .newsletter-submit.clicked .fa-spin, .score-form .newsletter-submit.clicked .fa-spin {
  display: block;
}
.newsletter-form .newsletter-submit.clicked span, .score-form .newsletter-submit.clicked span {
  display: none;
}

.seo-score-wrapper .section-heading {
  margin-bottom: 37px;
}
.seo-score-wrapper .section-heading .section-title {
  color: var(--adata-white);
  margin-bottom: 0;
}

.scoreform-inner {
  display: flex;
  flex-wrap: wrap;
}
.scoreform-inner input:not([type=checkbox]):not([type=submit]) {
  margin-right: 30px;
}
.scoreform-inner #score-form-url {
  max-width: 500px;
}
@media (max-width: 767px) {
  .scoreform-inner #score-form-url {
    max-width: 100%;
    flex: auto;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.scoreform-inner #score-form-email {
  max-width: 300px;
}
@media (max-width: 420px) {
  .scoreform-inner #score-form-email {
    width: 100%;
    flex: auto;
    margin-right: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.scoreform-inner .score-submit {
  font-size: 20px;
  padding: 9px 45px;
  height: 60px;
}
.scoreform-inner .score-submit:hover {
  color: var(--adata-white);
  border-color: var(--adata-white);
}

.animated-rocket {
  position: absolute;
  right: -150px;
  top: 56%;
  transform: translateY(-50%);
}
@media (max-width: 1440px) {
  .animated-rocket {
    right: -80px;
  }
}
@media (max-width: 1440px) {
  .animated-rocket {
    right: -40px;
  }
}
@media (max-width: 992px) {
  .animated-rocket {
    display: none;
  }
}

/*--------------------------------------------------------------
## Fun Fact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/
.tabs-wrapper {
  position: relative;
}

.dot-bg {
  position: absolute;
  right: 100px;
  top: -32%;
  z-index: 1;
}
@media (max-width: 1480px) {
  .dot-bg {
    max-width: 450px;
    right: 50px;
    top: -20%;
  }
}
@media (max-width: 1480px) {
  .dot-bg {
    max-width: 450px;
    right: 0;
    top: -20%;
  }
}
@media (max-width: 991px) {
  .dot-bg {
    display: none;
  }
}

#adata-tabs {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
#adata-tabs #adata-tabs-nav {
  margin: 0 30px 0 0;
  padding: 30px 0 30px 20px;
  list-style: none;
  background: #f7f7fe;
  width: 365px;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  #adata-tabs #adata-tabs-nav {
    width: 275px;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  #adata-tabs #adata-tabs-nav {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
#adata-tabs #adata-tabs-nav li {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  #adata-tabs #adata-tabs-nav li {
    border-radius: 30px;
  }
}
#adata-tabs #adata-tabs-nav li a {
  font-size: 22px;
  font-weight: 600;
  padding: 30px 0 25px 30px;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 991px) {
  #adata-tabs #adata-tabs-nav li a {
    font-size: 16px;
    padding: 15px 15px 15px 25px;
  }
}
#adata-tabs #adata-tabs-nav li a i {
  display: inline-block;
  vertical-align: -4px;
  margin-right: 15px;
  font-size: 31px;
  color: var(--adata-primary-color);
}
@media (max-width: 991px) {
  #adata-tabs #adata-tabs-nav li a i {
    font-size: 20px;
  }
}
#adata-tabs #adata-tabs-nav li a span {
  display: inline-block;
}
#adata-tabs #adata-tabs-nav li a:hover, #adata-tabs #adata-tabs-nav li a:focus {
  color: var(--adata-secondary-color);
}
#adata-tabs #adata-tabs-nav li.active {
  background: var(--adata-white);
}
#adata-tabs.history-tabs {
  display: block;
  position: relative;
}
#adata-tabs.history-tabs #history-tabs-nav {
  list-style: none;
  display: flex;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  padding: 0;
}
@media (max-width: 576px) {
  #adata-tabs.history-tabs #history-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#adata-tabs.history-tabs #history-tabs-nav:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  border-top: 1px dashed #929598;
  z-index: -1;
}
@media (max-width: 576px) {
  #adata-tabs.history-tabs #history-tabs-nav:before {
    display: none;
  }
}
#adata-tabs.history-tabs #history-tabs-nav li {
  display: inline-block;
}
@media (max-width: 576px) {
  #adata-tabs.history-tabs #history-tabs-nav li {
    width: calc(33.33% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
#adata-tabs.history-tabs #history-tabs-nav li a {
  border-radius: 5px;
  background-color: var(--adata-white);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.07);
  padding: 17px 25px 13px;
  font-size: 24px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  color: var(--adata-black);
  display: block;
}
@media (max-width: 767px) {
  #adata-tabs.history-tabs #history-tabs-nav li a {
    min-width: 90px;
    padding: 17px 20px 13px;
  }
}
#adata-tabs.history-tabs #history-tabs-nav li.active a {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}
#adata-tabs.history-tabs .tab-image img {
  max-height: initial;
}
@media (max-width: 767px) {
  #adata-tabs.history-tabs .tab-image {
    margin-bottom: 40px;
  }
}

.adata-tabs-wrapper {
  flex: 2;
}
.adata-tabs-wrapper .content {
  position: relative;
}
.adata-tabs-wrapper .content:not(:first-child) {
  display: none;
}

.adata-tabs-wrapper {
  border-radius: 5px;
  background-color: var(--adata-white);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
  padding: 50px 50px 45px;
}
@media (max-width: 480px) {
  .adata-tabs-wrapper {
    padding: 30px;
  }
}
.adata-tabs-wrapper .tab-image {
  margin-bottom: 37px;
  text-align: center;
}
.adata-tabs-wrapper .tab-image img {
  max-height: 300px;
  width: auto;
}
.adata-tabs-wrapper .title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.adata-tabs-wrapper p {
  margin: 0;
}
.history-tabs .adata-tabs-wrapper {
  background: transparent;
  box-shadow: none;
}
.history-tabs .adata-tabs-wrapper .title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}
.history-tabs .adata-tabs-wrapper .at-btn {
  margin-top: 33px;
}

#adata-history-tabs-content {
  padding: 82px 15px 0;
}
#adata-history-tabs-content .tab-image {
  margin: 0;
}
#adata-history-tabs-content .tabs-content {
  padding-left: 15px;
}

/*--------------------------------------------------------------
## Faq
--------------------------------------------------------------*/
.faq_content {
  position: relative;
}
.faq_content .card-header {
  padding: 0;
  background-color: transparent;
  line-height: 18px;
  border-bottom: 0;
}
.faq_content .card .card-header .btn {
  position: relative;
  background: transparent;
  margin-bottom: 0;
  border-bottom: 1px solid #e8e8e8;
  display: inline-flex;
  width: 100%;
  color: var(--adata-secondary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  padding: 0 0 28px 0;
  border-radius: 0;
  transition: .5s;
  font-family: var(--adata-secondary-font);
  text-align: left;
}
.faq_content .card .card-header .btn:not(.collapsed) {
	color: var(--adata-primary-color);
}
.faq_content .card .card-header .btn span.faq-index {
  margin-right: 16px;
}
.faq_content .card .card-header .btn:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  transition: 0.5s;
  color: var(--adata-secondary-color);
  background-color: var(--adata-white);
  font-size: 16px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--adata-stock-color);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* transform: rotate(0deg); */
  position: absolute;
  right: 0;
}
.faq_content .card .card-header .btn:not(.collapsed):after {
  color: var(--adata-white);
  content: '\f068';
  /* transform: rotate(90deg); */
  background-color: var(--adata-primary-color);
}
.faq_content .card {
  border: 0;
  background: var(--adata-white);
  transition: .5s;
}
/* .faq_content .card:not(:has(.card-header .collapsed)) {
    background-color: #FFF0ED;
    padding: 20px;
} */
.faq_content .card:not(:last-child) {
  margin-bottom: 20px;
}
.faq_content .card-body {
  padding: 15px 0 0;
  font-size: 16px;
}
.faq_content .card-body p {
  margin: 0
}
.btn-link:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
## Call to action
--------------------------------------------------------------*/
.call-to-action {
  padding: 70px 50px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .call-to-action .actions-content {
    text-align: center;
  }
}
.call-to-action .actions-content .action-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--adata-white);
  margin-bottom: 10px;
}
.call-to-action .actions-content p {
  color: var(--adata-white);
  margin: 0;
}
.call-to-action .button-wrapper {
  padding-left: 60px;
}
@media (max-width: 991px) {
  .call-to-action .button-wrapper {
    text-align: center;
    margin-top: 30px;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
## Contact Form
--------------------------------------------------------------*/
.contact-info-wrapper .contact-info {
  margin-bottom: 23px;
}
.contact-info-wrapper .contact-info .info-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-info-wrapper .contact-info .info-title.style-two {
  color: var(--adata-primary-color);
}
.contact-info-wrapper .contact-info p {
  margin-bottom: 0;
}
.contact-info-wrapper .phone {
  display: flex;
  margin-bottom: 21px;
}
.contact-info-wrapper .phone i {
  color: var(--adata-primary-color);
  margin-right: 12px;
  font-size: 25px;
}
@media (max-width: 480px) {
  .contact-info-wrapper .phone i {
    font-size: 20px;
  }
}
.contact-info-wrapper .phone .phone-number {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 480px) {
  .contact-info-wrapper .phone .phone-number {
    font-size: 24px;
  }
}
.contact-info-wrapper .email {
  margin-bottom: 44px;
}
.contact-info-wrapper .email .email-id {
  font-size: 20px;
  color: #4c4c4c;
  margin: 0;
}
.contact-form-7 p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Coming Soon
--------------------------------------------------------------*/
.countdown {
  text-align: center;
  font-weight: 600;
  color: var(--adata-secondary-color);
  font-size: 82px;
  display: flex;
  justify-content: center;
  margin: 53px 0 46px;
}
@media (max-width: 991px) {
  .countdown {
    margin: 30px 0 35px;
  }
}

.CountdownContent {
  font-size: 82px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media (max-width: 1400px) {
  .CountdownContent {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  .CountdownContent {
    font-size: 36px;
  }
}

.CountdownContent .CountdownLabel {
  color: var(--adata-secondary-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 1200px) {
  .CountdownContent .CountdownLabel {
    font-size: 14px;
  }
}

.counting {
  position: relative;
  margin: 0 33px;
  line-height: 1;
  min-width: 100px;
}
@media (max-width: 1400px) {
  .counting {
    min-width: 80px;
    margin: 0 20px;
  }
}
@media (max-width: 1200px) {
  .counting {
    margin: 0 15px;
  }
}
@media (max-width: 991px) {
  .counting {
    margin: 0 10px;
    min-width: 70px;
  }
}
.counting .CountdownSeparator {
  position: absolute;
  right: -40px;
  top: 0;
  font-size: 63px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .counting .CountdownSeparator {
    font-size: 40px;
    right: -27px;
    top: 5px;
  }
}
@media (max-width: 1200px) {
  .counting .CountdownSeparator {
    right: -20px;
  }
}
@media (max-width: 991px) {
  .counting .CountdownSeparator {
    right: -15px;
  }
}
.counting .minus {
  line-height: 1;
  position: relative;
  top: -36px;
  left: -9px;
}
@media (max-width: 1400px) {
  .counting .minus {
    top: -28px;
    left: -9px;
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .counting .minus {
    top: -20px;
    font-size: 40px;
  }
}

.coming-soon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  .coming-soon {
    height: auto;
    padding: 100px 0;
  }
}
.coming-soon .coming-soon-banner {
  flex: 36% 0 0;
  height: 100%;
}
.coming-soon .coming-soon-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .coming-soon .coming-soon-banner {
    display: none;
  }
}
.coming-soon .coming-soon-content {
  flex: 64% 0 0;
}
@media (max-width: 1280px) {
  .coming-soon .coming-soon-content {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .coming-soon .coming-soon-content {
    flex: 100% 0 0;
  }
}
.coming-soon .coming-soon-content .cu_btn.animate_btn_2 {
  max-width: 140px;
}
.coming-soon .top-logo {
  margin-bottom: 85px;
}
@media (max-width: 1280px) {
  .coming-soon .top-logo {
    margin-bottom: 35px;
  }
}
.coming-soon .top-logo img {
  max-height: 52px;
}
.coming-soon .soon-title {
  font-size: 48px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .coming-soon .soon-title {
    font-size: 36px;
  }
}
.coming-soon .newsletter-form {
  max-width: 540px;
  margin: 0 auto;
}
.coming-soon .newsletter-form .newsletter-inner {
  display: flex;
}
.coming-soon .newsletter-form input:not([type=checkbox]):not([type=submit]) {
  border: 1px solid #e0e0e0;
  color: #899097;
  padding: 13px 30px;
  max-width: 380px;
  flex: 1;
  margin-right: 20px;
}
.coming-soon .cu_btn {
  min-width: 140px !important;
}
.coming-soon .footer-social-link {
  margin-top: 45px;
}
@media (max-width: 991px) {
  .coming-soon .footer-social-link {
    margin-top: 30px;
  }
}
.coming-soon .right-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .coming-soon .right-shape {
    display: none;
  }
}

/*--------------------------------------------------------------
## Mailchim
--------------------------------------------------------------*/
.mc4wp-form-fields input:not([type="submit"]) {
    height: 50px;
    background-color: transparent !important;
    color: var(--adata-white) !important;
    border: 1px solid var(--adata-white) !important;
    border-radius: 5px !important;
    margin-bottom: 0 !important;
}
.mc4wp-form-fields input:not([type=checkbox]):not([type=submit])::placeholder {
    color: var(--adata-white);
}
.mc4wp-form-fields input[type="submit"], .mc4wp-form-fields button {
    background-color: var(--adata-primary-color);
    color: var(--adata-white);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

/*--------------------------------------------------------------
## Image
--------------------------------------------------------------*/
.image-wrapper {
  position: relative;
}
.image-wrapper .content-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.popup-play-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 55px;
  width: 55px;
  background: var(--adata-white);
  display: block;
  line-height: 58px;
  font-size: 24px;
  border-radius: 50%;
  animation: ripple-white 1s linear infinite;
  color: var(--adata-primary-color);
}
.popup-play-btn i {
  margin-left: 8px;
}
.popup-play-btn:hover {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}

/*--------------------------------------------------------------
## 404 Page
--------------------------------------------------------------*/
.error_page {
  position: relative;
  padding: 97px 0;
}
.error_page .error-page-content {
  position: relative;
  z-index: 2;
  max-width: 990px;
  margin: 0 auto;
  padding: 0 15px;
}
.error_page .error-page-content .error-image {
  margin-bottom: 80px;
}
.error_page .error-page-content .error-title {
  font-size: 40px;
  margin-bottom: 7px;
}
.error_page .error-page-content p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
}
.error_page .error-page-content .at-btn {
  padding: 12px 40px;
  color: var(--adata-white);
  background-color: var(--adata-primary-color);
}
.error-page-content .at-btn:hover {
    background: var(--adata-secondary-color);
    color: var(--adata-white);
}
.error_page .error-info {
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}
.comments-rating label {
  display: inline-block;
}
.rating-container {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating-container * {
  font-size: 1.4rem;
}
.rating-container > input {
  display: none;
}
.rating-container > input + label {
  font-family: "dashicons";
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1rem;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}
.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}
.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: var(--adata-rating-color);
  text-shadow: 0 0 1px var(--adata-text-color);
}
.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}
.rating-container > .star-cb-clear + label:before {
  width: 0.5em;
}
.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}
.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: var(--adata-rating-color);
  text-shadow: 0 0 1px var(--adata-text-color);
}
.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
  text-indent: 9999px;
}
.comment-respond .rating-container > input + label {
  text-indent: -9999px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
  background: linear-gradient(90deg, var(--adata-primary-color) 25%, var(--adata-accent-color) 75%);
  position: relative;
  overflow: hidden;
}
.site-footer .widget {
  position: relative;
  z-index: 2;
  padding: 0;
}
.site-footer .footer-social-link {
  margin-top: 15px;
}
.footer-social-link li {
  display: inline-block;
}
.footer-social-link li:not(:last-child) {
  margin-right: 7px;
}
.site-footer .footer-social-link li a i {
  height: 35px;
  width: 35px;
  color: var(--adata-white);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.251);
}
.site-footer .footer-social-link li a:hover {
  color: var(--adata-white);
}
.site-footer .footer-social-link li a:hover i {
    color: var(--adata-white);
    background-color: var(--adata-primary-color);
}
.site-footer .footer-social-link li a:hover i:hover {
  opacity: 0.9;
}
.site-footer .top-shape {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
}
.site-footer .footer-wrapper {
  padding: 200px 0 20px;
}
.site-footer .site-info {
  position: relative;
  z-index: 22;
}
.site-footer .site-info {
  border-top: 1px solid var(--adata-stock-color);
  padding: 15px 0;
}
.site-footer .site-info .site-info-inner {
  padding: 35px 0;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .site-info .site-info-inner {
    display: block !important;
    text-align: center;
    padding: 20px 0;
  }
  .site-footer .site-info .site-info-inner .copyright {
    margin-bottom: 10px;
  }
}
.site-footer .site-info .copyright {
  padding: 15px 0;
  text-align: center;
}
.site-footer .site-info .copyright p {
  margin: 0;
  color: var(--adata-white);
  font-size: 15px;
}
.site-footer .site-info .copyright p a {
  color: var(--adata-white);
}
.site-footer .site-info .copyright p a:hover {
  color: var(--adata-primary-color);
}
.site-footer .circle-wrapper {
  position: absolute;
  top: -60%;
  left: 12%;
}
.site-footer .footer-circle-shape {
  opacity: 0.329;
}

@media (min-width: 992px) {
  .footer-sticky {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
}
@media (max-width: 991px) {
  body {
    padding-bottom: 0 !important;
  }
}
/* Newsletter area css */
.newsletter-area {
  margin-bottom: 75px;
}
.newsletter-area .newsletter-inner {
  border-radius: 20px;
  background-color: var(--adata-primary-color);
  padding: 28px 50px 25px;
}
.mc4wp-form-fields {
  position: relative;
}
.newsletter-area .mc4wp-form-fields input[type="email"] {
  background-color: var(--adata-white) !important;
  border: none;
  outline: none;
  border-radius: 0;
  height: 60px;
  padding: 0 0 0 20px;
  color: var(--adata-text-color)!important;
  border-radius: 10px !important;
}
.newsletter-area .mc4wp-form-fields input[type="email"]::placeholder {
  color: var(--adata-text-color)!important;
}
.newsletter-area .mc4wp-form-fields input[type="submit"],
.newsletter-area .mc4wp-form-fields button {
  border: none;
  bottom: 2px;
  right: 2px;
  top: 2px;
  background-color: transparent;
  color: var(--adata-text-color);
}
.newsletter-area .mc4wp-form-fields input[type="submit"]:hover,
.newsletter-area .mc4wp-form-fields button:hover {
  color: var(--adata-primary-color);
}
.newsletter-area .news-letter-title h3 {
  font-size: 40px;
  color: var(--adata-white);
  font-weight: 500;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .newsletter-area .newsletter-inner {
	padding: 28px 30px 30px;
  }
  .newsletter-area .news-letter-title h3 {
    margin-bottom: 30px;
	font-size: 32px;
  }
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  color: var(--adata-white);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
  padding: 13px 41px;
  height: auto;
}

input[type=submit] {
  border: 0;
}

/* Back To Top */
.return-to-top {
  position: fixed;
  bottom: -40px;
  right: 30px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 3%;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}
.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  transform: scale(1);
  transition: all 0.3s ease;
  border-radius: inherit;
  transition: transform 0.5s ease, opacity 0.6s ease;
}
.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px 0px transparent;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: inherit;
}
.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0px 0px var(--adata-white), 0px 50px var(--adata-white);
  transition: text-shadow 0.2s ease;
  z-index: 1;
}
.return-to-top:hover:after {
  transform: scale(1.07);
  background: var(--adata-primary-color);
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}
.return-to-top:hover > i {
  text-shadow: 0px -50px var(--adata-white), 0px 0px var(--adata-white);
}
.return-to-top.back-top {
  bottom: 30px;
  opacity: 1;
}

input:not([type=checkbox]):not([type=submit]),
textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #f5f5f5;
  font-weight: 400;
  outline: 0;
  transition: all 0.3s linear;
  border-radius: 0;
  background-color: #f5f5f5;
}
input:not([type=checkbox]):not([type=submit])::placeholder,
textarea::placeholder {
  color: var(--adata-text-color);
}
input:not([type=checkbox]):not([type=submit]):focus,
textarea:focus {
  border-color: rgba(42, 202, 255, 0.5);
  box-shadow: none;
}

select {
  width: 100%;
  border: 1px solid #f5f5f5;
  padding: 10px;
  height: 44px;
  border-radius: 0;
  color: #909090;
  font-size: 15px;
  display: inline-block;
  background-position: right 10px center;
  -moz-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 4px 20px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 490.656 490.656' style='enable-background:new 0 0 490.656 490.656;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M487.536,120.445c-4.16-4.16-10.923-4.16-15.083,0L245.317,347.581L18.203,120.445c-4.16-4.16-10.923-4.16-15.083,0 c-4.16,4.16-4.16,10.923,0,15.083l234.667,234.667c2.069,2.091,4.8,3.136,7.531,3.136s5.461-1.045,7.552-3.115l234.667-234.667 C491.696,131.368,491.696,124.627,487.536,120.445z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
}
select:focus {
  outline: 0;
}

.form-submit {
  margin: 0;
}

input {
  height: 54px;
}

textarea {
  height: 150px;
  margin-bottom: 20px;
  padding: 10px 20px;
}
textarea:focus {
  border-color: rgba(42, 202, 255, 0.5);
}

.single_contact_form input {
  height: 54px;
}

.post-password-form input, .post-password-form label {
  margin: 0;
}
.post-password-form input[type=password] {
  height: 50px;
  border-width: 1px;
  padding: 0 15px;
}
.post-password-form input[type=submit] {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border: 0;
  height: 50px;
  border-radius: 4px;
}
.post-password-form input[type=submit]:hover {
  background: var(--adata-secondary-color);
}

.adata-contact-form input:not([type=checkbox]):not([type=submit]), .adata-contact-form textarea {
  border-radius: 4px;
  height: 56px;
}
.adata-contact-form input:not([type=checkbox]):not([type=submit]):focus, .adata-contact-form textarea:focus {
  background: transparent;
  border-color: var(--adata-primary-color);
}
.adata-contact-form input:not([type=checkbox]):not([type=submit])::placeholder, .adata-contact-form textarea::placeholder {
  color: var(--adata-text-color);
}
.adata-contact-form textarea {
  height: 210px !important;
  border-radius: 4px;
}
.adata-contact-form textarea:focus {
  background: transparent;
  border-color: var(--adata-primary-color);
}
.adata-contact-form .at-btn {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border: 1px solid var(--adata-primary-color);
  font-size: 18px;
  padding: 14px 35px 11px 35px;
  font-weight: 500;
}
.adata-contact-form .at-btn:hover {
  color: var(--adata-primary-color);
  background: transparent;
}

[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--adata-border-color);
  border-radius: 100%;
  background: var(--adata-white);
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--adata-primary-color);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.form-result {
  display: none;
}

.wpcf7 .ajax-loader {
  display: block;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: var(--adata-secondary-color);
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--adata-primary-color);
  text-decoration: none;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Primary Menu
--------------------------------------------------------------*/
.site-header {
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.site-header.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.admin-bar .site-header.header-transparent {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header.header-transparent {
    top: 46px;
  }
}
.admin-bar .site-header:not(.header-transparent) {
  margin-top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header:not(.header-transparent) {
    margin-top: 46px;
  }
}
.site-header .site-logo .site-title {
  font-size: 34px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0;
}
.site-header .site-logo a {
  font-size: 30px;
  font-weight: 700;
  padding: 19px 0;
  display: block;
  color: var(--adata-black);
  transition: all 0.3s ease-in-out;
}
.site-header .site-logo a h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--adata-black);
}
.site-header .site-logo .logo-sticky {
  display: none;
}
.site-header .add-menu {
  margin: 0;
  padding: 31px 0;
  list-style: none;
  font-weight: 500;
}
.site-header .add-menu li a {
  color: var(--adata-black);
}
.site-header .tt-hamburger {
  width: 24px;
  cursor: pointer;
}
.site-header .tt-hamburger.active {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .site-header .tt-hamburger {
    display: none;
  }
}
.site-header .tt-hamburger:focus {
  outline: 0;
}
.site-header .tt-hamburger .bar {
  background: var(--adata-secondary-color);
  height: 2px;
  display: block;
}
.site-header .tt-hamburger .bar:not(:last-child) {
  margin-bottom: 5px;
}
.site-header.header-1 .tt-hamburger .bar {
  background: var(--adata-white);
}
.site-header.header-fixed.showed #topbar-wrap {
  display: none;
}
@media (max-width: 992px) {
  .site-header #topbar-wrap {
    display: none;
  }
}
.site-header .topbar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .topbar-list li {
  display: inline-block;
  padding: 0 20px;
}
.site-header.header-2 .topbar-list li {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .site-header .topbar-list li:first-child {
    display: none;
  }
}
.site-header .topbar-right {
  display: flex;
}
.site-header .topbar-info {
  font-size: 14px;
  padding: 11px 0;
  font-weight: 300;
}
.site-header .topbar-info i {
  font-size: 14px;
  margin-right: 5px;
  color: var(--adata-text-color);
}
.site-header.header-3 .topbar-info {
  padding: 4px 0;
}
.site-header .header-social-link {
  margin: 0;
  padding: 11px 0 11px 20px;
  list-style: none;
}
.site-header .header-social-link li {
  display: inline-block;
}
.site-header .header-social-link li:not(:last-child) {
  margin-right: 10px;
}
.site-header .header-social-link li a {
  color: var(--adata-text-color);
}
.site-header .header-social-link li a:hover {
  color: var(--adata-primary-color);
}
.site-header.header-fixed.showed:not(.mobile-header) {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: var(--adata-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.site-header.header-fixed.showed.header-2:not(.mobile-header) {
	box-shadow: none;
}
.header-position .site-header.header-fixed.showed {
  top: 0px;
}
@media (max-width: 782px) {
  .header-position .site-header.header-fixed.showed {
    top: 46px;
  }
}
.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}
.site-header.header-fixed.showed .site-logo a {
  color: var(--adata-secondary-color);
}
.site-header.header-fixed.showed .site-logo h3 {
  color: var(--adata-secondary-color);
}
.site-header.header-fixed.showed .add-menu li a {
  color: var(--adata-secondary-color);
}
.site-header.header-fixed.showed .tt-hamburger .bar {
  background: var(--adata-secondary-color);
}
@media (min-width: 992px) {
  .site-header .container {
    position: relative;
  }
}
.site-header:not(.mobile-header) .nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 24px;
}
.site-header:not(.mobile-header) .nav-right .search-btn {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  background: rgb(255,255,255,.1);
  text-align: center;
  color: var(--adata-white);
  font-size: 20px;
}
.site-header.header-1:not(.mobile-header) .nav-right .search-btn {
    background-color: var(--adata-white);
    color: var(--adata-secondary-color);
}
.site-header:not(.mobile-header) .nav-right .search-btn:hover {
  color: var(--adata-primary-color);
}
.site-header:not(.mobile-header) .nav-right .nav-btn {
  margin-left: 15px;
}
.site-header:not(.mobile-header) .nav-right .nav-btn:hover {
  color: var(--adata-primary-color);
}
.site-header.header-fixed.showed:not(.mobile-header) .nav-right .nav-btn:hover {
    background: var(--adata-secondary-color);
    color: var(--adata-white);
    border-color: var(--adata-secondary-color);
}
.site-header.header-2:not(.mobile-header) .nav-btn:hover {
  color: var(--adata-white);
  background-color: var(--adata-secondary-color);
  border-color: var(--adata-secondary-color);
}
.site-header.header-2:not(.mobile-header) .nav-right .nav-btn:hover i {
    color: var(--adata-white);
    background-color: var(--adata-secondary-color);
}
.site-header:not(.mobile-header).header-transparent.header-2 .nav-btn:hover {
  color: var(--adata-white);
  border-color: var(--adata-secondary-color);
}
.site-header:not(.mobile-header) .nav-right .header-contact {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 15px;
}
.site-header:not(.mobile-header) .nav-right .header-contact .contact-info {
  display: inline-flex;
  flex-direction: column;
}
.site-header:not(.mobile-header) .nav-right .header-contact .contact-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--adata-primary-color);
  text-align: center;
  color:  var(--adata-white);
  border-radius: 50%;
  font-size: 20px
}
.site-header:not(.mobile-header) .nav-right .header-contact span.contact-title {
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  margin-top: 4px;
}
.site-header:not(.mobile-header) .nav-right .header-contact span.contact-number {
  color: var(--adata-secondary-color);
  font-weight: 700;
  font-size: 16px;
  margin-top: 3px;
}
.site-header:not(.mobile-header).header-2 .nav-right {
  margin-left: 0;
}
.site-header:not(.mobile-header).header-3.header-transparent .search-btn {
  color: var(--adata-secondary-color);
  background-color: var(--adata-white);
}
.site-header.header-2:not(.mobile-header) #topbar-wrap {
  background-color: transparent;
  margin-bottom: 10px;
}
.site-header:not(.mobile-header).header-2 .header-social-link li a:hover {
  color: var(--adata-primary-color);
}
.site-header:not(.mobile-header).header-3 #topbar-wrap .topbar-info,
.site-header:not(.mobile-header).header-3 #topbar-wrap .topbar-info i {
  color: var(--adata-text-color);
}
.site-header:not(.mobile-header).header-3 #topbar-wrap .topbar-list li:not(:first-child) {
  border-color: rgba(255, 255, 255, 0.2);
}
.site-header:not(.mobile-header) .menu-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
}
.submenu-align-right .site-header:not(.mobile-header) {
  width: auto;
}
.site-header:not(.mobile-header) .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header:not(.mobile-header) .menu > li {
  padding: 30px 0;
  transition: all 0.3s ease-in-out;
}
.site-header:not(.mobile-header) .menu > li > a {
  font-weight: 600;
  font-size: 16px;
  color: var(--adata-secondary-color);
  position: relative;
}
.site-header:not(.mobile-header) .menu > li > a:after {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.site-header:not(.mobile-header) .menu > li > a:hover {
  color: var(--adata-primary-color);
}
.site-header:not(.mobile-header) .menu > li:nth-last-child(-n+3).has-submenu .sub-menu {
  left: auto;
  right: 0;
}
.site-header:not(.mobile-header) .menu > li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
  right: 100%;
}
.site-header:not(.mobile-header) .menu > li:not(.mega-menu) {
  position: relative;
}
.menu-light .site-header:not(.mobile-header) .menu > li > a {
  color: var(--adata-white);
}
.site-header:not(.mobile-header) .menu li {
  display: inline-block;
}
.site-header:not(.mobile-header) .menu li:not(:last-child) {
  margin-right: 45px;
}
.site-header:not(.mobile-header) .menu li.has-submenu > a::before {
    content: '\f078';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 108%;
    top: 52%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: .5s;
}
.site-header:not(.mobile-header) .menu li.has-submenu > a:hover::before {
    transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 1200px) {
  .site-header:not(.mobile-header) .menu li:not(:last-child) {
    margin-right: 30px;
  }
}
.site-header:not(.mobile-header) .menu li.current-menu-item a, .site-header:not(.mobile-header) .menu li.current-menu-parent a {
  color: var(--adata-primary-color);
}
.site-header:not(.mobile-header) .menu li.current-menu-parent .sub-menu li.current-menu-item a {
  color: var(--adata-primary-color);
}
.site-header:not(.mobile-header) .menu li.has-submenu > a:after {
  content: "\e61a";
  font-family: "themify";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu {
  margin: 0;
  padding: 22px 0;
  position: absolute;
  top: 115%;
  left: -25px;
  opacity: 0;
  visibility: hidden;
  background: var(--adata-white);
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 10px 10px;
  min-width: 220px;
  z-index: 2222;
  box-shadow: 0px 20px 29px 0px rgba(0, 0, 0, 0.1);
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu.sub-menu-wide {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 80px 25px;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu.sub-menu-wide > .mega-menu-item > a.menu-link {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: var(--adata-secondary-color);
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu.sub-menu-wide > .mega-menu-item > a.menu-link:after {
  display: none;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu.sub-menu-wide .sub-menu {
  position: unset;
  box-shadow: unset;
  visibility: unset;
  opacity: unset;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  padding: 4px 25px;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li a {
  font-size: 15px;
  display: inline-block;
  line-height: 1.5;
  color: #14133b;
  font-weight: 400;
  position: relative;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li a:after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  background-color: var(--adata-primary-color);
  opacity: 0.7;
  transition: 0.3s;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li a:hover {
  color: var(--adata-primary-color);
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li a:hover:after {
  width: 105%;
  left: 0;
  right: auto;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li ul {
  padding: 15px 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--adata-white);
  min-width: 220px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 5px 10px #14303a15;
}
.site-header:not(.mobile-header) .menu li.has-submenu .sub-menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.site-header:not(.mobile-header) .menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.site-header:not(.mobile-header).header-transparent .menu > li > a {
  color: var(--adata-white);
}
.site-header:not(.mobile-header).header-transparent.header-3 .menu > li > a {
    color: var(--adata-secondary-color);
}
.site-header:not(.mobile-header).submenu-align-right .menu-wrapper {
  width: auto;
}
.site-header:not(.mobile-header).submenu-align-right .menu > li:nth-last-child(-n+3).has-submenu .sub-menu {
  left: auto;
  right: 0;
}
.site-header:not(.mobile-header).submenu-align-right .menu > li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
  right: 100%;
}
.header-position .site-header.header-fixed.showed .header-main-wrapper .fullscreen-menu {
  top: 0;
}
.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}
.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}
.site-header.header-fixed.showed .menu-trigger .dot_icon .dot {
  background: var(--adata-secondary-color);
}
.site-header.header-fixed.showed .menu li a {
  color: var(--adata-secondary-color);
}
.site-header.header-fixed.showed .menu li a:hover {
  color: var(--adata-primary-color);
}
.site-header.header-fixed.showed.header-2 {
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.site-header.header-fixed.showed.header-2 .menu li a {
  color: var(--adata-secondary-color);
}
.site-header.header-fixed.showed.header-2 .menu li a:hover {
  color: var(--adata-primary-color);
}
.site-header.header-fixed.showed.header-3 .search-btn {
  color: var(--adata-secondary-color);
}
.site-header.header-fixed.showed.header-3 .search-btn:hover {
  color: var(--adata-primary-color);
}
@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.menu-trigger {
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: 0px solid transparent;
}
@media (max-width: 991px) {
  .menu-trigger {
    justify-content: center;
    display: block !important;
  }
}
.menu-trigger .dot_icon {
  display: flex;
  flex-wrap: wrap;
  width: 24px;
  height: 24px;
  margin: -2px;
  overflow: hidden;
}
.menu-trigger .dot_icon .dot {
  width: 4px;
  height: 4px;
  background: var(--adata-secondary-color);
  margin: 2px;
  transition: all 0.3s linear;
}
.menu-light .menu-trigger .dot_icon .dot {
  background: var(--adata-white);
}
.menu-trigger:hover .dot_icon .dot:nth-child(odd) {
  transform: translate(8px, 8px);
}
.menu-trigger:hover .dot_icon .dot:nth-child(5) {
  opacity: 0;
}
#site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}
.close-menu {
  height: 50px;
  width: 50px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  position: absolute;
  top: 25px;
  left: 20px;
  color: var(--adata-secondary-color);
}
.menu {
  list-style: none;
}
.menu ul {
  list-style: none;
}
/* header style 2 */
.site-header.header-2 {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.header-2.header-fixed.showed {
  background-color: transparent;
}
.site-header.header-2 .header-main-wrapper .header-inner {
  background: var(--adata-white);
  border-radius: 0 5px 5px 5px;
  position: relative;
  padding: 0 15px 0 15px;
  box-shadow: 0 0 20px 0 rgb(0,0,0, .1);
  margin-left: -5px;
  margin-right: -5px;
}
.site-header.header-2.header-transparent .header-inner {
  box-shadow: none;
}
.site-header.header-2.header-fixed.showed .header-inner {
  margin-top: 10px;
}
.site-header.header-2 .header-main-wrapper .header-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  width: 90%;
  background-color: var(--adata-primary-color);
  height: 10px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
}
.site-header.header-2.header-transparent .container {
  background: transparent;
}
.site-header.header-2.header-fixed.header-transparent.showed .container {
	background: var(--adata-white);
}
.site-header.header-2.header-transparent .header-main-wrapper .container::before {
  display: none;
}
/* hamburger css */
button#hamburger-btn {
  color: var(--adata-primary-color);
  background-color: #E3F9F5;
  border: none;
  margin-left: 20px;
  height: 60px;
  font-size: 25px;
}
.hamburger-content {
  position: fixed;
  top: 0;
  right: -500px;
  bottom: 0;
  left: auto;
  background: var(--adata-white);
  display: block;
  width: 500px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;
  padding: 70px 30px 0 50px;
  transition: .5s;
}
.hamburger-content.active {
  right: 0;
}
.hamburger-close {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: var(--adata-primary-color);
  color: var(--adata-white);
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

@media (max-width: 1200px) {
	.container {
		max-width: 98%;
		margin-left: auto;
		margin-right: auto;
	}
	button#hamburger-btn {
	  height: 50px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}
/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .site-header {
    height: auto;
    /*--------------------------------------------------------------
    ### Main Nav
    --------------------------------------------------------------*/
  }
  .site-header .site-logo .logo-sticky {
    display: none;
  }
  .site-header .tt-hamburger {
    display: block;
  }
  .site-header.header-fixed.showed .logo-sticky {
    display: block;
  }
  .site-header .site-logo a {
    padding: 13px 0;
  }
  .site-header .nav-right {
    display: none;
  }
  .site-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: var(--adata-white);
    max-width: 400px;
    width: 100%;
    text-align: left;
    overflow-y: auto;
    padding: 94px 0;
    left: -100px;
    transition-duration: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
  }
  .header-position .site-header .main-nav-container {
    top: 32px;
  }
}
@media (max-width: 991px) and (max-width: 780px) {
  .header-position .site-header .main-nav-container {
    top: 46px;
  }
}
@media (max-width: 991px) and (max-width: 420px) {
  .site-header .main-nav-container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav-container.open {
    opacity: 1;
    left: 0;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav-container li a {
    font-size: 16px;
    color: var(--adata-secondary-color);
    position: relative;
    z-index: 1;
    padding: 8px 25px;
    display: block;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    font-weight: 400;
    border-left: 2px solid transparent;
  }
  .site-header .main-nav-container li.has-submenu > a {
    position: relative;
  }
  .site-header .main-nav-container li.has-submenu > a:after {
    content: "\e61a";
    font-family: "themify";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 12px;
  }
  .site-header .main-nav-container li.has-submenu > a.active:after {
    content: "\e622";
  }
  .site-header .main-nav-container li.has-submenu li a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav-container .menu-item-depth-0 > a.active {
    color: var(--adata-primary-color);
    background: #f8f9fa;
    border-color: var(--adata-primary-color);
  }
}
@media (max-width: 991px) {
  .header-position .site-header.header-fixed.showed .main-nav-container {
    top: 0;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav {
    position: static;
    z-index: 3333;
    line-height: 1.2;
  }
  .site-header .main-nav .menu {
    padding-left: 0;
  }
  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
  }
  .site-header .main-nav .sub-menu.active .main-item > .menu-link {
    background: #f8f9fa;
  }
  .site-header .main-nav .sub-menu li a {
    border-top: 0;
  }
  .site-header .main-nav .sub-menu li.active a.active .ti-plus {
    color: var(--adata-primary-color);
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: var(--adata-primary-color);
    background: #f8f9fa;
    border-color: var(--adata-primary-color);
  }
  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .main-nav a:before,
  .site-header .main-nav .close-bar {
    display: none;
  }
  .site-header .main-nav .site-logo a {
    font-size: 40px;
  }
  .site-header .main-nav .menu,
  .site-header .main-nav .menu ul {
    list-style: none;
  }
  .site-header .main-nav .menu {
    position: relative;
  }
  .site-header .main-nav .nav-item:before,
  .site-header .main-nav .nav-item.current-menu-item:before,
  .site-header .main-nav .nav-item.current-menu-ancestor:before {
    background-color: var(--adata-primary-color);
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: var(--adata-primary-color);
  }
  .site-header .main-nav .nav-right .cu_btn {
    padding: 13px 26px;
    min-width: auto;
    margin-top: 0;
  }
  .site-header .main-nav.hidden {
    display: none;
  }
}
@media screen and (max-width: 991px) and (max-width: 1024px) {
  .site-header .main-nav .close-menu {
    display: block;
  }
}
.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.alignright.size-full {
  margin-bottom: 60px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.content-area {
  padding: 120px 0;
  min-height: 35vh;
}
@media (max-width: 991px) {
  .content-area {
    padding: 80px 0;
  }
}

.blog-archive-wrapper {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .blog-archive-wrapper {
    padding: 80px 0;
  }
}

.sidebar_left {
  flex-direction: row-reverse;
}

.page_404_wrapper .banner_404_text {
  max-width: 500px;
  margin: 0 auto 40px;
}
.page_404_wrapper .search_result_form {
  max-width: 400px;
  margin: 0 auto 30px;
}

/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  text-align: center;
  min-height: 300px;
  padding: 50px 0;
  height: auto;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-image: linear-gradient(to right, var(--adata-primary-color) 0%, var(--adata-accent-color) 100%);
}
.page-header .page-header_wrapper {
  position: relative;
  z-index: 2;
}
.page-header .page-header_title {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--adata-white);
}
@media (max-width: 991px) {
  .page-header .page-header_title {
    font-size: 30px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .page-header .page-header_title {
    font-size: 28px !important;
  }
}
.page-header .breadcrumbs {
  font-size: 20px;
  font-weight: 500;
  color: var(--adata-white);
}
.page-header .breadcrumbs span:not(.separator) {
    color: var(--adata-primary-color);
}
.page-header .breadcrumbs a {
  color: var(--adata-white);
}
.page-header .breadcrumbs a:hover {
  color: var(--adata-primary-color);
}
.page-header .breadcrumbs .separator {
  display: inline-block;
  margin: 0 10px;
}

.menu-transparent ~ .page-header .page-header_wrapper {
  margin-top: 85px;
}

/*--------------------------------------------------------------
## Middle Area
--------------------------------------------------------------*/
#header-middle-area > div {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 991.98px) {
  #header-middle-area > div {
    padding: 10px 0;
  }
  #header-middle-area #middle-logo {
    margin-bottom: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
## Sideber Content
--------------------------------------------------------------*/
.sidebar_left .col-lg-4 {
  order: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  border: 1px solid var(--adata-stock-color);
  padding: 22px;
  border-radius: 10px;
}
.widget:not(:last-child) {
  margin-bottom: 30px;
}
aside.sidebar > div {
    background-color: rgb(227 249 245 / 30%);
    border: none;
    border-radius: 10px;
}
.widget .widget-title {
  font-size: 24px;
  margin-bottom: 18px;
}
.widget.adata-recent-posts .widget-title {
  margin-bottom: 25px;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  position: relative;
  margin-bottom: 8px;
}
.widget ul li a {
  font-size: 18px;
  color: var(--adata-secondary-color);
  font-weight: 600;
}
.widget ul li a .post_count {
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.widget ul li a:hover {
  color: var(--adata-primary-color);
}

.sidebar-widget-area .widget ul li:last-child a {
  border-bottom: 0;
}
.sidebar .widget-title {
  position: relative;
  display: inline-block;
}
.sidebar .widget-title:after {
  content: "";
  position: absolute;
  background: transparent;
  border-radius: 10px;
  width: 40px;
  height: 5px;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
}

.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_product_categories ul,
.widget_rss ul,
.widget_pages ul,
.widget_nav_menu ul {
  margin: 0;
  padding: 0;
}
.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_product_categories li,
.widget_rss li,
.widget_pages li,
.widget_nav_menu li {
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0;
  list-style-type: none;
  position: relative;
}
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  border-bottom: 0;
}
.widget_recent_entries li .children,
.widget_recent_comments li .children,
.widget_archive li .children,
.widget_categories li .children,
.widget_meta li .children,
.widget_product_categories li .children,
.widget_rss li .children,
.widget_pages li .children,
.widget_nav_menu li .children {
  margin-top: 5px;
  padding-left: 20px;
}
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  margin-bottom: 0;
}
.widget_recent_entries li:hover .post-count,
.widget_recent_comments li:hover .post-count,
.widget_archive li:hover .post-count,
.widget_categories li:hover .post-count,
.widget_meta li:hover .post-count,
.widget_product_categories li:hover .post-count,
.widget_rss li:hover .post-count,
.widget_pages li:hover .post-count,
.widget_nav_menu li:hover .post-count {
  color: var(--adata-primary-color);
}
.widget_recent_entries a,
.widget_recent_comments a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_product_categories a,
.widget_rss a,
.widget_pages a,
.widget_nav_menu a {
  display: block;
  font-size: inherit;
  font-family: inherit;
}
.widget_recent_entries a:hover,
.widget_recent_comments a:hover,
.widget_archive a:hover,
.widget_categories a:hover,
.widget_meta a:hover,
.widget_product_categories a:hover,
.widget_rss a:hover,
.widget_pages a:hover,
.widget_nav_menu a:hover {
  color: var(--adata-primary-color);
}

.widget_recent_comments ul {
  margin-top: 10px;
}

.widget_rss ul li {
  padding-left: 0;
  margin-bottom: 25px;
}
.widget_rss ul li:before {
  display: none;
}
.widget_rss ul li .rsswidget {
  font-weight: 600;
  color: var(--adata-secondary-color);
  line-height: 1.4;
}
.widget_rss ul li .rssSummary {
  color: var(--adata-secondary-color);
  line-height: 1.4;
}
.widget_rss ul li .rss-date {
  margin-bottom: 5px;
  display: block;
  color: #bbb;
}
.widget_rss ul li cite {
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}
.widget_rss a {
  border-bottom: 0 !important;
  display: inline-block;
}

.post-count {
  color: #c9c9c9;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.widget_archive .post-count {
  margin-left: 3px;
}

.widget_pages .sub-menu,
.widget_nav_menu .sub-menu {
  margin-top: 7px;
}
.widget_pages .sub-menu > li,
.widget_nav_menu .sub-menu > li {
  border-bottom: 0;
}
.widget_pages .sub-menu > li .sub-menu,
.widget_nav_menu .sub-menu > li .sub-menu {
  padding-left: 20px;
}
.widget_pages .sub-menu > li .sub-menu > li > a,
.widget_nav_menu .sub-menu > li .sub-menu > li > a {
  padding-left: 5px;
}

.widget_pages .sub-menu > li .sub-menu > li > a,
.widget_nav_menu .sub-menu > li .sub-menu > li > a {
  padding: 0;
}

.widget_categories li,
.widget_product_categories li {
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_categories a,
.widget_product_categories a {
  display: block;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.widget.widget_categories ul li a {
  display: flex;
  justify-content: space-between;
  background: var(--adata-white);
  font-size: 16px;
  color: var(--adata-text-color);
  padding: 10px 12px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 400;
}
.widget.widget_categories ul li a:hover {
	color: var(--adata-primary-color);
}
.widget.widget_categories ul li a span.post-count {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  border-radius: 2px;
  color: var(--adata-text-color);
}
.widget.widget_categories ul li a:hover span.post-count {
  color: var(--adata-primary-color);
  background-color: var(--adata-white);
}
.widget_recent_comments .recentcomments {
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
  word-break: break-word;
  display: inline-block;
  border-top: 0 !important;
  width: 100%;
}
.widget_recent_comments .recentcomments a {
  line-height: 30px;
  border-bottom: 0 !important;
  padding-left: 0 !important;
}
.widget_recent_comments .recentcomments a:before {
  display: none;
}
.widget_recent_comments .recentcomments:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "\e645";
  font-family: "themify";
  color: #465675;
  font-size: 20px;
}
.widget_recent_comments .recentcomments:last-child {
  margin-bottom: 0;
}
.widget_recent_comments .recentcomments a {
  display: inline-block;
}
.widget_recent_entries .post-date {
  display: block;
  font-size: 14px;
}
.widget_calendar td,
.widget_calendar th {
  padding: 10px 0;
  text-align: center;
  min-width: auto;
}
.widget_calendar td#today {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-radius: 3px;
}
.widget_calendar td#today a {
  color: var(--adata-white);
}

@media (max-width: 991.98px) {
  .page-content .widget {
    margin: 0 0 52px;
  }
}
@media (max-width: 767.98px) {
  .page-content .widget {
    margin: 0 0 32px;
  }

  .page-sidebar {
    margin-bottom: 50px;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content {
    padding-right: 30px;
    border: 1px solid var(--adata-border-color);
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content:after {
    display: none;
  }

  .single-post .page-main-content {
    padding-bottom: 20px;
  }
}
.tagcloud a {
  font-size: inherit !important;
  display: inline-block;
  line-height: 1.7;
  background: #f8fcff;
}
.tagcloud a:hover {
  color: var(--adata-primary-color);
}
.tagcloud .tagcloud {
  margin-top: 20px;
}
.wp-block-tag-cloud a {
    display: inline-block;
    margin: 6px;
    border: 1px solid var(--adata-stock-color);
    padding: 0 16px;
    border-radius: 3px;
}
.wp-block-tag-cloud a:hover {
    background-color: var(--adata-primary-color);
    color: var(--adata-white);
    border-color: var(--adata-primary-color);
}

/* Recent Post */
.adata-widget-recent-posts {
  display: flex;
  flex-wrap: wrap;
  align-items: center
}
.adata-widget-recent-posts:not(:last-child) {
	margin-bottom: 20px;
}
.adata-widget-recent-posts .recent-posts-image_wrapper {
  width: 90px;
  margin-right: 16px;
  border-radius: 5px;
  overflow: hidden;
  border: 5px solid var(--adata-white);
}
.adata-widget-recent-posts .recent-posts-content_wrapper {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
}
.adata-widget-recent-posts .post-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}
.adata-widget-recent-posts .post-title a {
  color: var(--adata-secondary-color);
  line-height: 1.2;
}
.adata-widget-recent-posts .post-title a:hover {
  color: var(--adata-primary-color);
}
.adata-widget-recent-posts .date {
  color: #758598;
  font-size: 14px;
}
.adata-widget-recent-posts .date i {
  margin-right: 5px;
}
.adata-widget-recent-posts .date a {
  color: #758598;
}
.about-widget_wrapper p {
  color: var(--adata-text-color);
  margin-bottom: 25px;
}
.about-widget_wrapper .footer-logo {
  margin-bottom: 15px;
  max-width: 150px;
}
.about-widget_wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--adata-secondary-color);
    margin-bottom: 10px;
}
.site-footer .about-widget_wrapper h4 {
	color: var(--adata-white);
}
.adata-contact-widget .about_text {
  color: var(--adata-white);
  margin-bottom: 20px;
}
.adata-contact-widget .footer-contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.adata-contact-widget .footer-contact-info li i {
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255, .1);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}
.zoom-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item {
  border-radius: 4px;
  overflow: hidden;
}

.author-about-widget {
  text-align: center;
}
.author-about-widget .author-image {
  margin: 0 auto 23px;
  border: 2px solid var(--adata-primary-color);
  border-radius: 50%;
  max-width: 160px;
  height: 160px;
  padding: 8px;
}
.author-about-widget .author-image img {
  width: 100%;
  border-radius: 50%;
}
.author-about-widget .author_name {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 3px;
}
.author-about-widget .author-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.author-about-widget .author-social-link li {
  display: inline-block;
}
.author-about-widget .author-social-link li:not(:last-child) {
  margin-right: 15px;
}
.author-about-widget .author-social-link li a {
  font-size: 18px;
  color: #bbbcbd;
}
.author-about-widget .author-social-link li a:hover {
  color: var(--adata-primary-color);
}

.adata-project-widget {
  display: flex;
  flex-wrap: wrap;
}
.adata-project-widget > div {
  width: calc(33.33% - 5px);
  margin-right: 5px;
  margin-bottom: 5px;
}
.adata-project-widget img {
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

/* Tags */
.tagcloud {
  color: #2b2350;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
}
.tagcloud a {
    background-color: var(--adata-white);
    color: var(--adata-text-color);
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px !important;
    text-transform: capitalize;
    margin: 0 5px 10px 0;
    padding: 12px 15px;
    line-height: 1;
}
.tagcloud a:hover {
  background-color: var(--adata-primary-color);
  color: var(--adata-white);
  position: relative;
  z-index: 2;
}
.site-footer .widget-title {
  font-size: 25px;
  margin-bottom: 28px;
  text-transform: capitalize;
  color: var(--adata-white);
  font-weight: 600;
}
.site-footer p {
  color: var(--adata-white);
}
.site-footer .widget {
  margin-bottom: 30px;
  border: 0;
}
.site-footer .widget ul li {
  color: var(--adata-white);
}
.site-footer .widget ul li a {
  color: var(--adata-white);
  font-size: 16px;
  position: relative;
  display: inline-block;
  font-weight: 400;
}
.site-footer .widget ul li a .post-count {
  color: var(--adata-white);
}
.site-footer .widget ul li a:hover {
  color: var(--adata-primary-color);
}
.site-footer .widget ul li a:hover:after {
  /* width: 100%;*/
}
.site-footer .widget ul li a:hover .post-count {
  color: var(--adata-white);
}
.site-footer .widget ul.menu li:not(:last-child) {
  margin-bottom: 10px;
}
.site-footer .widget ul.menu li a::before {
  content: '\f111';
  font-family: 'Font Awesome 5 Free';
  font-size: 14px;
  margin-right: 9px;
  font-weight: 900;
  opacity: .3;
}
.site-footer .widget ul.menu li a:hover::before {
  color: var(--adata-primary-color);
  opacity: 1;
}
.site-footer .widget ul.menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 1px;
  width: 0;
  background: var(--adata-white);
  transition: all 0.3s ease-in-out;
}
.site-footer .widget ul.menu li a:hover {
  color: var(--adata-white);
}
.site-footer .widget ul.menu li a:hover:after {
  /* width: 100%; */
}
.site-footer .widget ul.menu li .sub-menu {
  padding-left: 15px;
}
.site-footer .widget ul.menu li .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .site-footer .widget {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .site-footer .footer-wrapper {
    padding: 150px 0 0 !important;
  }
}
.site-footer .adata-newsletter-widget .newsletter-inner input {
  border: 0;
  border-radius: 4px;
  height: 46px;
  padding: 10px 15px;
  margin-bottom: 8px;
}
.site-footer .adata-newsletter-widget .newsletter-inner input::placeholder {
  color: #adadad;
}
.site-footer .adata-newsletter-widget .newsletter-inner .newsletter-submit {
  font-size: 18px;
  font-weight: 600;
  padding: 11px 33px 6px;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  height: 46px;
  outline: 0;
  border: 1px solid var(--adata-white);
  color: var(--adata-secondary-color);
}
.site-footer .adata-newsletter-widget .newsletter-inner .newsletter-submit:before {
  background: var(--adata-white);
}
.site-footer .adata-newsletter-widget .newsletter-inner .newsletter-submit .fa-spin {
  display: none;
}
.site-footer .adata-newsletter-widget .newsletter-inner .newsletter-submit.clicked .fa-spin {
  display: block;
}
.site-footer .adata-newsletter-widget .newsletter-inner .newsletter-submit.clicked span {
  display: none;
}
.site-footer .adata-newsletter-widget .newsletter-inner .newsletter-submit:hover {
  color: var(--adata-white);
}
.site-footer .adata-newsletter-widget .form-result {
  margin: 10px 0;
}
.site-footer .widget_calendar td {
  color: var(--adata-white);
}
.site-footer .widget_recent_comments .recentcomments:before, .site-footer .widget_rss a {
  color: var(--adata-white);
}
.site-footer .widget_rss ul li .rss-date {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .widget_rss ul li .rssSummary {
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .textwidget {
  color: rgba(255, 255, 255, 0.8);
}
.zoom-instagram-widget__item a:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.zoom-instagram-widget__item a:hover:before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
@media (max-width: 991px) {
  .sidebar-container {
    padding-left: 15px !important;
  }

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


.widget.follow-widget_wrapper {
    position: relative;
}
.follow-cont.has-bg-img {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
}
.follow_text {
    color: var(--adata-white);
    text-align: center;
	font-size: 25px;
	margin-bottom: 16px;
}
.sidebar ul.footer-social-link {
    display: flex;
    gap:  10px;
    flex-wrap: wrap;
	justify-content: center;
    align-items: center;
}
.sidebar .about-widget_wrapper ul.footer-social-link {
  justify-content: flex-start;
  margin-top: 20px
}
.sidebar ul.footer-social-link li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--adata-white);
    color: var(--adata-text-color);
    display: block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
}
.sidebar ul.footer-social-link li a:hover {
	background-color: var(--adata-primary-color);
	color: var(--adata-white);
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.blog-list .post.sticky {
  display: block;
  border-color: var(--adata-primary-color);
}
.blog-list .post.sticky .blog-content .entry-title a {
  color: var(--adata-primary-color);
}

.updated:not(.published) {
  display: none;
}

.no-results .page-content {
  padding: 50px 0 120px;
  text-align: left;
}
@media (max-width: 991px) {
  .no-results .page-content {
    padding: 50px 0 80px;
  }
}

.page-content,
.entry-content,
.entry-summary {
  word-break: break-word;
}
.page-content:after,
.entry-content:after,
.entry-summary:after {
  content: "";
  clear: both;
  display: block;
}

.page-header .page-title {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.page-content {
  padding: 120px 0;
}

.page-template-default .page-content {
  padding: 114px 0 97px;
}
.page-template-default .page-content .comments-area {
  padding: 34px 0 23px;
}
.page-template-default .page-content .page-links {
  margin-bottom: 20px;
}

.blog-post-archive {
  padding: 120px 0;
}

.search-no-results .page-content .page-content {
  padding: 20px 0 0;
}

.post-author {
  font-weight: 600;
  color: var(--adata-secondary-color);
  display: block;
}
.post-author img {
  border-radius: 50% !important;
  margin-right: 5px;
}
.post-author:hover {
  color: var(--adata-primary-color);
}

.post-wrapper .blog-post-list,
.blog-posts .blog-post-list {
  margin-bottom: 50px;
}

.post-wrapper.blog-masonry {
  width: calc(100% + 30px);
}
.post-wrapper.blog-masonry .post-item {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}
.post-wrapper.blog-masonry.column-3 .post-item {
  width: calc(33.33% - 30px);
}
.post-wrapper .post-item {
  margin-bottom: 60px;
}

.post-grid {
  position: relative;
  background: var(--adata-white);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}
.post-grid .meta-category-wrapper a {
  display: inline-block;
  position: relative;
  color: var(--adata-primary-color);
  overflow: hidden;
  z-index: 2;
  border-color: var(--adata-primary-color);
}
.post-grid .meta-category-wrapper a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.post-grid .meta-category-wrapper a:hover {
  color: var(--adata-white);
  background-color: transparent;
}
.post-grid .meta-category-wrapper a:hover:after {
  height: 300%;
}
.post-grid .meta-category-wrapper a:not(:last-child) {
  margin-right: 7px;
}
.post-grid .feature-image {
  position: relative;
  overflow: visible;
}
.post-grid .feature-image:hover img {
  transform: scale(1);
}
.post-grid .blog-content {
  padding: 40px 30px;
}
.post-grid .blog-content .entry-title {
  font-size: 24px;
  font-weight: 700;
  margin: 7px 0 9px;
}
.post-grid .blog-content .author span {
  display: inline-block;
  margin-right: 5px;
}
.post-grid .blog-content .author-simple a {
  color: #949292;
}
.post-grid .blog-content .author-simple a:hover {
  color: var(--adata-primary-color);
}
.post-grid .blog-content p {
  margin-bottom: 26px;
}
.post-grid .blog-content .read_more_btn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.post-grid .blog-content .read_more_btn i {
  margin-left: 5px;
  color: var(--adata-secondary-color);
}
.post-grid .blog-content .read_more_btn:hover i {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  color: var(--adata-primary-color);
}
.post-grid:hover {
  box-shadow: 0px 0px 35px 0px rgba(0, 153, 255, 0.15);
}
.post-grid:hover .feature-image img {
  transform: scale(1);
}
.post-grid.style-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .post-grid.style-two {
    flex-wrap: wrap;
  }
}
.post-grid.style-two .feature-image img {
  min-height: 270px;
}
@media (max-width: 576px) {
  .post-grid.style-two .feature-image {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .post-grid.style-two .feature-image {
    width: 100%;
  }
  .post-grid.style-two .feature-image img {
    width: 100%;
  }
}
.post-grid.style-two .blog-content {
  flex: 1;
  padding: 15px;
}
.post-grid.style-two .blog-content .entry-title {
  font-size: 22px;
  margin-bottom: 17px;
  line-height: 29px;
}
.post-grid.style-two .blog-content .author-simple a {
  color: #696969;
}
.post-grid.style-two .blog-content .author-simple a:hover {
  color: var(--adata-primary-color);
}
.post-grid.style-two .meta-category-wrapper {
  margin-bottom: 16px;
}
.post-grid.style-two:hover {
  box-shadow: 0px 0px 35px 0px rgba(0, 153, 255, 0.15);
}
.post-grid.style-three .feature-image img {
  min-height: 360px;
}
.post-grid.style-three .feature-image a:before {
  display: none;
}
.post-grid.style-three .meta-category-wrapper {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}
.post-grid.style-three .meta-category-wrapper a {
  display: inline-block;
  position: relative;
  color: var(--adata-primary-color);
  overflow: hidden;
}
.post-grid.style-three .meta-category-wrapper a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.post-grid.style-three .meta-category-wrapper a:hover {
  color: var(--adata-white);
  background-color: transparent;
}
.post-grid.style-three .meta-category-wrapper a:hover:after {
  height: 300%;
}
.post-grid.style-three .meta-category-wrapper a:not(:last-child) {
  margin-right: 7px;
}
.post-grid.style-three .blog-content {
  padding: 34px 30px 50px;
}
.post-grid.style-three .blog-content .entry-title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 12px;
}
@media (max-width: 576px) {
  .post-grid.style-three .blog-content .entry-title {
    font-size: 22px;
  }
}
.post-grid.style-three .blog-content .author-simple a {
  color: #696969;
}
.post-grid.style-three .blog-content .author-simple a:hover {
  color: var(--adata-primary-color);
}
.post-grid.style-four {
  box-shadow: none;
  border: 1px solid #e1e2e2;
}
.post-grid.style-four .feature-image {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  padding: 20px 20px 0 20px;
  border-radius: 5px 5px 0 0;
  position: relative;
  z-index: 1;
}
.post-grid.style-four .feature-image a:before {
  display: none;
}
.post-grid.style-four .feature-image img {
  height: 240px;
  border-radius: 5px 5px 0 0;
}
.post-grid.style-four .meta-category-wrapper {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 40px;
}
.post-grid.style-four .meta-category-wrapper a {
  display: inline-block;
  position: relative;
  color: var(--adata-white);
  overflow: hidden;
}
.post-grid.style-four .meta-category-wrapper a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 300%;
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.post-grid.style-four .meta-category-wrapper a:hover {
  color: var(--adata-white);
  background-color: transparent;
  border-color: var(--adata-white);
}
.post-grid.style-four .meta-category-wrapper a:hover:after {
  height: 0;
}
.post-grid.style-four .meta-category-wrapper a:not(:last-child) {
  margin-right: 7px;
}
.post-grid.style-four .blog-content {
  padding: 30px 20px 30px;
}
.post-grid.style-four .blog-content .entry-title {
  margin: 16px 0 22px;
  line-height: 1.3;
  font-weight: 600;
}
.post-grid.style-four .blog-content .author-simple .author {
  margin-left: 0;
}
.post-grid.style-four .blog-content .author-simple .author a {
  font-weight: 400;
  font-size: 14px;
  color: #949292;
}
.post-grid.style-four .blog-content .author-simple .author a:hover {
  color: var(--adata-primary-color);
}
.post-grid.style-four .blog-content .read_more_btn {
  text-transform: capitalize;
  font-size: 15px;
}
.post-grid.style-four .post-meta li {
  text-transform: uppercase;
  font-weight: 400;
}
.post-grid.style-four:hover .feature-image img {
  transform: scale(1.2);
}

.post-meta {
  margin: 0;
  padding: 5px 0 0;
  line-height: 1;
}
.post-meta li {
  display: inline-flex;
  position: relative;
  font-size: 14px;
  color: #696969;
}
.post-meta li i {
  margin-right: 8px;
  font-size: 14px;
  color: var(--adata-primary-color);
  line-height: 0.9;
}
.post-meta li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 480px) {
  .post-meta li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.post-meta li .author {
  margin-left: 5px;
}
.post-meta li .author a {
  color: #696969;
  font-weight: 400;
  font-size: 14px;
}
.post-meta li .author a:hover {
  color: var(--adata-primary-color);
}
.post-meta li a {
  margin: 0;
  color: #949292;
  line-height: normal;
}
.post-meta li a:hover {
  color: var(--adata-primary-color);
}

.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-categories li {
  display: inline-block;
  position: relative;
}
.post-categories li:not(:last-child) a:after {
  content: ",";
  position: absolute;
  right: -4px;
  top: 0;
}
.entry-meta a,
.post-categories a {
  color: var(--adata-primary-color);
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 400;
}
.entry-meta a:not(:last-child):after,
.post-categories a:not(:last-child):after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 0;
}

/** Blog List */
.blog-post-list {
  width: 100%;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
.blog-post-list .post-thumbnail {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.blog-post-list .entry-header {
  padding: 50px 50px 0;
}
.blog-post-list .entry-header .entry-title {
  font-size: 30px;
  font-weight: 700;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-post-list .meta-category-wrapper {
  margin-bottom: 25px;
}
.blog-post-list .meta-category-wrapper a {
  font-size: 13px;
  display: inline-block;
  padding: 0 15px;
  border: 1px solid #e1e2e2;
  color: var(--adata-primary-color);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}
.blog-post-list .meta-category-wrapper a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.blog-post-list .meta-category-wrapper a:hover {
  color: var(--adata-white);
  border-color: var(--adata-primary-color);
  background-color: transparent !important;
}
.blog-post-list .meta-category-wrapper a:hover:after {
  height: 300%;
}
.blog-post-list .blog-content {
  padding: 20px 50px 50px;
}
.blog-post-list .entry-content .entry-title {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 13px;
}
.blog-post-list .entry-content .entry-title a {
  color: var(--adata-secondary-color);
}
.blog-post-list .entry-content .entry-title a:hover {
  color: var(--adata-primary-color);
}
.blog-post-list .entry-content p {
  margin-bottom: 30px;
}
.blog-post-list.sticky .post-thumbnail {
  margin-bottom: 0;
}
.blog-post-list.sticky .entry-header .entry-title a {
  color: var(--adata-primary-color);
}
.blog-post-list.sticky .entry-header .entry-title a:hover {
  color: var(--adata-primary-color);
}
.blog-post-list .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-post-list .blog-footer .read-more {
  position: relative;
  color: var(--adata-secondary-color);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}
.blog-post-list .blog-footer .read-more i {
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  color: var(--adata-primary-color);
  margin-left: 5px;
}
.blog-post-list .blog-footer .read-more:hover {
  color: var(--adata-primary-color);
}
.blog-post-list .blog-footer .read-more:hover i {
  transform: translateX(5px);
  color: var(--adata-primary-color);
}
.blog-post-list .post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-post-list .post-meta-wrapper .post-meta {
  color: #696969;
  font-size: 14px;
  line-height: 1;
}
.blog-post-list .post-meta-wrapper .post-meta i {
  display: inline-block;
  line-height: 1;
  color: var(--adata-primary-color);
}
.blog-post-list .post-meta-wrapper .post-meta a {
  color: #696969;
  display: inline-block;
}
.blog-post-list .post-meta-wrapper .post-meta a:hover {
  color: var(--adata-primary-color);
}

.meta-category-wrapper a {
  font-size: 13px;
  display: inline-block;
  padding: 0 15px;
  border: 1px solid #e1e2e2;
  color: var(--adata-primary-color);
  border-radius: 4px;
  margin-right: 10px;
}
.meta-category-wrapper a:hover {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-color: var(--adata-primary-color);
}

.post-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-meta-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: #696969;
  font-weight: 400;
}
.post-meta-list li i {
  margin-right: 10px;
  color: #5c6f96;
  font-size: 14px;
}
.post-meta-list li a {
  color: #696969;
  font-weight: 400;
  font-size: 16px;
}
.post-meta-list li a:hover {
  color: var(--adata-primary-color);
}

.related-post-wrapper {
  margin-top: 63px;
}
.related-post-wrapper .related-title {
  font-size: 24px;
  margin-bottom: 21px;
}

.related-post {
  background-color: var(--adata-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 153, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
}
.related-post .feature-image img {
  min-height: 260px;
  width: 100%;
  object-fit: cover;
}
.related-post .post-meta {
  margin-bottom: 17px;
  padding-top: 0;
}
.related-post .post-meta li a {
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid #e1e2e2;
  padding: 8px 17px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.related-post .post-meta li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-primary-color);
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.related-post .post-meta li a:hover {
  border-color: var(--adata-primary-color);
  color: var(--adata-white);
}
.related-post .post-meta li a:hover:before {
  height: 200%;
}
.related-post .post-meta li a:not(:last-child) {
  margin-right: 10px;
}
.related-post .post-footer-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-post .post-footer-meta li {
  display: inline-block;
}
.related-post .post-footer-meta li:not(:last-child) {
  margin-right: 25px;
}
.related-post .post-footer-meta li a {
  color: #949292;
  font-size: 15px;
  font-weight: 400;
}
.related-post .post-footer-meta li a:hover {
  color: var(--adata-primary-color);
}
.related-post .post-footer-meta li i {
  font-size: 13px;
  color: var(--adata-primary-color);
  margin-right: 10px;
}
.related-post .blog-content {
  padding: 40px 30px;
}
.related-post .blog-content .post-title {
  font-size: 24px;
  margin-bottom: 7px;
}
.related-post .blog-content p {
  margin-bottom: 26px;
}

.share_social-wpapper {
  display: flex;
  padding: 0;
  align-items: center;
}
.share_social-wpapper .share-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--adata-secondary-color);
  font-weight: 600;
}

.social-share-link {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.social-share-link li a {
  background-color: var(--adata-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  margin-left: 10px;
  color: #7e8d9f;
  border-radius: 3px;
  height: 30px;
  width: 30px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-share-link li a:hover {
  background-color: var(--adata-primary-color);
  color: var(--adata-white);
}

.tag_list {
  margin-top: 30px;
}
.tag_list .tags {
  color: var(--adata-secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.single-post-navigation {
  margin-top: 70px;
}

.single-post-nav {
  max-width: 270px;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .single-post-nav {
    width: 100%;
  }
}
.single-post-nav i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adata-white);
  border-radius: 50%;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
  color: var(--adata-primary-color);
  margin-right: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.single-post-nav i:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-primary-color);
  background: var(--adata-primary-color);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.single-post-nav i:hover {
  color: var(--adata-white);
}
.single-post-nav i:hover:after {
  height: 200%;
}
.single-post-nav .post-nav-wrapper {
  flex: 2;
}
.single-post-nav .post-nav-title {
  font-size: 13px;
  font-weight: 400;
  color: #758598;
  margin-bottom: 5px;
  line-height: 1;
}
.single-post-nav .post-title {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.single-post-nav .post-title:hover {
  color: var(--adata-primary-color);
}

@media (max-width: 767px) {
  .post-next {
    margin-top: 30px;
  }
}
.post-next .single-post-nav {
  margin-left: auto;
}
.post-next .single-post-nav i {
  margin: 0 0 0 15px;
}
.post-next .post-nav-wrapper {
  text-align: right;
}

.portfolio-post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  border-top: 1px solid #dce0e5;
  border-bottom: 1px solid #dce0e5;
  margin-top: 60px;
}
@media (max-width: 576px) {
  .portfolio-post-navigation {
    display: block;
  }
}
.portfolio-post-navigation .middle-icon {
  color: #dadada;
  font-size: 30px;
  text-align: center;
}
.portfolio-post-navigation > div {
  width: 40%;
}
@media (max-width: 576px) {
  .portfolio-post-navigation > div {
    width: 100%;
  }
}
.portfolio-post-navigation .middle-icon {
  width: 20%;
}
@media (max-width: 576px) {
  .portfolio-post-navigation .middle-icon {
    width: 100%;
    margin: 20px 0;
  }
}
blockquote {
  background-color: rgb(227 249 245 / 30%);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.06);
  padding: 40px 50px;
  position: relative;
  margin: 54px 0 52px;
}
blockquote p {
  font-size: 18px;
  color: var(--adata-text-color);
  font-style: normal;
  margin-bottom: 4px;
  font-weight: 400;
  padding: 0 !important;
}
blockquote cite {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--adata-secondary-color);
  padding-top: 15px;
  display: inline-block;
  position: relative;
  display: inline-flex!important;
  align-items: center;
  gap: 10px
}
blockquote cite:before {
  content: "";
  display: block;
  height: 2px;
  width: 34px;
  background: var(--adata-primary-color);
}
@media (max-width: 575px) {
	blockquote {
		padding: 30px 20px;
	}
	blockquote p {
		font-size: 18px;
	}
	blockquote cite {
		font-size: 16px;
	}
}
.blog-container {
  padding: 120px 0;
}
.single-post .page-content {
  padding: 0;
}
.blog .page-content {
  padding: 120px 0;
}
.post-grid .feature-image {
  overflow: hidden;
}
.post-grid .feature-image a {
  position: relative;
  display: block;
}
.post-grid .feature-image a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 333;
}
.post-grid .feature-image img {
  transition: all 0.5s ease-in-out;
  height: 260px;
  object-fit: cover;
}
.post-grid .feature-image:hover a:before {
  opacity: 1;
}
.post-grid .feature-image:hover img {
  transform: scale(1.07);
}

.post-single {
  margin-bottom: 0;
}
.post-single .feature-image {
  margin-bottom: 28px;
}
.post-single .post-meta {
  padding-top: 0;
}
.post-single .post-meta li {
  color: #949292;
}
.post-single .post-meta li .author a {
  color: #949292;
}
.post-single .post-meta li .author a:hover {
  color: var(--adata-primary-color);
}
.post-single .entry-header {
  padding-bottom: 30px;
}
.post-single .entry-title {
  font-size: 36px;
  margin: 10px 0 25px;
}
.post-single .wp-block-image {
  margin-top: 30px;
}
.post-single .blocks-gallery-grid li img {
  border-radius: 10px;
}
.post-single blockquote {
  border: none!important;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 35px;
  margin-bottom: 70px;
}
.post-single blockquote::after {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  color: var(--adata-white);
  background: var(--adata-primary-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  bottom: -25px;
  right: 20px;
  font-weight: 900;
  font-size: 25px;
  text-align: center;
  border-radius: 50%;
}
.post-single blockquote cite {
  order: -1;
  font-size: 20px;
  color: var(--adata-primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  padding-top: 0;
}
.post-single blockquote p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--adata-text-color);
  font-style: normal;
}
.post-single .wp-block-image {
  text-align: center;
}
.post-single .wp-block-image {
  margin-bottom: 39px;
}
.post-single .edit-link {
  margin-left: 15px;
}
.post-single .single-post-header {
  margin-bottom: 50px;
}
.post-single .single-post-header .single-post-title {
  font-size: 36px;
  margin-bottom: 25px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.post-single .post-meta-cat {
  margin-bottom: 20px;
}
.post-single .post-meta-cat a {
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--adata-white);
  border-radius: 5px;
  background-color: #37a45d;
  min-width: auto;
  font-weight: 400;
  margin: 0 5px;
  border: 0px solid transparent;
  display: inline-block;
}
.post-single .post-meta-cat a:first-child {
  background-color: #e9683e;
}
.post-single .meta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-single .feature-image {
  text-align: center;
}
.post-single .feature-image img {
  border-radius: 6px;
}
.post-single .entry-content {
  max-width: 900px;
  margin: 0 auto;
}
.post-single .entry-footer {
  margin-top: 60px;
}
.post-single .entry-footer .tag_list {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ebf4;
}

ul.blocks-gallery-grid {
  margin-top: 40px;
}

.single-post-header-bg .single-post-header {
  position: relative;
  z-index: 2;
}
.single-post-header-bg .at-blog-meta-category {
  color: var(--adata-white);
  font-size: 13px;
  border: 1px solid var(--adata-white);
  padding: 8px 16px;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
  margin: 0 5px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.single-post-header-bg .at-blog-meta-category:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 0;
  background: var(--adata-white);
  border-radius: 50% 50% 0 0;
  transition: height 0.4s ease-in-out;
}
.single-post-header-bg .at-blog-meta-category:hover {
  color: var(--adata-primary-color);
}
.single-post-header-bg .at-blog-meta-category:hover:before {
  height: 300%;
}
.single-post-header-bg .single-post-title {
  font-size: 36px;
  color: var(--adata-white);
  line-height: 1.2;
  max-width: 595px;
  margin: 20px auto 13px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.feature-image-banner {
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .feature-image-banner {
    height: 380px;
  }
}
.feature-image-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.feature-image-banner .single-post-header {
  position: relative;
  z-index: 2;
}
.feature-image-banner .single-post-header .single-post-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--adata-white);
  margin-bottom: 0;
  line-height: 1.3;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .feature-image-banner .single-post-header .single-post-title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .feature-image-banner .single-post-header .single-post-title {
    font-size: 30px;
  }
}
.feature-image-banner .single-post-header .post-meta {
  margin-top: 24px;
}
.feature-image-banner .single-post-header .post-meta li, .feature-image-banner .single-post-header .post-meta a {
  color: var(--adata-white);
}
.feature-image-banner .single-post-header .post-meta a:hover {
  color: var(--adata-primary-color);
}

.blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.blog-share .share-title p {
  color: #2b2350;
  display: inline-block;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}

.share-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.share-link li {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0 !important;
}
.share-link li:before {
  display: none;
}
.share-link li:last-child {
  margin-right: 0;
}
.share-link li a {
  display: block;
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 43px;
  color: #aba8a4;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #e5dada;
}
.share-link li a:hover {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-color: var(--adata-primary-color);
}

@media (max-width: 991px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: 100%;
    margin-right: 0;
  }

  .comment-list .comment .comment-body.menu-comments .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
  .comment-list .comment .comment-body .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
  .comment-list .comment .comment-body .comment-content {
    padding-bottom: 20px;
  }
  .comment-list .comment .comment-body .comment-content h4 {
    font-size: 18px;
  }
  .comment-list .comment .comment-body .comment-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .comment-list .children {
    padding-left: 70px;
  }

  .comment-respond .comment-reply-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .comment-list .comment .comment-body .comment-content .ratings {
    position: static;
  }
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 20px;
}
.page-links a,
.page-links .current {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #f8f6f2;
  color: var(--adata-secondary-color);
  display: inline-block;
  text-align: center;
  line-height: 31px;
  font-size: 16px;
  margin-left: 5px;
}
.page-links a:hover,
.page-links .current:hover {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}
.page-links .current {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}

.post-navigation {
  margin-bottom: 50px;
}
.post-navigation .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--adata-border-color);
  border-bottom: 1px solid var(--adata-border-color);
  position: relative;
  width: 102%;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  width: 48%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background: var(--adata-text-color);
  margin-right: 2%;
  flex: 1;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  font-weight: 500;
  font-size: 16px;
  color: var(--adata-white);
  display: block;
  outline: 0;
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  color: var(--adata-white);
}
.post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:hover {
  background: var(--adata-primary-color);
}
.post-navigation .nav-links .nav-previous {
  padding-right: 30px;
}
.post-navigation .nav-links .nav-next {
  padding-left: 30px;
}

.first-lg {
  -webkit-order: -1;
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

/* Author Box */
.fiana_post_author_box {
  background: #faf8f5;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  border-radius: 6px;
  max-width: 670px;
}
.fiana_post_author_box .profile_image {
  width: 80px;
  margin-right: 20px;
  border-radius: 50%;
}
.fiana_post_author_box .profile_image img {
  border-radius: 50%;
}
.fiana_post_author_box .profile_content {
  flex: 1;
}
.fiana_post_author_box .profile_content .profile_name {
  font-size: 20px;
  line-height: 28px;
  color: var(--adata-secondary-color);
  margin-bottom: 10px;
  margin-top: 0;
  font-weight: 600;
}
.fiana_post_author_box .profile_content .author-job {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
  display: inline-block;
}
.fiana_post_author_box .profile_content .profile_bio p {
  font-size: 16px;
  color: #827f79;
  margin-bottom: 0;
  font-weight: 500;
}
.fiana_post_author_box .user-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fiana_post_author_box .user-social-link li {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.post-share {
  display: inline-block;
  flex: 1;
}

.share-trigger .share-items {
  float: right;
}
.share-trigger .share-items a {
  height: 35px;
  width: 35px;
  display: inline-block;
  background: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  color: var(--adata-white);
}
.share-trigger .share-items a.facebook-bg {
  background: #3b5998;
}
.share-trigger .share-items a.facebook-bg:hover {
  background: #263961;
}
.share-trigger .share-items a.twitter-bg {
  background: #3cf;
}
.share-trigger .share-items a.twitter-bg:hover {
  background: #00ace6;
}
.share-trigger .share-items a.google-plus-bg {
  background: #dc4a38;
}
.share-trigger .share-items a.google-plus-bg:hover {
  background: #aa2d1e;
}
.share-trigger .share-items a.linkedin-bg {
  background: #0077B5;
}
.share-trigger .share-items a.linkedin-bg:hover {
  background: #004569;
}

@media (max-width: 991px) {
  .blog-container {
    padding: 80px 0;
  }

  #secondary {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .blog-container {
    padding: 50px 0;
  }
}
.search-header {
  margin-bottom: 30px;
}

.search_page_404_wrapper {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.search_page_404_wrapper .page-title {
  margin-bottom: 14px;
}
.search_page_404_wrapper .banner_404_text {
  margin-bottom: 30px;
}

.search_result_form .search-form {
  display: flex;
  border: 1px solid rgba(5, 20, 65, 0.2);
  margin-bottom: 20px;
  border-radius: 10px;
}
.search_result_form .search-form input {
  border: none;
  border-radius: 0;
  padding: 20px;
  margin: 0;
  background: transparent;
}
.search_result_form .search-form .search-submit {
  border: 0;
  background: transparent;
  padding: 15px 20px;
  color: var(--adata-primary-color);
}

.no-results .page-content {
  padding: 0 0 120px;
}
@media (max-width: 991px) {
  .no-results .page-content {
    padding: 0 0 80px;
  }
}

.pagination-wrapper ~ .sidebar {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.pagination-wrapper {
  margin-top: 30px;
}

.blog-archive-wrapper #post-pagination {
  margin-top: 80px;
  text-align: center;
}
#post-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}
#post-pagination .page-numbers li {
  display: inline-block;
}
#post-pagination .page-numbers li a,
#post-pagination .page-numbers li span {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: 1px solid #e7e7f6;
  text-align: center;
  color: #7b8a9e;
  border-radius: 4px;
  margin-right: 10px;
}
#post-pagination .page-numbers li a:hover,
#post-pagination .page-numbers li a .current,
#post-pagination .page-numbers li span:hover,
#post-pagination .page-numbers li span .current {
  background: var(--adata-primary-color);
  border-color: var(--adata-primary-color);
  color: var(--adata-white);
}
#post-pagination .page-numbers li a:hover a,
#post-pagination .page-numbers li a .current a,
#post-pagination .page-numbers li span:hover a,
#post-pagination .page-numbers li span .current a {
  color: var(--adata-white);
}
#post-pagination .page-numbers li a.current,
#post-pagination .page-numbers li span.current {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border-color: var(--adata-primary-color);
}
#post-pagination .page-numbers li i {
  font-size: 20px;
}
#post-pagination .page-numbers li.next {
  line-height: 54px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
}
.woocommerce nav.woocommerce-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination .page-numbers li {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 16px;
  margin-right: 10px !important;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border: 1px solid #e7e7f6;
  border-radius: 50%;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a,
.woocommerce nav.woocommerce-pagination .page-numbers li span {
  display: block;
  line-height: 50px;
  font-size: 16px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a i,
.woocommerce nav.woocommerce-pagination .page-numbers li span i {
  font-size: 18px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.current, .woocommerce nav.woocommerce-pagination .page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li span.current,
.woocommerce nav.woocommerce-pagination .page-numbers li span:hover {
  background: var(--adata-primary-color);
  border-color: var(--adata-primary-color);
}
.woocommerce nav.woocommerce-pagination .page-numbers li i {
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li svg {
  height: 20px;
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.woocommerce nav.woocommerce-pagination .page-numbers li.next, .woocommerce nav.woocommerce-pagination .page-numbers li.prev {
  line-height: 45px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.prev, .woocommerce nav.woocommerce-pagination .page-numbers li a.next {
  line-height: 48px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.prev:hover svg path, .woocommerce nav.woocommerce-pagination .page-numbers li a.next:hover svg path {
  fill: var(--adata-white) !important;
}
.woocommerce nav.woocommerce-pagination .page-numbers li:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}
.woocommerce nav.woocommerce-pagination .page-numbers li:hover a,
.woocommerce nav.woocommerce-pagination .page-numbers li .current a {
  color: var(--adata-white);
}
.woocommerce nav.woocommerce-pagination .page-numbers li.current {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}
.woocommerce .pprefix-post-navigation {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--adata-border-color);
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .prev_title {
  font-size: 16px;
  font-weight: 600;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .date_post {
  font-size: 14px;
  font-weight: 500;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .meta-wrapper {
  display: block;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist {
  display: block;
  width: 100px;
  position: relative;
  overflow: hidden;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--adata-white);
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(42, 202, 255, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover:before {
  opacity: 1;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover i {
  opacity: 1;
  visibility: visible;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .next-link-info_wrapper {
  flex: 2;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_prev {
  margin-right: 20px;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  justify-content: flex-end;
  text-align: right;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_next {
  margin-left: 20px;
}
.woocommerce .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--adata-white);
  color: var(--adata-primary-color);
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
}
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  position: absolute;
  right: 0;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: left;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev {
  left: -80px;
  text-align: right;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev i {
  margin-right: 20px;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  right: -80px;
  text-align: left;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next i {
  margin-left: 20px;
}
.woocommerce .format-gallery:hover .gp-slider-prev,
.woocommerce .format-gallery:hover .gp-slider-next {
  opacity: 1;
  visibility: visible;
}
.woocommerce .format-gallery:hover .gp-slider-prev {
  left: -40px;
  text-align: right;
}
.woocommerce .format-gallery:hover .gp-slider-next {
  right: -40px;
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.widget_search .search-form {
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.06);
  background-color: var(--adata-white);
  display: flex;
  overflow: hidden;
}
.widget_search .search-form label {
  margin: 0;
  width: 100%;
}
.widget_search .search-form input {
  padding: 11px 30px;
  border-radius: 0;
  border: 0;
  width: 100%;
  color: #696969;
  height: 60px;
  margin: 0;
  background: transparent;
}
.widget_search .search-form input::placeholder {
  color: #696969;
}
.widget_search .search-form input:focus {
  border-color: var(--adata-primary-color);
}
.widget_search .search-form .search-submit {
    background-color: transparent;
    border: 0;
    padding: 15px 19px 10px 35px;
    color: var(--adata-text-color);
}
.widget_search .search-form .search-submit:focus {
  outline: 0;
}
.widget_search .search-form .search-submit:hover {
  background-color: transparent;
}

#search-menu-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: var(--adata-white);
}
#search-menu-wrapper .close-search {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--adata-primary-color);
  color: var(--adata-white);
  z-index: 9999999;
  opacity: 5;
  position: absolute;
  right: 15px;
  top: 40px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 576px) {
  #search-menu-wrapper .close-search {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
#search-menu-wrapper .overlay-bg {
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#search-menu-wrapper.toggled {
  opacity: 1;
  visibility: visible;
}
#search-menu-wrapper .wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#search-menu-wrapper .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b9b8b8;
}
#search-menu-wrapper .search-form input {
  border-radius: 0;
  border: 0;
  background: transparent;
  height: 100px;
  padding: 0;
  color: var(--adata-black);
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  line-height: 2.5;
}
@media (max-width: 991px) {
  #search-menu-wrapper .search-form input {
    height: 60px;
    font-size: 40px;
  }
}
#search-menu-wrapper .search-form input::placeholder {
  color: #b1b1b1;
}
#search-menu-wrapper .search-form button {
  background-color: var(--adata-white);
  color: #b1b1b1;
  border: 0;
  padding: 0;
  height: 80px;
  transition: all 0.3s ease-in-out;
  font-size: 40px;
}
@media (max-width: 991px) {
  #search-menu-wrapper .search-form button {
    font-size: 32px;
  }
}
#search-menu-wrapper .search-form button:hover {
  color: var(--adata-primary-color);
}

.sea-wrapper .search-form {
  display: flex;
  align-items: center;
}
.sea-wrapper .search-form label {
  margin: 0;
  width: 100%;
}
.sea-wrapper .search-form input {
  margin: 0;
}
.sea-wrapper .search-form .search-submit {
  background: var(--adata-primary-color);
  color: var(--adata-white);
  border: 0;
  height: 54px;
  border-radius: 4px;
  margin-left: 20px;
}
.sea-wrapper .search-form .search-submit:hover {
  background: #004ce5;
  color: var(--adata-white);
}

/*--------------------------------------------------------------
## Author Box
--------------------------------------------------------------*/
.author-info_wrapper {
  padding: 32px 55px;
  margin-top: 75px;
  border-radius: 10px;
  background-color: var(--adata-white);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.09);
  display: flex;
  flex-wrap: wrap;
}
.author-info_wrapper .author {
  font-style: italic;
  color: var(--adata-primary-color);
  margin-bottom: 3px;
}
@media (max-width: 480px) {
  .author-info_wrapper {
    padding: 20px 15px;
  }
}

.author-info_avatar {
  margin-right: 20px;
  width: 90px;
}
@media (max-width: 480px) {
  .author-info_avatar {
    width: 80px;
  }
}

.author-info_avatar img {
  border-radius: 50%;
}

.author-info_content {
  flex: 2;
}

.author-info_name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 3px;
}

.author-info_name span {
  margin-right: 7px;
  font-size: 14px;
  display: block;
}

.author-info_description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.author-info_social-wrapper {
  line-height: 1;
  margin-top: 14px;
}

.author-info_wrapper .title_soc_share {
  font-size: 14px;
  font-weight: bold;
  margin-right: 20px;
}

.author-info_social-link {
  display: inline-block;
  margin-right: 13px;
  color: #bfc1c2;
  font-size: 15px;
}

.author-info_social-wrapper a {
  color: #bbbcbd;
}
.author-info_social-wrapper a:hover {
  color: var(--adata-primary-color);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-section {
  padding: 80px 0;
}

.comment-wrapper {
  max-width: 730px;
  margin: 0 auto;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

#comments {
  margin-top: 60px;
}
#comments .comments-title {
  font-size: 24px;
  margin-bottom: 26px;
}

.comments-area .comment-inner {
  margin-bottom: 50px;
}
.comments-area .reply-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--adata-secondary-color);
  margin-bottom: 30px;
}
.comments-area .no-comments {
  margin: 0;
  line-height: 11px;
}

.comment-list-wrapper {
  max-width: 730px;
  margin: 0 auto;
}

.page .comment-list-wrapper {
  margin-top: 40px;
}
.page .comment-respond .comment-reply-title,
.page .comment-respond .comment-notes, .page .comment-respond .logged-in-as {
  text-align: left;
}
.page .comment-list {
  margin-bottom: 0;
}
.page .comment-respond {
  margin-top: 60px;
}
.page .comment-form input[type=text], .page .comment-form textarea {
  border: 1px solid rgba(5, 20, 65, 0.2);
}
.page .comment-list .comment .comment-body .comment_info .meta-wrapper {
  color: #bbb;
}

.comments-section .comment-list-wrapper {
  padding-top: 0;
  border: 0;
}

.comment-list {
  padding: 0;
  list-style: none;
  overflow: auto;
  margin-bottom: 0;
}
.comment-list > li {
  margin-bottom: 40px;
}
.comment-list > li:not(:last-child) {
  border-bottom: 1px solid #dce0e5;
}
.comment-list .comment-body {
  margin-bottom: 30px;
}
.comment-list .comment .comment-body {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 23px;
}
.comment-list .comment .comment-body .comment-avatar {
  margin-right: 25px;
  border-radius: 50%;
  height: 75px;
  width: 75px;
}
.comment-list .comment .comment-body .comment-avatar img {
  border-radius: 50%;
}
.comment-list .comment .comment-body .comment_content {
  margin-top: 7px;
}
.comment-list .comment .comment-body .comment_info {
  position: relative;
  overflow: auto;
  flex: 2;
}
.comment-list .comment .comment-body .comment_info .comment_author_says {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--adata-secondary-color);
}
.comment-list .comment .comment-body .comment_info .meta-wrapper {
  display: block;
  font-weight: 400;
  color: #758598;
  font-size: 15px;
}
.comment-list .comment .comment-body .comment_info .comment-reply-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}
.comment-list .comment .comment-body .comment_info p img {
  margin: 15px 0 5px;
}
.comment-list .comment .comment-body .comment-reply-link {
  color: #758598;
  font-weight: 400;
  font-size: 12px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  background: #f3f4f6;
  border-radius: 5px;
  padding: 9px 15px;
}
.comment-list .comment .comment-body .comment-reply-link:hover {
  color: var(--adata-white);
  background-color: var(--adata-primary-color);
}
.comment-list .comment .children {
  margin: 0;
  padding-left: 100px;
  list-style: none;
}
.comment-list .comment .children .comment-avatar {
  height: 60px;
  width: 60px;
}
.comment-list .comment .children .comment .comment-body .comment-reply-link {
  margin-left: 80px;
}

#comments .comment-list .comment-respond {
  margin: 20px 0;
  max-width: 100%;
}
#comments .comment-list .comment-respond #cancel-comment-reply-link {
  font-size: 16px;
  color: var(--adata-primary-color);
}

.children .comment-respond {
  margin-left: 80px !important;
}

.comment-respond .comment-reply-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 20px;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  margin-bottom: 30px;
}
#review_form .comment-respond .comment-notes,
#review_form .comment-respond .logged-in-as {
  text-align: left;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}
.comment-form .comment-form-author {
  padding-right: 15px;
}
.comment-form .comment-form-email {
  padding-left: 15px;
  float: right;
}
.comment-form input[type=text],
.comment-form textarea {
  padding: 13px 20px;
  border: 1px solid #dce0e5;
  background-color: var(--adata-white);
  border-radius: 0;
  color: #696969;
  font-size: 16px;
  height: auto;
  background-clip: border-box;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  border-radius: 5px;
  height: 60px;
}
.comment-form input[type=text]::placeholder,
.comment-form textarea::placeholder {
  color: #a4a6a9;
}
.comment-form input[type=text]:focus,
.comment-form textarea:focus {
  border-color: rgba(42, 202, 255, 0.5);
}
.comment-form textarea {
  height: 200px;
  margin-bottom: 20px;
}
.comment-form #submit {
  margin-bottom: 0;
  background-color: var(--adata-primary-color);
  color: var(--adata-white);
  border: 1px solid transparent;
  padding: 15px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  max-width: 180px;
  text-align: center;
  border-radius: 6px;
}
.comment-form #submit:hover {
  color: var(--adata-primary-color);
  border-color: var(--adata-primary-color);
  background: transparent;
}
.comment-form .comment-form-cookies-consent {
  margin-bottom: 20px !important;
  font-size: 18px;
  color: #797986;
  position: relative;
}
.comment-form .comment-form-cookies-consent:after {
  content: "";
  display: block;
  clear: both;
}
.comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  width: auto;
  height: auto;
}
.comment-form .comment-form-cookies-consent label {
  cursor: pointer;
  display: inline;
  line-height: 1.25em;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
}
.comment-form .comment-form-cookies-consent label:not(:empty) {
  padding-left: 0.75em;
}
.comment-form .comment-form-cookies-consent label:before, .comment-form .comment-form-cookies-consent label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
}
.comment-form .comment-form-cookies-consent label:before {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(5, 20, 65, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.comment-form .comment-form-cookies-consent input[type=checkbox] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}
.comment-form .comment-form-cookies-consent input[type=checkbox]:checked + label:before {
  background: var(--adata-primary-color);
  border: none;
}
.comment-form .comment-form-cookies-consent input[type=checkbox]:checked + label:after {
  transform: translate(0.17em, 0.25em) rotate(-45deg);
  width: 0.6em;
  height: 0.25em;
  border: 0.125em solid var(--adata-white);
  border-top-style: none;
  border-right-style: none;
}

#review_form input[type=text],
#review_form textarea {
  border: 1px solid rgba(5, 20, 65, 0.2);
}
#review_form input[type=text]::placeholder,
#review_form textarea::placeholder {
  color: #75757d;
}
#review_form input[type=text]:focus,
#review_form textarea:focus {
  border-color: rgba(42, 202, 255, 0.5);
}

@media (max-width: 991px) {
  .comment-list .comment .children {
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  .comment-list .comment .comment-body .comment-avatar {
    width: 55px;
    height: 55px;
  }
  .comment-list .comment .children {
    padding-left: 20px;
  }
  .comment-list .comment .children .comment .comment-body .comment-avatar {
    width: 40px;
    height: 40px;
  }
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

iframe {
  border-width: 0px;
}

.entry-content iframe {
  max-height: 500px;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  gap: 10px;
}

.gallery-item {
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0 !important;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-icon.landscape a::before {
  content: '\f0c1';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--adata-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(5 29 31 / 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
.gallery-icon.landscape a:hover::before {
  visibility: visible;
  opacity: 1;
}
.gallery-icon.landscape a img {
  width: 100%;
  height: 100%;
}
.gallery-caption {
  display: block;
}

.blog-content .gallery {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
## Block
--------------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
  background: var(--adata-secondary-color);
  border-radius: 5px;
  margin-bottom: 10px;
  color: var(--adata-white);
}
.wp-block-button .wp-block-button__link:hover {
  background: var(--adata-primary-color);
  color: var(--adata-white);
}
.wp-block-button .wp-block-button__link br {
  display: none;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--adata-secondary-color);
  border-color: var(--adata-secondary-color);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--adata-primary-color);
  color: var(--adata-primary-color);
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 30px);
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  margin: 0 30px 16px 0;
}

.wp-block-cover .wp-block-cover-text {
  padding: 30px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  padding-left: 0;
}
.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}
.gallery-icon.landscape a {
  position: relative;
  display: block;
}
.wp-block-cover p:not(.has-text-color) {
  color: var(--adata-white) !important;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  background-color: transparent;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  font-size: 1.6em;
  font-weight: 300;
}
.wp-block-quote.is-large:before, .wp-block-quote.is-large:after, .wp-block-quote.is-style-large:before, .wp-block-quote.is-style-large:after {
  display: none;
}

.wp-block-pullquote {
  border-top: 4px solid #F3F3F3;
  border-bottom: 4px solid #F3F3F3;
  color: #40464d;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color {
  background-color: #0073aa;
  padding-left: 0;
  padding-right: 0;
}

.entry .entry-content .wp-block-pullquote {
  border-color: transparent;
  border-width: 2px;
  padding: 1rem;
}
.entry .entry-content .wp-block-pullquote blockquote {
  background-color: transparent;
}
.entry .entry-content .wp-block-pullquote blockquote:before, .entry .entry-content .wp-block-pullquote blockquote:after {
  display: none;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  color: var(--adata-white);
  padding-left: 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-top: 4rem;
  margin-bottom: 4.33rem;
  margin-right: 0;
  padding-left: 0;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  font-size: 1.6875em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry .entry-content .wp-block-pullquote p {
  font-size: 1.6875em;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry .entry-content .wp-block-archives li,
.entry .entry-content .wp-block-categories li,
.entry .entry-content .wp-block-latest-posts li {
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative;
}
.entry .entry-content .wp-block-archives li time,
.entry .entry-content .wp-block-categories li time,
.entry .entry-content .wp-block-latest-posts li time {
  line-height: 1;
}
.entry .entry-content .wp-block-archives li:before,
.entry .entry-content .wp-block-categories li:before,
.entry .entry-content .wp-block-latest-posts li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #7d92bb;
}
.entry .entry-content .wp-block-archives li a,
.entry .entry-content .wp-block-categories li a,
.entry .entry-content .wp-block-latest-posts li a {
  font-size: 16px;
  color: #465675;
}
.entry .entry-content .wp-block-archives li a:hover,
.entry .entry-content .wp-block-categories li a:hover,
.entry .entry-content .wp-block-latest-posts li a:hover {
  color: var(--adata-primary-color);
}
.entry .entry-content .wp-block-archives li .children,
.entry .entry-content .wp-block-categories li .children,
.entry .entry-content .wp-block-latest-posts li .children {
  padding-left: 30px;
}

.entry .entry-content .wp-block-categories-list .children li {
  padding-left: 0;
}
.entry .entry-content .wp-block-categories-list .children li:before {
  display: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.wp-block-latest-comments {
  padding-left: 0;
}

.wp-block-media-text.alignfull.has-media-on-the-right.has-background.is-stacked-on-mobile {
  margin-bottom: 15px;
}

pre.wp-block-preformatted {
  margin-top: 20px;
}

.post_format-post-format-quote blockquote {
  margin-top: 0;
}

.wp-block-archives, .wp-block-categories-list {
  padding: 0;
  list-style: none;
}

.wp-block-archives-dropdown select {
  height: 50px;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 20px;
}

.wp-block-latest-comments__comment {
  font-size: 20px;
}
.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
  color: var(--adata-secondary-color);
  font-weight: 600;
}
.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a:hover {
  color: var(--adata-primary-color);
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.entry .entry-content .wp-block-separator, .entry .entry-content hr {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 2.25em;
  text-align: left;
  margin-left: 0;
}

.wp-block-calendar .wp-calendar-nav {
  margin-bottom: 20px;
}

.wp-block-categories-dropdown .postform {
  margin-bottom: 20px;
}

.wp-block-search .wp-block-search__button {
  padding: 0 20px;
  height: 54px;
  border: 0;
  background: var(--adata-primary-color);
  border-radius: 3px;
  color: var(--adata-white);
  font-weight: 500;
}
.wp-block-search .wp-block-search__button:hover {
  background: var(--adata-secondary-color);
}

.wp-block-gallery.is-cropped .blocks-gallery-caption:last-child,
.wp-block-gallery.is-cropped {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .entry .entry-content .wp-block-pullquote.is-style-solid-color {
    padding-left: 10%;
    padding-right: 10%;
  }

  .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
    font-size: 2.22em;
    color: var(--adata-white);
  }

  .entry .entry-content .wp-block-pullquote p {
    font-size: 2.25em;
  }

  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(66.6666666667vw - 28px);
  }

  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(66.6666666667vw - 28px);
  }
}
@media only screen and (min-width: 1168px) {
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(50vw - 28px);
  }

  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(50vw - 28px);
  }
}
.entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.entry .entry-content .wp-block-separator.is-style-dots:before, .entry .entry-content hr.is-style-dots:before {
  color: #767676;
  font-size: 1.6875em;
  letter-spacing: 0.88889em;
  padding-left: 0.88889em;
}

.wp-block-separator.is-style-dots:before {
  content: "···";
  color: var(--adata-secondary-color);
  font-size: 20px;
  letter-spacing: 2em;
  padding-left: 20px;
  font-family: serif;
}

.wp-block-table.is-style-stripes {
  border-collapse: collapse;
}
.wp-block-table.is-style-stripes td {
  border-color: #F3F3F3;
  border-bottom-width: 1px;
}
.wp-block-table.is-style-stripes td:not(:first-child) {
  border-left-width: 1px;
}
.wp-block-table.is-style-stripes tr {
  border-top: 1px solid #F3F3F3;
}
.wp-block-table.is-style-stripes tr:last-child td {
  border-bottom-width: 1px;
}
