/* Ozgur defines */
:root {
  --general-text-color: rgb(88, 90, 97);
  --link-color: #55A9C4;
  --link-hover-color: rgb(17, 141, 169);
  --white-color: rgb(255,255,255);
  --white-link-hover-color: rgb(179, 254, 255);
  --dark-color: #111;
  --light-color: #ddd;
}
::placeholder { /* Styling psuedo element, not supported on all platforms */
  color: var(--general-text-color);
  font-family: "Dylan-Light", sans-serif !important;
}
/*popup start*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
/*popup end*/
.card-branding-dont {
  border: 4px solid #BC082B;
  background-color: white;
}
.card-branding-dont > div {
  position: absolute;
  bottom: 50px;
  right: -90px;
  display: inline-block;
}
.card-branding-dont > div > img {
  width: 15%;
}
@media (max-width: 1399px) {
  .card-branding-dont > div {
    bottom: 50px;
    right: -90px;
  }
}
@media (max-width: 1200px) {
  .card-branding-dont > div {
    bottom: 55px;
    right: -90px;
  }
  .card-branding-dont > div > img {
    width: 10%;
  }
}
@media (max-width: 991px) {
  .card-branding-dont > div {
    bottom: 40px;
    right: -105px;
  }
  .card-branding-dont > div > img {
    width: 10%;
  }
}
@media (max-width: 767px) {
  .card-branding-dont > div {
    bottom: 75px;
    right: -75px;
  }
  .card-branding-dont > div > img {
    width: 20%;
  }
}
.circle-ele {
  width: 200px;
  height: 200px;
  background: var(--light-color);
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  margin: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-align: center;
  display: inline-flex;
  box-shadow: 0px 5px 5px rgba(13, 95, 104, 0.2);
}
.btn-shadow-rounded {
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--general-text-color);
  background: transparent;
  position: relative;
  box-shadow: 0 0 0 2px #111;
}
.btn-shadow-rounded-large {
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--general-text-color);
  background: transparent;
  position: relative;
  box-shadow: 0 0 0 2px #111;
}
.btn-alt-shadow-rounded {
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--white-color);
  background: var(--link-color);
  position: relative;
}
.btn-alt-shadow-rounded-large {
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--white-color);
  background: var(--link-color);
  position: relative;
}
.btn-hover-unico:hover {
  color: var(--white-link-hover-color)!important;
}
.circle-coloring {
  background: rgb(242, 245, 250);
  background: -moz-linear-gradient(310deg, rgba(242, 245, 250,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(310deg, rgba(242, 245, 250,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
  background: linear-gradient(310deg, rgba(242, 245, 250,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#ffffff",GradientType=1);
}
.slider-img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10%;
}
.hover-gray:hover {
  background: #ddd;
  color: black;
}
.adjust-img-size {
  width: 85%;
  height: 85%;
}
.just-shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.19);
}
.radius-20-shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.19);
  border-radius: 20px;
}
.safari-fix:before, .safari-fix:after, .safari-fix { /* Unnecessary issue with BS5. No wonder devs abandon safari. Even apple did with ms-safari */
  display: flex !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: -webkit-box;
}
.flex-row{
  display: flex;
  display: -webkit-flex; 
  flex-wrap:wrap;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-row:before, .flex-row:after{
display: none;
}
.card-hover {
  transition: all 1s ease;
  border-radius: 20px;
}
.card-hover:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 12px 0 rgba(0, 0, 0, 0.19);
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}
.card-body {
  transition: all 300ms ease;
  border-radius: 20px;
}
.card-body:hover {
  background-color: #55A9C4;
}
.card-body:hover p.card-text,
.card-body:hover h3.card-title {
  color: white !important;
}
.card-body:hover a {
  background-color: white !important;
  box-shadow: 0 0 0 2px white !important;
}
.card-body:hover a:hover {
  background-color: #ddd !important;
}
.badge-emoticon {
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  position: relative;
  top: -1.5vw;
  right: -55%;
  width: 40% !important;
  height: 25% !important;
  text-align: center;
  border-radius: 12px;
  line-height: 0;
  font-size: 2vmax;
  transition: all 0.5s ease;
}
.card-hover:hover > div.badge-emoticon {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  transition-delay: 1s;
}
.font-team {
  font-size: 150%;
}
/*.egg:hover > .obc > .obcc > .obccc {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
  transition: all 2s ease-out 100ms;
  transition-delay: 4s;
}*/
.egg:hover > .obc > .obcc > .rebc > .rebcc > .rebccc {
  animation-name: lranim;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
  transition: all 2s ease-out 100ms;
  transition-delay: 4s;
}
.egg:hover > .obc > .obcc > .lebc > .lebcc > .lebccc {
  animation-name: lranim;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
  transition: all 2s ease-out 100ms;
  transition-delay: 4s;
}
/*.egg:hover .st5 {
  fill: #27282c;
  transition: all 2s ease-out 100ms;
  transition-delay: 4s;
}*/
@keyframes floating {
  0% { transform: translate(0,  0px); }
  50%  { transform: translate(0, -60px); }
  100%   { transform: translate(0, -0px); }   
}
@keyframes lranim {
  0% { transform: translate(0,  0); }
  20% { transform: translate(-35px, 0); }
  30% { transform: translate(0,  0); }
  50% { transform: translate(0,  0); }
  70% { transform: translate(35px,  0); }
  80% { transform: translate(0,  0); } 
}
.awful-circle {
  display: inline-block;
  background: #f2f5fa;
  color: var(--link-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 6px;
  border-radius: 50%;
  text-align: center;
  width: 34px;
  height: 34px;
}
.game-card {
  box-shadow: 0 0 0 1px var(--link-color);
  border-radius: 20px;
}
.game-card-small {
  font-size: 28px;
}
@media (max-width: 991px) {
  .game-card-small {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .game-card-small {
    font-size: 28px;
  }
}
#more {display: none;}
.game-card-dock {
  box-shadow: 0px 1px var(--link-color);
}
input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.form-select {
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  padding: 16px 16px;
  border-radius: 10px;
  border-color: var(--link-color);
}
.custom-file-upload {
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  padding: 15px 15px;
  border-radius: 10px;
  border-color: var(--link-color);
}
.hr-link {
  border: 1px solid var(--link-color);
}

/* Alternative font overrides, need to include fonts in html
<link href="./assets/fonts/DimboRegular.ttf" rel="stylesheet">
@font-face { font-family: "DimboRegular"; src: url('./assets/fonts/DimboRegular.ttf');
*/
.font-general {
  font-family: "Dylan-Light", sans-serif !important;
}

.font-title {
  font-family: "kabouter", sans-serif !important;
}

.font-impact {
  font-family: "DimboRegular", sans-serif !important;
}

/* General */
body {
  font-family: "Dylan-Light", sans-serif;
  color: var(--general-text-color);
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "kabouter", sans-serif;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--link-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: var(--white-color);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--general-text-color);
  color: var(--white-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Header */
#header {
  transition: all 0.4s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.header-scrolled .scroll-hide-img {
  display: none;
}
#header > .scroll-hide-img {
  display: block;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: var(--link-color);
  text-decoration: none;
}
#header .logo img {
  margin: 0;
  max-height: 100px;
}

/* Navigation Menu */
/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Dylan-Light", sans-serif;
  font-size: 15px;
  color: #47536e;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--link-color);
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: var(--link-color);
  color: var(--white-color);
  padding: 12px 25px;
  margin-left: 30px;
  color: var(--white-color);
  line-height: 1;
  border-radius: 50px;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #748ec6;
  color: var(--white-color);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--link-color);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-show {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .mobile-nav-show {
    display: block;
  }

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

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: var(--white-color);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--link-color);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--link-color);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* Home Section */
#home {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px 0;
}
/*#home::before {
  content: "";
  position: absolute;
  right: -100%;
  top: -140%;
  width: 200%;
  height: 200%;
  z-index: -1;
  background-color: #e8ecf5;
  transform: skewY(44deg);
}*/
#home h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: var(--link-color);
  font-family: "DimboRegular", sans-serif;
}
#home h2 {
  color: #515f7d;
  margin-bottom: 50px;
  font-size: 20px;
}
#home .download-btn {
  font-family: "Dylan-Light", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--general-text-color);
  background: transparent;
  position: relative;
  box-shadow: 0 0 0 2px #111;
}
#home .download-btn:hover {
  background: #ddd;
}
#home .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}
#home .download-btn + .download-btn {
  margin-left: 20px;
}
@media (max-width: 991px) {
  #home {
    text-align: center;
  }
  #home .download-btn + .download-btn {
    margin: 0 10px;
  }
  #home .home-img {
    text-align: center;
  }
  #home .home-img img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #home .home-spacing {
    line-height: 56px;
  }
  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #home h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #home .home-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #home .home-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--link-color);
  font-family: "DimboRegular", sans-serif;
}
.section-title p {
  margin-bottom: 0;
  text-align: justify;
  text-align-last: center;
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}
.features .content .icon-box {
  margin-top: 25px;
}
.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--link-color);
}
.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}
@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }
  .features .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  text-align: center;
}
.gallery .swiper-slide {
  transition: 0.3s;
}
.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 1;
  border: 1px solid var(--link-color);
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
}
.gallery .swiper-slide-active {
  text-align: center;
}
@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }
  .gallery .swiper-slide-active {
    /*border-left: 6px solid var(--link-color);*/
    /*border-right: 6px solid var(--link-color);*/
    background: var(--white-color);
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--white-color);
  position: absolute;
  left: -45px;
}
.testimonial-img-shadow {
  box-shadow: 0 0 5px 1px var(--light-color);
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #e8ecf5;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 1;
  border: 1px solid var(--link-color);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid var(--white-color);
}
.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}
.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "DimboRegular", sans-serif;
}
.contact .info p {
  font-size: 15px;
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .error-message {
  display: none;
  color: var(--white-color);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: var(--white-color);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--white-color);
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form label {
  font-family: "DimboRegular", sans-serif;
  margin-bottom: 8px;
  color: #8a8c95;
  font-size: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--link-color);
}
.contact .php-email-form input {
  padding: 15px 15px;
  border-radius: 10px;
  border-color: var(--link-color);
}
.contact .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border-color: var(--link-color);
}
.contact .php-email-form button[type=submit] {
  background: var(--white-color);
  border: 2px solid var(--link-color);
  padding: 10px 24px;
  color: var(--link-color);
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--link-color);
  color: var(--white-color);
}
.contact .php-email-form .file-upload-sty:after {
  content: attr(data-text);
  font-size: 18px;
  position: absolute;
  top: 265px;
  left: 1px;
  background: #fff url("../img/bxs-file-plus.svg") no-repeat right 18px center;
  padding: 8px 70px 10px 14px;
  display: block;
  width: calc(100% - 2px);
  pointer-events: none;
  z-index: 20;
  height: 57px;
  line-height: 44px;
  color: #777777;
  border-radius: 20px;
  font-weight: 300;
}
.contact .php-email-form .file-upload-wrap-sty input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 64px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}
@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}
@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--white-color);
  padding: 0 0 30px 0;
  color: #47536e;
  font-size: 14px;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #eff2f8;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #47536e;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--white-color);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--link-color);
  color: var(--white-color);
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #415f9d;
}
#footer .footer-top {
  padding: 30px 0 30px 0;
  background: var(--white-color);
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #47536e;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "kabouter", sans-serif;
  color: #8a8c95;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #47536e;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9fb2d8;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--link-color);
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--link-color);
  color: var(--white-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #27282c;
  color: var(--white-color);
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
  color: #47536e;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #47536e;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}