/************ TABLE OF CONTENTS ***************

    01. Name CSS



**********************************************/
/*


*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #535A75;
  line-height: 26px;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 1400px) {
  body {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1199px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}

a {
  text-decoration: none;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -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:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #1D293F;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.12;
  -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;
}

h1 {
  font-size: 56px;
  line-height: 70px;
}
@media only screen and (max-width: 1400px) {
  h1 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 52px;
  }
}

h2 {
  font-size: 40px;
  line-height: 52px;
}
@media only screen and (max-width: 1400px) {
  h2 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

h3 {
  font-size: 24px;
  line-height: 34px;
  padding-top: 1em;
}

h4 {
  font-size: 21px;
  line-height: 30px;
  padding-top: 1em;
}
@media only screen and (max-width: 1199px) {
  h4 {
    font-size: 18px;
    line-height: 28px;
  }
}

h5 {
  font-size: 18px;
  line-height: 26px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #535A75;
  line-height: 26px;
  letter-spacing: 0.02em;
  margin-bottom: 0px;
}
@media only screen and (max-width: 1400px) {
  p {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1400px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }
}

*::-moz-selection {
  background: #1D293F;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #1D293F;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #1D293F;
  color: #ffffff;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/*--
    - Background color
-----------------------------------------*/
.dark-bg {
  background: #1D293F;
}

.light-grey-bg {
  background: #F7F8FA;
}

.pink-bg {
  background: #1D293F;
}

.white-bg {
  background: #ffffff;
}

.black-bg {
  background: #000;
}

.footer-bg {
  background: #ECEFF4;
}

/*--
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #ffffff !important;
}

.white-color {
  color: #ffffff !important;
}

.dark-color {
  color: #1D293F;
}

.theme-color {
  color: #1D293F !important;
}

.black-color {
  color: #000;
}

textarea:hover {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
textarea:focus {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  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;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

/* link btn */
.site__btn {
  background-color: #0F53FA;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 22.5px;
  color: #ffffff;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: 0.3s;
  min-width: 210px;
}
@media only screen and (max-width: 1400px) {
  .site__btn {
    font-size: 15px;
    padding: 17px 22px;
    min-width: 180px;
  }
}
.site__btn:hover {
  background-color: #0A44D0;
  color: #ffffff;
  transform: translateY(-4px);
}
.site__btn-border {
  border-color: #0F53FA;
  background-color: transparent;
  color: #0F53FA;
}
.site__btn-border:hover {
  color: #ffffff;
}

.border-link {
  position: relative;
  transition: 0.3s;
}
.border-link:hover::after {
  width: 80%;
}
.border-link::after {
  position: absolute;
  left: 0px;
  bottom: -1px;
  height: 1.5px;
  background-color: #0F53FA;
  content: "";
  transition: 0.3s;
  width: 0%;
}

.was-validated .invalid-feedback {
  display: inline-block;
}

.invalid-feedback {
  position: absolute;
  top: -4px;
  right: 0px;
  width: auto;
  color: #EF4730;
  font-size: 13px;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  background-image: none;
  box-shadow: 0px 0px 0px 2px #EF4730;
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  box-shadow: 0px 0px 0px 2px #0F53FA !important;
}

.font-600 {
  font-weight: 600;
}

.site__input-box {
  margin-bottom: 24px;
  position: relative;
}
.site__input-box p {
  color: #ffffff;
  margin-bottom: 6px;
}
.site__input-box input {
  height: 54px;
  width: 100%;
  background-color: #F7F8FA;
  border-radius: 8px;
  border: none;
  padding: 0px 15px;
  outline: none;
}
.site__input-box input:focus {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.site__input-box input:hover {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.site__input-box textarea {
  resize: none;
  border: none;
  background-color: #F7F8FA;
  border-radius: 8px;
  height: 124px;
  width: 100%;
  padding: 8px 20px;
  outline: none;
}

.site__check input {
  display: none;
}
.site__check input:checked ~ label span::after {
  opacity: 1;
  visibility: visible;
}
.site__check input:checked ~ label span {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.site__check label {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 20px;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}
.site__check label a {
  text-decoration: underline;
}
.site__check label span {
  height: 24px;
  width: 24px;
  border-radius: 4px;
  border: 1.4px solid rgba(29, 41, 63, 0.15);
  display: inline-block;
  background-color: #ffffff;
  flex: 0 0 auto;
  margin-right: 15px;
  margin-top: 0px;
  position: absolute;
  left: 0px;
}
.site__check label span:hover {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.site__check label span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  content: "";
  margin-left: -8px;
  margin-top: -8px;
  background-image: url("../img/icons/check-box.svg");
  background-size: 16px;
  opacity: 0;
  visibility: hidden;
}

.border-bottom-1 {
  border-bottom: 1px solid #535A75;
}

.breadcrumb__nav {
  padding: 40px 0px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb__nav {
    padding: 32px 0px;
  }
}
.breadcrumb__nav .breadcrumb {
  margin-bottom: 0px;
}
.breadcrumb__nav .breadcrumb li.breadcrumb-item {
  color: #1D293F;
  font-weight: 500;
}
.breadcrumb__nav .breadcrumb li.breadcrumb-item::before {
  color: #1D293F;
}
.breadcrumb__nav .breadcrumb li.breadcrumb-item a {
  font-weight: 500;
  color: #1D293F;
}

.owl-carousel img {
  width: auto !important;
  display: inline-block !important;
}

.section__title h2 {
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .section__title h2 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section__title p br {
    display: none;
  }
}

.show__more a.site__btn {
  min-width: 210px;
}

.site__mlr {
  margin: 0px 35px;
}
@media only screen and (max-width: 991px) {
  .site__mlr {
    margin: 0px 0px;
  }
}

.container-fluid {
  max-width: 1440px;
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0px 25px;
  }
}

.overlay.active {
  background: rgba(83, 90, 117, 0.7);
  backdrop-filter: blur(4px);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: 0.3s;
}

.padination_area ul.pagination li.page-item {
  padding: 0px 10px;
}
.padination_area ul.pagination li.page-item a.page-link {
  border: none;
  height: 44px;
  width: 44px;
  border-radius: 8px;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #1D293F;
  font-size: 18px;
  font-weight: 700;
  padding: 0px;
}
.padination_area ul.pagination li.page-item a.page-link img {
  width: 9px;
}
.padination_area ul.pagination li.page-item a.page-link.active {
  background-color: #0F53FA;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  main {
    overflow-x: hidden;
  }
}

/*----------------------------------------*/
/*  02. Header  CSS
/*----------------------------------------*/
.header__area {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 111;
}
.header__inherit {
  position: inherit !important;
}
.header__top {
  padding: 10px 0px;
}
.header__top-info p {
  font-size: 14px;
  color: #1D293F;
  letter-spacing: 0.02em;
  line-height: 20px;
}
@media only screen and (max-width: 1400px) {
  .header__top-info p {
    font-size: 13px;
  }
}
.header__top-info p a {
  font-weight: 600;
}
.header__top-lang a {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
  color: #535A75;
  position: relative;
  padding: 0px 6px;
  padding-left: 10px;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .header__top-lang a {
    font-size: 13px;
  }
}
.header__top-lang a.active {
  color: #1D293F;
  font-weight: 600;
}
.header__top-lang a:first-child::after {
  display: none;
}
.header__top-lang a::after {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 1px;
  height: 12px;
  background-color: rgba(83, 90, 117, 0.2);
  content: "";
}
.header__top-white .header__top-info p {
  color: #ffffff;
}
.header__top-white .header__top-lang a {
  color: rgba(255, 255, 255, 0.6);
}
.header__top-white .header__top-lang a.active {
  color: #ffffff;
}
.header__top-white .header__top-lang a::after {
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .header__nav-area {
    margin-top: 10px;
  }
}
.header__nav-area .navbar-toggler {
  background-color: #F7F8FA;
  height: 40px;
  width: 40px;
  border-radius: 10px;
  padding: 0px;
  border: none;
  outline: none;
  box-shadow: none;
}
.header__nav-area .navbar-toggler .navbar-toggler-icon {
  background-size: 22px;
}
.header__nav-area .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-image: url("../img/icons/icon-close.svg");
}
.header__nav-area .navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
  background-image: url("../img/icons/menu.png");
}
.header__nav-area .navbar-brand img {
  max-width: 228px;
}
@media only screen and (max-width: 1400px) {
  .header__nav-area .navbar-brand img {
    max-width: 180px;
  }
}
.header__nav-wrapper {
  background-color: #ffffff;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  border-radius: 10px;
  padding: 0px 40px;
  position: relative;
  z-index: 1111;
}
@media only screen and (max-width: 1400px) {
  .header__nav-wrapper {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .header__nav-wrapper {
    padding: 12px 20px;
  }
}
.header__nav-menu ul li.nav-item {
  padding: 0px 12px;
}
@media only screen and (max-width: 1400px) {
  .header__nav-menu ul li.nav-item {
    padding: 0px 10px;
  }
}
.header__nav-menu ul li.nav-item a.nav-link {
  font-size: 15px;
  color: #1D293F;
  letter-spacing: 0.02em;
  line-height: 20px;
  display: inline-block;
  padding: 40px 0px;
  position: relative;
}
@media only screen and (max-width: 1500px) {
  .header__nav-menu ul li.nav-item a.nav-link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) {
  .header__nav-menu ul li.nav-item a.nav-link {
    font-size: 13px;
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 1199px) {
  .header__nav-menu ul li.nav-item a.nav-link {
    padding: 8px 0px;
  }
}
.header__nav-menu ul li.nav-item a.nav-link::after {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #1D293F;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .header__nav-menu ul li.nav-item a.nav-link::after {
    height: 2px;
  }
}
.header__nav-menu ul li.nav-item a.nav-link.active {
  font-weight: 600;
  color: #1D293F;
}
.header__nav-menu ul li.nav-item a.nav-link.active::after {
  opacity: 1;
  visibility: visible;
}
.header__nav-btn a.site__btn {
  font-size: 14px;
}
@media only screen and (max-width: 1400px) {
  .header__nav-btn a.site__btn {
    font-size: 13px;
    min-width: auto;
    padding: 17px 20px;
  }
}

/*----------------------------------------*/
/*  02. Banner  CSS
/*----------------------------------------*/
.banner__area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .banner__content {
    max-width: 244px;
    margin-left: 10px;
  }
}
.banner__content h1 {
  margin-bottom: 16px;
}
.banner__content p {
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1400px) {
  .banner__content p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__content p {
    font-size: 16px;
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__content p br {
    display: none;
  }
}
.banner__btns {
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .banner__btns {
    margin-bottom: 0px;
  }
}
.banner__btns a.site__btn {
  min-width: 210px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .banner__btns a.site__btn {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
.banner__padding {
  padding-top: 300px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .banner__padding {
    padding-top: 154px;
    padding-bottom: 80px;
  }
}
.banner__glass-box {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(30px);
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding: 50px 48px 50px 60px;
  border-top-left-radius: 50px;
  max-width: 494px;
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .banner__glass-box {
    padding: 22px 20px 25px 28px;
    border-top-left-radius: 26px;
    max-width: 380px;
  }
}
.banner__glass-box-link {
  margin-top: 20px;
}
.banner__glass-box-link a {
  color: #1D293F;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 22px;
}
.banner__glass-box-link a:last-child {
  margin-right: 0px;
}
.banner__item p {
  font-size: 16px;
}

/*----------------------------------------*/
/*  04. service  CSS
/*----------------------------------------*/
.service__area--large {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-bottom: 130px;
  padding-top: 40px;
}
@media only screen and (max-width: 1400px) {
  .service__area--large {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .service__area--large {
    padding-top: 0px;
    padding-bottom: 110px;
  }
}
.service__area .show__more {
  margin-top: 47px;
}
@media only screen and (max-width: 767px) {
  .service__area .show__more {
    margin-top: 37px;
  }
}
.service__padding-1 {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 991px) {
  .service__padding-1 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .service__padding-1 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.service__padding-2 {
  padding-top: 160px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .service__padding-2 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.service__area .section__title {
  margin-bottom: 85px;
}
@media only screen and (max-width: 767px) {
  .service__area .section__title {
    margin-bottom: 60px;
  }
}
.service__single {
  background: #ffffff;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  border-radius: 10px;
  padding: 9px;
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .service__single {
    margin-bottom: 24px;
    margin-right: -25px;
    margin-left: -10px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
.service__single:hover .service__single-thumb::after {
  opacity: 1;
  visibility: visible;
}
.service__single-thumb {
  border-radius: 6px;
  position: relative;
}
.service__single-thumb::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s;
  background: linear-gradient(180deg, rgba(254, 188, 81, 0) 0%, rgba(254, 188, 81, 0.4) 100%);
  content: "";
  opacity: 0;
  visibility: hidden;
}
.service__single-thumb img {
  height: 210px;
  width: 184px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .service__single-thumb img {
    width: 113px;
    height: 100%;
  }
}
.service__single-border {
  border: 1px solid #E2E4E8;
}
.service__single--large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  border-radius: 10px;
  padding: 9px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .service__single--large {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .service__single--large-thumb {
    width: 100%;
    flex: 0 0 auto;
  }
}
.service__single--large-thumb img {
  width: 530px;
  height: 400px;
  border-radius: 6px;
}
@media only screen and (max-width: 1400px) {
  .service__single--large-thumb img {
    width: 500px;
    height: 375px;
  }
}
@media only screen and (max-width: 991px) {
  .service__single--large-thumb img {
    width: 293px;
    height: 372px;
    object-fit: cover;
  }
}
@media only screen and (max-width: 767px) {
  .service__single--large-thumb img {
    width: 100%;
    height: 178px;
  }
}
.service__single--large-content {
  padding: 80px 65px;
  padding-right: 140px;
}
@media only screen and (max-width: 1400px) {
  .service__single--large-content {
    padding-right: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .service__single--large-content {
    padding: 30px 20px 24px 20px;
  }
}
.service__single--large-content h2 {
  margin-bottom: 18px;
}
.service__single--large-content p {
  margin-bottom: 35px;
}
.service__content {
  padding: 30px 40px 30px 40px;
}
@media only screen and (max-width: 1199px) {
  .service__content {
    padding: 30px 30px 15px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .service__content {
    padding: 20px 20px 11px 24px;
  }
}
.service__content h3 {
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .service__content h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
.service__content p {
  margin-bottom: 30px;
}
.service__content a {
  color: #0F53FA;
  font-weight: 600;
}
.service__content a img {
  margin-left: 14px;
}

/*----------------------------------------*/
/*  05. Reason  CSS
/*----------------------------------------*/
.reason__padding {
  padding-top: 140px;
  padding-bottom: 160px;
}
.reason__padding-2 {
  padding-bottom: 160px;
  padding-top: 80px;
}
@media only screen and (max-width: 1199px) {
  .reason__padding {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .reason__padding {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.reason__area .section__title {
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .reason__area .section__title {
    margin-bottom: 50px;
  }
}
.reason__area .show__more {
  margin-top: 65px;
}
@media only screen and (max-width: 767px) {
  .reason__area .show__more {
    margin-top: 120px;
  }
}
.reason__single {
  padding-right: 67px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .reason__single {
    margin-bottom: 60px;
    padding-right: 50px;
  }
}
.reason__single-icon {
  margin-bottom: 20px;
}
.reason__single-icon span {
  height: 36px;
  width: 36px;
  background-color: #F7F8FA;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason__single-icon span img {
  max-width: 100%;
}
.reason__single-content h4 {
  margin-bottom: 15px;
}
.reason__partners-logo.owl-carousel .owl-nav button {
  position: absolute;
  bottom: -60px;
  left: 0px;
  transform: translateY(0);
  top: inherit;
  max-width: 12px;
}
.reason__partners-logo.owl-carousel .owl-nav button img {
  max-width: 12px;
}
.reason__partners-logo.owl-carousel .owl-nav button.owl-next {
  left: 40px;
}
@media only screen and (max-width: 767px) {
  .reason__partners-logo {
    margin-top: 40px;
  }
}
.reason__partners-logo a {
  height: 70px;
  width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.reason__partners-logo a img {
  width: auto !important;
}
.reason__block-text ul li {
  position: relative;
  line-height: 1.2;
  padding: 12px 0px;
  padding-left: 14px;
}
.reason__block-text ul li::after {
  position: absolute;
  left: 0px;
  top: 20px;
  width: 4px;
  height: 4px;
  background-color: #535A75;
  content: "";
  border-radius: 5px;
}
.reason__box-dark {
  padding: 45px 60px;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .reason__box-dark {
    padding: 38px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .reason__box-dark {
    padding: 30px 30px;
  }
}
.reason__box-btns a.site__btn {
  flex: 0 0 auto;
  width: 32%;
  min-width: auto;
  padding: 17px 0px;
}
@media only screen and (max-width: 767px) {
  .reason__box-btns a.site__btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .reason__box-btns a.site__btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.reason__border-radious {
  border-radius: 20px;
}

/*----------------------------------------*/
/*  06. choose area  CSS
/*----------------------------------------*/
.choose__area {
  padding-top: 125px;
  padding-bottom: 100px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .choose__area {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.choose__title {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .choose__title {
    margin-bottom: 50px;
  }
}
.choose__item {
  background: #ffffff;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  border-radius: 10px;
  padding: 40px 54px 28px 54px;
  margin-bottom: 80px;
  min-height: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .choose__item {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
    padding: 40px 30px 28px 30px;
  }
}
.choose__item span {
  font-weight: 700;
  color: #1D293F;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.choose__item h3 {
  margin-bottom: 0px;
}
.choose__item h3 small {
  font-weight: 600;
  font-size: 16px;
}
.choose__item h3 sub {
  bottom: 0px;
  font-weight: 400;
}
.choose__item span.sep {
  display: block;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  margin: 19px 0px;
  display: block;
  width: 100%;
}
.choose__bottom {
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .choose__bottom {
    margin-top: 50px;
  }
}
.choose__bottom p {
  margin-bottom: 36px;
}
@media only screen and (max-width: 767px) {
  .choose__bottom p {
    margin-bottom: 45px;
  }
  .choose__bottom p br {
    display: none;
  }
}
.choose__price {
  padding-right: 40px;
}
.choose__price h3 {
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .choose__price h3 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .choose__price-btns {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .choose__price-btns {
    margin-top: 55px;
  }
}
.choose__price-btns a {
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .choose__price-btns a {
    margin-left: 0px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .choose__price-btns a {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    min-width: 230px;
  }
}
.choose__slider-active-1.owl-carousel .owl-nav button {
  position: absolute;
  bottom: 0px;
  left: 35px;
}
.choose__slider-active-1.owl-carousel .owl-nav button img {
  max-width: 12px;
}
.choose__slider-active-1.owl-carousel .owl-nav button.owl-next {
  left: 70px;
}
@media only screen and (max-width: 767px) {
  .choose__slider-active.owl-carousel .owl-stage {
    display: flex;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .choose__slider-active.owl-carousel .owl-stage-outer {
    overflow: visible;
  }
}
@media only screen and (max-width: 767px) {
  .choose__slider-active.owl-carousel .owl-stage .owl-item {
    flex: 0 0 300px;
  }
}
.choose__slider-active.owl-carousel .owl-nav button {
  position: absolute;
  bottom: 24px;
  left: 11px;
}
.choose__slider-active.owl-carousel .owl-nav button img {
  max-width: 12px;
}
.choose__slider-active.owl-carousel .owl-nav button.owl-next {
  left: 45px;
}
.choose__list-area {
  background-color: #ffffff;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  border-radius: 10px;
  padding: 40px 40px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .choose__list-area {
    padding: 32px 25px;
  }
}
.choose__list-wrapper {
  margin-bottom: 60px;
}
.choose__list-wrapper ul li {
  font-size: 13px;
  color: #1D293F;
  line-height: 1.4;
  padding: 14px 0px;
  border-bottom: 1px solid #E2E4E8;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .choose__list-wrapper ul li {
    padding-right: 50px;
  }
}
.choose__list-wrapper ul li:first-child {
  border-top: 1px solid #E2E4E8;
}
.choose__list-wrapper ul li span {
  height: 24px;
  width: 24px;
  border-radius: 40px;
  background-color: rgba(54, 179, 126, 0.15);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .choose__list-wrapper ul li span {
    right: 10px;
  }
}
.choose__list-bottom {
  text-align: left !important;
}
.choose__list-bottom ul li {
  display: inline-block;
  position: relative;
  font-size: 13px;
  color: #1D293F;
  padding: 0px 6px;
}
.choose__list-bottom ul li:first-child {
  padding-left: 0px;
}
.choose__list-bottom ul li::after {
  position: absolute;
  right: -6px;
  top: 1px;
  content: "/";
  font-size: 11px;
}
.choose__list-bottom ul li:last-child::after {
  display: none;
}
.choose__list-bottom ul li strong {
  font-size: 16px;
  font-weight: 600;
}
/*----------------------------------------*/
/*  07. Testimonial  CSS
/*----------------------------------------*/
.testimonial__area {
  padding-top: 150px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 991px) {
  .testimonial__area {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}
.testimonial__area .section__title {
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .testimonial__active {
    margin-right: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial__active .owl-stage-outer {
    margin-right: -25px;
  }
}
.testimonial__active .owl-nav button {
  position: absolute;
  top: -105px;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .testimonial__active .owl-nav button {
    top: inherit;
    bottom: -80px;
    left: 0px;
    right: inherit;
  }
}
.testimonial__active .owl-nav button img {
  max-width: 12px;
}
@media only screen and (max-width: 767px) {
  .testimonial__active .owl-nav button.owl-next {
    left: 40px;
  }
}
.testimonial__active .owl-nav .owl-prev {
  right: 36px;
}
@media only screen and (max-width: 767px) {
  .testimonial__active .owl-nav .owl-prev {
    right: inherit;
  }
}
.testimonial__single {
  background: #ffffff;
  border: 1px solid #E2E4E8;
  border-radius: 10px;
  padding: 36px 40px;
}
@media only screen and (max-width: 991px) {
  .testimonial__single {
    padding: 20px 22px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial__single {
    margin-right: -25px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
.testimonial__text {
  min-height: 360px;
}
@media only screen and (max-width: 767px) {
  .testimonial__text {
    min-height: auto;
    margin-bottom: 25px;
  }
}
.testimonial__text p {
  font-size: 18px;
  line-height: 28px;
  color: #1D293F;
}
@media only screen and (max-width: 1199px) {
  .testimonial__text p {
    font-size: 15px;
    line-height: 26px;
  }
}
.testimonial__author-thumb {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #535A75;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 24px;
  flex: 0 0 auto;
  background-color: #ECEFF4;
}
.testimonial__author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial__author-info a {
  display: block;
  line-height: 1;
  font-weight: 600;
  color: #1D293F;
}
.testimonial__author-info span {
  display: block;
}
/*----------------------------------------*/
/*  08. Newsletter css  CSS
/*----------------------------------------*/
.newsletter__area {
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .newsletter__area {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
.newsletter__padding {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .newsletter__padding {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter__padding {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 0px;
    padding-left: 0px;
  }
}
.newsletter__content {
  padding-right: 62px;
}
@media only screen and (max-width: 991px) {
  .newsletter__content {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter__content {
    padding-right: 0px;
    margin-bottom: 60px;
  }
}
.newsletter__content h3 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .newsletter__content h3 {
    font-size: 22px;
  }
}
.newsletter__input input {
  background: #F7F8FA;
  border: 1.4px solid #E5E5E5;
  border-radius: 8px;
  height: 62px;
  padding: 0px 24px;
  padding-right: 210px;
  width: 100%;
  outline: none;
}
.newsletter__input input:focus {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.newsletter__input input:hover {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
@media only screen and (max-width: 767px) {
  .newsletter__input input::placeholder {
    opacity: 0;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter__input input {
    padding-right: 0px;
    height: 51px;
    margin-bottom: 24px;
  }
}
.newsletter__input button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .newsletter__input button {
    width: 100%;
    position: inherit;
    transform: translateY(0);
    left: 0px;
  }
}
.newsletter__input button:hover {
  transform: translateY(-50%);
}
.newsletter__text {
  padding-bottom: 36px;
}
@media only screen and (max-width: 1199px) {
  .newsletter__text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter__text {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 80px;
  }
}
.newsletter__text p {
  color: #F7F8FA;
  opacity: 0.6;
  font-size: 13px;
}
.newsletter__text p a {
  text-decoration: underline;
}

/*----------------------------------------*/
/*  09. blog  CSS
/*----------------------------------------*/
.blog__area .section__title {
  margin-bottom: 80px;
}
.blog__padding-1 {
  padding-top: 145px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .blog__padding-1 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.blog__thumb {
  border-radius: 4px;
  background: #C4C4C4;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.blog__thumb::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
  content: "";
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  border-radius: 6px;
}
.blog__thumb img {
  border-radius: 4px;
  width: 100%;
}
.blog__content {
  padding-right: 100px;
}
@media only screen and (max-width: 1199px) {
  .blog__content {
    padding-right: 50px;
  }
}
.blog__content span.date {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
.blog__content h4 {
  margin-bottom: 15px;
}
.blog__content a {
  font-weight: 600;
  color: #0F53FA;
}
.blog__content a img {
  margin-left: 10px;
}
.blog__single {
  margin-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .blog__single {
    margin-bottom: 140px;
  }
}
.blog__single:hover .blog__thumb::after {
  opacity: 0.25;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .blog__slider-active.owl-carousel .owl-stage {
    display: flex;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .blog__slider-active.owl-carousel .owl-stage-outer {
    overflow: visible;
  }
}
@media only screen and (max-width: 767px) {
  .blog__slider-active.owl-carousel .owl-stage .owl-item {
    flex: 0 0 320px;
  }
}
.blog__slider-active.owl-carousel .owl-nav button {
  position: absolute;
  left: 15px;
  bottom: 60px;
}
.blog__slider-active.owl-carousel .owl-nav button img {
  max-width: 12px;
}
.blog__slider-active.owl-carousel .owl-nav button.owl-next {
  left: 45px;
}
.blog__hero {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .blog__hero {
    padding-top: 0px;
  }
}
.blog__hero-content {
  padding-left: 10px;
}
.blog__hero-content span {
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
.blog__hero-content h2 {
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .blog__hero-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
.blog__hero-content a {
  font-weight: 600;
  color: #0F53FA;
  display: inline-block;
}
.blog__hero-content a img {
  margin-left: 10px;
}
.blog__hero-text {
  max-width: 405px;
}
.blog__hero-text p {
  margin-bottom: 18px;
}
.blog__hero-thumb .blog__tag {
  bottom: 16px;
  left: 16px;
}
.blog__wrapper {
  padding-top: 32px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  .blog__wrapper {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .blog__wrapper .blog__single {
    margin-bottom: 55px;
  }
}
.blog__filter {
  margin-bottom: 36px;
}
@media only screen and (max-width: 767px) {
  .blog__filter {
    flex-wrap: wrap;
  }
}
.blog__filter-item {
  margin-right: 40px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .blog__filter-item {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog__filter-item {
    width: 100%;
    margin-right: 0px;
  }
}
.blog__filter-item p {
  font-weight: 600;
  margin-right: 24px;
}
@media only screen and (max-width: 991px) {
  .blog__filter-item p {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .blog__filter-item p {
    margin-right: 0px;
    flex: 0 0 auto;
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .blog__filter-select {
    width: 60%;
    flex: 0 0 auto;
  }
}
.blog__filter-select .nice-select {
  width: 170px;
  border-radius: 40px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #ECEFF4;
  font-weight: 600;
  color: #1D293F;
}
@media only screen and (max-width: 991px) {
  .blog__filter-select .nice-select {
    width: 160px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .blog__filter-select .nice-select {
    width: 100%;
  }
}
.blog__filter-select .nice-select::after {
  border-color: #1D293F;
  height: 7px;
  width: 7px;
  right: 27px;
}
@media only screen and (max-width: 991px) {
  .blog__filter-select .nice-select::after {
    right: 15px;
  }
}
.blog__tag {
  display: inline-block;
  background: rgba(15, 83, 250, 0.8);
  border-radius: 30px;
  line-height: 1;
  padding: 9px 24px;
  position: absolute;
  left: 10px;
  bottom: 9px;
  color: #ffffff;
}
.blog__details {
  padding-top: 40px;
  padding-bottom: 140px;
}
.blog__details .contact__area {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .blog__details {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}
.blog__details-content {
  margin: 0 auto;
}
.blog__details-title {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .blog__details-title {
    margin-top: 0px;
  }
}
.blog__details-title ul {
  display: flex;
  align-items: center;
}
.blog__details-title ul li {
  font-size: 13px;
  position: relative;
  padding: 0px 9px;
  line-height: 1;
}
.blog__details-title ul li:first-child {
  padding-left: 0px;
}
.blog__details-title ul li:first-child::after {
  display: none;
}
.blog__details-title ul li::after {
  position: absolute;
  left: -1px;
  width: 2px;
  height: 2px;
  border-radius: 3px;
  background-color: #1D293F;
  content: "";
  top: 5px;
}
.blog__details-thumb {
  margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .blog__details-thumb {
    margin-bottom: 35px;
  }
}
.blog__details-thumb img {
  border-radius: 8px;
}
.blog__details-block {
  margin-bottom: 38px;
}
@media only screen and (max-width: 767px) {
  .blog__details-block {
    margin-bottom: 25px;
  }
}
.blog__details-block h5 {
  margin-bottom: 30px;
}
.blog__details-block h2 {
  padding-top: 1.5em;
}
.blog__details-block p {
  margin-bottom: 25px;
}
.blog__details-block p a {
  color: #0F53FA;
}
.blog__details-block p img {
  width: 100%;
}
.blog__details-block ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 15px;
}
.blog__details-block ul li:last-child {
  padding-bottom: 0px;
}
.blog__details-block ul li::after {
  position: absolute;
  left: 0px;
  top: 12px;
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background-color: #1D293F;
  content: "";
}
.blog__details .newsletter__area {
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (max-width: 767px) {
  .blog__details .contact__area .container {
    padding: 0px 0px;
  }
}
.blog__author-thumb {
  flex: 0 0 auto;
  width: 40%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .blog__author-thumb {
    width: 100%;
    text-align: start;
    margin-bottom: 30px;
  }
}
.blog__author-thumb img {
  height: 152px;
  width: 152px;
  border-radius: 50%;
  border: 8px solid rgba(83, 90, 117, 0.2);
}
.blog__author-info {
  flex: 0 0 auto;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .blog__author-info {
    width: 100%;
  }
}
.blog__author-info span {
  font-size: 13px;
  display: inline-block;
  margin-bottom: 3px;
}
.blog__author-info h4 {
  margin-bottom: 5px;
}
.blog__author-info p {
  margin-bottom: 25px;
}

/*----------------------------------------*/
/*  10. Contact  CSS
/*----------------------------------------*/
.contact__area {
  padding-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .contact__area {
    padding-bottom: 100px;
  }
}
.contact__area .section__title {
  margin-bottom: 60px;
}
.contact__area .section__title h1 {
  margin-bottom: 20px;
}
.contact__padding {
  padding-top: 150px;
}
.contact__form {
  padding: 60px 65px;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .contact__form {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__form {
    padding: 30px 23px;
    margin-left: -25px;
    margin-right: -25px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
.contact__form .site__check {
  margin-top: 38px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .contact__form button.site__btn {
    width: 100%;
  }
}
.contact__box-title {
  margin-bottom: 24px;
}
.contact__box-icon {
  width: 95px;
}
@media only screen and (max-width: 1199px) {
  .contact__box-icon {
    width: 65px;
  }
}
.contact__box-icon span {
  height: 40px;
  width: 40px;
  background-color: #ECEFF4;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.contact__box-single {
  padding-top: 38px;
  padding-bottom: 35px;
}
.contact__box-single ul li {
  padding-left: 95px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .contact__box-single ul li {
    padding-left: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__box-single ul li {
    padding-left: 57px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__box-single ul li a {
    text-decoration: underline;
  }
}
.contact__box-single ul li span {
  position: absolute;
  left: 0px;
}
.contact__radio {
  margin-top: 44px;
}
@media only screen and (max-width: 991px) {
  .contact__radio {
    margin-top: 4px;
    padding-bottom: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .contact__radio {
    justify-content: space-between;
  }
}
.contact__radio-single {
  margin-right: 32px;
}
@media only screen and (max-width: 1199px) {
  .contact__radio-single {
    margin-right: 10px;
  }
}
.contact__radio-single input {
  display: none;
}
.contact__radio-single input:checked ~ label span::after {
  opacity: 1;
  visibility: visible;
}
.contact__radio-single input:checked ~ label span {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.contact__radio-single label {
  display: inline-flex;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
}
.contact__radio-single label span {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 12px;
  position: relative;
}
.contact__radio-single label span:hover {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
@media only screen and (max-width: 575px) {
  .contact__radio-single label span {
    margin-right: 5px;
  }
}
.contact__radio-single label span::after {
  position: absolute;
  margin-left: -8px;
  margin-top: -8px;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 30px;
  background-color: #0F53FA;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.contact__check {
  padding: 22px 0px;
  border-top: 1px solid;
  border-bottom: 1px solid #535A75;
  margin-bottom: 22px;
  position: relative;
  flex-wrap: wrap;
}
.contact__check::after {
  position: absolute;
  right: 10px;
  top: 25px;
  width: 18px;
  height: 18px;
  background-size: 18px;
  content: "";
  background-image: url("../img/icons/arrow-bottom-grey.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .contact__check::after {
    background-size: 14px;
    top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .contact__check-item {
    flex-wrap: wrap;
  }
}
.contact__check p {
  line-height: 1;
  color: #ffffff;
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  .contact__check p {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 15px;
  }
}
.contact__check .site__check {
  margin: 0px 0px;
  margin-left: 32px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact__check .site__check {
    margin-left: 0px;
    margin-right: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .contact__check .site__check {
    flex: 0 0 auto;
    width: 100%;
    padding: 5px 0px;
  }
}
.contact__after-bg {
  position: relative;
  z-index: 1;
}
.contact__after-bg::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 50%;
  content: "";
  background-color: #F7F8FA;
  z-index: -1;
  border-radius: 20px;
}

/*----------------------------------------*/
/*  12. Footer  CSS
/*----------------------------------------*/
.footer__top {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .footer__top {
    padding-bottom: 80px;
    padding-bottom: 50px;
  }
}
.footer__bottom {
  font-size: 13px;
  color: #F7F8FA;
  padding: 18px 0px;
  line-height: 1.2;
}
.footer__widget-menu ul li a {
  display: block;
  padding: 6px 0px;
}
.footer__widget-menu-semi ul li a {
  font-weight: 600;
  font-size: 21px;
}
@media only screen and (max-width: 1199px) {
  .footer__widget-menu-semi ul li a {
    font-size: 18px;
  }
}
.footer__content a {
  display: block;
  text-decoration: underline;
  font-weight: 500;
  color: #1D293F;
  margin-bottom: 4px;
}
.footer__content a img {
  margin-right: 22px;
}
@media only screen and (max-width: 1199px) {
  .footer__content a img {
    margin-right: 9px;
  }
}
.footer__logo {
  margin-bottom: 25px;
}

/*----------------------------------------*/
/*  12. hero  CSS
/*----------------------------------------*/
.hero__area {
  background-color: #F7F8FA;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero__height {
  height: 420px;
}
@media only screen and (max-width: 767px) {
  .hero__height {
    height: 240px;
  }
}

/*----------------------------------------*/
/*  13. Content  CSS
/*----------------------------------------*/
.content__area {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .content__area {
    padding-top: 0px;
  }
}
.content__link {
  padding-top: 40px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 767px) {
  .content__link {
    padding-top: 0px;
    padding-bottom: 80px;
  }
}
.content__link-text p {
  margin-bottom: 35px;
}
.content__link-text a {
  display: block;
  line-height: 1;
  font-weight: 600;
  color: #0F53FA;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .content__link-text a {
    line-height: 24px;
  }
}
.content__link-text a img {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .content__link-text a img {
    max-width: 8px;
  }
}
.content__details {
  border-bottom: 1px solid #E2E4E8;
  padding-bottom: 120px;
}
.content__details-thumb img {
  height: 540px;
  width: 540px;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .content__details-thumb img {
    height: 319px;
    width: 100%;
  }
}
.content__details-text {
  padding-right: 120px;
}
@media only screen and (max-width: 991px) {
  .content__details-text {
    padding-right: 0px;
  }
}
.content__details-text h2 {
  margin-bottom: 50px;
}
.content__details--item {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .content__details--item {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .content__details--item-icon {
    flex: 0 0 auto;
    width: 100%;
  }
}
.content__details--item-icon span {
  height: 36px;
  width: 36px;
  background-color: #F7F8FA;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  flex: 0 0 auto;
  margin-right: 24px;
}
@media only screen and (max-width: 767px) {
  .content__details--item-icon span {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.content__details--item-text h4 {
  margin-bottom: 20px;
}
.content__block {
  padding-top: 75px;
  border-bottom: 1px solid #E2E4E8;
}
.content__block:first-child {
  border-top: 1px solid #E2E4E8;
}
.content__block:last-child {
  border-bottom: 0px solid #E2E4E8;
}
@media only screen and (max-width: 991px) {
  .content__block {
    padding-top: 50px;
  }
}
.content__block-box {
  margin-bottom: 80px;
  padding-right: 40px;
}
@media only screen and (max-width: 991px) {
  .content__block-box {
    margin-bottom: 50px;
  }
}
.content__block-box h4 {
  margin-bottom: 20px;
}

/*----------------------------------------*/
/*  15. Ins area  CSS
/*----------------------------------------*/
.ins__area {
  padding-top: 40px;
  padding-bottom: 200px;
}
.ins__area-padding-1 {
  padding-top: 200px;
  padding-bottom: 200px;
}
.ins__area-padding-2 {
  padding-top: 160px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  .ins__area-padding-2 {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}
.ins__btns a {
  margin: 0px 10px;
}
@media only screen and (max-width: 767px) {
  .ins__btns a {
    margin: 0px 0px;
    margin-bottom: 10px;
    min-width: 230px;
  }
}
.ins__content h2 {
  margin-bottom: 60px;
}

/*----------------------------------------*/
/*   Similar  CSS
/*----------------------------------------*/
.similar__post {
  padding-top: 150px;
}
@media only screen and (max-width: 767px) {
  .similar__post .blog__single {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .similar__post {
    padding-top: 110px;
  }
}
.similar__post .section__title {
  margin-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .similar__post .section__title {
    margin-bottom: 45px;
  }
}

/*----------------------------------------*/
/*  06. About area  CSS
/*----------------------------------------*/
.about__block-area {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .about__block-area {
    padding-bottom: 0px;
    padding-top: 35px;
  }
}
.about__block-single {
  padding-top: 45px;
  padding-bottom: 45px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .about__block-single {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.about__block-img {
  margin-bottom: 20px;
}
.about__block-img img {
  max-width: 540px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
@media only screen and (max-width: 991px) {
  .about__block-img img {
    height: 380px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .about__block-img img {
    height: 320px;
    max-width: 100%;
  }
}
.about__block-content-left {
  padding-right: 150px;
}
@media only screen and (max-width: 991px) {
  .about__block-content-left {
    padding-right: 0px;
  }
}
.about__block-content-right {
  padding-left: 150px;
}
@media only screen and (max-width: 991px) {
  .about__block-content-right {
    padding-left: 0px;
  }
}
/*----------------------------------------*/
/*  Reliable Area  CSS
/*----------------------------------------*/
.reliable__area {
  border-radius: 20px;
}
.reliable__area .section__title {
  padding-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .reliable__area .section__title {
    padding-bottom: 50px;
  }
}
.reliable__padding {
  padding-top: 130px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .reliable__padding {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}
.reliable__single {
  margin-bottom: 65px;
  padding-right: 10px;
}
@media only screen and (max-width: 767px) {
  .reliable__single {
    margin-bottom: 50px;
  }
}
.reliable__single-icon {
  height: 34px;
  width: 34px;
  flex: 0 0 auto;
  margin-right: 24px;
  border-radius: 8px;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.reliable__single-icon span {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 3px;
  background-color: #0F53FA;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  line-height: 20px;
}

/*----------------------------------------*/
/*  Counter Area  CSS
/*----------------------------------------*/
.counter__padding-1 {
  padding-top: 70px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  .counter__padding-1 {
    padding-top: 30px;
    padding-bottom: 110px;
  }
}

/*----------------------------------------*/
/*  Pertners Area  CSS
/*----------------------------------------*/
.pertners__area {
  padding-top: 150px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  .pertners__area {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

/*----------------------------------------*/
/*  Team Area  CSS
/*----------------------------------------*/
.team__area {
  border-radius: 20px;
}
.team__area .section__title {
  padding-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .team__area .section__title {
    padding-bottom: 55px;
  }
}
.team__padding {
  padding-top: 150px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .team__padding {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}
.team__single {
  margin-bottom: 48px;
}
.team__single-img {
  margin-bottom: 35px;
}
.team__single-img img {
  border-radius: 4px;
}
.team__single-content h5 {
  margin-bottom: 0px;
}
.team__active.owl-carousel .owl-nav div {
  position: absolute;
  bottom: -60px;
  left: 0px;
  transform: translateY(0);
  top: inherit;
  max-width: 12px;
}
.team__active.owl-carousel .owl-nav div img {
  max-width: 10px;
}
.team__active.owl-carousel .owl-nav .owl-next {
  left: 40px;
  padding-left: 30px !important;
}

/*----------------------------------------*/
/*  Download Area  CSS
/*----------------------------------------*/
.download__area {
  padding-top: 180px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .download__area {
    padding-top: 140px;
  }
}
.download__area .section__title {
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .download__area .section__title {
    margin-bottom: 50px;
  }
}
.download__title {
  margin-bottom: 20px;
}
.download__list-single {
  padding: 22px 0px;
  border-bottom: 1px solid #ECEFF4;
}
.download__list-single-left {
  flex: 0 0 auto;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .download__list-single-left {
    margin-bottom: 24px;
  }
}
.download__list-single-right ul {
  display: inline-flex;
  align-items: center;
}
.download__list-single-right ul li {
  font-weight: 600;
  color: #0F53FA;
  margin-right: 30px;
}
.download__list-single-right ul li:last-child {
  margin-right: 0px;
}
.download__list-single-right ul li img {
  margin-left: 10px;
}
.download__list-single-two .download__list-single-left {
  flex: 0 0 auto;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .download__list-single-two .download__list-single-left {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  Map Area  CSS
/*----------------------------------------*/
.map__area {
  padding-top: 60px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .map__area {
    padding-top: 0px;
    padding-bottom: 50px;
  }
  .map__area .contact__box-single {
    padding-top: 0px;
  }
  .map__area .contact__box-single ul li {
    padding-left: 0px;
    padding-bottom: 12px;
  }
  .map__area .contact__box-single ul li span {
    position: inherit;
    display: block;
  }
  .map__area .contact__box-icon {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
  }
}
.map__id {
  background: #ffffff;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  border-radius: 10px;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .map__id {
    padding: 0px;
    border-radius: 0px;
    margin-bottom: 30px;
  }
}
.map__id img {
  max-width: 100%;
}
.map__content {
  padding-left: 10px;
}
.map__single {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .map__single {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 24px;
  }
}

/*----------------------------------------*/
/*  Inquery Area  CSS
/*----------------------------------------*/
.inquary__area {
  padding-top: 40px;
  padding-bottom: 220px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .inquary__area .contact__form {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media only screen and (max-width: 1400px) {
  .inquary__area {
    padding-top: 30px;
    padding-bottom: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .inquary__area {
    padding-top: 0px;
    padding-bottom: 160px;
  }
}
.inquary__area::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 50%;
  background-color: #F7F8FA;
  content: "";
  z-index: -1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.inquary__area .breadcrumb__nav {
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .inquary__area .breadcrumb__nav {
    padding-bottom: 50px;
  }
}
.inquary__area .section__title {
  margin-bottom: 60px;
}
/*----------------------------------------*/
/*  Popup  CSS
/*----------------------------------------*/
.popup {
  background: rgba(83, 90, 117, 0.7);
  z-index: 11111;
}
.popup .modal-dialog {
  max-width: 920px;
}
@media only screen and (max-width: 1199px) {
  .popup .modal-dialog {
    max-width: 700px;
  }
}
.popup .modal-content {
  border: none;
  border-radius: 20px;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
}
@media only screen and (max-width: 1199px) {
  .popup .modal-content {
    height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .popup .modal-content {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .popup .modal-content {
    height: auto;
  }
}
.popup .modal-content button.btn-close {
  position: absolute;
  right: 24px;
  top: 24px;
  outline: none;
  box-shadow: none;
  background-image: url("../img/icons/m-close.svg");
  background-size: 32px;
}
.popup__content-text {
  max-width: 400px;
  margin: 0 auto;
}
.popup__content-text p {
  font-size: 14px;
}
.popup__check {
  height: 74px;
  width: 74px;
  border-radius: 50%;
  background-color: #ECEFF4;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 38px;
}
.popup__btns a {
  margin: 0px 12px;
}
@media only screen and (max-width: 767px) {
  .popup__btns a {
    margin-bottom: 12px;
  }
}

/*----------------------------------------*/
/*  Glossery page  CSS
/*----------------------------------------*/
.glossary__area {
  padding-top: 40px;
  padding-bottom: 160px;
}
@media only screen and (max-width: 767px) {
  .glossary__area {
    padding-top: 0px;
    padding-bottom: 120px;
  }
}
.glossary__area .breadcrumb__nav {
  padding-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .glossary__area .breadcrumb__nav {
    padding-bottom: 40px;
  }
}
.glossary__area .section__title {
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .glossary__area .section__title {
    margin-bottom: 40px;
  }
}
.glossary__area .padination_area {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .glossary__area .padination_area {
    margin-top: 70px;
  }
}
.glossary__search {
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .glossary__search {
    margin-bottom: 40px;
  }
}
.glossary__search-input {
  margin-bottom: 16px;
}
.glossary__search-input input {
  height: 74px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(83, 90, 117, 0.1);
  box-sizing: border-box;
  border-radius: 10px;
  padding: 0px 32px;
  outline: none;
}
.glossary__search-input input::placeholder {
  color: #535A75;
}
.glossary__search-input input:hover {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
.glossary__search-input input:focus {
  box-shadow: 0px 0px 0px 2px #0F53FA;
}
@media only screen and (max-width: 1199px) {
  .glossary__search-input input {
    height: 70px;
  }
}
.glossary__search-input button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.glossary__search-input button:hover {
  transform: translateY(0px);
}
@media only screen and (max-width: 575px) {
  .glossary__search-input button {
    position: inherit;
    width: 100%;
    left: 0px;
    margin-bottom: 15px;
  }
}
.glossary__search-tags-area {
  padding: 0px 20px;
}
@media only screen and (max-width: 767px) {
  .glossary__search-tags-area {
    padding: 0px 0px;
  }
}
@media only screen and (max-width: 1199px) {
  .glossary__search-tags-area p {
    margin-bottom: 10px;
  }
}
.glossary__search-tags a {
  display: inline-block;
  margin-left: 25px;
  line-height: 1;
  padding: 9px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: #535A75;
  font-size: 13px;
  border: 1px solid rgba(83, 90, 117, 0.4);
}
@media only screen and (max-width: 1199px) {
  .glossary__search-tags a {
    margin-left: 0px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .glossary__search-tags a {
    padding: 9px 18px;
    margin-right: 10px;
  }
}
.glossary__item-single {
  padding: 32px 0px;
  border-top: 1px solid #E2E4E8;
  border-bottom: 1px solid #E2E4E8;
}
.glossary__item-single-left {
  flex: 0 0 auto;
  width: 40%;
}
@media only screen and (max-width: 575px) {
  .glossary__item-single-left {
    flex: 0 0 auto;
    width: 100%;
  }
}
.glossary__item-single-right {
  flex: 0 0 auto;
  width: 60%;
}
@media only screen and (max-width: 575px) {
  .glossary__item-single-right {
    flex: 0 0 auto;
    width: 100%;
  }
}
.glossary__item-single-right p {
  margin-bottom: 16px;
}
.glossary__item-single-right a {
  font-weight: 600;
  color: #0F53FA;
}
.glossary__item-single-right a img {
  margin-left: 10px;
}

/*----------------------------------------*/
/*  Glossery page  CSS
/*----------------------------------------*/
.price__area {
  padding-top: 95px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .price__area {
    padding-top: 0px;
  }
}
.price__area .section__title {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .price__table {
    width: 380px;
  }
}
.price__table-cr {
  width: 220px;
  text-align: start !important;
}
@media only screen and (max-width: 767px) {
  .price__table-cr {
    width: 180px;
  }
}
.price__table thead tr th {
  padding: 12px 0px;
  vertical-align: middle;
}
.price__table thead tr th p {
  color: #1D293F;
  font-size: 13px;
}
.price__table tbody tr td {
  vertical-align: middle;
  padding: 12px 0px;
}
.price__table tbody tr td:first-child {
  border-left: 0px !important;
}
.price__table tbody tr td.sm-width {
  width: 160px;
}
.price__table tbody tr td p {
  font-size: 13px;
  color: #0A083B;
  line-height: 20px;
}
.price__table tbody tr td .check__mark {
  height: 24px;
  width: 24px;
  border-radius: 40px;
  background-color: rgba(54, 179, 126, 0.15);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.price__table tbody tr td .check__mark img {
  max-width: 10px;
}
.price__single {
  background-color: #ffffff;
  padding: 30px 30px;
  border-radius: 10px;
  box-shadow: 0px 8px 32px rgba(65, 62, 101, 0.06);
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .price__single {
    margin-left: -20px;
    margin-right: -20px;
    padding: 15px 15px;
  }
}
.price__text p {
  font-size: 13px;
}
.price__more-info {
  max-width: 778px;
  margin: 0 auto;
  margin-top: 90px;
}
.price__more-info p {
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .price__more-info p {
    font-size: 15px;
    line-height: 26px;
  }
}

/*# sourceMappingURL=style.css.map */
