/* =======

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

======== */
/*===========================
  COMMON css 
===========================*/
@import url('https://fonts.cdnfonts.com/css/montserrat');

:root {
  --font: 'Montserrat', sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #164b91;
  --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: 300;
  color: var(--heading-color);
  margin: 10px 0px 30px 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: rgb(48 86 211 / 85%);
  -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 {

  -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: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand imgembed {
  max-width: 333px;
}

.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: 20px;
  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 {}

.sticky .navbar-nav .nav-item:hover>a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--white);
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
  color: #c3c3c3;
  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: 180px;
  padding-bottom: 30px;
  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: 100;
  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: 300;
  font-size: 21px;
  line-height: 30px;
  color: var(--heading-color);
  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: 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: 300;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

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

@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: 24px;
    line-height: 26px;
  }
}

.single-feature {
  margin-bottom: 40px;
  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;
}

/* ===== FAQ CSS ===== */
.faq {
  padding-top: 30px;
  padding-bottom: 30px;
  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 rgb(201 203 204 / 30%);
  box-shadow: 0px 20px 95px rgb(201 203 204 / 30%);
  border-radius: 5px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 24px;
}

.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;
}

/* ===== 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);
}

/* ===== Footer CSS ===== */
.footer {
  background: var(--heading-color);
  padding-top: 100px;
  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);
  border-radius: 5px;
  margin-bottom: 30px;
  max-width: 260px;
}

.widget .widget-desc img {
  border-radius: 5px;
  margin-left: 20px;
}

.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;
}

.iso {
  margin-top: -67px;
  opacity: 0.9;
  border-radius: 10px;
}
.form {
  margin: 50px auto;
  max-width: 647px;
  padding: 27px 37px;
  border-radius: 10px;
  box-shadow: rgb(0 0 0 / 25%) 0px 14px 28px, rgb(0 0 0 / 22%) 0px 10px 10px;
}
.form-input {
  margin-bottom: 15px;
}
.form__inner label {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 5px;
  color: #333333;
  display: block;
}
.form__inner input[type="text"],
.form__inner input[type="email"],
.form__inner textarea {
  outline: none;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  padding: 12px 20px;
  margin-bottom: 15px;
  color: #333;
  padding: 12px 20px;
  font-family: inherit;
  text-align: left;
  -webkit-appearance: none;
  background: rgba(255, 154, 66, 0.02);
  display: grid;
  align-items: center;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form__inner textarea {
  height: 125px;
  resize: none;
  padding: 12px 15px;
  background: rgba(255, 154, 66, 0.02);
  display: grid;
  align-items: center;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.form__inner input[type="text"]:focus,
.form__inner input[type="email"]:focus,
.form__inner textarea:focus {
  border: 1px solid #fd5f00;
  background: #fff;
}
.btn {
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 12px 27px;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #0fa8ff;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s ease;
  margin-top: 17px;
}
.btn:hover {
  background: #0374b6;
  transition: 0.3s ease;
}
@media all and (max-width: 590px) {
  .form-inner-cnt h3 {
    font-size: 30px;
  }
}
.status__msg {
    font-size: 16px;
  padding: 6px;
  border: 2px dashed;
  background: #fff;
  margin-bottom: 10px;
}
.status__msg.error{
    color: #EA4335;
}
.status__msg.success{
    color: #34A853;
}

.pill {

  padding: 5px 20px;
  background-color: #339d0f;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-transform: capitalize;
}
.form-input {
  height: 55px;
  line-height: 55px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 0px 20px;
  color: #333;
  border-radius: 0px;
  font-weight: 400;
  border-radius: 5px;
}
.textarea {
  height: 180px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 15px 20px;
  color: #333;
  border-radius: 0px;
  resize: none;
  font-weight: 400;
  border-radius: 5px;
}
.label {
  color: #e5e0e0;
  margin: 0;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
  font-size: 16px;
  text-shadow: 0px 2px 2px rgb(0 0 0 / 80%), 0px 4px 3px rgb(0 0 0 / 10%), 0px 2px 2px rgb(0 0 0 / 80%);
}
.form-group {

  color: #74828e;
  margin: 0;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
  font-size: 16px;
}
.form-input {
  height: 55px;
  line-height: 55px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 0px 20px;
  color: #333;
  border-radius: 0px;
  font-weight: 400;
  border-radius: 5px;
}
.form-main {
  margin-top: 70px;
}
.single-head {
  margin-top: 50px;
}