/**
* Template Name: Siimple
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/free-bootstrap-landing-page/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #fd680e;
}

a:hover {
  color: #ff8f4c;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 10;
  position: relative;
  background-color: #F7F7FA;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  padding: 10px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;
  background: #f3dce9;
  transition: 0.4s;

  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.nav-menu ul li {
  width: 100%;
}

.nav-menu a,
.nav-menu a:focus {
  display: block;
  position: relative;
  color: #1e5f5d;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
  font-weight: bold;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #000;
  text-decoration: none;
}

.nav-menu .drop-down>a:after {
  content: "\ea27";
  font-family: "boxicons";
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.nav-menu .active.drop-down>a:after {
  content: "\ea27";
}

.nav-menu .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down ul {
  display: none;
  overflow: hidden;
}

.nav-menu ul.drop-down-active {
  display: block;
}

.nav-menu .drop-down li {
  padding-left: 0;

}

.nav-menu-active {
  left: 0;
}

.nav-toggle {
  position: fixed;
  left: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: transparent;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 10px 12px;
  border-radius: 2px;
}

.nav-toggle i {
  color: #fff;
  font-size: 18px;
}

.nav-toggle-active {
  left: 275px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #884922;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fd680e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #fd680e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fd7827;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fd680e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #743e1d;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(75, 40, 19, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  left: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:hover {
  padding: 10px 20px;
  font-size: 15px;
  color: #743e1d;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fd680e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fd680e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#mission {
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 9;
}

#mission .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#mission h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  line-height: 56px;
  color: #222;
}

#mission h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 24px;
}

#mission .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#mission .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#mission .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 15px;
  border-radius: 50px;
}

#mission .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading-notify 1s linear infinite;
}

@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#mission .php-email-form input {
  border-radius: 50px;
  box-shadow: none;
  font-size: 14px;
  border: 0;
  padding: 0px 15px 2px 20px;
  width: 250px;
  height: 40px;
  margin: 0 8px;
}

#mission .php-email-form button[type=submit] {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: none;
  color: #fff;
  background: #fd680e;
}

#mission .php-email-form button[type=submit]:hover {
  background: #fd8841;
}

@media (min-width: 1024px) {
  #mission {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #mission h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #mission h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #mission .php-email-form input {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fff;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 1px;
  background: #fd680e;
  bottom: 0;
  left: calc(50% - 40px);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 30px;
}

.why-us .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.why-us .card-icon {
  text-align: center;
  margin-top: -32px;
}

.why-us .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 10px;
  text-align: center;
  background-color: #fd680e;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.why-us .card-body {
  padding-top: 12px;
}

.why-us .card-title {
  font-weight: 700;
  text-align: center;
}

.why-us .card-title a {
  color: #743e1d;
}

.why-us .card-title a:hover {
  color: #fd680e;
}

.why-us .card-text {
  color: #5e5e5e;
}

.why-us .card:hover .card-icon i {
  background: #fff;
  color: #fd680e;
}

@media (max-width: 1024px) {
  .why-us {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Frequenty Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-bottom: 60px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #fd680e;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #fd680e;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: #fd680e;
  float: left;
}

.contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #5a2c10;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.contact .social-links a:hover {
  background: #fd680e;
  color: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #fd680e;
}

.contact .php-email-form button[type=submit] {
  background: #fd680e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fd8841;
}

@media (max-width: 768px) {
  .contact .social-links {
    text-align: center;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2f1708;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.abs_layer {
  position: absolute;
  top: 0;
  width: 100%;
  height: 70vh;
  background-color: #F7F7FA;
  z-index: 0;
}

.logo {
  height: 70px;
  background-color: #F7F7FA;
  position: relative;
  top: 5px;
}

.m_content {
  position: relative;
  z-index: 1;
}

.s34 {
  font-size: 34px;
}

#dogPic {
  position: relative;
}

#paw_icon {
  position: absolute;
  right: -10%;
  top: 38%;

}

.bold {
  font-weight: bold !important;
  font-size: 20px;
}

.custom_padding {
  padding-left: 0px;
  
}

.pink_bk {
  background-image: url('../img/section1.png');
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  
}


.right_shape {
  background-image: url('../img/shape_right.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bottom_shapre {
  background-image: url('../img/shape_botton.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;

}

#programs h3 {
  margin-bottom: 20px;
}

.relative {
  position: relative;
  bottom: 15%;
}

.text-left {
  text-align: right;
}

.relative-left {
  position: relative;
  left: 10%;
}

.rose_bk {
  background-color: #F4DCE8;
  height: 41vh;
  overflow-y: hidden;
}

.gray_bk {
  background-color: #F7F7FA;
  height: 41vh;
  overflow-y: hidden;

}

.light_yellow_bk {
  background-color: #FFF7F0;
  height: 41vh;
  overflow-y: hidden;
}
.cardHeight {
  height: 41vh;
  overflow-y: hidden;
}

.light_green_bk {
  background-color: #E0F5F5;
  height: 41vh;
  overflow-y: hidden;

}

.contactBlock {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.contactBlock ul {
  list-style: none;
  margin-top: 2rem;
}

.contactBlock ul li {
  float: left;
  width: auto;
  margin-right: 15px;
}

#footer {
  position: relative;
  padding: 10px !important;
  text-align: center !important;
  background-color: #F7F7FA;
}

.contact {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

#footer img {
  position: relative;
  top: 5px;
}

.bk_regtangle {
  position: absolute;
  background-image: url('../img/Rectangle\ 33.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 68vh;
  z-index: 0;
  bottom: 0;
  left: 0;
}

.cp {
  position: relative;
}

.no_border {
  padding: 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
}

:focus-visible {
  outline: none;
}

.text-right {
  text-align: right;
}

.addLink {
  color: #3FCAC7 !important;
  background-color: transparent !important;
  border: none !important;
}
.removeBtn {
  color: red;
  background-color: transparent !important;
  border: none !important;
  display: none;
}

.addPhone {
  color: #3FCAC7 !important;
  background-color: transparent !important;
  border: none !important;
}
.removePhoneBtn {
  color: red;
  background-color: transparent !important;
  border: none !important;
  display: none;
}

.err {
  border: 1px solid red;
}

.errMsg {
  color: red !important; 
}

#errBlock {
  width: 50%;
}

.error {
  color: red !important;
}

.title {
  border-radius: 10px !important;
  color: #fff !important;
  background-color: #1E5F5D !important;
  display: inline-block !important;
}

.nav-link {
  display: none !important;
}

.nav-toggle i {
  font-size: 30px;
}

#flag {
  position: absolute; right: 10px; bottom: 20px;
}


td {
  vertical-align: middle !important;
}


/* For Mobile Portrait View */
@media screen and (max-device-width: 480px) 
    and (orientation: portrait) {
    #header .logo img {
        width: 150px !important;
    }
    #flag {
      position: absolute; top: 0px; bottom: 0px;
    }

    .detials {
      font-size: 12px !important;
    }

    .cardHeight {
      padding: 1.5rem !important;
    }
    
    .cardHeight .divImg {
      width: 60px !important;
      height: 60px !important;
    }
}
 
/* For Mobile Landscape View */
@media screen and (max-device-width: 640px) 
    and (orientation: landscape) {
      #header .logo img {
        width: 220px !important;
    }
    .cardHeight {
      padding: 1.5rem !important;
    }

    .detials {
      font-size: 12px !important;
    }

    .cardHeight .divImg {
      width: 60px !important;
      height: 60px !important;
    }
}

 
/* For Mobile Phones Portrait or Landscape View */
@media screen
    and (max-device-width: 640px) {
      #header .logo img {
        width: 200px !important;
    }
    .cardHeight {
      padding: 1.5rem !important;
    }

    .detials {
      font-size: 12px !important;
    }

    .cardHeight .divImg {
      width: 60px !important;
      height: 60px !important;
    }
}
 
/* For iPhone 4 Portrait or Landscape View */
@media screen and (min-device-width: 320px) 
    and (-webkit-min-device-pixel-ratio: 2) {
      #header .logo img {
        width: 150px !important;
    }
    .cardHeight {
      padding: 1.5rem !important;
    }

    .detials {
      font-size: 12px !important;
    }

    .cardHeight .divImg {
      width: 60px !important;
      height: 60px !important;
    }
}
 
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px) 
    and (device-width: 320px) 
    and (-webkit-min-device-pixel-ratio: 2) {
      #header .logo img {
        width: 150px !important;
    }
    .cardHeight {
      padding: 1.5rem !important;
    }

    .detials {
      font-size: 12px !important;
    }

    .cardHeight .divImg {
      width: 60px !important;
      height: 60px !important;
    }
}
 
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px) 
    and (min-device-width: 375px) 
    and (-webkit-min-device-pixel-ratio: 3) {
      #header .logo img {
        width: 180px !important;
    }
    .cardHeight {
      padding: 1.5rem !important;
    }

    .detials {
      font-size: 12px !important;
    }

    .cardHeight .divImg {
      width: 60px !important;
      height: 60px !important;
    }
};