/* ---------------------------------

	Template Name: Enfox
	Author: lorestani_me
	Description: Responsive Agency HTML5 Template
	Version: 1.0

----------------------------------*/
/* ---------------------------------

	Table of Contents

		01. Fonts
		02. Reset
		03. Global
		04. Preloader
		05. Button
		06. Navbar
		07. Header
		08. Service
		09. Services Page
		10. Partners
		11. Work
		12. Team
		13. Solution
		14. Plan
		15. Price
		16. Testimonials
		17. Sponsors
		18. 404 Error Page
		19. Account Page ( Login And Register)
		20. Blog List Page
		21. Blog Post Page
		22. About Us Page
		23. About Us Video
		24. Contact Us Page
		25. Map
		26. Footer
		27. Animation
		28. Responsive


----------------------------------*/

/*		[ Fonts ]		*/
@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700|Poppins:400,600,700");

/*		[ Reset ]		*/
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
address,
big,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
small,
strike,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  font-family: "Quicksand", sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.3;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
  color: #000;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*		[ Global ]		*/
.owl-nav {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

.section-header {
  position: relative;
  margin-bottom: 25px;
}

.section-title {
  color: #dd2476;
  font-family: Poppins;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-text {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 25px;
}

.section-text span {
  color: #944179;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, #ff512f),
    to(#dd2476)
  );
  background: -webkit-linear-gradient(top, #ff512f 30%, #dd2476 100%);
  background: -o-linear-gradient(top, #ff512f 30%, #dd2476 100%);
  background: transparent, linear-gradient(to bottom, #ff512f 30%, #dd2476 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 22px;
}


/* List style */
.leikode-item-list{
  margin-left: 30px;
}
.leikode-item-list li{
  list-style: disc;
  margin-bottom: 5px;
}

/*		[ Button ]		*/
.btn-one {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 100px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
}

.btn-one:hover {
  color: #fff;
  background-image: linear-gradient(to right, #dd2476 0%, #ff512f 100%);
}

.btn-two {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  display: inline-block;
  border-radius: 3px;
  background-image: linear-gradient(to right, #944179 0%, #5d5de9 100%);
}

.btn-two:hover {
  color: #fff;
  background-image: linear-gradient(to right, #5d5de9 0%, #944179 100%);
}

.btn-three {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 24px;
  display: inline-block;
  border-radius: 100px;
  border: 3px solid #dd2476;
  background-color: #dd2476;
  transition: 0.3s;
}

.btn-three:hover {
  color: #dd2476;
  background-color: transparent;
}

/*		[ Preloader ]		*/
#preloader {
  display: none; /* Removed the preloader at 2023.02.13. It is still shown with JS */
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 500;
}

.loader,
.loader:before,
.loader:after {
  background: #fff;
  animation: loading 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #944179;
  font-size: 11px;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  content: "";
  top: 0;
}

.loader:before {
  left: -1.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@keyframes loading {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

/*		[ Navbar ]		*/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  min-height: 80px;
  transition: 0.5s;
  z-index: 9;
}

.navbar-dark {
  background-color: #fff;
}

.navbar.fixed {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #252525;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  letter-spacing: 0.5px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 25px 12px 25px 18px;
  transition: 0.4s;
}

.navbar-dark .navbar-nav .nav-item .nav-link {
  color: #000;
}

.navbar.fixed .navbar-nav .nav-item .nav-link {
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  bottom: 20px;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
  transition: 0.4s;
}

.navbar .navbar-nav .nav-item .nav-link.active:before,
.navbar .navbar-nav .nav-item:hover .nav-link:before {
  width: 25px;
}

.navbar .navbar-nav .nav-item.dropdown .nav-link:after {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f107";
  right: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  transition: 0.4s;
}

.navbar .navbar-nav .nav-item.dropdown:hover .nav-link:after {
  transform: rotate(-180deg);
}

.navbar .navbar-nav .nav-item.dropdown ul {
  position: absolute;
  top: 100%;
  left: 8px;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  min-width: 180px;
  transform: translateY(-10px);
  transition: 0.4s;
}

.navbar-dark .navbar-nav .nav-item.dropdown ul {
  border: 1px solid #aaa;
  border-bottom: none;
}

.navbar .navbar-nav .nav-item.dropdown > ul:before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 17px;
  border-bottom: 6px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.navbar-dark .navbar-nav .nav-item.dropdown > ul:before {
  border-bottom: 6px solid #aaa;
}

.navbar .navbar-nav .nav-item.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .navbar-nav .nav-item.dropdown ul li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.navbar .navbar-nav .nav-item.dropdown ul li:last-child {
  border-bottom: 2px solid #dd2476;
}

.navbar .navbar-nav .nav-item.dropdown ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  padding: 13px 17px;
  transition: 0.3s;
}

.navbar .navbar-nav .nav-item.dropdown ul li:hover > a {
  color: #fff;
  background-color: #5d5de9;
  padding-left: 25px;
}

.navbar .navbar-nav .nav-item.dropdown ul ul {
  left: 100%;
  top: 0;
  transform: translateX(10px);
}

.navbar .navbar-nav .nav-item.dropdown ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.navbar .navbar-nav .nav-item.dropdown .sub-menu > a:after {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f105";
  right: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  transition: 0.4s;
}

.navbar .navbar-nav .nav-item.dropdown .sub-menu:hover > a:after {
  transform: rotate(-180deg);
}

.navbar .navbar-nav .nav-item.dropdown .sub-menu:hover > a:after {
  color: #fff;
}

.navbar .navbar-toggler {
  border-color: #fff;
}

.navbar .navbar-toggler .navbar-icon {
  color: #fff;
}

.navbar.fixed .navbar-toggler {
  border-color: #fff;
}

.navbar.fixed .navbar-toggler .navbar-icon {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  border-color: #000;
}

.navbar-dark .navbar-toggler .navbar-icon {
  color: #000;
}

/*		[ Header ]		*/
.main-header {
  position: relative;
  padding-top: 180px;
  background-image: url("/img/source/header-bg.png");
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.main-header .header-content {
  text-align: left;
  padding-bottom: 150px;
}

.main-header .header-content .title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.main-header .header-content .text {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  margin: 25px 0;
  line-height: 28px;
}

.main-header .image {
  animation-name: translateY;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*		[ Service ]		*/
.service {
  position: relative;
  padding-top: 120px;
}

.service .item {
  position: relative;
  padding: 60px 25px 50px;
  margin-bottom: 40px;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.service .item .icon {
  display: block;
  width: 100%;
}

.service .item .icon > img {
  height: 130px;
  transition: 0.3s;
}

.service .item:hover .icon > img {
  transform: translateY(-8px);
}

.service .item .title {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
  line-height: 32px;
}

.service .item .title a {
  color: #000;
  transition: 0.3s;
}

.service .item .title:hover a {
  color: #944179;
}

.service .item .text {
  margin-top: 20px;
  line-height: 28px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

.service .item .service-btn {
  position: absolute;
  bottom: -27px;
  left: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
  transform-origin: 0;
  transform: scale(0, 0) translateX(-50%);
  transition: 0.3s;
}

.service .item:hover .service-btn {
  transform: scale(1, 1) translateX(-50%);
}

/*		[ Services Page ]		*/
.services-page {
  position: relative;
  padding-top: 170px;
}

.services-page .item {
  position: relative;
  background: #fff;
  padding: 35px 25px 45px;
  margin-bottom: 55px;
  text-align: center;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.services-page .item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transform: translateX(100%);
  background: linear-gradient(to bottom, #ff512f 30%, #dd2476 100%);
  transition: 0.4s;
  opacity: 0;
  z-index: -1;
}

.services-page .item:hover:before {
  transform: translateX(0);
  opacity: 1;
}

.services-page .item .icon {
  font-size: 52px;
  margin-bottom: 25px;
  color: #944179;
  background: linear-gradient(to bottom, #ff512f 30%, #dd2476 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
}

.services-page .item:hover .icon {
  -webkit-text-fill-color: unset;
}

.services-page .item .title {
  color: #000;
  font-family: Poppins;
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services-page .item .description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services-page .item:hover .icon,
.services-page .item:hover .description,
.services-page .item:hover .title {
  color: #fff;
}

/*		[ Partners ]		*/
.partners {
  position: relative;
  padding-top: 120px;
}

.partners:before {
  position: absolute;
  content: "";
  left: -200px;
  top: 300px;
  width: 300px;
  height: 300px;
  background-image: url("/img/source/dot.png");
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: scale;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 1;
}

.partners:after {
  position: absolute;
  content: "";
  left: -140px;
  top: 250px;
  width: 400px;
  height: 400px;
  background-image: url("/img/source/shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: rotate;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 1;
}

.partners .image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.partners .section-header {
  margin: auto;
}

.partners #accordion {
  margin-bottom: 20px;
}

.partners #accordion .item {
  position: relative;
  margin-bottom: 15px;
}

.partners #accordion .item .data {
  position: relative;
  padding-left: 45px;
}

.partners #accordion .item .data .icon {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100px;
  font-size: 14px;
  text-align: center;
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
}

.partners #accordion .item .data .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
}

.partners #accordion .item .data[aria-expanded="true"] .icon .plus {
  opacity: 0;
}

.partners #accordion .item .data[aria-expanded="true"] .icon {
  background-image: linear-gradient(to right, #dd2476 0%, #ff512f 100%);
}

.partners #accordion .item .data > p {
  font-size: 17px;
  font-weight: 600;
  line-height: 30px;
}

.partners #accordion .item .content {
  padding: 10px 0 0 45px;
}

.partners #accordion .item .content p {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

/*		[ Work ]		*/
.work {
  position: relative;
  padding-top: 130px;
}

.work .skills {
  position: relative;
  margin-bottom: 25px;
}

.work .item {
  margin-bottom: 25px;
}

.work .item .title {
  color: #555;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.work .item .title span {
  float: right;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar .line {
  position: absolute;
  width: 0;
  height: 100%;
  background-image: linear-gradient(to right, #ff512f 30%, #dd2476 100%);
}

.work .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

/*		[ Team ]		*/
.team {
  position: relative;
  padding-top: 100px;
}

.team .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.team .team-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team .team-feature {
  margin-bottom: 25px;
  margin-left: 15px;
}

.team .team-feature li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 5px;
  padding-left: 20px;
}

.team .team-feature li:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f14a";
  left: 0;
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

/*		[ Solution ]		*/
.solution {
  position: relative;
  padding-top: 60px;
}

.solution .button {
  padding-bottom: 25px;
}

.solution .content {
  position: relative;
  margin-bottom: 25px;
  padding: 0 10px;
  overflow: hidden;
}

.solution .content .owl-item {
  display: inline-block;
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.solution .content .owl-item .item {
  position: relative;
}

.solution .content .owl-item .item .data {
  padding: 25px;
}

.solution .content .owl-item .item .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  transition: 0.3s;
}

.solution .content .owl-item .item .title:hover {
  color: #944179;
}

.solution .content .owl-item .item .author {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 25px;
}

.solution .content .owl-item .item .view {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: #555;
  font-size: 13px;
  line-height: 22px;
}

.solution .content .owl-item .item .view span {
  font-weight: 500;
  color: #dd2476;
  padding-right: 5px;
}

.solution .button .navigation {
  border-radius: 5px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 14px;
}

/*		[ Plan ]		*/
.plan {
  position: relative;
  padding-top: 0px;
}

.plan:after {
  display: none !important;
  position: absolute;
  content: "";
  right: -200px;
  top: 350px;
  width: 400px;
  height: 400px;
  background-image: url("/img/source/shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: rotate;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*		[ Price ]		*/
.price-item {
  position: relative;
  padding: 35px 30px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: 0.4s;
}

.price-item:hover {
  margin-top: 5px;
}

.price-item.basic {
  background-image: linear-gradient(to bottom, #ff512f 0%, #dd2476 100%);
}

.price-item .icon {
  position: relative;
  margin: auto;
  margin-bottom: 20px;
}

.price-item .icon > img {
  width: 100%;
  height: 70px;
}

.price-item .price {
  font-size: 32px;
  font-weight: 600;
  padding: 20px 0;
  border-top: 0px solid #555;
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, #ff512f),
    to(#dd2476)
  );
  background: -webkit-linear-gradient(top, #ff512f 30%, #dd2476 100%);
  background: -o-linear-gradient(top, #ff512f 30%, #dd2476 100%);
  background: transparent, linear-gradient(to bottom, #ff512f 30%, #dd2476 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-item .price sup {
  padding-right: 5px;
  font-size: 20px;
}

.price-item.basic .price {
  -webkit-text-fill-color: #fff;
}

.price-item .limit {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 20px;
}

.price-item.basic .limit {
  color: #fff;
}

.price-item .type {
  font-size: 32px;
  font-weight: 600;
  padding: 20px 0;
  border-top: 1px solid #555;
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, #ff512f),
    to(#dd2476)
  );
  background: -webkit-linear-gradient(top, #ff512f 30%, #dd2476 100%);
  background: -o-linear-gradient(top, #ff512f 30%, #dd2476 100%);
  background: transparent, linear-gradient(to bottom, #ff512f 30%, #dd2476 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-item.basic .type {
  border-top: 1px solid #eee;
  -webkit-text-fill-color: #fff;
}

.price-item .feature li {
  position: relative;
  color: #555;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.price-item.basic .feature li {
  color: #fff;
}

.price-item .feature li:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f00c";
  font-size: 14px;
  font-weight: 600;
  margin-left: -20px;
}

.price-item .feature li.del:before {
  content: "\f00d";
}

.price-item .button {
  padding: 10px 20px;
  margin-top: 40px;
  font-size: 16px;
}

.price-item.basic .button {
  background: #fff;
  color: #555;
}

/*		[ testimonials ]		*/
.testimonials {
  position: relative;
  padding-top: 110px;
}

.testimonials .button {
  padding-bottom: 25px;
}

.testimonials .content {
  position: relative;
  margin-bottom: 25px;
  padding: 10px;
  overflow: hidden;
}

.testimonials .content .owl-item {
  position: relative;
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.testimonials .content .owl-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background: #dd2476;
  transition: 0.4s;
  opacity: 0;
}

.testimonials .content .owl-item:hover:before {
  transform: translateX(0);
  opacity: 1;
}

.testimonials .content .owl-item .item {
  position: relative;
  padding: 35px;
}

.testimonials .content .owl-item .item:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f10d";
  left: 35px;
  top: 25px;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  transition: 0.3s;
  opacity: 0.7;
}

.testimonials .content .owl-item .item:after {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f10e";
  right: 55px;
  bottom: 30px;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  transition: 0.3s;
  opacity: 0.7;
}

.testimonials .content .owl-item:hover .item:before,
.testimonials .content .owl-item:hover .item:after {
  color: #eee;
}

.testimonials .content .owl-item .item .description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 40px;
  transition: 0.3s;
}

.testimonials .content .owl-item:hover .item .description {
  color: #fff;
}

.testimonials .content .owl-item .item .profile {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-top: 15px;
  transition: 0.3s;
}

.testimonials .content .owl-item:hover .item .profile {
  color: #fff;
}

.testimonials .content .owl-item .item .profile > img {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.testimonials .content .owl-item .item .profile .author {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  padding-left: 10px;
}

.testimonials .button .navigation {
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
}

/*		[ Sponsors ]		*/
.sponsors {
  position: relative;
  padding-top: 70px;
}

.sponsors .content {
  position: relative;
  margin-bottom: 25px;
  padding: 15px;
  overflow: hidden;
}

.sponsors .content .owl-item {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.sponsors .content .owl-item .item {
  position: relative;
  background: #fff;
}

.sponsors .content .item > img {
  transition: 0.4s;
  filter: grayscale(100%) opacity(0.5);
}

.sponsors .content .item:hover > img {
  filter: none;
}

/*		[ 404 Error Page ]		*/
.error {
  position: relative;
  padding-top: 150px;
  padding-bottom: 70px;
}

.error .oops {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #944179;
  background: linear-gradient(to bottom, #ff512f 30%, #dd2476 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error .title {
  color: #000;
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 20px;
}

.error .description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 35px;
}

.error .button {
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 500;
}

.error .image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

/*		[ Account Page ]		*/
.account {
  position: relative;
  padding-top: 160px;
  padding-bottom: 75px;
}

.account:after {
  position: absolute;
  content: "";
  left: -140px;
  top: 250px;
  width: 400px;
  height: 400px;
  background-image: url("/img/source/shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: rotate;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
}

.account.register:after {
  left: unset;
  right: -140px;
}

.account .content {
  position: relative;
  padding: 80px 50px;
  border-radius: 7px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 1;
}

.account .content:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/source/login.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: hue-rotate(30deg) blur(0.2px) brightness(50%);
  z-index: -1;
}

.account.register .content:before {
  background-image: url("/img/source/register.jpg");
}

.account .content .left-title {
  color: #fff;
  font-family: Poppins;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 48px;
}

.account .content .left-description {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 25px;
}

.account .content .social {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.account .content .facebook {
  display: inline-block;
  color: #fff;
  background-color: #3c5a99;
  font-size: 14px;
  border-radius: 100px;
  padding: 12px 35px;
  margin-bottom: 10px;
}

.account .content .twitter {
  display: inline-block;
  color: #fff;
  background-color: #38a1f3;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  padding: 12px 35px;
  margin-left: 10px;
  letter-spacing: 0.9px;
}

.account .form {
  padding: 40px 50px;
  overflow: hidden;
}

.account .form .right-title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

.account .form .right-description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 25px;
}

.account .form .wrapper {
  position: relative;
}

.account .form .icon {
  position: absolute;
  top: 50%;
  left: 25px;
  color: #555;
  font-size: 15px;
  font-weight: 900;
  transform: translateY(-50%);
  z-index: 1;
}

.account .form .form-control {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  padding: 25px 55px;
  margin-bottom: 20px;
  border-radius: 7px;
}

.account .form .custom-checkbox {
  float: left;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.account .form .forget {
  float: right;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.account .form .login {
  float: left;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.account .form .button {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.account .form .forget:hover {
  color: #944179;
}

/*		[ Blog List Page ]		*/
.blog-list {
  position: relative;
  padding: 180px 0 50px;
}

.blog-list .blog-item {
  margin-bottom: 50px;
}

.blog-list .blog-item .image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.blog-list .blog-item .image img {
  transition: 0.3s;
}

.blog-list .blog-item .image:hover img {
  transform: scale(1.05, 1.05);
}

.blog-list .blog-item .content {
  padding: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.blog-list .blog-item .content .author {
  display: inline-block;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  margin-right: 15px;
}

.blog-list .blog-item .content time {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
  margin-right: 20px;
  background-image: linear-gradient(to right, #5d5de9 0%, #944179 100%);
}

.blog-list .blog-item .content .tag {
  display: inline-block;
  padding-top: 5px;
}

.blog-list .blog-item .content .tag > li {
  display: inline-block;
  margin-right: 6px;
}

.blog-list .blog-item .content .tag > li a {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.blog-list .blog-item .content .title {
  display: block;
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0;
  line-height: 28px;
  transition: 0.3s;
}

.blog-list .blog-item .content .title:hover {
  color: #944179;
}

.blog-list .blog-item .content .description {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 28px;
}

.social-blog {
  display: inline-block;
  margin-left: 50px;
}

.social-blog li {
  display: inline-block;
  margin-right: 20px;
}

.social-blog li a {
  font-size: 22px;
  font-weight: 600;
  color: #555;
}

.blog-list .blog-item .content ul > li:hover a {
  color: #944179;
}

.blog-list .pagination {
  margin-bottom: 25px;
}

.blog-list .pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-list .pagination li a {
  display: inline-block;
  position: relative;
  color: #555;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid #eee;
  border-radius: 5px;
  background-color: #fff;
  transition: 0.3s;
}

.blog-list .pagination li a.active,
.blog-list .pagination li a:hover {
  color: #fff;
  background-color: #dd2476;
  border-color: #dd2476;
}

.sidebar .search {
  margin-bottom: 35px;
}

.sidebar .search .form-group {
  position: relative;
}

.sidebar .search .form-group button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 75px;
  text-align: center;
  border: 0;
  border-left: 1px solid #eee;
  background-color: transparent;
}

.sidebar .search .form-control {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  padding: 24px 30px;
  border-radius: 7px;
  width: 100%;
  border: 1px solid #eee;
  box-shadow: none;
}

.sidebar .sidebar-title,
.blog-post .blog .content .group-title {
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.sidebar .sidebar-title:before,
.blog-post .blog .content .group-title:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 50px;
  height: 2px;
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
  transition: 0.4s;
}

.sidebar .sidebar-title,
.blog-post .blog .content .group-text {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sidebar .popular {
  margin-bottom: 60px;
}

.sidebar .popular .post {
  position: relative;
  margin-bottom: 15px;
  padding-left: 80px;
}

.sidebar .popular .post:not(:last-child) {
  border-bottom: 1px solid #777;
  padding-bottom: 30px;
}

.sidebar .popular .post .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.sidebar .popular .post .image > img {
  width: 100%;
  height: 100%;
}

.sidebar .popular .post .title {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  transition: 0.3s;
}

.sidebar .popular .post .title:hover {
  color: #944179;
}

.sidebar .popular .post > time {
  color: #555;
  font-size: 13px;
  font-weight: 500;
}

.sidebar .comment {
  margin-bottom: 60px;
}

.sidebar .comment .item {
  position: relative;
  margin-bottom: 15px;
  padding-left: 70px;
}

.sidebar .comment .item:not(:last-child) {
  border-bottom: 1px solid #777;
  padding-bottom: 25px;
}

.sidebar .comment .item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.sidebar .comment .item .image > img {
  width: 100%;
  height: 100%;
}

.sidebar .comment .item .title {
  display: block;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 22px;
  transition: 0.3s;
}

.sidebar .comment .item .title:hover {
  color: #944179;
}

.sidebar .comment .item .description {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

.sidebar .comment .item .article {
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.sidebar .sidebar-tags {
  margin-bottom: 45px;
}

.sidebar .sidebar-tags > a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  margin: 0 6px 6px 0;
  border: 2px solid #dd2476;
  border-radius: 5px;
  background-color: #dd2476;
  transition: 0.3s;
}

.sidebar .sidebar-tags > a:hover {
  color: #dd2476;
  background-color: #fff;
}

.sidebar .category {
  margin-bottom: 45px;
}

.sidebar .category ul li {
  display: block;
  margin-bottom: 15px;
}

.sidebar .category ul li a {
  display: block;
  position: relative;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  padding-left: 15px;
  transition: 0.4s;
}

.sidebar .category ul li a:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f0da";
  left: 0;
  font-weight: 600;
  line-height: 22px;
}

.sidebar .category ul li:hover a {
  padding-left: 25px;
  color: #944179;
}

.sidebar .category ul li a span {
  position: absolute;
  right: 0;
  top: 0;
}

.sidebar .category ul li:not(:last-child) {
  border-bottom: 1px solid #777;
  padding-bottom: 15px;
}

/*		[ Blog Post Page ]		*/
.blog-post {
  position: relative;
  padding: 180px 0 70px;
}

.blog-post .blog .image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.blog-post .blog .content .title {
  display: block;
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0;
  line-height: 28px;
}

.blog-post .blog .content .author {
  display: inline-block;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  margin-right: 15px;
}

.blog-post .blog .content > time {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
  margin-right: 20px;
  background-image: linear-gradient(to right, #5d5de9 0%, #944179 100%);
}

.blog-post .blog .content .description {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  margin: 25px 0;
  line-height: 28px;
}

.blog-post .blog .content .gallery {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.blog-post .blog .content h4 {
  display: block;
  color: #000;
  font-size: 17px;
  font-weight: 600;
}

.blog-post .blog .content .sub-title {
  display: inline-block;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  padding-right: 10px;
}

.blog-post .blog .content .share {
  border-top: 1px solid #555;
  padding-top: 20px;
  margin: 40px 0 60px;
}

.blog-post .blog .content .tags {
  float: left;
}

.blog-post .blog .content .tags > a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  margin: 0 6px 6px 0;
  border: 2px solid #dd2476;
  border-radius: 5px;
  background-color: #dd2476;
  transition: 0.3s;
}

.blog-post .blog .content .tags > a:hover {
  color: #dd2476;
  background-color: #fff;
}

.blog-post .blog .content .social-blog {
  float: right;
}

.blog-post .blog .content .comments {
  position: relative;
  margin-bottom: 60px;
}

.blog-post .blog .content .comments .comment-box {
  position: relative;
  padding-left: 110px;
  margin-bottom: 40px;
}

.blog-post .blog .content .comments .comment-box:before {
  position: absolute;
  content: "";
  top: 30px;
  left: 100px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10px solid #eee;
}

.blog-post .blog .content .comments .comment-box .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-post .blog .content .comments .comment-box .data {
  background-color: #eee;
  padding: 20px 25px;
  border-radius: 5px;
}

.blog-post .blog .content .comments .comment-box .data .header {
  position: relative;
}

.blog-post .blog .content .comments .comment-box .data .header h5 {
  display: block;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-post .blog .content .comments .comment-box .data .header > time {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 25px;
}

.blog-post .blog .content .comments .comment-box .data .header .reply {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 14px;
  padding: 12px 20px;
  font-weight: 500;
  transform: translateY(-50%);
}

.blog-post .blog .content .comments .comment-box .data .text {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.blog-post .blog .content .form-comments {
  position: relative;
  margin-bottom: 40px;
}

.blog-post .blog .content .form .form-group .form-control,
.contact-page .form-group .form-control {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  padding: 23px;
  margin-bottom: 10px;
  border-radius: 7px;
  border: 1px solid #ced4da;
  padding: 0 0 0 20px;
  height: 40px;
}

.blog-post .blog .content .form .button,
.contact-page .form-group .button {
  font-size: 14px;
  font-weight: 600;
  border: none;
  letter-spacing: 1.2px;
}

/*		[ About Us Page ]		*/
.about {
  position: relative;
  padding: 180px 0 50px;
}

.about:before {
  position: absolute;
  content: "";
  left: -140px;
  top: 250px;
  width: 400px;
  height: 400px;
  background-image: url("/img/source/shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: rotate;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
}

.about .about-item {
  position: relative;
  padding: 75px 35px 40px;
  margin-bottom: 70px;
  border-radius: 5px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.about .about-item:hover {
  border-bottom: 3px solid #dd2476;
  transform: translateY(-10px);
}

.about .about-item .icon {
  position: absolute;
  left: 50%;
  top: -50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 36px;
  border-radius: 50%;
  color: #fff;
  background-image: linear-gradient(to right, #ff512f 0%, #dd2476 100%);
  transform: translateX(-50%);
}

.about .about-item .title {
  display: block;
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 22px;
  transition: 0.3s;
}

.about .about-item .title:hover {
  color: #944179;
}

.about .about-item .description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 28px;
}

.about .image {
  position: relative;
  margin-bottom: 25px;
  border-radius: 5px;
  overflow: hidden;
}

.about .skills {
  position: relative;
  margin-bottom: 25px;
}

.about .skills .item {
  margin-bottom: 25px;
}

.about .skills .item .title {
  color: #555;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.about .skills .item .title span {
  float: right;
}

.about .action {
  position: relative;
  margin: 35px 0 45px;
}

.about .action .item {
  position: relative;
  text-align: center;
  padding: 25px;
  margin-top: 25px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
}

.about .action .item .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 42px;
  color: #944179;
  opacity: 1;
}

.about .action .item .counter {
  color: #000;
  font-family: poppins;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.about .action .item .counter span {
  color: #944179;
}

.about .action .item .description {
  display: block;
  color: #555;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}

/*		[ About Us Video ]		*/
.about-video {
  position: relative;
  padding: 60px 0;
  text-align: center;
  background-image: url("/img/gallery/bg-video.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-video:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.about-video .section-header .section-text {
  color: #fff;
}

.about-video .section-header .section-description {
  color: #eee;
  line-height: 28px;
}

.about-video .play {
  position: relative;
  display: inline-block;
  color: #fff;
  margin: 25px 0;
  font-size: 32px;
  overflow: hidden;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-image: linear-gradient(135deg, #ff512f 30%, #dd2476 100%);
  box-shadow: 1px 2px 10px rgba(255, 255, 255, 0.1);
}

.about-video .play:hover {
  background-image: linear-gradient(315deg, #ff512f 30%, #dd2476 100%);
}

/*		[ Contact Us Page ]		*/
.contact-page {
  position: relative;
  padding: 180px 0 90px;
}

.contact-page .description {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 28px;
}

.contact-page .form-group {
  margin-bottom: 0;
}

/*		[ Map ]		*/
.map {
  position: relative;
  margin-bottom: 80px;
}

#map {
  top: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
}

.mapboxgl-canvas {
  position: static !important;
}

/*		[ Footer ]		*/
.footer {
  position: relative;
  margin-top: 40px;
  padding-top: 40px;
  background-color: #f4f4f4;
}

.footer:before {
  position: absolute;
  content: "";
  top: -350px;
  left: 0;
  width: 100%;
  height: 350px;
  background: url("/img/svg/footer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.footer .header {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 25px;
  text-transform: uppercase;
}

.footer .description {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 25px;
}

.footer .social {
  padding-bottom: 25px;
}

.footer .social li {
  display: inline-block;
  padding-right: 10px;
}

.footer .social li a {
  color: #555;
  font-size: 17px;
  transition: 0.3s;
}

.footer .social li a.facebook:hover {
  color: #3c5a99;
}

.footer .social li a.dribbble:hover {
  color: #ae4c89;
}

.footer .social li a.twitter:hover {
  color: #38a1f3;
}

.footer .social li a.youtube:hover {
  color: #ff0000;
}

.footer .blog .item {
  position: relative;
  margin-bottom: 15px;
}

.footer .blog .item:not(:last-child) {
  border-bottom: 1px solid #777;
  padding-bottom: 15px;
}

.footer .blog .item .image {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.footer .blog .item .image img {
  width: 50px;
  height: 50px;
}

.footer .blog .item .blog-title {
  position: absolute;
  top: 5px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
  display: inline-block;
}

.footer .blog .item .blog-title:hover {
  color: #944179;
}

.footer .blog .item .blog-title > span {
  display: block;
  font-weight: 500;
  font-size: 13px;
  padding-top: 5px;
}

.footer .links li a {
  position: relative;
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  padding-left: 20px;
  margin-bottom: 5px;
  transition: all 0.4s;
}

.footer .links li a:hover {
  color: #944179;
}

.footer .links li a:before {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f105";
  left: 0;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.footer .links li a:hover:before {
  margin-left: 5px;
}

.footer .contact,
.contact-page .contact {
  position: relative;
  margin-bottom: 20px;
}

.footer .contact .item,
.contact-page .contact .item {
  position: relative;
  margin-bottom: 5px;
}

.footer .contact .item .icon,
.contact-page .contact .item .icon {
  position: absolute;
  top: 50%;
  left: 0;
  color: #555;
  transform: translateY(-50%);
}

.footer .contact .item .data,
.contact-page .contact .item .data {
  position: relative;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  padding-left: 25px;
}
.contact-page .item .data a,
.footer .contact .item .data a {
  color: #555;
}

.footer .contact .item.ubisecure {
  margin-top: 20px;
}

.footer .contact .item.ubisecure .data {
  padding-left: 0;
}

.footer .contact .item.ubisecure .data:first-child {
  line-height: 1.5;
}

.footer .copyright {
  text-align: center;
  border-top: 1px solid #777;
  color: #555;
  padding: 30px 0;
}

/*		[ Animation ]		*/
@keyframes translateY {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}

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

  50% {
    transform: scale(1);
  }

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

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

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

/*		[ Responsive ]		*/
@media only screen and (max-width: 991px) {
  .navbar {
    position: absolute !important;
  }

  .navbar .navbar-nav .nav-item.dropdown ul {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    min-width: 180px;
    transform: translateY(0);
    transition: none;
  }

  .navbar.fixed .navbar-nav .nav-item.dropdown ul {
    background-color: #252525;
  }

  .navbar .navbar-nav .nav-item.dropdown ul li a {
    color: #555;
  }

  .navbar.fixed .navbar-nav .nav-item.dropdown ul li a {
    color: #fff;
  }

  .partners:before,
  .partners:after {
    content: none;
  }

  .solution .button,
  .testimonials .button {
    text-align: center;
  }

  .header-content {
    text-align: center !important;
  }

  .footer .header {
    margin-top: 15px;
  }

  .social-blog {
    margin-top: 10px;
  }

  .blog-post .blog .content .tags {
    float: none;
  }

  .blog-post .blog .content .social-blog {
    float: none;
    display: block;
    margin-left: 0;
  }
  .wrap-word {
    white-space: -moz-pre-wrap !important;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    white-space: -webkit-pre-wrap;
    word-break: break-word;
    white-space: normal;
  }
}

.anchor-fix {
  position: relative;
  top: -120px;
  visibility: hidden;
}

.gleif-logo-dark {
  display: none;
}

body:not(.front-page) .gleif-logo-white {
  display: none;
}

body:not(.front-page) .gleif-logo-dark {
  display: block;
}

body:not(.front-page) nav.fixed .gleif-logo-dark {
  display: none;
}

body:not(.front-page) nav.fixed .gleif-logo-white {
  display: block;
}

#acceptTerms {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-width: 2px;
  flex-shrink: 0;
  margin-right: 10px;
}
.privacy-policy table {
  width: 100%; /* Full-width */
  border-collapse: collapse; /* Collapse borders */
  margin: 20px 0; /* Add some space around the table */
  box-shadow: 0 2px 15px rgba(0,0,0,0.1); /* Soft shadow around the table */
  background-color: #f9f9f9; /* Light grey background */
}

.privacy-policy table th,
.privacy-policy table td {
  text-align: left; /* Align text to the left */
  padding: 12px 20px; /* Add padding for content in cells */
  border-bottom: 1px solid #ddd; /* Add a bottom border to each cell */
}

.privacy-policy table tr:nth-child(even) {
  background-color: #f2f2f2; /* Zebra stripes effect for rows */
}

.privacy-policy table tr:hover {
  background-color: #ddd; /* Hover effect for rows */
}
