/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #F5DBBB;
    --light: #F8F8F9;
    --dark: #001D23;
}

textarea,
input[type]:not([type=search]):not([type=url]):not([type=hidden]):focus {
  border-bottom: 3px solid var(--primary);
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0 rgb(13 110 253 / 25%); 
}

.custom-primary-color {
    color: rgb(255,111,15) !important;
}

div [class^="col-"]{
    padding-left:15px;
    padding-right:15px;
}

.parallax-adopt {
  /* The image used */
  background-image: url("../img/pauline-loroy-U3aF7hgUSrk-unsplash.jpg");
  background-color: rgba(0, 0, 0, .6);
  background-blend-mode: overlay;
  /* Set a specific height */
  min-height: 140px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;

  background-size: cover;
}


a {
    text-decoration: none;
    color: black;
}

img{
    object-fit: contain;
}
.card img {
    object-fit: cover;
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 300;
}


.border-primary {
    border-color: rgb(255,111,15)!important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.text-dark{
    color: var(--light) !important;
}
.text-dark:hover
.text-dark:active {
    color: var(--primary) !important;
}
.text-light-no-hover {
    color: var(--primary) !important;
}
.text-light {
    color: var(--primary) !important;
}
.text-light:hover {
    color: var(--light) !important;
}

.btn-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(255,111,15)!important;
    border-width: 2px;
    border-color: #F5DBBB !important;
    outline: none;
    color: white;
}

.btn-primary:hover {
    --bs-bg-opacity: 1;
    background-color: transparent!important;
    color: rgb(255,111,15)!important;
    border-color: #FF6F0F !important;
    border-width: 2px;
}

.btn-outline-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(255,111,15)!important;
    color: white !important;
    border-color: #F5DBBB !important;
    outline: none;
}

.btn-outline-primary:hover {
    --bs-bg-opacity: 1;
    background-color: transparent!important;
    color: rgb(255,111,15)!important;
    border-width: 2px;
    border-color: #FF6F0F !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(255,111,15)!important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(255,111,15)!important;
}

.rounded-pill {
    background-color: #FF6F0F !important;
    color: white !important;
    font-size: 24px;
    padding: 10px 30px !important;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: gray;
    opacity: 1; /* Firefox */
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    align-items: center;
    justify-content: center;
}

/* .btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
} */

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.bg-initial {
    --bs-bg-opacity: 1;
    background-color: rgba(0, 29, 35, .4);
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.page-top {
    margin-top: 200px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}
#header-carousel img {
    height: 100vh;
    object-fit: cover;
}

#header-carousel 

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

#hero .hero-img {
    width: 100%;
    object-fit: cover;
    height: 100vh;
}


/*** Causes ***/
#causes .img-fluid {
    width: 500px;
    height: 380px;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}
.service-item .img-fluid{
    width: 140px;
}
.service-title {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 30px;
    line-height: 26px;
}

/*** Contact Us ****/
.contact-us-sec {
    background-color: #FF6F0F;
}
#contact-us img {
    height: 800px;
    max-height: 80%;
    object-fit: cover;
}
#contact-us form {
    margin-block-end: 0.5rem;
}


/*** Adopt ***/
.adopt {
    background: rgba(0, 29, 35, .8);
}

.adopt .btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer a {
    text-decoration: none;
}

.footer .brand_logo_text {
    color: transparent;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}



.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/* Adoption page */
#adoption 
img{
    height:320px;
    width:100%;
  }

#adopt-button {
    position: relative;
    z-index: 2;
}

#adoption  a {
    color: white;
}

#adoption 
  div [class^="col-"]{
    padding-left:15px;
    padding-right:15px;
  }

  #adoption 
  .card{
    transition:0.5s;
    cursor:pointer;
  }

  #adoption 
  .card img{
    overflow: hidden;
    width: 100%;
  }
#adoption
  .card .card-img-overlay {
    display: none;
  }
  #adoption
  .card:hover .card-img-overlay {
    color: white;
    display: block;
  }
#adoption .card .card-title{  
    position: relative;
    font-size:15px;
    transition:1s;
    cursor:pointer;
    padding:0 10px;
    z-index: 2;
  }
  #adoption .card .card-title i{  
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#ffa710
  }
  #adoption .card .card-title i:hover{
    transform: scale(1.25) rotate(100deg); 
    color:#18d4ca;
    
  }
  #adoption
  .card:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
  }
  #adoption .card 
  .card-text{ 
    position: relative;
    padding: 0 10px;
    z-index: 2;
  }
  #adoption
  .card::before, 
  #adoption .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(0,0,0, 0.3);
    content: '';
    pointer-events: none;
  }
  #adoption 
  .card::before {
    transform-origin: left top;
  }
  #adoption
  .card::after {
    transform-origin: right bottom;
  }
  #adoption
  .card:hover::before, #adoption .card:hover::after, #adoption .card:focus::before, #adoption .card:focus::after {
    transform: scale3d(1, 1, 1);
  }

/* breed info page */

#breed-info 
img{
    height:300px;
    width:100%;
  }

#breed-info  a {
    color: white;
}

#breed-info 
  div [class^="col-"]{
    padding-left:15px;
    padding-right:15px;
  }

  #breed-info 
  .card{
    transition:0.5s;
    cursor:pointer;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    /* transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12); */
  }

  #breed-info 
  .card img{
    overflow: hidden;
    width: 100%;
  }
#breed-info .card .card-img-overlay {
    display: none;
  }
  #breed-info .card:hover .card-img-overlay {
    color: white;
    display: block;
  }
#breed-info .card .card-title{  
    position: relative;
    font-size:15px;
    transition:1s;
    cursor:pointer;
    padding:0 10px;
    z-index: 2;
  }
  #breed-info .card .card-title i{  
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#ffa710
  }

  #breed-info .card-title i:hover{
    transform: scale(1.25) rotate(100deg); 
    color:#18d4ca;
    
  }
  #breed-info .card:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
  }
  #breed-info .card .card-text{ 
    position: relative;
    padding: 0 10px;
    z-index: 2;
  }

  #breed-info .breed-article{ 
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #breed-info .card::before, 
  #breed-info .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(0,0,0, 0.3);
    content: '';
    pointer-events: none;
  }
  #breed-info 
  .card::before {
    transform-origin: left top;
  }
  #breed-info
  .card::after {
    transform-origin: right bottom;
  }
  #breed-info
  .card:hover::before, #breed-info .card:hover::after, #breed-info .card:focus::before, #breed-info .card:focus::after {
    transform: scale3d(1, 1, 1);
  }


/* report dog */

#report-dogs 
img{
    height:320px;
    width:100%;
  }

#report-button {
    position: relative;
    z-index: 2;
}

#report-dogs  a {
    color: white;
}

  #report-dogs 
  .card{
    transition:0.5s;
    cursor:pointer;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  }

  #report-dogs 
  .card img{
    overflow: hidden;
  }
#report-dogs
  .card .card-img-overlay {
    display: none;
  }
  #report-dogs .card:hover .card-img-overlay {
    color: white;
    display: block;
  }
#report-dogs .card .card-title{  
    position: relative;
    font-size:15px;
    transition:1s;
    cursor:pointer;
    padding:0 10px;
    z-index: 2;
  }
  #report-dogs .card .card-title i{  
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#ffa710
  }
  #report-dogs .card .card-title i:hover{
    transform: scale(1.25) rotate(100deg); 
    color:#18d4ca;
    
  }
  #report-dogs
  .card:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
  }
  #report-dogs .card .card-text{ 
    position: relative;
    padding: 0 10px;
    z-index: 2;
  }
  #report-dogs
  .card::before, 
  #report-dogs .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(0,0,0, 0.3);
    content: '';
    pointer-events: none;
  }
  #report-dogs 
  .card::before {
    transform-origin: left top;
  }
  #report-dogs
  .card::after {
    transform-origin: right bottom;
  }
  #report-dogs
  .card:hover::before, #report-dogs .card:hover::after, #report-dogs .card:focus::before,  #report-dogs .card:focus::after {
    transform: scale3d(1, 1, 1);
  }

#report-dogs-form {
    background-image: url("../img/SL-100420-36140-29.jpg");
    /* background-color: #2FB9CB;
    background-blend-mode: multiply; */
    background-color: var(--secondary);
    background-blend-mode: overlay;
    height: fit-content;
    width: 100vw;
    background-attachment: fixed;
    background-position: 4% 10%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.report-dogs-form {
    margin-top: 200px;
}

#report-dogs-form .report-tag {
    background-color: var(--primary);
    color: white;
    padding-bottom: 10px;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;;
    margin-top: -10%;
    /* margin-left: -60px; */
}

.report-card {
    position: relative;
    background-color: var(--secondary);
    border-radius: 2.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 460px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px;
}
.report-card form {
    width: 90%;
    transform: translateY(-6px);
}

.missing-dog-image {
    position: absolute;
    width: 240px;
    height: 100%;
    right: -25%;
    top: 20%;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .missing-dog-image {
        position: absolute;
        width: 220px;
        height: 100%;
        right:-42%;
        top: 18%;
    }
}

.stray-dog-image {
    position: absolute;
    max-width: 400px;
    width: 100%;
    right: -45%;
    bottom: -5%;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .stray-dog-image {
        right:-42%;
    }
}

/* meetups */
#meetup 
.card{
  transition:0.5s;
  cursor:pointer;
  box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
  transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
}

#meetup 
.card img{
  overflow: hidden;
}

#meetup .card
.card-title{  
  position: relative;
  transition:1s;
  cursor:pointer;
  padding:0 10px;
  z-index: 2;
}
#meetup .card
.card-title i{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
  color:#ffa710
}
#meetup
.card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
#meetup .card
#meetup
.card-text{ 
  position: relative;
  padding: 0 10px;
  z-index: 2;
}
#meetup #meetup-list .card-img{
    height: 220px;
}

/* #meetup 
.card::before {
    transform-origin: left top;
}
#meetup
.card::after {
    transform-origin: right bottom;
} */
#meetup
.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
    transform: none;
}

#success-page {
    height: 100vh;
    top: 25%;
    position: relative;
}

#success-page i {
    color: var(--primary);
    font-size: 100px;
    line-height: 200px;
    margin-left:-15px;
}

/* missing dog home */
#causes 
img{
    height:320px;
    width:100%;
  }

#report-button {
    position: relative;
    z-index: 2;
}

#causes  a {
    color: white;
}

  #causes 
  .card{
    transition:0.5s;
    cursor:pointer;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  }

  #causes 
  .card img{
    overflow: hidden;
  }
#causes
  .card .card-img-overlay {
    display: none;
  }
  #causes .card:hover .card-img-overlay {
    color: white;
    display: block;
  }
#causes .card .card-title{  
    position: relative;
    font-size:15px;
    transition:1s;
    cursor:pointer;
    padding:0 10px;
    z-index: 2;
  }
  #causes .card .card-title i{  
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#ffa710
  }
  #causes .card .card-title i:hover{
    transform: scale(1.25) rotate(100deg); 
    color:#18d4ca;
    
  }
  #causes
  .card:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
  }
  #causes .card .card-text{ 
    position: relative;
    padding: 0 10px;
    z-index: 2;
  }
  #causes
  .card::before, 
  #causes .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(0,0,0, 0.3);
    content: '';
    pointer-events: none;
  }
  #causes 
  .card::before {
    transform-origin: left top;
  }
  #causes
  .card::after {
    transform-origin: right bottom;
  }
  #causes
  .card:hover::before, #causes .card:hover::after, #causes .card:focus::before,  #causes .card:focus::after {
    transform: scale3d(1, 1, 1);
  }
