/* =======

	Template Name: Alif Bootstrap
	Author: Shafiq Hammad
	Version: 1.0

======== */
/*===========================
  COMMON css 
===========================*/
@import url("css2.css");
:root {
  --font: "Sora", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --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;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-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;
  -webkit-box-shadow: 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: 700;
  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;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}

.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);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  transition: all 0.3s ease-out 0s;
}

.navbar-wrapper {
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 12px;
  margin-top: 8px;
}

.sticky {
  width: 100%;
  position: fixed;
  z-index: 99;
}

.sticky .navbar-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-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);
}

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

.navbar-brand {
  padding: 0;
}

@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;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-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);
  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);
    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;
  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: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;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 70px;
    -webkit-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);
  color: var(--white);
}

.sticky .navbar-btn .white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.hero {
  background: var(--primary-color);
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero {
    padding-top: 150px;
  }
}

.hero-content {
  max-width: 780px;
  margin: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-content {
    margin-bottom: 50px;
  }
}

.hero-content .hero-title {
  color: var(--white);
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 38px;
    line-height: 48px;
  }
}

.hero-content .hero-desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 30px;
  padding-right: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .hero-desc {
    padding-right: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .hero-content .hero-desc {
    font-size: 16px;
    line-height: 28px;
  }
}

.hero-content .main-btn {
  background: var(--white);
  color: var(--primary-color);
}

.hero-content .main-btn:hover {
  background: var(--heading-color);
  color: var(--white);
}

.hero-image {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-image {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
}

.hero-image .video-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.hero-image .video-btn {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-image .video-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.hero-image img {
  /* width: 100%;
  height: 100%; */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ===== Features CSS ===== */
.features {
  padding-top: 80px;
  padding-bottom: 0px;
}

@media (max-width: 767px) {
  .features {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}

.section-title {
  max-width: 620px;
  margin-bottom: 50px;
}

.section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-title span {
    font-size: 16px;
  }
}

.section-title h2 {
  font-weight: 600;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 38px;
    line-height: 45px;
  }
}

.section-title p {
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-feature {
  margin-bottom: 10px;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-feature:hover {
  background: var(--primary-color);
}

.single-feature:hover .feature-icon {
  background: var(--white);
  color: var(--primary-color);
}

.single-feature:hover .feature-icon::before {
  background: var(--white);
}

.single-feature:hover .feature-title {
  color: var(--white);
}

.single-feature:hover .feature-desc {
  color: var(--white);
  opacity: 0.8;
}

.single-feature .feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-feature .feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.single-feature .feature-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@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;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== About CSS ===== */
.about {
  background: #f3f4fe;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .about {
    padding: 80px 0;
  }
}

.about-content .section-title {
  margin-bottom: 40px;
}

.about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.about-content .main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.about-image-wrapper {
  text-align: center;
}

.about-image {
  display: inline-block;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-image {
    margin-top: 80px;
  }
}

.about-image .image {
  border-radius: 0px 90px 90px 90px;
}

.about-image .shape {
  position: absolute;
  z-index: -1;
}

.about-image .shape.shape-1 {
  left: -40px;
  top: -40px;
}

.about-image .shape.shape-2 {
  right: -40px;
  bottom: 0;
}

/* ===== 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);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
  padding: 0px 30px 45px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.single-pricing::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 170px;
  background: var(--primary-color);
  opacity: 0.2;
}

.single-pricing.active::after {
  opacity: 1;
}

.single-pricing.active .pricing-header h3,
.single-pricing.active .pricing-header h4 {
  color: var(--white);
}

.single-pricing .pricing-header {
  padding: 50px 0;
}

.single-pricing .pricing-header h3 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
}

.single-pricing .pricing-header h4 {
  font-weight: 600;
  font-size: 32px;
  color: var(--primary-color);
}

.single-pricing .pricing-body {
  margin-top: 40px;
  margin-bottom: 40px;
}

.single-pricing .pricing-body li {
  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);
}

/* ===== FAQ CSS ===== */
.faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #f3f4fe;
  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 #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
          box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px;
}

.single-faq .faq-icon {
  max-width: 50px;
  width: 100%;
  margin-right: 20px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.single-faq .faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.single-faq .faq-content h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 12px;
}

/* ===== Testimonials CSS ===== */
.testimonials {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .testimonials {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.single-testimonial {
  padding: 30px;
  -webkit-box-shadow: 0px 0px 25px #ebeffd;
          box-shadow: 0px 0px 25px #ebeffd;
  background: var(--white);
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  border-radius: 12px;
}

.single-testimonial .testimonial-content {
  margin-top: 10px;
  margin-bottom: 25px;
}

.single-testimonial .testimonial-info h4 {
  font-weight: 600;
  font-size: 18px;
}

.single-testimonial .testimonial-info p {
  font-size: 14px;
  color: #969696;
}

.single-testimonial .testimonial-quote {
  position: absolute;
  right: 30px;
  top: -25px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
}

/* ===== 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;
  background: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px 15px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.single-team::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: var(--primary-color);
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-team .team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.single-team .team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.contact {
  padding: 80px 0px 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}

.single-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  max-width: 450px;
}

.single-contact-info .contact-icon {
  max-width: 50px;
  width: 100%;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  margin-right: 24px;
}

.single-contact-info .contact-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.single-contact-info .contact-meta h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.single-contact-info .contact-meta p {
  font-size: 16px;
  line-height: 28px;
}

.contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
  position: relative;
  z-index: 9;
}

@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);
}

.map-container {
  position: relative;
  margin-top: -120px;
}

/* ===== Footer CSS ===== */
.footer {
  background: var(--heading-color);
  padding-top: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.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: var(--white);
  opacity: 0.5;
  margin-bottom: 30px;
  /* max-width: 260px; */
}

.widget .widget-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.widget .widget-socials a {
  font-size: 16px;
  color: var(--white);
  opacity: 0.5;
  margin-right: 20px;
}

.widget .widget-socials a:hover {
  opacity: 1;
}

.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: var(--white);
  opacity: 0.5;
}

.widget .widget-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ====== Blog CSS ====== */
.blog {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .blog {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.single-blog {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  margin-bottom: 30px;
}

.blog-image a {
  display: block;
}

.blog-image a img {
  width: 100%;
}

.blog-image .blog-tag {
  display: inline-block;
  background: var(--heading-color);
  color: var(--white);
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.blog-content {
  background: var(--white);
  padding: 30px 20px;
}

.blog-content h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.blog-content h3 a {
  color: inherit;
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  font-size: 14px;
  line-height: 24px;
}

.blog-content .main-btn {
  padding: 10px 24px;
  margin-top: 20px;
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #E91E63;
  line-height: 1;
  display: inline-block;
}