/*
Author       : Theme-Family
Template Name: Ghaniyy - Charity & Donation One Page Template
Version      : 1.0.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (body, link color, SECTION TITLE, PRELOADER, BTN, SECTION PADDING, SCROLL etc)
    02. START BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
		--START HOME DEFALT
		--START SLIDER DESIGN
    04.	START DONATION FORM DESIGN
    05.	START ABOUT DESIGN
		--START VIDEO DESIGN
    06. START SERVICE DESIGN	
	07.	START CAUSES DESIGN
		--START JOIN DESIGN
		--START CHOOSE DESIGN
	08.	START EVENT DESIGN 
		--START HIRE DESIGN
	09.	START TEAM DESIGN
	10.	START COUNTER DESIGN
	11.	START TESTIMONIAL DESIGN
	12.	START SPECIAL DESIGN  
	13.	START BLOG DESIGN
	14.	START COMPANY BRAND LOGO DESIGN  
	15.	START CONTACT DESIGN 
	16. START FOOTER DESIGN(START MAP DESIGN)
	
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/

/*my customs */

.atf-themes-btn2 {
  color: var(--thm-white);
  background-color: var(--thm-color);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding: 10px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
  border: none;
  opacity: 1;
  display: inline-block;
}

html {
  overflow-x: hidden;
  height: 100%;
}
body {
  font-family: var(--thm-font);
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: var(--thm-p);
}
:root {
  --thm-font: "Poppins", sans-serif;
  --thm-font2: "Courgette", cursive;
  --thm-base: rgb(50, 50, 50);
  --thm-line: linear-gradient(to bottom, #ff416c, #ff4b2b);
  --thm-color: #f48240;
  --thm-color1: #f8aca0;
  --thm-black: #232323;
  --thm-black1: #333333;
  --thm-white: #ffffff;
  --thm-ase: #afb2bf;
  --thm-gray: #8e8e8e;
  --thm-f6: #f1f8ff;
  --thm-fb: #f6f6f6;
  --thm-f3: #f3f3f3;
  --thm-p: #6b6f92;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--thm-font);
  color: var(--thm-black);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h2 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0px;
  font-weight: 400;
}
h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0px;
  font-weight: 400;
}
h4 {
  font-size: 20px;
  line-height: 27px;
}

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

h6 {
  font-size: 14px;
  line-height: 22px;
}

p:last-child {
  margin-bottom: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
}
p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--thm-p);
  line-height: 28px;
  font-family: var(--thm-font);
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  text-decoration: none;
  transition: all 0.2s ease 0s;
}
a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}
a:hover {
  color: inherit;
}
a {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:active {
  text-decoration: none;
  outline: 0;
}
*,
::before,
::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
span {
  letter-spacing: 0;
}
a,
button,
input {
  outline: medium none;
  color: inherit;
}
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
button:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 270px;
  z-index: 9;
  overflow: hidden;
}
.form-group {
  margin-bottom: 20px;
}
button,
input,
textarea {
  color: var(--thm-black);
}
button,
input,
textarea:focus {
  outline: none;
}
.atf-color-ase {
  color: var(--thm-ase) !important;
}
/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/
.atf-preloader {
  background: var(--thm-white);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.atf-status-mes {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 8px solid var(--thm-color);
  border-right: 8px solid var(--thm-color);
  border-bottom: 8px solid var(--thm-color);
  border-left: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
  animation: spinner 700ms infinite linear;
  z-index: 10000;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*END PRELOADER DESIGN*/

/*START SECTION PADDING DESIGN*/

.atf-section-padding {
  padding: 90px 0;
}

/*START SECTION TITLE DESIGN*/

.atf-section-title {
  margin-bottom: 50px;
}
.atf-section-title h5 {
  color: var(--thm-white);
  line-height: 25px;
  margin: 0px 0 5px;
  text-transform: capitalize;
  font-family: var(--thm-font2);
  letter-spacing: 1px;
  font-size: 18px;
  background: var(--thm-color);
  display: inline-block;
  padding: 4px 15px;
  border-radius: 8px;
  font-weight: 400;
}
.atf-section-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 1.3;
  color: var(--thm-black);
  text-transform: capitalize;
  font-family: var(--thm-font);
  margin: 0px 0 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.atf-section-title p {
  font-size: 14px;
  font-family: var(--thm-font);
  color: var(--thm-p);
  font-weight: 400;
  line-height: 28px;
  margin-top: 8px;
}
.atf-section-title .atf-sec_icon {
  position: relative;
  display: inline-block;
}
.atf-section-title .atf-sec_icon:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: var(--thm-color);
  top: 16px;
  left: -56px;
}
.atf-section-title .atf-sec_icon:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: var(--thm-color);
  top: 16px;
  right: -56px;
}
.atf-section-title .atf-sec_icon .atf-sec_radiu i {
  margin-top: 10px;
  color: var(--thm-color);
}

@media only screen and (max-width: 480px) {
  .atf-section-title h2 {
    font-size: 25px;
  }
}
/*END SECTION TITLE DESIGN*/

/*START SCROLL TO TOP*/

.atf-scroll-top {
  position: fixed;
  right: 105%;
  bottom: 70px;
  z-index: 99;
  cursor: pointer;
  transition: 1.5s ease;
  border: none;
  background: transparent;
}

.atf-scrollup-icon {
  font-size: 25px;
  width: 50px;
  height: 50px;
  background: var(--thm-color);
  line-height: 50px;
  color: var(--thm-white);
  border-radius: 50%;
  box-shadow: 0px 0 15px rgba(242, 233, 233, 0.6);
}
.atf-scrollup-icon:hover {
  background: var(--thm-black);
  transition: 0.3s;
}
.atf-scroll-top.open {
  right: 30px;
}

/*END SCROLL TO TOP*/

/* START BTN STYLE */
.atf-themes-btn {
  color: var(--thm-white);
  background-color: var(--thm-color);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding: 0;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
  border: none;
  opacity: 1;
  display: inline-block;
}
.atf-themes-btn:hover {
  color: var(--thm-white);
}
.atf-themes-btn:before,
.atf-themes-btn:after,
.atf-themes-btn span:before,
.atf-themes-btn span:after {
  content: "";
  background: var(--thm-black);
  width: 25%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
}
.atf-themes-btn:before {
  transform: scaleY(0.2);
  transition-delay: 0.3s;
}
.atf-themes-btn:after {
  transform: scaleY(0.45);
  right: 25%;
  transition-delay: 0.2s;
}
.atf-themes-btn span:before {
  transform: scaleY(0.65);
  right: 50%;
  z-index: -1;
  transition-delay: 0.1s;
}
.atf-themes-btn span:after {
  transform: scaleY(0.8);
  right: 75%;
  z-index: -1;
}
.atf-themes-btn span {
  padding: 10px 20px;
  display: block;
  position: relative;
  z-index: 1;
}
.atf-themes-btn:hover:before,
.atf-themes-btn:hover:after,
.atf-themes-btn:hover span:before,
.atf-themes-btn:hover span:after {
  opacity: 1;
  transform: scaleY(1);
}
.atf-themes-btn.orange:before,
.atf-themes-btn.orange:after,
.atf-themes-btn.orange span:before,
.atf-themes-btn.orange span:after {
  background: linear-gradient(to bottom, #f7b42c, #fc575e);
}
.atf-themes-btn.blue:before,
.atf-themes-btn.blue:after,
.atf-themes-btn.blue span:before,
.atf-themes-btn.blue span:after {
  background: linear-gradient(to bottom, #7f53ac, #647dee);
}
.atf-themes-btn.green:before,
.atf-themes-btn.green:after,
.atf-themes-btn.green span:before,
.atf-themes-btn.green span:after {
  background: linear-gradient(to bottom, #3bb78f, #0bab64);
}
@media only screen and (max-width: 767px) {
  .atf-themes-btn {
    margin-bottom: 20px;
  }
}
/* END BTN STYLE */

/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 02.START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.atf-top-header {
  position: relative;
  z-index: 1;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
.atf-top-header::after {
  background: var(--thm-black) none repeat scroll 0 0;
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: calc(28% + 0px);
  -webkit-transform: skewX(-30deg);
  transform: skewX(30deg);
  border-right: 4px solid #fff;
}
.atf-header-top-auth {
  display: inline-block;
  margin-right: 10px;
}
.atf-header-top-auth a {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}
.atf-header-top-auth a i {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  background: #fff;
  color: #6861bc;
  border-radius: 50%;
  margin-right: 10px;
}
.atf-header-top-right {
  text-align: right;
}
.atf-header-top-social {
  display: inline-block;
}
.atf-header-top-social ul li {
  display: inline-block;
  margin-left: 10px;
}
.atf-header-top-social ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}
.atf-header-top-social ul li a:hover,
.atf-header-top-auth a:hover {
  color: var(--thm-white);
}
.atf-top-header {
  background-color: var(--thm-color);
  overflow: hidden;
}
.atf-top-header .atf-top-header-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.4s ease;
}
.atf-top-header .atf-top-social {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.4s ease;
  color: var(--thm-white);
  text-align: center;
}
.atf-top-social a i:hover {
  color: var(--thm-white);
}
.atf-top-social a i {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.atf-sticky-active .atf-top-header {
  height: 0;
}
.atf-top-header-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.atf-top-header-list li {
  margin-right: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 3px;
}
.atf-top-header-list li:last-child {
  margin-right: 0;
}
.atf-top-header-list li i {
  margin-right: 10px;
}
.atf-top-header-list li a:hover {
  color: var(--thm-white);
}
.atf-site-header.atf-style1 {
  transition: all 0.4s ease;
}
.atf-site-header.atf-style1 .atf-main-header-in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 80px;
}
.atf-site-header.atf-style1.atf-sticky-active {
  background: var(--thm-base);
  color: var(--thm-white) !important;
  box-shadow: 0 0 15px rgba(244, 231, 231, 0.48);
}
.atf-nav .atf-nav-list > li > a {
  color: var(--thm-white);
}

@media screen and (max-width: 991px) {
  .atf-main-header .container {
    max-width: 100%;
  }

  .atf-top-header {
    display: none;
  }

  .atf-site-header.atf-style1 {
    background-color: var(--thm-black);
  }
}
.atf-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 14px;
}
.atf-main-header {
  position: relative;
}

@media screen and (min-width: 992px) {
  .atf-nav .atf-nav-list {
    display: flex !important;
    flex-wrap: wrap;
  }

  .atf-nav .atf-nav-list > li {
    margin-right: 25px;
    font-weight: 500;
  }
  .atf-nav .atf-nav-list > li:last-child {
    margin-right: 0;
  }
  .atf-nav .atf-nav-list > li > a {
    padding: 15px 0;
    display: inline-block;
  }
  .atf-nav .atf-nav-list > li > ul {
    left: 0;
    top: calc(100% + 15px);
  }
  .atf-nav .atf-nav-list > li > ul:before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1px solid #eaeaea;
    transform: rotate(45deg);
    background-color: #fff;
    border-right: none;
    border-bottom: none;
    top: -6px;
    left: 16px;
  }
  .atf-nav .atf-nav-list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .atf-nav .atf-nav-list li {
    position: relative;
  }
  .atf-nav .atf-nav-list li a.active {
    color: var(--thm-white);
  }
  .atf-nav .atf-nav-list ul {
    width: 200px;
    background-color: #fff;
    position: absolute;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: all 0.1s ease;
  }
  .atf-nav .atf-nav-list ul li:hover ul {
    top: 0px;
  }
  .atf-nav .atf-nav-list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .atf-nav .atf-nav-list ul a {
    font-size: calc(100% - 1px);
    display: block;
    line-height: 1.6em;
    padding: 9px 20px;
    color: var(--thm-black);
  }
  .atf-nav .atf-nav-list ul a:hover {
    background-color: var(--thm-color);
    color: var(--thm-white);
  }
  .atf-nav .atf-nav-list ul ul {
    top: 15px;
    left: 100%;
  }
  .atf-menu-toggle,
  .atf-menu-dropdown-toggle {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .atf-menu-dropdown-toggle {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 20px;
    top: 5px;
  }
  .atf-menu-dropdown-toggle:before,
  .atf-menu-dropdown-toggle:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: var(--thm-white);
    transition: all 0.3s ease;
  }
  .atf-menu-dropdown-toggle:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .atf-menu-dropdown-toggle.active:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .atf-nav .atf-nav-list {
    position: absolute;
    right: 0;
    background-color: var(--thm-black);
    padding: 10px 0;
    display: none;
    top: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 0px solid #eaeaea;
    overflow: auto;
    max-height: calc(100vh - 80px);
    width: 50%;
  }
  .atf-nav .atf-nav-list ul {
    padding-left: 15px;
    display: none;
  }
  .atf-nav .atf-nav-list a {
    display: block;
    padding: 8px 20px;
    color: var(--thm-white);
  }
  .atf-nav .menu-item-has-children {
    position: relative;
  }

  /*Mobile Menu Button*/

  .atf-menu-toggle {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 27px;
    margin: 15px 0px 15px 0px;
    cursor: pointer;
  }
  .atf-menu-toggle span,
  .atf-menu-toggle span:before,
  .atf-menu-toggle span:after {
    width: 100%;
    height: 2px;
    background-color: var(--thm-white);
    display: block;
  }
  .atf-menu-toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .atf-menu-toggle span:before {
    content: "";
    position: absolute;
    margin-top: -8px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .atf-menu-toggle span:after {
    content: "";
    position: absolute;
    margin-top: 8px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .atf-toggle-active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .atf-toggle-active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .atf-toggle-active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
}
.atf-sticky-header {
  position: fixed;
  z-index: 200;
  width: 100%;
  top: 0;
  left: 0;
}

/*
* ----------------------------------------------------------------------------------------
* 02. END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-home {
  height: 750px;
}
.atf-home-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.atf-single-text {
  padding-top: 250px;
}
.atf-single-text h3 {
  color: var(--thm-white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.atf-single-text h1 {
  color: var(--thm-white);
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.atf-single-text h1 span {
  font-size: 20px;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: 0;
}
.slider-active .owl-nav .owl-next {
  border-radius: 0;
}
.atf-single-text p {
  color: var(--thm-white);
  font-size: 18px;
  margin-bottom: 30px;
}
.owl-theme .owl-nav {
  margin-top: 0 !important;
}
.slider-active .owl-nav .owl-next,
.slider-active .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: var(--thm-white);
  opacity: 1;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
  width: 60px;
  height: 60px;
  line-height: 50px;
  background: rgba(237, 237, 237, 0.1);
  border-radius: 0;
  text-align: center;
}
.slider-active .owl-nav .owl-prev {
  left: -5px;
}
.slider-active .owl-nav .owl-next {
  right: -5px;
}
.slider-active .owl-nav .owl-next:hover,
.slider-active .owl-nav .owl-prev:hover {
  border-color: var(--thm-color);
  background: var(--thm-color);
  color: var(--thm-white);
}
.slider-active.owl-carousel .atf-single-home h3 {
  -webkit-animation: 1.5s 0.3s fadeInUp both;
  animation: 1.5s 0.3s fadeInUp both;
}
.slider-active.owl-carousel .atf-single-text h1 {
  -webkit-animation: 1.5s 0.3s fadeInUp both;
  animation: 1.5s 0.3s fadeInUp both;
}

.slider-active.owl-carousel .atf-single-text p {
  -webkit-animation: 1.5s 0.7s fadeInUp both;
  animation: 1.5s 0.7s fadeInUp both;
}
.slider-active.owl-carousel .atf-hero-btn {
  -webkit-animation: 1.5s 1s fadeInUp both;
  animation: 1.5s 1s fadeInUp both;
}

@media only screen and (max-width: 480px) {
  .atf-single-text h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .atf-single-text p {
    color: var(--thm-white);
    margin: auto;
    width: 100%;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 820px) {
  .slider-active .owl-nav .owl-next,
  .slider-active .owl-nav .owl-prev {
    display: none !important;
  }
}

/* START HOME DEFALT */
#home {
  position: relative;
  z-index: 1;
}
.atf-home2-area {
  background-color: var(--thm-f6);
  height: 750px;
  overflow: hidden;
  z-index: 1;
}
.atf-home2-area::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.7;
  z-index: -1;
}
.atf-align-items-details {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.atf-home2-area .atf-content-details h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
  background: var(--thm-base);
  color: var(--thm-white);
  display: inline-block;
  padding: 0px 18px;
  border-radius: 8px;
}
.atf-single-details {
  z-index: 1;
}
.atf-home2-area .atf-single-details h2 {
  color: var(--thm-white);
  text-transform: capitalize;
  font-weight: 700;
  font-family: var(--thm-font);
  font-size: 50px;
  line-height: 1.2;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.atf-home2-area .atf-single-details p {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--thm-white);
  margin: 20px 0 40px;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .atf-home2-area .atf-single-details h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .atf-home2-area .atf-single-details h2 {
    font-size: 30px;
    line-height: 43px;
  }
  .atf-home2-area .right-col .home-image-box {
    margin-top: 30px;
  }
  .atf-width-area {
    height: 1000px;
  }
  .atf-choose-inner {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .atf-width-area {
    height: 850px;
  }
  .navbar-nav .menu-nav a::after,
  .navbar-nav .menu-nav a::before {
    display: none;
  }
  .atf-home2-area .atf-content-details h3 {
    font-size: 20px;
  }
  .atf-home2-area .atf_home_img {
    margin-top: 30px;
  }
  .atf-home2-area .atf-single-details h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 576px) {
  .atf-home2-area .atf-themes-btn {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 320px) and (min-width: 0px) {
  .atf-home2-area .atf-themes-btn {
    margin-bottom: 15px;
  }
  .atf-home2-area .atf-content-details h3 {
    font-size: 17px;
  }
}
/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04. START DONATION FORM DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-donation-form-area {
  background: var(--thm-black1);
}
.atf-donation-form-item.atf-course-content {
  background: var(--thm-base);
  text-align: center;
}
.col-lg-1.col-md-6.col-12.atf-course-search {
  background: var(--thm-base);
}
.atf-donation-form-item i {
  font-size: 50px;
  color: var(--thm-white);
}
.atf-donation-form-item .form-control {
  height: calc(1.5em + 0.75rem + 23px);
  border-radius: 0;
}
.atf-donation-form-item label {
  margin: 12px 0;
  font-size: 18px;
  color: var(--thm-white);
  font-weight: 700;
  display: block;
}
.atf-donation-form h3 {
  margin-bottom: 40px;
  font-size: 40px;
  color: var(--thm-white);
}
.atf-donation-form-box .nice-select {
  margin: 0;
  height: 60px;
  line-height: 58px;
  padding-right: 40px;
  padding-left: 20px;
  border-radius: 0;
  min-width: 200px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--thm-font);
  width: 100%;
}
::-moz-range-track {
  background: transparent;
  border: 0;
}
.atf-donation-form-item .atf-themes-btn {
  width: 100%;
  margin-top: 13px;
}
.atf-donation-form-item .atf-themes-btn span {
  padding: 20px 20px;
}
.atf-btn-wrapper.text-center {
  margin-top: 36px;
}
/*
* ----------------------------------------------------------------------------------------
* 04.END DONATION FORM DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04.START ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
#about .atf-section-title {
  margin-bottom: 15px;
}
#about .atf-about-content p {
  font-size: 14px;
  line-height: 30px;
}
.atf-single-about {
  padding: 10px 0px;
  border-radius: 0px;
}
.atf-about-icon {
  display: inline-block;
  transition: 0.5s ease;
}
.atf-about-icon i {
  color: var(--thm-color);
  font-size: 45px;
  text-align: center;
  padding-top: 9px;
}
.atf-about-text h3 {
  padding: 0px 0 5px 0;
  color: var(--thm-black);
  font-weight: 700;
}
.atf-about-text p {
  color: var(--thm-p);
}
.atf-about-inner {
  margin-top: 20px;
}
.atf-about-inner li {
  line-height: 38px;
  font-weight: 600;
  color: var(--thm-color);
  font-size: 18px;
}
.atf-about-autor {
  margin-top: 30px;
  padding-left: 40px;
  border-left: 8px solid var(--thm-color);
}
.atf-about-autor img {
  border-radius: 200px/50px;
}
#about .atf-about-btn {
  margin-top: 30px;
}
.atf-about-btn .atf-themes-btn {
  color: var(--thm-black);
}
.atf-about-btn .atf-themes-btn:hover {
  color: var(--thm-white);
}
#about .atf-hero-btn {
  margin-top: 30px;
}
/*
* ----------------------------------------------------------------------------------------
* START VIDEO DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-singl-video {
  position: relative;
}
#video .atf-singl-video .atf-video-img {
  position: relative;
  display: block;
}
#video .atf-singl-video {
  position: relative;
}
.atf-singl-video .waves-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.atf-singl-video .iq-video {
  display: inline-block;
  width: 70px;
  height: 70px;
  text-align: center;
  font-size: 20px;
  color: var(--thm-white);
  border-radius: 100%;
  line-height: 53px;
  z-index: 1020;
  position: relative;
  border: 8px solid var(--thm-white);
}
.atf-singl-video .iq-video i {
  margin-left: 3px;
  color: var(--thm-white);
}
.atf-singl-video .iq-waves {
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: 2;
}
.atf-singl-video .iq-waves .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.atf-singl-video .iq-waves .waves {
  position: absolute;
  width: 130px;
  height: 130px;
  background: var(--thm-color);
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
.atf-singl-video .iq-waves .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.atf-singl-video .iq-waves .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.atf-singl-video .iq-waves .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
/*
* ----------------------------------------------------------------------------------------
* END VIDEO DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04.END ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 05.START SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/

#service {
  position: relative;
  background: var(--thm-fb);
}
.serviceBox {
  color: #999;
  background: linear-gradient(transparent 65%);
  font-family: var(--thm-font);
  text-align: center;
  padding: 0 15px 15px;
  border-radius: 0 0 150px 150px;
  box-shadow: 0 11px 11px -11px rgba(0, 0, 0, 0.2);
}
.serviceBox .service-icon {
  color: var(--thm-white);
  background: var(--thm-base);
  font-size: 36px;
  line-height: 68px;
  height: 80px;
  width: 85px;
  margin: 0 auto 25px;
  border-radius: 0 0 50px 50px;
}
.serviceBox .service-content {
  background: var(--thm-white);
  padding: 0 20px 20px;
  border-top: 15px solid var(--thm-base);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.serviceBox .title {
  color: var(--thm-black);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 7px;
}
.serviceBox .description {
  font-size: 14px;
  margin: 0 0 15px;
}
.serviceBox .read-more {
  color: var(--thm-color);
  font-size: 14px;
  transition: all 0.3s ease 0s;
}
.serviceBox .read-more:hover {
  color: var(--thm-black);
  border-bottom: 1px solid var(--thm-black);
}
@media only screen and (max-width: 991px) {
  .serviceBox {
    margin: 0 0 30px;
  }
  .serviceBox .service-content {
    padding: 0 35px 20px;
  }
}
@media only screen and (max-width: 359px) {
  .serviceBox .service-content {
    padding: 0 20px 20px;
  }
}
/*
* ----------------------------------------------------------------------------------------
* 06. END SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04. START COURSE DESIGN
* ----------------------------------------------------------------------------------------
*/
#causes {
  font-family: var(--thm-font);
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--thm-white);
  background: var(--thm-color);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none !important;
  color: var(--thm-white);
  background: var(--thm-color);
}
.nav-fill .nav-item {
  font-size: 20px;
  font-family: var(--thm-font);
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 5px;
}
.nav-tabs .nav-link {
  border: none !important;
  border-radius: 30px;
}
.nav-tabs {
  border-bottom: none !important;
  margin-bottom: 25px;
  color: var(--thm-black);
  border-radius: 30px;
}
.atf-causes-slide {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.atf-admin-area {
  padding: 0 0 35px;
}
.aft-autor-title {
  padding-top: 25px;
}
.atf-admin-img img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 20px;
}
.atf-causes-slide .atf-causes-img {
  overflow: hidden;
}
.atf-causes-slide .atf-causes-img img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  transform: scale(1, 1);
  transition: all 0.5s ease-in-out 0s;
}
.atf-causes-slide:hover .atf-causes-img img {
  transform: scale(1.2, 1.2);
  opacity: 1;
}
.atf-causes-slide .atf-causes-content {
  padding: 20px 20px 20px 30px;
  position: relative;
  background: var(--thm-white);
}
.atf-causes-slide .atf-causes-date {
  min-width: 28px;
  min-height: 28px;
  line-height: 28px;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 60px;
}
.atf-causes-slide .month {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--thm-white);
  padding: 0 10px;
  background: var(--thm-base);
  text-transform: uppercase;
}
.atf-causes-slide .date {
  color: var(--thm-white);
  font-size: 14px;
}
.atf-causes-slide .atf-causes-title {
  margin: 10px 0 10px;
}
.atf-causes-slide .atf-causes-title a {
  color: var(--thm-black);
  font-size: 22px;
  text-transform: capitalize;
  transition: all 0.5s ease 0s;
  line-height: 30px;
  font-weight: 600;
}
.atf-causes-slide .atf-causes-title a:hover {
  color: var(--thm-color);
  text-decoration: underline;
}
.atf-causes-slide .atf-causes-description {
  font-size: 15px;
  line-height: 30px;
}
.atf-causes-slide .atf-causes-bar {
  padding: 20px 0 20px;
  list-style: none;
  text-align: center;
  border-top: 1px solid #eee;
  background: var(--thm-white);
}
.atf-causes-slide .atf-causes-bar li {
  display: inline-block;
  margin: 2px 7px 0 0;
  color: var(--thm-black);
  text-align: left;
  padding: 10px 20px;
  border-radius: 5px;
}
.atf-causes-slide .atf-causes-bar li a {
  text-transform: capitalize;
  font-size: 15px;
  color: var(--thm-black);
  transition: 0.2s ease;
  font-weight: 500;
}
.atf-causes-slide .atf-causes-bar li a:hover {
  text-decoration: none;
  color: var(--thm-black);
}
.atf-causes-slide .atf-causes-bar li i {
  color: var(--thm-color);
  margin-right: 5px;
}
.atf-causes-slide .atf-causes-bar li span {
  font-size: 16px;
  color: var(--thm-color);
  font-weight: 600;
  line-height: 1.9;
}
.atf-causes-slide .progress {
  position: absolute;
  bottom: 0;
  left: 0;
}
.owl-carousel .owl-item .atf-admin-img img {
  width: 80px;
}
.progress {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid var(--thm-white);
  position: absolute;
  top: 0;
  left: 0;
}
.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress .progress-left {
  left: 0;
}
.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}
.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress .progress-right {
  right: 0;
}
.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 2.8s linear forwards;
}
.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: var(--thm-black);
  font-size: 16px;
  color: var(--thm-white);
  line-height: 60px;
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 8%;
}
.progress.blue .progress-bar {
  border-color: var(--thm-color);
}
.progress.blue .progress-left .progress-bar {
  animation: loading-2 2.5s linear forwards 2.8s;
}
@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}
@media only screen and (max-width: 991px) {
  .progress {
    margin-bottom: 20px;
  }
}
/*
* ----------------------------------------------------------------------------------------
*	START JOIN DESIGN
* ----------------------------------------------------------------------------------------
*/

#join {
  background: var(--thm-f6);
}
#join .atf-section-title {
  margin-bottom: 5px;
}
.atf-join-btn {
  margin-top: 30px;
}
.atf-join-content-inner i {
  color: var(--thm-color);
  margin-right: 7px;
}
#join .atf-main-testimonials .owl-controls {
  position: absolute;
  right: 15px;
  bottom: 34px;
}
#join .atf-main-testimonials.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 8px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid var(--thm-white);
  transition: 0.3s all ease-in-out;
  margin-top: 30px;
}
#join .atf-main-testimonials.owl-theme .owl-dots .owl-dot.active span,
.atf-main-testimonials.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--thm-color);
  width: 20px;
  transition: 0.3s all ease-in-out;
  border: 1px solid var(--thm-color);
}
.atf-join-content-info {
  position: relative;
}
.atf-join-content-inner {
  position: absolute;
  bottom: -5%;
  left: 30%;
  transform: translate(-50%, -50px);
  color: var(--thm-white);
  font-size: 25px;
}
.join-image-box {
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 5px;
}
.join-image-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 75%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 75%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 75%
  );
  transition: 0.5s;
}
/*
* ----------------------------------------------------------------------------------------
* END JOIN DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 06. END CAUSES DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* START CHOOSE DESIGN
* ----------------------------------------------------------------------------------------
*/
#choose .atf-section-title {
  margin-bottom: 5px;
}
.atf-single-feature {
  position: relative;
}
.atf-feature-content {
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  margin: 15px 0;
}
.atf-feature-number {
  font-size: 50px;
  font-weight: 700;
  -webkit-text-fill-color: #793a3a00;
  -webkit-text-stroke-color: var(--thm-color);
  -webkit-text-stroke-width: 1px;
}
.atf-feature-content:hover .atf-feature-number {
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.atf-feature-text h3 {
  padding: 0px 0 10px 0;
  color: var(--thm-black);
  font-weight: 600;
}
.atf-feature-content:hover h3 {
  color: var(--thm-color);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.atf-single-feature {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 5px 25px 20px;
}
.atf-feature-icon {
  transition: 0.5s ease;
}
.atf-feature-icon img {
  color: var(--thm-color);
  border-radius: 30% 70% 59% 41%/30% 38% 62% 70%;
  border: 1px dashed;
  padding: 5px;
}
.atf-join-btn {
  margin-top: 30px;
}
.atf-about-content-inner i {
  color: var(--thm-color);
  margin-right: 7px;
}
#choose .atf-main-testimonials .owl-controls {
  position: absolute;
  right: 15px;
  bottom: 34px;
}
#choose .atf-main-testimonials.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 8px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid var(--thm-white);
  transition: 0.3s all ease-in-out;
  margin-top: 30px;
}
#choose .atf-main-testimonials.owl-theme .owl-dots .owl-dot.active span,
.atf-main-testimonials.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--thm-color);
  width: 20px;
  transition: 0.3s all ease-in-out;
  border: 1px solid var(--thm-color);
}
.atf-about-content-info {
  position: relative;
}
.atf-about-content-inner {
  position: absolute;
  bottom: -5%;
  left: 30%;
  transform: translate(-50%, -50px);
  color: var(--thm-white);
  font-size: 25px;
}
.home-image-box {
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 5px;
}
.home-image-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 75%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 75%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 75%
  );
  transition: 0.5s;
}
/*
* ----------------------------------------------------------------------------------------
* END CHOOSE DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 08. START EVENT DESIGN
* ----------------------------------------------------------------------------------------
*/
#event {
  background: var(--thm-fb);
}
.atf-events-area {
  background: var(--thm-white);
  padding: 15px 15px;
}
.atf-event-content .atf-event-title {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  font-weight: 600;
}

.atf-event-content .atf-event-title:hover {
  color: var(--thm-color);
}
.atf-event-date {
  background: var(--thm-color);
  color: var(--thm-white);
  padding: 22px 0px;
  border-radius: 8px;
}
.atf-event-date .date {
  font-size: 55px;
  font-weight: 600;
  line-height: 1;
  -webkit-text-fill-color: #793a3a00;
  -webkit-text-stroke-color: var(--thm-white);
  -webkit-text-stroke-width: 1px;
}
.atf-event-content .atf-event-bar > li {
  display: inline-block;
  padding-right: 30px;
  float: left;
}
.atf-event-content .atf-event-bar .atf-date i,
.atf-event-content .atf-event-bar .atf-author i,
.atf-event-content .atf-event-bar .atf-comment i {
  margin-right: 8px;
  color: var(--thm-color);
}
.atf-event-bar {
  margin-top: 10px;
}
.atf-events-area {
  margin: 15px 0;
}
/**************************************
 * START HIRE DESIGN
 *************************************/
.atf-hire-wrapper {
  background: var(--thm-base);
  border-radius: 6px;
  padding: 25px;
}
.atf-hire-content h3 {
  color: var(--thm-white);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}
.atf-hire-content {
  text-align: left;
  display: inline-block;
}
.atf-hire-content p {
  color: var(--thm-white);
}
/**************************************
 * END HIRE DESIGN
 *************************************/
/*
* ----------------------------------------------------------------------------------------
* 08. START EVENT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 09. START TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-team {
  margin-bottom: 30px;
  box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  background: #fff none repeat scroll 0 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  padding: 15px;
}
.atf-single-team img {
  width: 100%;
}

.atf-team-pic {
  position: relative;
  overflow: hidden;
}

.atf-team-pic img {
  width: 100%;
}

.atf-team-pic .atf-team-prof {
  position: absolute;
  right: 0px;
  top: 20px;
  z-index: 111;
}

.atf-team-pic .atf-team-prof .atf-team_social li + li {
  margin-top: 10px;
  display: block;
}

.atf-team-pic .atf-team-prof .atf-team_social li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #6861bc;
  border-radius: 50%;
  color: var(--thm-white);
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.atf-team-pic .atf-team-prof .atf-team_social li a:hover {
  background-color: #fe9347;
}

.atf-team-pic .atf-team-prof .atf-team_social li:nth-child(1) {
  position: absolute;
  top: 20px;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-transition: transform 500ms;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.atf-team-pic .atf-team-prof .atf-team_social li:nth-child(2) {
  position: absolute;
  top: 60px;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-transition: transform 500ms;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.atf-team-pic .atf-team-prof .atf-team_social li:nth-child(3) {
  position: absolute;
  top: 110px;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-transition: transform 500ms;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.atf-team-pic .atf-team-prof .atf-team_social li:nth-child(4) {
  position: absolute;
  top: 160px;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-transition: transform 500ms;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.atf-single-team:hover
  .atf-team-pic
  .atf-team-prof
  .atf-team_social
  li:nth-child(1) {
  -webkit-transform: translateX(-70px);
  transform: translateX(-70px);
}

.atf-single-team:hover
  .atf-team-pic
  .atf-team-prof
  .atf-team_social
  li:nth-child(2) {
  -webkit-transform: translateX(-70px);
  transform: translateX(-70px);
}

.atf-single-team:hover
  .atf-team-pic
  .atf-team-prof
  .atf-team_social
  li:nth-child(3) {
  -webkit-transform: translateX(-70px);
  transform: translateX(-70px);
}

.atf-single-team:hover
  .atf-team-pic
  .atf-team-prof
  .atf-team_social
  li:nth-child(4) {
  -webkit-transform: translateX(-70px);
  transform: translateX(-70px);
}

.atf-team-pic {
  position: relative;
}

.atf-team-pic:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000 none repeat scroll 0 0;
  opacity: 0.1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
  border-radius: 0px;
}

.atf-team-title {
  text-align: center;
  padding: 20px 15px;
}

.atf-team-title h3 {
  color: #081528;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
  margin-top: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.atf-team-title p {
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.atf-team-title h3 a {
  color: var(--thm-black);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.atf-team-title h3 a:hover {
  color: var(--thm-color);
}

/*
* ----------------------------------------------------------------------------------------
* 09. END TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* --------------------------------------
* 10. START COUNTER DESIGN
* --------------------------------------
*/
.atf-counter-area {
  background: var(--thm-f6);
}
.atf-counter-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--thm-color);
  -webkit-text-fill-color: #793a3a00;
  -webkit-text-stroke-color: var(--thm-color);
  -webkit-text-stroke-width: 1px;
  line-height: 1;
}
.atf-main-counter {
  margin: 15px 0;
}
.atf-counter-content h3 {
  font-weight: 500;
  font-size: 18px;
  color: var(--thm-black);
  overflow: hidden;
  padding-left: 4px;
}
.atf-counter-icon {
  float: left;
}
.atf-counter-icon i {
  font-size: 50px;
  color: var(--thm-color);
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
}
.atf-counter {
  background: var(--thm-white);
  padding: 25px 20px;
}
/*
* ----------------------------------------------------------------------------------------
* 10. END COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 11.START TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-testimonial {
  background-color: #f3f3f3;
  border-radius: 5px;
  padding: 30px;
  margin: 0 15px;
}
.atf-testimonial .atf-testimonial-pic {
  width: 90px;
  height: 90px;
  margin: 10px 30px 15px 0;
  float: left;
}
.atf-testimonial .atf-testimonial-pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.atf-testimonial .atf-testimonial-title {
  color: var(--thm-black);
  font-size: 20px;
  margin-top: 5px;
  font-weight: 400;
  text-transform: capitalize;
}
.atf-testimonial .atf-testimonial-title small {
  color: var(--thm-color);
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
}
.atf-testimonial .atf-testimonial-review p {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .testimonial-parallax h2 {
    margin-bottom: 40px;
  }
  .testimonial {
    margin: 0;
  }
}
/* owl theme */
.atf-main-testimonials.owl-theme .owl-nav.disabled + .owl-dots {
  margin-left: 50px;
  line-height: 0.7;
}
.atf-main-testimonials .owl-controls {
  margin-left: -25px;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 5px;
  margin: 0 8px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid var(--thm-black);
  transition: 0.3s all ease-in-out;
  margin-top: 30px;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot.active span,
.atf-main-testimonials.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--thm-color);
  width: 35px;
  transition: 0.3s all ease-in-out;
  border: 1px solid var(--thm-color);
}
/*
* ----------------------------------------------------------------------------------------
* 11.END TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 12. START SPECIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-special-offer .atf-home-overlay {
  background: rgba(9, 33, 159, 0.46);
  height: 100%;
  width: 100%;
}
.atf-special-content.atf-section-title h4 {
  background: var(--thm-white);
  display: inline-block;
  padding: 10px 15px;
  border-radius: 7px;
  opacity: 0.9;
  border: 2px solid var(--thm-white);
}
#countdown div {
  float: left;
  margin-left: 50px;
  margin-top: 20px;
  background: var(--thm-color);
  padding: 15px 30px;
  border-radius: 7px;
  text-align: center;
  font-size: 13px;
  position: relative;
  color: var(--thm-white);
  font-weight: 400;
}
#countdown div strong {
  font-size: 30px;
  color: var(--thm-white);
  letter-spacing: 2px;
}
.atf-single-special-img img {
  width: auto;
}
/*
* ----------------------------------------------------------------------------------------
* 12. END SPECIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 13.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-post-slide {
  border: 1px solid #eee;
  padding: 22px;
  position: relative;
}
.atf-post-slide:before {
  content: "";
  border-bottom: 1px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out 0s;
}
.atf-post-slide:hover:before {
  border-top: 1px solid #3398db;
}
.atf-post-slide:hover {
  border-top: 1px solid #3398db;
}
.atf-post-slide .atf-post-img > img {
  width: 100%;
  height: auto;
}
.atf-post-slide .atf-post-title > a {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--thm-black);
  transition: all 0.3s ease-in-out 0s;
  font-weight: 700;
}
.atf-post-slide .atf-post-title > a:hover {
  text-decoration: none;
  color: var(--thm-color) !important;
}
.atf-post-slide .atf-post-bar {
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin: 18px 0;
}
.atf-post-slide .atf-post-bar > li {
  display: inline-block;
  border-right: 1px solid var(--thm-color);
  padding: 0 10px;
  float: left;
}
.atf-post-slide .atf-post-bar > li:first-child {
  padding: 0 10px 0 0;
}
.atf-post-slide .atf-post-bar > li:last-child {
  border: 0px none;
}
.atf-post-slide .atf-post-date,
.atf-post-slide .atf-author,
.atf-post-slide .atf-comment {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}
.atf-post-slide .author > a,
.atf-post-slide .comment > a,
.atf-post-slide .comment > i {
  color: var(--thm-color);
  transition: all 0.3s ease-in-out 0s;
}
.atf-post-slide .atf-author > a:hover,
.atf-post-slide .atf-comment > a:hover {
  text-decoration: none;
  color: var(--thm-color);
}
.atf-post-slide .atf-post-date > i,
.atf-post-slide .atf-author > i,
.atf-post-slide .atf-comment > i {
  margin-right: 8px;
  font-size: 15px;
  color: var(--thm-color);
}
.atf-post-slide .atf-post-description {
  line-height: 1.8;
  margin-bottom: 20px;
}

@media only screen and (max-width: 360px) {
  .atf-post-bar > li:last-child {
    margin-top: 8px;
    padding: 0;
  }
}
/*
* ----------------------------------------------------------------------------------------
* 13.END BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 14. START COMPANY BRAND LOGO DESIGN  
* ----------------------------------------------------------------------------------------
*/
#atf-brand-area {
  background: var(--thm-f6);
}
#atf-brand-area .atf-section-padding {
  margin-bottom: 40px;
}

#atf-brand-area .owl-controls {
  display: none;
}
.atf-brand-active {
  text-align: center;
}
.atf-brand-active > a {
  display: inline-block;
}
/*
* ----------------------------------------------------------------------------------------
* 14. END COMPANY BRAND LOGO DESIGN 
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 15.START CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-contact-info {
  padding: 35px;
  margin-right: 25px;
  box-shadow: 0px 4px 6px 4px rgba(75, 81, 91, 0.1);
  -webkit-box-shadow: 0px 4px 6px 4px rgba(75, 81, 91, 0.1);
}
.atf-contact-info .atf-section-title {
  margin-bottom: 30px;
}
.atf-main-contact {
  margin: 20px 0;
}
.atf-contact-details {
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.atf-contact-details i {
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--thm-white);
  text-align: center;
  margin: 0px 0 25px;
  border-radius: 10%;
  background: var(--thm-color);
  float: left;
  margin-right: 25px;
}
.atf-contact-details h4 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 16px;
}
.atf-contact-details p {
  color: var(--thm-p);
  display: block;
  overflow: hidden;
}
.atf-contact-btn .atf-themes-btn {
  color: var(--thm-white);
}
.contact h4 {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--thm-black);
  font-weight: 600;
}
.atf-contact-area .atf-section-title p {
  width: 100%;
  color: var(--thm-p);
}
.atf-contact-form .form-group input {
  height: calc(1.5em + 0.75rem + 8px);
}
.contact .form-control {
  padding: 12px 15px;
  border-radius: 1px;
  margin-bottom: 5px;
}
.contact .form-control:focus {
  border-color: var(--thm-color);
  box-shadow: none;
  outline: 0 none;
}
.contact textarea {
  border-radius: 0px;
  box-shadow: none;
  padding: 10px;
  height: 100px;
}
.contact textarea:focus {
  box-shadow: none;
  outline: 0 none;
  border-color: var(--thm-color);
}
.success {
  background: #fff none repeat scroll 0 0;
  color: #42c0d9;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}
.actions .atf-themes-btn {
  width: 100%;
}
.actions .atf-themes-btn:hover {
  transform: translateY(-0px);
}
/*
* ----------------------------------------------------------------------------------------
* 15.END CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 16.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
#footer {
  position: relative;
  z-index:-2;
}
#footer .atf-footer-top {
  padding-bottom: 80px;
}
.atf-footer-area {
  position: relative;
  z-index: 1;
}
.atf-footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--thm-black);
  /* border-radius: 50% 50% 0% 0%/100% 100% 0% 0%; */
  transform: scaleX(2.1);
  z-index: -1;
}
.atf-mailchamp-subscribe {
  position: relative;
}
.atf-mailchamp-subscribe .btn i {
  color: var(--thm-white);
}
.atf-mailchamp-subscribe .btn {
  position: absolute;
  right: 15px;
  background: transparent;
  box-shadow: none;
  top: 2px;
  background: var(--thm-black);
  border-radius: 2px;
}
.atf-mailchamp-border {
  border-bottom: 1px dashed var(--thm-white);
}
.atf-mailchamp-headding h2 {
  font-size: 33px;
  color: var(--thm-white);
  font-weight: 600;
  line-height: 38px;
}
.atf-mailchamp-subscribe form input:focus {
  box-shadow: none;
  outline: 0 none;
  border-color: var(--thm-color);
}
.atf-mailchamp-subscribe form input {
  background: var(--thm-white);
  color: var(--thm-black);
  border: 1px solid #eee;
  width: 100%;
  height: 43px;
  padding-left: 15px;
  font-size: 14px;
  border-radius: 2px;
}
.atf-mailchamp-subscribe .form-group {
  margin-bottom: 0;
}
.atf-mailchamp-subscribe .atf-themes-btn {
  position: absolute;
  right: 5px;
  padding: 12px 23px;
  top: -3px;
}
.atf-mailchamp-subscribe .atf-themes-btn:hover {
  transform: translateY(-0px);
}
.atf-mailchamp-subscribe .atf-subscription-label {
  color: var(--thm-white);
  margin-bottom: 15px;
}
.atf-footer-boottom {
  padding: 35px 0;
  background: rgba(0, 0, 0, 0.4);
}
.atf-footer-box p {
  color: var(--thm-white);
  margin-bottom: 20px;
}
.atf-footer-box strong {
  font-weight: 700;
}
.atf-footer-social-icon a i:hover {
  background: var(--thm-color);
  color: var(--thm-white);
}
.atf-footer-social-icon a i {
  font-size: 16px;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  color: var(--thm-white);
  text-align: center;
  background: var(--thm-base);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
}
.atf-footer-area .atf-footer-link {
  position: relative;
}
.atf-footer-area .atf-footer-link::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 35px;
  background: var(--thm-white);
  width: 45px;
  height: 2px;
}
.atf-footer-area .atf-footer-link::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 33px;
  background: var(--thm-white);
  width: 11px;
  height: 5px;
}
.atf-footer-link h5 {
  margin-bottom: 35px;
  font-size: 22px;
  color: var(--thm-white);
}
.atf-footer-link .atf-list-menu li a {
  color: var(--thm-f3);
  margin-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.atf-footer-link .atf-list-menu li a:hover {
  color: var(--thm-color);
  padding-left: 4px;
}
.atf-footer-link .atf-list-menu li a span {
  position: relative;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  font-weight: 500;
  font-family: var(--thm-font);
}
.atf-footer-link p {
  color: var(--thm-white);
}
.atf-footer-boottom p {
  color: var(--thm-white);
}
.atf-footer-boottom a {
  color: var(--thm-ase);
  font-weight: 700;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  text-decoration: underline;
}
.atf-footer-boottom a:hover {
  color: var(--thm-color);
  text-decoration: none;
}
.atf-payment-link img {
  margin-right: 6px;
}
.form-message {
  margin-top: 20px;
}
/*
* ----------------------------------------------------------------------------------------
* START MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
#atf-map-area iframe {
  width: 100%;
  height: 150px;
}
/*
* ----------------------------------------------------------------------------------------
* END MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 16.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/* Ensure all service boxes have the same height */
.row {
  display: flex;
  flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

.serviceBox {
  display: flex;
  flex-direction: column;
  height: 100%; /* Make all boxes equal */
}

.service-content {
  flex-grow: 1; /* Allows the content to expand evenly */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distributes content properly */
}

/* Ensure all titles have the same font size for consistency */
.serviceBox .title {
  font-size: 18px;
  font-weight: bold;
}

/* Ensure descriptions have a fixed size */
.serviceBox .description {
  flex-grow: 1; /* Makes sure descriptions adjust properly */
  font-size: 16px;
  line-height: 1.5;
}

/* Ensure the "Learn More" button stays aligned at the bottom */
.serviceBox .read-more {
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #ff6b00;
}
