@charset "UTF-8";
/* =======

	Template Name: Play Bootstrap
	Author: UIdeck
	Author URI: https://uideck.com/
	Support: https://github.com/uideck/
	Version: 1.0

======== */
/*===========================
  COMMON css 
===========================*/
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/GemunuLibre-VariableFont_wght.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-ExtraLight.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-Light.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-Regular.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-Medium.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-SemiBold.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-Bold.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
@font-face {
  font-family: "Gemunu Libre";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Gemunu_Libre/static/GemunuLibre-ExtraBold.ttf") format("truetype");
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+1E00-1EFF;
}
:root {
  --font: "Gemunu Libre", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #106e81;
  --primary-color-bg: #1a668c;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color-bg);
}
.main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color-bg);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}
.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 0;
}
.sticky .navbar-brand {
  color: black;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
  font-size: 28px;
  color: white;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}
.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}
.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}
.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}
.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item .submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .submenu {
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}
.navbar-nav .nav-item .submenu.show {
  display: block;
}
.navbar-nav .nav-item .submenu .submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}
.navbar-nav .nav-item .submenu .submenu-link:hover {
  color: var(--primary-color);
}
.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}
.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.navbar-btn .main-btn {
  padding: 8px 16px;
  background: transparent;
}
.navbar-btn .login-btn:hover {
  opacity: 0.5;
}
.navbar-btn .white-btn {
  background: rgba(255, 255, 255, 0.2);
}
.navbar-btn .white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}
.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}
.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .main-btn.login-btn {
  color: var(--heading-color);
}
.sticky .navbar-btn .main-btn.login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .white-btn {
  background: var(--primary-color-bg);
  color: var(--white);
}
.sticky .navbar-btn .white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.sorularla {
  background: var(--primary-color-bg);
  padding-top: 180px;
  background-image: url("../../assets/images/banner/banner-bg.svg");
  background-position: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sorularla {
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .sorularla {
    padding-top: 130px;
  }
}

.sorularlacontent {
  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
}
.sorularlacontent .sorularlatitle {
  color: var(--white);
  font-weight: 400;
  font-size: 65px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sorularlacontent .sorularlatitle {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .sorularlacontent .sorularlatitle {
    font-size: 26px;
    line-height: 38px;
  }
}
.sorularlacontent .sorularladesc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .sorularlacontent .sorularladesc {
    font-size: 16px;
    line-height: 30px;
  }
}

.sorularlabuttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sorularlabuttons .main-btn {
  margin: 8px;
}
@media (max-width: 767px) {
  .sorularlabuttons .main-btn {
    margin: 5px;
  }
}
@media (max-width: 767px) {
  .sorularlabuttons .main-btn {
    padding: 12px 16px;
  }
}
.sorularlabuttons .white-btn {
  background: var(--white);
  color: var(--heading-color);
}
.sorularlabuttons .white-btn:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}
.sorularlabuttons .link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.sorularlabrands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.sorularlabrands-wrapper img {
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}
.sorularlabrands-wrapper img:hover {
  opacity: 1;
}

.sorularlaimage {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sorularlaimage img {
  max-width: 100%;
  text-align: center;
}
.sorularlaimage .shape {
  position: absolute;
  z-index: -1;
}
.sorularlaimage .shape.shape-1 {
  bottom: 0;
  left: -30px;
}
.sorularlaimage .shape.shape-2 {
  top: -20px;
  right: -20px;
}

.stylish-image {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #3498db;
  transition: transform 0.3s ease;
}
.stylish-image:hover {
  transform: scale(1.05);
}

/* ===== Features CSS ===== */
.features {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.section-title {
  max-width: 620px;
  margin-bottom: 70px;
}
.section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.section-title h2 {
  font-weight: 400;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.section-title p {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-feature {
  margin-bottom: 40px;
}
.single-feature:hover .feature-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.single-feature .feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-color-bg);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.single-feature .feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color-bg);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  -moz-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  -o-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-feature .feature-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-feature .feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.single-feature .feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.single-feature .feature-link {
  font-weight: 500;
  color: var(--body-color);
}
.single-feature .feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.about {
  background: #f0f0f0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 80px 0;
  }
}

.about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-wrapper {
    display: block;
  }
}

.about-content-wrapper {
  padding: 70px;
}
@media (max-width: 767px) {
  .about-content-wrapper {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content-wrapper {
    padding: 50px;
  }
}

.about-content {
  max-width: 500px;
}
.about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: var(--primary-color-bg);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.about-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}
.about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}
.about-content .main-btn:hover {
  background: #2748b4;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-image {
    text-align: center;
  }
}

/* ===== Pricing CSS ===== */
.pricing {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .pricing {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-pricing {
  margin-bottom: 40px;
  background: var(--white);
  border: 2px solid #d4deff;
  border-radius: 8px;
  text-align: center;
  padding: 45px 30px;
  position: relative;
}
.single-pricing.active {
  background: var(--primary-color-bg);
  border: none;
  padding: 55px 30px;
}
.single-pricing.active .pricing-header h3,
.single-pricing.active .pricing-header h4 {
  color: var(--white);
}
.single-pricing.active .pricing-body li {
  color: var(--white);
}
.single-pricing .popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.single-pricing .pricing-header h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}
.single-pricing .pricing-header h4 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.single-pricing .pricing-body {
  margin-bottom: 40px;
}
.single-pricing .pricing-body li {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 18px;
}
.single-pricing .main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}
.single-pricing .border-btn {
  border: 1px solid #d4deff;
  color: var(--primary-color);
  background: var(--white);
}
.single-pricing .border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color-bg);
}
.single-pricing .white-btn {
  background: var(--white);
  color: var(--heading-color);
}
.single-pricing .white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.faq {
  padding-bottom: 90px;
  background: #f0f0f0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.single-faq {
  background: var(--white);
  border: 1px solid #f0f0f0;
  box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}
.single-faq .faq-btn {
  text-align: left;
  display: flex;
  width: 100%;
  align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .single-faq .faq-btn {
    padding: 15px;
  }
}
.single-faq .faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.single-faq .faq-btn span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(48, 86, 211, 0.06);
  border-radius: 10px;
  color: var(--primary-color);
  margin-right: 24px;
}
.single-faq .faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 400;
}
.single-faq .faq-body {
  padding: 0px 30px 40px 95px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .single-faq .faq-body {
    padding: 0px 16px 20px 82px;
  }
}

/* ===== Testimonials CSS ===== */
@media (max-width: 767px) {
  .testimonials {
    padding-top: 80px;
  }
}

.single-testimonial {
  padding: 30px;
  box-shadow: 0px 60px 120px -20px #ebeffd;
  background: var(--white);
  margin-bottom: 50px;
}
.single-testimonial .testimonial-ratings {
  margin-bottom: 10px;
}
.single-testimonial .testimonial-ratings i {
  color: #fbb040;
}
.single-testimonial .testimonial-content {
  margin-bottom: 25px;
}
.single-testimonial .testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}
.single-testimonial .testimonial-info {
  display: flex;
  align-items: center;
}
.single-testimonial .testimonial-info .testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.single-testimonial .testimonial-info .testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}
.single-testimonial .testimonial-info .testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

.brands .title {
  margin-bottom: 30px;
}
.brands .title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}
.brands .title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}
.brands .brands-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -40px;
}
.brands .brands-logo .single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}
.brands .brands-logo .single-logo:hover img {
  filter: none;
}
.brands .brands-logo .single-logo img {
  filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.team {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-team {
  margin-bottom: 40px;
}
.single-team .team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}
.single-team .team-image {
  border-radius: 50%;
}
.single-team .team-image img {
  width: 100%;
  border-radius: 50%;
}
.single-team .shape {
  position: absolute;
  z-index: -1;
}
.single-team .shape.shape-1 {
  top: 0;
  left: 0;
}
.single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}
.single-team .team-info {
  text-align: center;
  margin-bottom: 20px;
}
.single-team .team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.single-team .team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}
.single-team .team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-team .team-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}
.single-team .team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.contact {
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}
.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #f0f0f0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact::after {
    height: 45%;
  }
}

.contact-title {
  margin-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-title {
    margin-bottom: 50px;
  }
}
.contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}
.contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.contact-info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-info-wrapper {
    margin-bottom: 50px;
    margin-top: 250px;
  }
}
.contact-info-wrapper .single-info {
  display: flex;
  max-width: 100%;
  margin-bottom: 30px;
}
.contact-info-wrapper .info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}
.contact-info-wrapper .info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.contact-info-wrapper .info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.contact-form-wrapper {
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 50px 40px;
  }
}
.contact-form-wrapper .contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
}
.contact-form-wrapper .form-group {
  margin-bottom: 25px;
}
.contact-form-wrapper .form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.footer {
  background: var(--primary-color-bg);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer .shape {
  position: absolute;
  z-index: -1;
}
.footer .shape.shape-1 {
  top: 0;
  left: 0;
}
.footer .shape.shape-2 {
  top: 0;
  right: 0;
}
.footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.widget {
  margin-bottom: 50px;
}
.widget .footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}
.widget .footer-logo img {
  width: 100%;
}
.widget .widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 260px;
}
.widget .widget-socials {
  display: flex;
  align-items: center;
}
.widget .widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}
.widget .widget-socials a:hover {
  color: var(--primary-color);
}
.widget .widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}
.widget .widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f0f0f0;
}
.widget .widget-links a:hover {
  color: white;
  padding-left: 10px;
}
.widget .widget-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.widget .widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget .widget-brands a {
    max-width: 100px;
  }
}

.footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}
.footer-bottom .footer-bottom-left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-left {
    justify-content: center;
  }
}
.footer-bottom .footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f0f0f0;
  margin-right: 30px;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}
.footer-bottom .footer-bottom-left a:hover {
  color: var(--primary-color);
}
.footer-bottom .footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f0f0f0;
}
.footer-bottom .footer-bottom-right a {
  color: var(--primary-color);
}
.footer-bottom .footer-bottom-right a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */
.page-banner {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--primary-color-bg);
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

/* ====== Login CSS ====== */
.login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}
.login-wrapper .login-logo {
  margin-bottom: 30px;
}

.login-form .form-group {
  margin-bottom: 25px;
}
.login-form .form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}
.login-form .form-group input:focus {
  border-color: var(--primary-color);
}

.socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}
.socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}
.socials-connect ul {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}
.socials-connect ul li {
  width: 100%;
}
.socials-connect ul li a {
  height: 45px;
  background: var(--primary-color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}
.socials-connect ul li a.facebook {
  background: #4064ac;
}
.socials-connect ul li a.facebook:hover {
  background: #315294;
}
.socials-connect ul li a.twitter {
  background: #1c9cea;
}
.socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}
.socials-connect ul li a.google {
  background: #d64937;
}
.socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}
.signup-option a {
  color: var(--primary-color);
}

.login .navbar-brand {
  color: black;
}

/* ====== Blog CSS ====== */
.blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}
.blog-grids.related-articles {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-blog {
  margin-bottom: 40px;
}
.single-blog:hover .blog-image img {
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
.single-blog .blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}
.single-blog .blog-image a {
  display: block;
}
.single-blog .blog-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-blog .blog-date {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--primary-color-bg);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}
.single-blog .blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.single-blog .blog-title a {
  color: inherit;
}
.single-blog .blog-title a:hover {
  color: var(--primary-color);
}
.single-blog .blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}
.related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color-bg);
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.blog-details {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .blog-details {
    padding-top: 80px;
  }
}

.blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
}
@media (max-width: 767px) {
  .blog-details-image {
    height: 300px;
  }
}
.blog-details-image > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%);
  border-radius: 5px;
  padding: 30px;
}

.blog-overlay-content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .blog-overlay-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-overlay-content .blog-author {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .blog-overlay-content .blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.blog-overlay-content .blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.blog-overlay-content .blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}
.blog-overlay-content .blog-author a {
  color: inherit;
}
.blog-overlay-content .blog-author a:hover {
  color: var(--primary-color);
}
.blog-overlay-content .blog-meta {
  display: flex;
  align-items: center;
}
.blog-overlay-content .blog-meta p {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}
.blog-overlay-content .blog-meta p:last-child {
  margin-right: 0px;
}
.blog-overlay-content .blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.blog-details-content {
  padding-top: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1920px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-details-content {
    padding-right: 50px;
  }
}

.blog-details-title {
  font-weight: 400;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.blog-details-para {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.blog-details-subtitle {
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .blog-quote {
    padding: 30px;
  }
}
.blog-quote i {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-quote i {
    margin-bottom: 15px;
  }
}
.blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}
.blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.blog-details-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .blog-details-action {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-tags {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .blog-tags {
    margin-bottom: 20px;
  }
}
.blog-tags li {
  margin-right: 14px;
}
.blog-tags li:last-child {
  margin-right: 0px;
}
.blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}
.blog-tags a:hover {
  background: var(--primary-color-bg);
  color: var(--white);
}

.blog-share {
  display: flex;
  align-items: center;
}
.blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.blog-share-links {
  display: flex;
  align-items: center;
}
.blog-share-links li {
  margin-right: 14px;
}
.blog-share-links li:last-child {
  margin-right: 0px;
}
.blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}
.blog-share-links a.facebook {
  background: #4064ac;
}
.blog-share-links a.facebook:hover {
  background: #315294;
}
.blog-share-links a.twitter {
  background: #1c9cea;
}
.blog-share-links a.twitter:hover {
  background: #0f8bd8;
}
.blog-share-links a.linkedin {
  background: #007ab9;
}
.blog-share-links a.linkedin:hover {
  background: #03689b;
}

.blog-sidebar {
  padding-top: 60px;
}

.newsletter-box {
  background: var(--primary-color-bg);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .newsletter-box {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .newsletter-box {
    padding: 60px 45px;
  }
}
.newsletter-box .shape {
  position: absolute;
  z-index: -1;
}
.newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}
.newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}
.newsletter-box .newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newsletter-box .newsletter-title {
    font-size: 23px;
  }
}
.newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}
.newsletter-box .newsletter-form {
  margin-top: 30px;
}
.newsletter-box .newsletter-form input {
  width: 100%;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}
.newsletter-box .newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}
.newsletter-box .newsletter-form input:focus {
  border-color: var(--white);
}
.newsletter-box .newsletter-form .main-btn {
  background: #13c296;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}
.newsletter-box .newsletter-form .main-btn:hover {
  background: var(--heading-color);
}
.newsletter-box .newsletter-form .newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.articles-box {
  margin-bottom: 50px;
}
.articles-box .articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}
.articles-box .articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color-bg);
  left: 0;
  bottom: 0;
}
.articles-box .articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: flex;
  align-items: center;
}
.articles-box .articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
.articles-box .articles-list .article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .articles-box .articles-list .article-image {
    max-width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .articles-box .articles-list .article-image {
    max-width: 80px;
    height: 80px;
  }
}
.articles-box .articles-list .article-image img {
  width: 100%;
}
.articles-box .articles-list .article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .articles-box .articles-list .article-title {
    font-size: 16px;
  }
}
.articles-box .articles-list .article-title a {
  color: inherit;
}
.articles-box .articles-list .article-title a:hover {
  color: var(--primary-color);
}
.articles-box .articles-list .article-author {
  font-size: 14px;
}

.banner-ad {
  border-radius: 5px;
  overflow: hidden;
}
.banner-ad a {
  display: block;
}
.banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.a-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .a-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.a-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .a-404-wrapper {
    padding: 50px 30px;
  }
}
.a-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}
.a-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}
.a-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.a-404-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .a-404-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .a-404-title {
    font-size: 30px;
  }
}

.a-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .a-404-subtitle {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .a-404-subtitle {
    font-size: 18px;
  }
}

.a-404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.a-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}
.a-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .a-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

article {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
article .oldprice .txt-l {
  font-size: 16px;
  text-decoration: line-through;
}
article .oldprice .txt-top {
  top: 0;
}
article ul {
  display: flex;
  top: 0px;
  z-index: 10;
  padding-bottom: 14px;
}
article li {
  list-style: none;
  flex: 1;
}
article li:last-child {
  border-right: 1px solid #DDD;
}
article button {
  width: 100%;
  border: 1px solid #DDD;
  border-right: 0;
  border-top: 0;
  padding: 10px;
  background: #FFF;
  font-size: 14px;
  font-weight: bold;
  height: 60px;
  color: #999;
}
article li .active button {
  background: #E9E9E9;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  color: #000;
}
article table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
article th {
  background: #F5F5F5;
  display: none;
  height: 53px;
  border: 1px solid #DDD;
  padding: 10px;
  empty-cells: show;
  text-align: left;
}
article td {
  height: 53px;
  border: 1px solid #DDD;
  padding: 10px;
  empty-cells: show;
  text-align: left;
}
article td + td {
  text-align: center;
  display: none;
}
article th + th {
  text-align: center;
  display: none;
}
article td.default {
  display: table-cell;
}
article .bg-purple {
  border-top: 4px solid #FFCC00;
}
article .bg-green {
  border-top: 4px solid green;
}
article .bg-red {
  border-top: 4px solid red;
}
article .bg-blue {
  border-top: 4px solid var(--primary-color);
}
article .sep {
  background: #F5F5F5;
  font-weight: bold;
}
article .txt-l {
  font-size: 28px;
  font-weight: bold;
}
article .txt-top {
  position: relative;
  top: -2px;
  right: -2px;
}
article .tick {
  font-size: 18px;
  color: #2CA01C;
}
article .hide {
  border: 0;
  background: none;
}
article .contatinho {
  background: #00A5B7;
  padding: 10px 20px;
  font-size: 12px;
  display: inline-block;
  color: #FFF;
  text-decoration: none;
  border-radius: 3px;
  text-transform: uppercase;
  margin: 5px 0 10px 0;
}
article .nottick {
  font-size: 9px;
}
@media (min-width: 640px) {
  article ul {
    display: none;
  }
  article td {
    display: table-cell !important;
    width: 330px;
  }
  article th {
    display: table-cell !important;
    width: 330px;
  }
  article td + td {
    width: auto;
  }
  article th + th {
    width: auto;
  }
}

.pricenote {
  font-size: 0.8em;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
button {
  position: relative;
}
button:disabled {
  background-color: #eaeaea;
  cursor: no-drop;
}
button:disabled span {
  visibility: hidden;
}
button:disabled::after {
  content: "";
  top: 50%;
  width: 0;
  height: 0;
  position: absolute;
  border-radius: 50%;
  -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
  animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
}
button:disabled::before {
  content: "";
  width: 0px;
  height: 0px;
  left: calc(50% - 5px);
  border-radius: 50%;
  top: 50%;
  position: absolute;
  border: 2px solid #cacaca;
  border-right: 3px solid grey;
  -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
  animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
}

@-webkit-keyframes rotate360 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}
@keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}
.loading-question {
  position: relative;
  font-size: 100px;
  font-weight: bold;
  color: transparent;
  /* metnin ana rengi görünmez */
  -webkit-text-stroke: 2px #555;
  /* kenar çizgisi */
  background: linear-gradient(to top, #00bcd4 0%, #00bcd4 100%);
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  animation: fillUp 2s infinite alternate ease-in-out;
}

@keyframes fillUp {
  0% {
    background-size: 100% 0%;
    background-position: bottom;
  }
  100% {
    background-size: 100% 100%;
    background-position: bottom;
  }
}
.surveyWr {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ElmWr {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  background: #dfdfdf;
  box-shadow: 0 0 2px black;
}
.ElmWr .question {
  font-size: 21px;
  margin-bottom: 10px;
}
.ElmWr .qCount {
  position: absolute;
  left: -15px;
  top: -15px;
  background: #b57575;
  color: white;
  box-shadow: 0 0 2px black;
  width: 50px;
  text-align: center;
}
.ElmWr .buttons {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .ElmWr {
    height: 50%;
    width: 50%;
  }
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-ms-keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-o-keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@keyframes slide-down {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@keyframes slide-1 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 100%);
    opacity: 1;
  }
}
.ElmWr {
  animation: slide-1 1.2s ease;
}