@charset "UTF-8";

/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Outfit', sans-serif;
  --tp-ff-heading: 'nebula', sans-serif;
  --tp-ff-p: 'Montserrat', sans-serif;
  --tp-ff-fontawesome: Font Awesome 6 Pro;
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black-solid: #000;
  --tp-common-black: #121212;
  --tp-heading-primary: #666666;
  --tp-heading-1: #121212;
  --tp-grey-1: #F1F1F1;
  --tp-grey-2: #F5F6F8;
  --tp-text-body: #121212;
  --tp-text-1: #000;
  --tp-theme-primary: #EB9309;
  --tp-theme-2: #121212;
  --tp-border-1: #000;
  /**
  @font weight declaration
  */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**
  @font size declaration
  */
  --tp-fz-body: 14px;
  --tp-fz-p: 14px;
  --tp-fz-h1: 40px;
  --tp-fz-h2: 36px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 16px;
  --tp-fz-h6: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  /* font-family: var(--tp-ff-body);
  font-size: var(--tp-fz-body); */
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-1);
  margin-top: 0px;
  font-weight: var(--tp-fw-sbold);
  line-height: 1.2;
  -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: var(--tp-fz-h1);
}

h2 {
  font-size: var(--tp-fz-h2);
}

h3 {
  font-size: var(--tp-fz-h3);
}

h4 {
  font-size: var(--tp-fz-h4);
}

h5 {
  font-size: var(--tp-fz-h5);
}

h6 {
  font-size: var(--tp-fz-h6);
} */

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tp-ff-p);
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-normal);
  color: var(--tp-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
.btn,
button,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
.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;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.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;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/
.section-sub-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
  color: #fff;
  font-family: var(--tp-ff-heading);
}
.section-sub-title.has-before {
  position: relative;
}
.section-sub-title.has-before::before {
  content: "";
  width: 12px;
  height: 3px;
  margin-right: 5px;
  display: inline-block;
  background-color: #6e3bc6;
}

.section-sub-title.has-after::after {
  content: "";
  width: 12px;
  height: 3px;
  display: inline-block;
  background-color: #b255e0;
}

.section-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 50px;
  color: #fff;
  font-family: var(--tp-ff-p);
}
.vol-planet img{
  position: absolute;
}

.volunteers-area-3 {
  position: relative;
  background-repeat: no-repeat;
  background-color: #ffffffd3;
  height: auto;
}

.volunteers-bg {
  /* background-color: #6e3bc6; */
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .volunteers-bg {
    width: 100%;
  }
}

.volunteers-section-3__wrapper {
  padding-left: 105px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .volunteers-section-3__wrapper {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .volunteers-section-3__wrapper {
    padding-right: 170px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .volunteers-section-3__wrapper {
    padding-bottom: 40px;
  }
}
.volunteers-section-3__wrapper p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #E1E1E1;
  margin-bottom: 26px;
  font-family: var(--tp-ff-p);
}
.volunteers-section-3__wrapper .section-sub-title {
  color: #fff;
  font-family: var(--tp-ff-heading);
}
.volunteers-section-3__wrapper .section-title {
  color: #fff;
  margin-bottom: 24px;
  font-family: var(--tp-ff-p);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .volunteers-section-3__wrapper .section-title {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .volunteers-section-3__wrapper .section-title {
    margin-bottom: 30px;
  }
}
.volunteers-section-3__wrapper ul {
  list-style: none;
  margin-bottom: 42px;
  font-family: var(--tp-ff-p);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .volunteers-section-3__wrapper ul {
    margin-bottom: 30px;
  }
}
.volunteers-section-3__wrapper ul li {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 7px;
}
.volunteers-section-3__wrapper ul li span {
  color: #b255e0;
  font-size: 16px;
  margin-right: 20px;
}
/* .img-div{
  margin: 0;
  transform: translateY(10%);
} */
.tpvolunteers-3__img-1 img {
  border-radius: 100%;
  margin-left: 285px;
  border-left: 12px solid #9547bd;
  height: 550px;
  width: 550px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tpvolunteers-3__img-1 img {
    margin-left: 135px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpvolunteers-3__img-1 img {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpvolunteers-3__img-1 img {
    margin-left: 20px;
    height: 460px;
    width: 460px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpvolunteers-3__img-1 img {
    margin-left: 115px;
  }
}

.tpvolunteers-3__img-2 img {
  position: absolute;
  top: 100px;
  left: 85px;
  width: 45%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpvolunteers-3__img-2 img {
    left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpvolunteers-3__img-2 img {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpvolunteers-3__img-2 img {
    left: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpvolunteers-3__img-2 img {
    left: 0;
    top: 15px;
    width: 70%;
  }
}



.tpvoluntrees-3-btn .tp-btn:hover {
  background: #121212;
  color: #fff;
}

.tpcta-3-btn .tp-btn:hover {
  background: #fff;
  color: #121212;
}

.tpcta-4-btn .tp-btn:hover {
  background: #121212;
  color: #fff;
}

.volunteers-section-3__wrapper.volunteers-breadcrumb .section-sub-title {
  color: var(--tp-theme-2);
}
.volunteers-section-3__wrapper.volunteers-breadcrumb .section-title {
  color: var(--tp-theme-2);
}
.volunteers-section-3__wrapper.volunteers-breadcrumb p {
  color: var(--tp-theme-2);
}
.volunteers-section-3__wrapper.volunteers-breadcrumb ul li {
  color: var(--tp-theme-2);
}


.tpgallery-2-img img {
  max-width: 100%;
}


@media only screen and (min-width: 576px) and (max-width: 767px) {
  .brand-area {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .brand-area {
    padding-top: 100px;
  }
}

.brand-title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}

.brand-title.has-before::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 5px;
  display: inline-block;
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
}

.brand-title.has-after::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 5px;
  display: inline-block;
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
}

/*----------------------------------------*/
/*  06. PORTFOLIO CSS START
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-area {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-area {
    padding-top: 140px;
  }
}
@media (max-width: 575px) {
  .portfolio-area {
    padding-top: 80px;
  }
}

.portfolio-slider .slick-list {
  margin-left: -15px;
  margin-right: -10px;
}

.portfolio-item {
  margin: 0px 10px;
}
.portfolio-item img {
  border-radius: 15px;
}

.portfolio-slider .slick-prev.slick-arrow i {
  background: #fff;
  color: #090909;
  position: absolute;
  z-index: 5;
  top: 415px;
  left: 603px;
  transition: 0.3s;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  line-height: 4;
  font-size: 18px;
}
.portfolio-slider .slick-prev.slick-arrow i:hover {
  background: #EB9309;
  color: #fff;
}
@media only screen and (min-width: 1601px) and (max-width: 1850px) {
  .portfolio-slider .slick-prev.slick-arrow i {
    left: 450px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .portfolio-slider .slick-prev.slick-arrow i {
    left: 350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-slider .slick-prev.slick-arrow i {
    left: 245px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-slider .slick-prev.slick-arrow i {
    left: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-slider .slick-prev.slick-arrow i {
    left: 15px;
  }
}

.portfolio-slider .slick-next.slick-arrow i {
  background: #fff;
  color: #090909;
  position: absolute;
  z-index: 5;
  top: 415px;
  right: 603px;
  transition: 0.3s;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  line-height: 4;
  font-size: 18px;
}
.portfolio-slider .slick-next.slick-arrow i:hover {
  background: #EB9309;
  color: #fff;
}
@media only screen and (min-width: 1601px) and (max-width: 1850px) {
  .portfolio-slider .slick-next.slick-arrow i {
    right: 450px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .portfolio-slider .slick-next.slick-arrow i {
    right: 350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-slider .slick-next.slick-arrow i {
    right: 245px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-slider .slick-next.slick-arrow i {
    right: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-slider .slick-next.slick-arrow i {
    right: 15px;
  }
}

.portfolio-btn {
  margin-top: 32px;
  margin-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .portfolio-btn {
    margin-bottom: 80px;
  }
}

.our-portfolio-wrapper {
  background: #F6F6F4;
  border-radius: 20px;
}
.our-portfolio-thumb {
  overflow: hidden;
  border-radius: 20px;
}
.our-portfolio-thumb img {
  border-radius: 20px;
  min-width: 100%;
}
.our-portfolio-thumb img:hover {
  transform: scale(1.05);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .our-portfolio-thumb img {
    max-width: 100%;
  }
}
.our-portfolio-content {
  padding: 40px 46px;
}
@media (max-width: 575px) {
  .our-portfolio-content {
    padding: 30px;
  }
}
.our-portfolio-content .portfolio-title {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #292930;
  margin-bottom: 30px;
}
.our-portfolio-content p {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .our-portfolio-content p br {
    display: none;
  }
}
.our-portfolio-content .portfolio-title:hover {
  color: #eb9309;
}
.our-portfolio-btn a {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 17px 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #121212;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .our-portfolio-btn a {
    padding: 17px 18px;
  }
}
.our-portfolio-btn a i {
  margin-left: 10px;
}
.our-portfolio-btn a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.our-portfolio-btn a:hover i {
  transform: translateX(5px);
}
.our-portfolio-pagination {
  margin-top: 40px;
}

.portfolio-details {
  margin-bottom: 32px;
}
.portfolio-details-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 14px;
  color: #121212;
  margin-bottom: 10px;
  display: block;
}
.portfolio-details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
.portfolio-details-wrapper p {
  font-weight: 400;
  font-size: 16px;
  color: #525258;
}
.portfolio-details-wrapper.portfolio-margin {
  margin-left: -23px;
}
@media (max-width: 575px) {
  .portfolio-details-wrapper.portfolio-margin {
    margin-left: 0;
  }
}
.portfolio-details-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 14px;
  color: #03041C;
}
.portfolio-details-img {
  margin-top: 110px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-details-img {
    margin-top: 30px;
  }
}
.portfolio-details-img img {
  border-radius: 20px;
  max-width: 100%;
}
.portfolio-details-thumb {
  overflow: hidden;
  border-radius: 20px;
}
.portfolio-details-thumb img {
  border-radius: 20px;
  max-width: 100%;
  margin-top: 15px;
}

@media (max-width: 575px) {
  .portfolio-section .section-title br {
    display: none;
  }
}

@media (max-width: 575px) {
  .portfolio-details-area-2 {
    padding-top: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-details-area {
    padding-top: 60px;
  }
}

.portfolio-section .service-title {
  margin-bottom: 0;
}

.service-text.portfolio-detail {
  margin-bottom: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-text.portfolio-detail {
    margin-bottom: 40px;
    padding-left: 0;
    margin-top: 30px;
  }
}

.tpproject-section__wrapper {
  position: relative;
  z-index: 1;
}
.tpproject-section__wrapper .sub-title {
  margin-bottom: 0;
  color: #fff;
}
.tpproject-section__wrapper .section-title {
  margin-bottom: 30px;
  margin-top: 40px;
  color: #fff;
}
@media (max-width: 575px) {
  .tpproject-section__wrapper .section-title {
    font-size: 35px;
  }
}
.tpproject-section__wrapper .has-before::before {
  background: #fff;
}
svg{
  color: #fff;
 
}
.tpproject {
  position: relative;
}
.tpproject__thumb {
  position: absolute;
  left: 90%;
  top: -210px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpproject__thumb {
    left: 82%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpproject__thumb {
    left: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpproject__thumb img {
    width: 370px;
  }
}
.tpproject-area{
  padding: 60px 0;
}
.tpproject__wrapper {
  border-bottom: 1px solid #896999;
  padding: 42px 42px;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
.tpproject-main{
  margin: 30px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpproject__wrapper {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpproject__wrapper {
    padding: 35px 30px;
  }
}
.tpproject__wrapper::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: var(--tp-theme-2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: -1;
}
.tpproject__wrapper:hover {
  border-color: transparent;
}
.tpproject__wrapper:hover::after {
  visibility: visible;
  opacity: 1;
}
.tpproject__wrapper:hover .tpproject__title {
  color: #fff;
}
.tpproject__wrapper:hover .tpproject__thumb {
  opacity: 1;
  visibility: visible;
  top: -260px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpproject__wrapper:hover .tpproject__thumb {
    top: -200px;
  }
}
.tpproject__wrapper:hover .tpproject__icon a {
  color: var(--tp-common-white);
}
.tpproject__title {
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.01em;
  text-decoration: none;
  font-family: var(--tp-ff-p);
}
.tpproject__title a{
  color: #fff;
}
@media (max-width: 575px) {
  .tpproject__title {
    font-size: 28px;
  }
}
.tpproject__shape span {
  background: #fff;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 12px;
}
.tpproject__shape .tpproject-shape1 {
  position: absolute;
  top: 130px;
  right: 107px;
}
.tpproject__shape .tpproject-shape2 {
  position: absolute;
  top: 265px;
  right: 770px;
}
.tpproject__shape .tpproject-shape3 {
  position: absolute;
  top: 195px;
  left: 148px;
}
.tpproject__shape .tpproject-shape4 {
  position: absolute;
  bottom: 196px;
  right: 64px;
}
.tpproject__shape .tpproject-shape5 {
  position: absolute;
  bottom: 190px;
  left: 205px;
}

.tpproject-bg {
  background-color: #4c1e63;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.tpproject-btn {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpproject-btn {
    text-align: start;
  }
}
.tpproject-btn .tp-btn-black:hover {
  background: #fff;
  color: #121212;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-area {
    padding-bottom: 160px;
  }
}


.our-approch-img {
  margin-left: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .our-approch-img {
    margin-left: -76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our-approch-img {
    margin-left: 0px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .our-approch-img {
    margin-left: 0px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
}
.our-approch-img img {
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .our-approch-img img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .our-mission-img {
    justify-content: center;
    display: flex;
  }
}
.our-mission-img img {
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .our-mission-img img {
    max-width: 120%;
  }
}
@media (max-width: 575px) {
  .our-mission-img img {
    max-width: 100%;
  }
}

.donation-list-area {
  background: #F6F6F4;
}

.donation-card-box {
  margin-bottom: 40px;
}
.donation-card-box .tpcard__title {
  margin-bottom: 45px;
}

.donation-pagination.news-blog .page-item.active .page-link {
  background: #121212;
  border-color: #fff;
}

.donation-notice {
  position: relative;
  padding-top: 8px;
  margin-bottom: 60px;
}
.donation-notice span {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.donation-notice span svg {
  color: #fff;
  margin-right: 14px;
}
.donation-notice .notice {
  margin-bottom: -10px;
}
.donation-notice p {
  font-weight: 400;
  font-size: 16px;
  color: #A1A1A1;
  margin-bottom: -10px;
}
.donation-notice:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #F4F4F4;
  top: -10px;
}
.donation-notice::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #F4F4F4;
  bottom: -27px;
}

@media (max-width: 575px) {
  .right-padding {
    padding-left: 0;
  }
}

.donation-payment-title {
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  color: #0D0D0D;
}
@media (max-width: 575px) {
  .donation-payment-check .form-check {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.donation-payment-check .form-check-input {
  background: #F2F2F2;
  border: 1px solid #DADADA;
  box-shadow: none;
  margin-top: 5px;
  width: 16px;
  height: 16px;
}
.donation-payment-check .form-check-input:checked {
  background: #fff;
  border: 4px solid #0084F8;
}
.donation-payment-check label {
  font-weight: 500;
  font-size: 16px;
  line-height: 170.23%;
  color: #001B36;
}
.donation-payment-check label:hover {
  cursor: pointer;
}

.donation-payment-method input {
  background: #FDFDFD;
  border: 1px solid #F1F1F1;
  box-shadow: 0px 10px 15px rgba(221, 221, 221, 0.15);
  border-radius: 143px;
  height: 60px;
  width: 220px;
  padding: 0 25px;
}
.donation-payment-method input::placeholder {
  font-weight: 600;
  font-size: 14px;
  line-height: 170.23%;
  color: #0D0D0D;
}
.donation-payment-method input:focus {
  border-color: #EB9309;
}
.donation-payment-method button {
  background: #FDFDFD;
  border: 1px solid #F1F1F1;
  border-radius: 143px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 170.23%;
  color: #A1A1A1;
  display: block;
  margin-right: 15px;
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .donation-payment-method button {
    margin-bottom: 15px;
  }
}
.donation-payment-method button:hover {
  background: #121212;
  border-color: #121212;
  color: #fff;
}

.donation-error-notification {
  padding-top: 30px;
}
.donation-error-notification i {
  color: #F05359;
  margin-right: 12px;
  font-size: 21px;
  margin-top: 4px;
}
.donation-error-notification span {
  font-weight: 400;
  font-size: 16px;
  line-height: 170.23%;
  color: #A1A1A1;
  display: flex;
  margin-bottom: 30px;
}

.donation-btn .tp-btn:hover {
  background: #121212;
  color: #FFF;
}

.donation-error-notification::before {
  position: absolute;
  content: "";
  background: #F4F4F4;
  width: 100%;
  height: 1px;
  top: 0px;
  left: 0;
}

.donation-error-notification::after {
  position: absolute;
  content: "";
  background: #f4f4f4;
  width: 100%;
  height: 1px;
  bottom: -28px;
  left: 0;
}

.donation-details-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
}
.donation-details-text .donation-payment-title {
  margin-bottom: 14px;
}

.sidebar__widget.donation-details {
  border-radius: 10px;
}

.sidebar__widget-title.donation-details {
  color: #0D0D0D;
  font-size: 20px;
  font-weight: 800;
}

.sidebar__widget-content.donation-details ul li a {
  border-radius: 5px;
  border: 1px solid #fff;
}
.sidebar__widget-content.donation-details ul li a:hover {
  border: 1px solid #E4E4E4;
}

.sidebar__widget-contact {
  background: #F6F6F4;
  border: 1px solid #F2F5FA;
  padding: 33px 28px;
  border-radius: 10px;
}

.sidebar__widget-contact input {
  border: none;
  background: #F6F6F4;
  border-bottom: 1px solid #E2E1DF;
  width: 100%;
  margin-bottom: 10px;
  padding: 13px 0;
}
.sidebar__widget-contact input:focus {
  border-bottom-color: #EB9309;
}
.sidebar__widget-contact input::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #949392;
}

.sidebar__widget-title.donation-details.contact {
  margin-bottom: 15px;
}

.sidebar-btn .tp-btn {
  border-radius: 0;
  margin-top: 23px;
  padding: 15px 56px;
  border-radius: 10px;
}
.sidebar-btn .tp-btn:hover {
  background: #121212;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-btn .tp-btn {
    padding: 15px 35px;
  }
}
@media (max-width: 575px) {
  .sidebar-btn .tp-btn {
    padding: 15px 45px;
  }
}
/* Blog Start */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpblog-area {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .tpblog-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.grayscale{
  filter: grayscale(100%);
}
.grayscale:hover{
  filter: grayscale(0);
}
.tpblog .section-title {
  margin-bottom: 54px;
}
@media (max-width: 575px) {
  .tpblog .section-title {
    font-size: 35px;
  }
}

.tpblog__title:hover a {
  color: #b255e0;
}

.tpblog__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  font-family: var(--tp-ff-p);
}
.tpblog__thumb img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
.tpblog__thumb img:hover {
  transform: scale(1.05);
}
.tpblog__thumb span {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: #fff;
  background: #EB9309;
  font-weight: 600;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 5px;
  transition: 0.3s ease;
}
.tpblog__thumb span:hover {
  background: #fff;
  color: #121212;
}
.tpblog__content {
  padding: 40px 45px;
  border: 1px solid #F6F6F4;
  border-radius: 0 0 15px 15px;
}
.tpblog__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .tpblog__content p {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpblog__content {
    padding: 30px 30px;
  }
}
@media (max-width: 575px) {
  .tpblog__content {
    padding: 20px;
  }
}
.tpblog__title a {
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--tp-ff-p);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpblog__title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpblog__author {
    margin-top: 10px;
    margin-right: 10px;
  }
}
.tpblog__author img {
  margin-right: 9px;
  border-radius: 50%;
}
.tpblog__author span {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  font-family: var(--tp-ff-p);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpblog__comments {
    margin-top: 10px;
  }
}
.tpblog__comments span {
  font-weight: 500;
  font-size: 16px;
  color: #A8A8A8;
  margin-right: 48px;
  font-family: var(--tp-ff-p);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpblog__comments span {
    margin-right: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpblog__comments span {
    margin-right: 5px;
  }
}
@media (max-width: 575px) {
  .tpblog__comments span {
    margin-right: 25px;
  }
}
.tpblog__comments span i {
  font-weight: 400;
  font-size: 15px;
  color: #0D0D0D;
  margin-left: 5px;
}

.blog-details-thumb img {
  border-radius: 10px;
  max-width: 100%;
}
.blog-details-info {
  margin-top: 33px;
}
.blog-details-name {
  margin-right: 60px;
}
@media (max-width: 575px) {
  .blog-details-name {
    margin-right: 25px;
  }
}
.blog-details-name i {
  height: 14px;
  width: 14px;
  color: #EB9309;
  font-size: 14px;
  margin-right: 5px;
}
.blog-details-name span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}
.blog-details-date {
  margin-right: 60px;
}
@media (max-width: 575px) {
  .blog-details-date {
    margin-right: 25px;
  }
}
.blog-details-date i {
  height: 14px;
  width: 14px;
  color: #EB9309;
  font-size: 14px;
  margin-right: 5px;
}
.blog-details-date span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}
.blog-details-message i {
  height: 14px;
  width: 14px;
  color: #EB9309;
  font-size: 14px;
  margin-right: 5px;
}
.blog-details-message span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}
.blog-details-title {
  margin-top: 30px;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-title {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .blog-details-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .blog-details-title br {
    display: none;
  }
}
.blog-details-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #666666;
  margin-bottom: 24px;
}
.blog-details-content .details-title {
  margin-top: 42px;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.blog-details-no-secret {
  padding-right: 56px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-details-no-secret {
    padding-right: 0;
  }
}
.blog-details-no-secret .title {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 22px;
}
.blog-details-no-secret p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 24px;
}
.blog-details-no-secret ul {
  list-style: none;
}
.blog-details-no-secret ul li {
  font-weight: 500;
  font-size: 15px;
  color: #666666;
}
.blog-details-no-secret ul li span {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #EB9309;
  margin-right: 20px;
}

.no-secret-thumb img {
  max-width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tagcloud {
    margin-bottom: 20px;
  }
}
.tagcloud span {
  font-family: "Playfair Display";
  font-weight: 800;
  font-size: 28px;
  line-height: 30px;
  margin-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tagcloud span {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tagcloud span {
    margin-right: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tagcloud span {
    margin-right: 5px;
  }
}
.tagcloud a {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #8A879F;
  margin-right: 8px;
  background: #F6F6F4;
  padding: 4px 25px;
  border-radius: 5px;
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tagcloud a {
    padding: 4px 11px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tagcloud a {
    margin-bottom: 15px;
  }
}
.tagcloud a:hover {
  background: #EB9309;
  color: white;
}

.postbox__share span {
  font-size: 28px;
  font-weight: 800;
  font-family: "Playfair Display";
  margin-right: 20px;
}
.postbox__share .linkedin {
  font-weight: 400;
  font-size: 15px;
  color: #0072AC;
  margin-right: 20px;
}
.postbox__share .pinterest {
  font-weight: 400;
  font-size: 15px;
  color: #DA0021;
  margin-right: 20px;
}
.postbox__share .facebook {
  font-weight: 400;
  font-size: 15px;
  color: #0072AC;
  margin-right: 20px;
}
.postbox__share .twitter {
  font-weight: 400;
  font-size: 15px;
  color: #3AC4FF;
}
.postbox__more-navigation {
  margin-top: 50px;
}
.postbox__more-right .postbox__more-content span {
  margin-right: 20px;
}
.postbox__more-icon h4 {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 25px;
}
.postbox__more-icon h4:hover {
  color: #EB9309;
}
.postbox__more-content {
  overflow: hidden;
}
.postbox__more-content span {
  font-weight: 500;
  font-size: 16px;
  margin-left: 25px;
}
.postbox__more-content span:hover {
  color: #EB9309;
}

.blog-details-content-thumb img {
  max-width: 100%;
  margin-bottom: 75px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-details-content-thumb img {
    margin-bottom: 0;
  }
}

.tag-box {
  position: relative;
  padding-top: 22px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tag-box {
    margin-top: 40px;
  }
}
.tag-box::before {
  content: "";
  position: absolute;
  background: #ECEEF3;
  height: 1px;
  width: 850px;
  top: -15px;
  left: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tag-box::before {
    width: 740px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tag-box::before {
    width: 615px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tag-box::before {
    width: 695px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tag-box::before {
    width: 515px;
  }
}
@media (max-width: 575px) {
  .tag-box::before {
    width: 320px;
  }
}
.tag-box::after {
  content: "";
  position: absolute;
  background: #ECEEF3;
  height: 1px;
  width: 850px;
  bottom: -40px;
  left: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tag-box::after {
    width: 740px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tag-box::after {
    width: 615px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tag-box::after {
    width: 695px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tag-box::after {
    width: 515px;
  }
}
@media (max-width: 575px) {
  .tag-box::after {
    width: 320px;
  }
}

.postbox__comment {
  margin-bottom: 40px;
  padding-bottom: 46px;
}
.postbox__comment ul li {
  list-style: none;
}
.postbox__comment-title {
  margin-top: 38px;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 40px;
  color: #121212;
  padding-top: 40px;
}
.postbox__comment-name {
  margin-left: 30px;
}
.postbox__comment-name h3 {
  font-weight: 500;
  font-size: 16px;
  font-family: "Outfit";
  color: #121212;
  margin-bottom: 2px;
}
.postbox__comment-name .post-meta {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #8A879F;
  line-height: 1.1;
  text-transform: uppercase;
}
.postbox__comment-name p {
  font-weight: 400;
  font-size: 14px;
  color: #8A879F;
  margin-top: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .postbox__comment-name p br {
    display: none;
  }
}
.postbox__comment-reply a::before {
  content: "\f122";
  font-family: "Font Awesome 5 Pro";
  top: 22px;
  right: 230px;
  position: absolute;
  font-weight: 300;
  font-size: 20px;
  color: #171151;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment-reply a::before {
    right: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment-reply a::before {
    right: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment-reply a::before {
    right: 60px;
  }
}
@media (max-width: 575px) {
  .postbox__comment-reply a::before {
    right: 20px;
  }
}
.postbox__comment ul.children {
  margin-left: 100px;
  margin-top: 54px;
}
@media (max-width: 575px) {
  .postbox__comment ul.children {
    margin-left: 0;
    margin-top: 0;
  }
}
.postbox__comment ul.children .postbox__comment-reply a::before {
  right: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 20px;
  }
}
.postbox__comment-text {
  margin-top: 13px;
}
.postbox__comment::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 848px;
  top: 0;
  background: #eceef3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment::before {
    width: 740px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment::before {
    width: 615px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__comment::before {
    width: 695px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment::before {
    width: 515px;
  }
}
@media (max-width: 575px) {
  .postbox__comment::before {
    width: 320px;
  }
}
.postbox__comment::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 848px;
  bottom: 0;
  background: #eceef3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment::after {
    width: 740px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment::after {
    width: 615px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__comment::after {
    width: 695px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment::after {
    width: 515px;
  }
}
@media (max-width: 575px) {
  .postbox__comment::after {
    width: 320px;
  }
}

.postbox-form-box .post-form .input, .postbox-form-box .post-form .textarea {
  width: 100%;
  height: 65px;
  padding: 0 18px;
  border: 2px solid transparent;
  background: #F6F6F4;
  outline: none;
  border-radius: 5px;
  resize: none;
}
.postbox-form-box .post-form .input:focus, .postbox-form-box .post-form .textarea:focus {
  border-color: #EB9309;
}
.postbox-form-box .post-form .input::placeholder, .postbox-form-box .post-form .textarea::placeholder {
  color: #666666;
}
.postbox-form-box .post-form .textarea {
  height: 160px;
  padding: 20px 18px;
}
.postbox-form-box .post-form .contact-input {
  margin-bottom: 18px;
}
.postbox-form-box .post-form-title {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 16px;
  color: #121212;
}
.postbox-form-box .post-form-btn button {
  padding: 14px 38px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .postbox-form-box .post-form-btn button {
    margin-bottom: 30px;
  }
}
.postbox-form-box .post-form-btn .tp-btn:hover {
  background: #121212;
  color: #fff;
}
.postbox-form-box p {
  font-weight: 400;
  font-size: 16px;
  color: #8A879F;
  margin-bottom: 60px;
}

.blog-details__search-box {
  background: #F6F6F4;
  border: 1px solid #F2F5FA;
  padding: 40px 30px;
  border-radius: 10px;
}
.blog-details__search-box h3 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}
.blog-details__search-box .search-form input {
  height: 61px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #F2F4F6;
  padding: 20px;
  padding-right: 50px;
}
.blog-details__search-box .search-form input:focus {
  border-color: #EB9309;
}
.blog-details__search-box .search-form input::placeholder {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  color: #8A879F;
}
.blog-details__search-box .search-form button {
  position: absolute;
  right: 30px;
  top: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #030A39;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .news-blog-right-wrapper {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .news-blog-details-area .left {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-details-items {
    padding-bottom: 40px;
  }
}

.sidebar__widget {
  background: #F6F6F4;
  border: 1px solid #F2F5FA;
  padding: 33px 35px 25px 28px;
  border-radius: 10px;
}
.sidebar__widget-title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}
.sidebar__widget-content ul li {
  list-style: none;
  margin-bottom: 15px;
}
.sidebar__widget-content ul li a {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A879F;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 9px 17px;
  display: inline-block;
  transition: 0.3s;
}
.sidebar__widget-content ul li a span {
  float: right;
}
.sidebar__widget-content ul li a:hover {
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.04);
  color: #121212;
}
.sidebar__widget.sidebar-pages {
  background: #F6F6F4;
  border: 1px solid #F2F5FA;
  padding: 34px 42px 21px 47px;
}
.sidebar__widget.sidebar-pages ul li {
  list-style: none;
  margin-bottom: 0px;
}
.sidebar__widget.sidebar-pages ul li:hover a {
  color: #121212;
  box-shadow: none;
}
.sidebar__widget.sidebar-pages ul li a {
  background: none;
  padding-left: 0;
}
.sidebar__widget.sidebar-pages ul li a i {
  float: right;
  margin-top: 3px;
}

.rc__post-thumb {
  overflow: hidden;
  margin-right: 20px;
  border-radius: 6px;
}
.rc__post-thumb img {
  border-radius: 6px;
}
.rc__post-thumb img:hover {
  transform: scale(1.05);
}
.rc__post-content span {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A879F;
}
.rc__post-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #141515;
  font-family: "Outfit";
}
.rc__post-title a:hover {
  color: #EB9309;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-left-box {
    padding-left: 0;
  }
}

.sidebar__post {
  margin-bottom: 20px;
}

.side__tagcloud {
  margin-top: 30px;
}
.side__tagcloud a {
  background: #fff;
  padding: 2px 27px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 11px;
  font-weight: 600;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  color: #8A879F;
  transition: 0.3s;
  border-radius: 5px;
}
.side__tagcloud a:hover {
  background: #EB9309;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-details-area {
    padding-top: 150px;
  }
}

.news-blog-btn .tp-btn:hover {
  background: #121212;
  color: #fff;
}

.blog-details-name.news-blog i {
  color: #EB9309;
}

.blog-details-date.news-blog i {
  color: #EB9309;
}

.blog-details-message.news-blog i {
  color: #EB9309;
}

.blog-details-title.news-blog {
  margin-top: 16px;
  margin-bottom: 12px;
}
.blog-details-title.news-blog a:hover {
  color: #eb9309;
}

.contact-form-box .contact-form {
  background: #F6F6F4;
  padding: 85px 100px 78px 100px;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-box .contact-form {
    padding: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form-box .contact-form {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .contact-form-box .contact-form {
    padding: 25px;
  }
}
.contact-form-box .contact-form .input, .contact-form-box .contact-form .textarea {
  width: 100%;
  height: 65px;
  padding: 0 18px;
  border: 2px solid transparent;
  background: #FFFFFF;
  outline: none;
  resize: none;
  border-radius: 10px;
}
.contact-form-box .contact-form .input::placeholder, .contact-form-box .contact-form .textarea::placeholder {
  color: #747474;
}
.contact-form-box .contact-form .input:focus, .contact-form-box .contact-form .textarea:focus {
  border-color: #eb9309;
}
.contact-form-box .contact-form .textarea {
  height: 160px;
  padding: 20px 18px;
}
.contact-form-box .contact-form .contact-input {
  margin-bottom: 18px;
}
.contact-form-box-title {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #121212;
  padding-top: 100px;
  margin-bottom: 35px;
}
.contact-form-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 24px;
  letter-spacing: -0.04em;
  margin-bottom: 38px;
}
.contact-form-btn button {
  padding: 12px 48px;
}
.contact-form-btn button:hover {
  background: #121212;
  color: #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-btn button {
    padding: 12px 32px;
  }
}
@media (max-width: 575px) {
  .contact-form-btn button {
    padding: 12px 30px;
  }
}

@media (max-width: 575px) {
  .tp-contact-info {
    margin-top: 25px;
  }
}

.contact-check {
  margin-bottom: 24px;
}
.contact-check .check-input {
  background: transparent;
  border: 1px solid #D9D9DE;
  box-shadow: none;
  display: block;
  background: transparent;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .contact-check .check-input {
    margin-right: 0;
  }
}
.contact-check .check-input:checked {
  background-color: #eb9309;
  border-color: #eb9309;
}
.contact-check .check-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  color: #666666;
}

.tp-contact-info .call {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #666666;
  display: block;
}
.tp-contact-info .mail {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 40px;
  transition: 0.3s;
}
.tp-contact-info .maila:hover {
  color: #eb9309;
}
.tp-contact-info a {
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  display: inline-block;
}
.tp-contact-info a i {
  margin-right: 5px;
}
.tp-contact-info a:hover {
  color: #eb9309;
}

.contact-us-wrapper {
  padding: 58px 80px;
  border: 1px solid #EAEAEF;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-us-wrapper {
    padding: 58px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .contact-us-wrapper {
    padding: 40px 30px;
  }
}
.contact-us-wrapper-title {
  font-weight: 800;
  font-size: 22px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 45px;
}
.contact-us-wrapper-title::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 270px;
  background: #EAEAEF;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us-wrapper-title::before {
    width: 175px;
    top: 80px;
  }
}
@media (max-width: 575px) {
  .contact-us-wrapper-title::before {
    width: 270px;
    top: 80px;
  }
}
.contact-us-wrapper a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #525258;
}
.contact-us-wrapper a:hover {
  color: var(--tp-theme-primary);
}
.contact-us-btn a {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #03041C;
  padding: 14px 50px;
  border: 1px solid #EAEAEF;
  margin-top: 12px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us-btn a {
    padding: 14px 35px;
  }
}
.contact-us-btn a:hover {
  background: #121212;
  color: #fff;
}

@media (max-width: 575px) {
  .faq-accordion-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.tp-custom-accordion .accordion-items:not(.collapsed) {
  background: #F6F6F4;
  border: 1px solid #F5F5F5;
  border-radius: 10px;
  margin-bottom: 20px;
}
.tp-custom-accordion .accordion-buttons {
  position: relative;
  width: 100%;
  font-family: "Outfit";
  text-align: left;
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  color: #292930;
  padding: 40px 45px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 575px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 17px;
    padding: 28px 20px;
  }
}
.tp-custom-accordion .accordion-buttons::after {
  position: absolute;
  content: "\f063";
  font-family: "Font Awesome 5 Pro";
  background-image: none;
  top: 40px;
  right: 45px;
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.05em;
  color: #121212;
}
@media (max-width: 575px) {
  .tp-custom-accordion .accordion-buttons::after {
    top: 30px;
    right: 18px;
  }
}
.tp-custom-accordion .accordion-buttons.collapsed {
  background-color: var(--tp-common-white);
}
.tp-custom-accordion .accordion-buttons.collapsed::after {
  color: #B8BCC8;
  content: "\f062";
}
.tp-custom-accordion .collapsed {
  border-radius: 10px 10px 10px 10px;
}
.tp-custom-accordion .accordion-body {
  padding: 20px 45px 37px;
  position: relative;
  z-index: 1;
  border-radius: 0 0 10px 10px;
  font-family: "Outfit";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
@media (max-width: 575px) {
  .tp-custom-accordion .accordion-body {
    padding: 20px 25px;
  }
}
.tp-custom-accordion .accordion-body::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ECEDF3;
  top: 0;
  left: 45px;
  right: 45px;
}

.faq-accordion-border .accordion-items {
  background-color: #FFF;
  border: 1px solid #F5F5F5;
  border-radius: 10px;
}

/*----------------------------------------*/
/*  00. FOOTER CSS START
/*----------------------------------------*/
.tpborder-bottom {
  border-bottom: 1px solid #2D2D2D;
}

@media (max-width: 575px) {
  .footer-social-area {
    padding-top: 50px;
  }
}

@media (max-width: 575px) {
  .tpfooter__social {
    text-align: left;
  }
}
.tpfooter__social a {
  color: #FFFFFF;
  border: 2px solid rgba(247, 247, 247, 0.15);
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  line-height: 46px;
  font-size: 14px;
  margin-right: 8px;
  transition: 0.3s;
}
.tpfooter__social a:hover {
  background: #eb9309;
  color: #fff;
}
@media (max-width: 575px) {
  .tpfooter__social a {
    margin-bottom: 10px;
  }
}

.tpfooter-widget__title {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 28px;
}
.tpfooter-widget li {
  list-style: none;
}
.tpfooter-widget a {
  font-weight: 400;
  font-size: 15px;
  line-height: 31px;
  color: #969AAB;
}
.tpfooter-widget a:hover {
  color: #fff;
}

.tpfooter-widget.tp-footer-col-2 {
  margin-left: -58px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .tpfooter-widget.tp-footer-col-2 {
    margin-left: 0;
  }
}
.tpfooter-widget.tp-footer-col-3 {
  margin-left: -115px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpfooter-widget.tp-footer-col-3 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpfooter-widget.tp-footer-col-3 {
    margin-top: 50px;
  }
}
.tpfooter-widget.tp-footer-col-4 {
  margin-left: -70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tpfooter-widget.tp-footer-col-4 {
    margin-left: 0;
    margin-top: 50px;
  }
}

.tpfooter-subscribe input {
  height: 55px;
  width: 100%;
  background: #1E1E1E;
  border: 0;
  padding: 0 25px;
  padding-right: 170px;
  color: #fff;
  border-radius: 6px;
}
.tpfooter-subscribe input::placeholder {
  color: #fff;
}
.tpfooter-subscribe button {
  position: absolute;
  background: #eb9309;
  color: #fff;
  right: 0;
  top: 0;
  height: 100%;
  padding: 20px 40px;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 6px 6px 0px;
}
.tpfooter-subscribe button:hover {
  background: #fff;
  color: #121212;
}

.tp-check-box label {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #969AAB;
}
.tp-check-box input {
  border: 0;
  background: #484848;
  height: 14px;
  width: 14px;
}
.tp-check-box .form-check-input {
  margin-top: 7px;
  box-shadow: none;
  border-radius: 3px;
}
.tp-check-box .form-check-input:checked {
  background-color: #eb9309;
  box-shadow: none;
}

.tp-copyright p {
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  margin: 0;
  color: #FFFFFF;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-backtop {
    margin-top: 30px;
  }
}
.tp-backtop span {
  margin-right: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.tp-backtop i {
  width: 42px;
  height: 42px;
  display: inline-block;
  color: #eb9309;
  border-bottom: 2px solid #eb9309;
  border-radius: 100%;
  line-height: 2;
  text-align: center;
  font-size: 20px;
  border-left: 2px solid;
}

/*# sourceMappingURL=main.css.map */