/* all scss flies included here */
/* variable */
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  width: 100%;
  line-height: 30px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0;
  padding: 0;
  color: #000000;
}

p {
  margin: 0;
  padding: 0;
}

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

.main-btn {
  display: inline-block;
  color: #FFFFFF;
  border-width: 0px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 600;
  background-color: #143c5f;
  padding-right: 30px;
  padding-left: 30px;
  height: 41px;
  line-height: 41px;
  position: relative;
}

.main-btn svg {
  width: 10px;
  fill: #ffffff;
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}

.main-btn:hover {
  color: #ffffff;
}

.main-btn:hover svg {
  right: 10px;
  opacity: 1;
}

.heading {
  margin-bottom: 27px;
  text-align: center;
}

.heading p {
  line-height: 20px;
  font-weight: 500;
}

.input-box {
  margin-bottom: 30px;
}

.input-box input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #eee;
  width: 100%;
  border-width: 0;
  border-radius: 0;
  color: #111111;
  font-size: 14px;
  padding: 12px 16px;
}

.input-box input::-webkit-input-placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box input:-ms-input-placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box input::-ms-input-placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box input::placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box input:focus-visible {
  outline: none;
}

.input-box textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #eeeeee;
  width: 100%;
  border-width: 0;
  border-radius: 0;
  color: #111111;
  font-size: 14px;
  padding: 12px 16px;
}

.input-box textarea::-webkit-input-placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box textarea:-ms-input-placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box textarea::-ms-input-placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box textarea::placeholder {
  color: #111111;
  font-size: 14px;
}

.input-box textarea:focus-visible {
  outline: none;
}

.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px -15px;
          box-shadow: 0px 0px 15px -15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 9px 30px;
}

.menu-fixed .logo {
  max-width: 40px;
}

.container-custom {
  max-width: 1080px;
}

/* responsive media  */
header {
  padding: 13px 30px 30px;
}

header .logo img {
  max-width: 59px;
}

header .menu {
  -webkit-column-gap: 22px;
          column-gap: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .menu li a {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
}

header .menu li a:hover {
  color: rgba(0, 0, 0, 0.6);
}

header .menu li.active a {
  color: #143c5f;
}

header .toggle {
  text-align: right;
}

header .toggle svg {
  width: 20px;
  fill: #2ea3f2;
}

@media (max-width: 991px) {
  header .menu {
    position: absolute;
    left: 0;
    padding: 5%;
    background: #fafaf7;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    z-index: 9999;
    border-top: 3px solid #2ea3f2;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  header .menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: #666;
    padding: 10px 5%;
    display: block;
  }
}

.banner-wrap {
  background-image: url("../images/banner-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: right;
}

.banner-wrap .banner-cont {
  padding: 30px 6%;
}

.banner-wrap .banner-cont h2 {
  font-weight: 700;
  line-height: 1.2em;
  text-align: left;
  text-shadow: 0em 0.1em 0.1em #0000006b;
  color: #ffffff;
  padding-bottom: 10px;
}

.banner-wrap .banner-cont p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  max-width: 650px;
}

.banner-wrap .banner-cont .main-btn {
  margin-top: 20px;
}

.welcome-wrap {
  padding-top: 25px;
  padding-bottom: 55px;
  overflow: hidden;
}

/* mission sec tion */
.mission-wrap {
  padding-bottom: 30px;
  overflow: hidden;
}

.mission-wrap .pd-top {
  padding: 30px 0;
}

.mission-wrap .para {
  padding: 35px 40px;
}

.mission-wrap .para p {
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  text-align: justify;
  padding-bottom: 1em;
  line-height: 1.7em;
}

@media (max-width: 1440px) {
  .banner-wrap {
    min-height: 810px;
  }
  .mission-wrap {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .banner-wrap {
    background-position: right;
  }
  .banner-wrap .banner-cont h2 {
    font-size: 30px;
  }
  .banner-wrap .banner-cont p {
    max-width: 420px;
  }
  .heading h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .heading p {
    font-size: 13px;
  }
  .mission-wrap .para {
    padding: 25px 20px;
  }
}

/* ---------------------  CONTACT US PAGE  ----------------------- */
.contact-banner.banner-wrap {
  background-image: url("../images/contact.webp");
  min-height: 820px;
}

.form-wrap {
  padding: 80px 0;
}

.form-wrap .heading {
  text-align: left;
}

.form-wrap .heading h1 {
  font-size: 26px;
}

.form-wrap .heading p {
  font-size: 14px;
}

.form-wrap .submit-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 15px;
          column-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.form-wrap .submit-sec.input-box input {
  max-width: 80px;
  padding: 7px 15px;
}

.form-wrap .main-btn {
  background-color: #0b1b5e;
}

/* ---------------------  SUBSCRIBE PAGE  ----------------------- */
.subscribe-banner.banner-wrap {
  background-image: url("../images/subscribe.webp");
}

.subscribe-wrap .heading P {
  font-size: 18px;
}

@media (max-width: 1440px) {
  .contact-banner.banner-wrap {
    min-height: 570px;
  }
}

/* ---------------------  Category PAGE  ----------------------- */
.category-wrap .category-slider {
  padding: 50px 0 30px;
}

.category-wrap .category-slider .owl-nav {
  display: block;
}

.category-wrap .category-slider .owl-nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #dddddd;
  margin: 0;
}

.category-wrap .category-slider .owl-nav button svg {
  width: 10px;
  fill: #333;
  opacity: .75;
}

.category-wrap .category-slider .owl-nav button.owl-prev {
  left: -15px;
}

.category-wrap .category-slider .owl-nav button.owl-next {
  right: -15px;
}

.category-wrap .category-slider .owl-nav button:hover {
  background-color: #dddddd;
}

.category-wrap .category-slider .owl-nav button:hover svg {
  opacity: 1;
}

.category-wrap .category-slider .item a {
  position: relative;
  border-radius: 100%;
  margin: 15px 3px;
}

.category-wrap .category-slider .item a.active img {
  -webkit-box-shadow: 0px 2px 18px 0px #c66a00;
          box-shadow: 0px 2px 18px 0px #c66a00;
  border: 1px solid #ffffff;
}

.category-wrap .category-slider .item a img {
  border-radius: 100%;
}

.category-wrap .category-slider span {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  bottom: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1em;
}

.category-wrap .about-category {
  padding: 27px 0;
}

.category-wrap .about-category h1 {
  font-weight: 600;
  font-variant: small-caps;
  color: #313e76;
  text-align: center;
  padding-top: 10px;
}

.category-wrap .about-category .blog-heading {
  color: #143c5f;
  text-transform: capitalize;
  margin: 30px 0 10px;
  font-size: 18px;
  line-height: 1.4em;
  display: inline-block;
  font-weight: 500;
}

.category-wrap .about-category .rm-btn {
  font-size: 16px;
  color: #143c5f;
  line-height: 1.8em;
  text-decoration: underline;
  font-weight: 500;
}

.category-wrap .about-category p {
  color: #666666;
  line-height: 1.8em;
  font-weight: 500;
}

.category-wrap .about-category .cate-box {
  margin: 27px 0;
}

.category-wrap .about-category .center-box {
  background-image: url("../images/center-img1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
}

.category-wrap .about-category .center-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
}

.category-wrap .about-category .center-box .center-cont {
  max-width: 460px;
  margin: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
  padding: 0 15px;
}

.category-wrap .about-category .center-box .center-cont h3 {
  font-weight: 300;
}

.category-wrap .about-category .center-box .center-cont h3 a {
  color: #ffffff;
}

.category-wrap .about-category .center-box .center-cont p {
  color: #ffffff;
  margin: 15px 0;
}

.category-wrap .about-category .center-box .center-cont .main-btn {
  background-color: #e3e1dd;
  color: #000000;
}

.category-wrap .about-category .center-box .center-cont .main-btn svg {
  fill: #000000;
}

.category-wrap .about-category .tag-des {
  font-weight: 600;
  font-size: 12px;
  color: #E2C29D;
  line-height: 1.8em;
}

@media (max-width: 576px) {
  .category-wrap .category-slider .owl-nav button.owl-prev {
    left: -10px;
  }
  .category-wrap .category-slider .owl-nav button.owl-next {
    right: -10px;
  }
}

/* ---------------------  Category Single Page  ----------------------- */
.category-single-wrap .cate-desp {
  border-right: 1px solid #e9e9e9;
  padding: 70px 25px 120px 0;
}

.category-single-wrap .cate-desp h3 {
  color: #333;
  padding-bottom: 10px;
}

.category-single-wrap .cate-desp p, .category-single-wrap .cate-desp span, .category-single-wrap .cate-desp a {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

.category-single-wrap .cate-desp .about-info {
  padding-bottom: 15px;
  margin-bottom: 6px;
}

.category-single-wrap .cate-desp .img-cont {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

.category-single-wrap .releted-post {
  padding: 70px 0px 70px 20px;
}

.category-single-wrap .releted-post .category-heading {
  font-size: 18px;
  color: #666666;
  font-weight: 500;
}

.category-single-wrap .releted-post ul li {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.category-single-wrap .releted-post ul li .post-title {
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  font-size: 15px;
}

.category-single-wrap .releted-post ul li .post-title:hover {
  color: #82c0c7;
}

.category-single-wrap .releted-post ul li span {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 500;
}

.category-single-wrap .releted-post ul li img {
  margin-top: 15px;
  max-width: 160px;
}

.category-single-wrap .releted-post ul li .admin {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  color: #666;
  margin-top: 7px;
  display: block;
}

.category-single-wrap .releted-post ul li .admin:hover {
  color: #82c0c7;
}

@media (max-width: 767px) {
  .category-single-wrap .cate-desp {
    border-right: 0;
    padding: 70px 15px;
  }
}

footer {
  background-color: #000000;
  padding: 100px;
}

footer p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}

footer .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

footer .media li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background-color: #3b5998;
  line-height: 35px;
  text-align: center;
}

footer .media li a svg {
  width: 11px;
  fill: #fff;
}

footer .media li a.svg-width svg {
  width: 16px;
}

footer .media li:nth-child(2) a {
  background-color: #a82400;
}

footer .media li:nth-child(3) a {
  background-color: #ea2c59;
}

footer li {
  line-height: 24px;
}

footer a {
  font-size: 14px;
  color: #ffffff;
  text-transform: capitalize;
}

footer a:hover {
  color: #ffffff;
}

footer .contact-link {
  color: #14aecf;
  border-width: 0px;
  font-size: 14px;
  font-weight: 700;
  padding-right: 2em;
  display: inline-block;
  padding-bottom: 22px;
  text-transform: uppercase;
}

footer .contact-link svg {
  width: 7px;
  fill: #14aecf;
  margin-left: 5px;
}

footer .contact-link:hover {
  color: #14aecf;
}

.copyright-wrap {
  background-color: #000000;
  padding: 20px 0 10px;
  border-top: 1px solid #666666;
  padding-left: 50px;
}

.copyright-wrap p {
  color: #afafaf;
}

@media (max-width: 576px) {
  footer {
    padding: 50px;
  }
}

@media (max-width: 380px) {
  footer {
    padding: 50px 20px;
  }
}
/*# sourceMappingURL=style.css.map */