@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-size: 18px;
  color: #444444;
  font-family: 'Yantramanav', sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h2 {
  font-size: 54px;
}

h3 {
  font-size: 21px;
  font-weight: 400;
      
}

h5 {
  font-weight: 500;
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 38px;
  }
}
.container {
  width: 1170px;
  margin: 0 auto;
}

.section {
  padding: 70px 0px;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.heading {
  padding-bottom: 40px;
}
.heading h1, h2 {
  color: #0e54ae;
  position: relative;
  letter-spacing: 1px;
}
.heading h2 span {
  font-weight: 300;
  color: #333;
}
.heading h2::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #0e54ae;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
heading h1::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #0e54ae;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row {
  margin: 0px -10px;
}
.row .column {
  margin: 0px 10px;
}

.grid-2 .column {
  width: calc(50% - 20px);
}
.grid-2 .full {
  width: 100%;
}

.grid-3 .column {
  width: calc(33.33% - 20px);
}

.grid-4 .column {
  width: calc(25% - 20px);
}

.grid-5 .column {
  width: calc(20% - 20px);
}

.btn {
  display: inline-block;
  padding: 0px 18px;
  line-height: 44px;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 4px;
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
}
.btn-primary {
  background-color: #bc74a5;
  color: #fff;
}
.btn-secondary {
  background-color: #599c2a;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.btn-default {
  background-color: #fff;
  color: #222;
  border-radius: 12px;
}
.btn-sm {
  font-size: 16px;
  line-height: 34px;
  padding: 0px 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  height: 44px;
  padding: 0px 20px;
  border: solid 1px #88d8fd;
  font-family: 'Yantramanav', sans-serif;
  outline: none;
  background-color: transparent;
  border-radius: 20px;
  color: #fff;
}

textarea.form-control {
  height: 100px;
  resize: none;
  padding-top: 14px;
}

.form-control::placeholder {
  color: #fff;
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0px 15px;
  }

  .flex {
    flex-wrap: wrap;
  }

  .heading {
    padding-bottom: 20px;
  }

  .section {
    padding: 30px 0px;
  }

  .row {
    margin: 0px;
  }
  .row .column {
    padding-top: 12px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .grid-2 .column {
    width: 100%;
  }

  .grid-3 .column {
    width: 100%;
  }

  .grid-4 .column {
    width: 100%;
  }

  .grid-5 .column {
    width: 100%;
  }
}
