/* ----------------------------------
    ## Google Font
----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

/* ----------------------------------
    ## Prelaoder
----------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #1577da;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

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


/* ----------------------------------
    ## Back to top button
----------------------------------*/

.backtotop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    height: 40px;
    width: 40px;
    background-color: rgb(236, 213, 21);
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    border-radius: 10px;
    opacity: 0.9;
    transition: opacity 200ms linear;
    display: none;
}

.backtotop::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    margin-top: -4px;
    transform: rotate(-45deg);
    height: 0px;
    width: 0px;
    border-width: 3px 3px 0 0;
    border-style: solid;
    padding: 5px;
    border-color: #3c3c3c;
}

.backtotop:hover {
    opacity: 1;
    transition: opacity 200ms linear;
}


/* ----------------------------------
    ## Typography
----------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #111;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Agbalumo', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

p {
    padding: 0px;
    margin: 0px;
    margin-bottom: 30px;
}

p:last-child {
    margin-bottom: 0px;
}

dl,
ol,
ul {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #3c3c3c;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #3c3c3c;
}

label {
    font-weight: normal;
}

label.error {
    color: #f00;
    padding-left: 12px;
    font-size: 14px;
    padding-top: 5px;
}

.form-control {
    height: auto;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #aaaaaa;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #d5d5d5;
    margin-bottom: 20px;
}

.form-control.error {
    border-color: #f00;
}

.form-select {
    background-image: url(../icons/carrot-icon.png);
    background-size: 10px 8px;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

 ::-webkit-input-placeholder {
    opacity: 1;
    color: #aaaaaa;
}

 :-moz-placeholder {
    opacity: 1;
    color: #aaaaaa;
}

 ::-moz-placeholder {
    opacity: 1;
    color: #aaaaaa;
}

 :-ms-input-placeholder {
    opacity: 1;
    color: #aaaaaa;
}


/*------ Font Family ------*/

.font-Quicksand {
    font-family: 'Quicksand', sans-serif;
}


/*------ Font Weight ------*/

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/*------ Custom Text Color ------*/

.text-red {
    color: #8f160b;
}

.text-blue {
    color: #088dd3;
}


/*------ Custom Background Color ------*/

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

.bg-color-blue {
    background-color: #dcf2fe;
}


/*------ Border Color ------*/

.border-white {
    border-color: #ffffff;
    border-style: solid;
}


/*------ Box Shadow ------*/

.box-shadow {
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


/*------ Button Style ------*/

.btn {
    color: rgb(255, 255, 255);
    font-weight: 600;
    background-color: #8f160b;
    font-size: 17px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    padding: 13px 25px;
    box-shadow: inset 0 1px 1px 0 rgb(255 255 255 / 22%);
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
}

.btn:hover {
    opacity:1;
    color: rgb(60, 60, 60);
	background:#fff;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

@media only screen and (max-width: 991.98px) {
    .btn {
        font-size: 17px;
    }
}

@media only screen and (max-width: 767.98px) {
    .btn {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575.98px) {
    .btn {
        font-size: 15px;
    }
}


/*------ Custom Container ------*/

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1170px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 767.98px) {
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*------ Section Spacer ------*/

.sectionPadding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.sectionBigPadding{
	padding-top: 200px;
    padding-bottom: 60px;
}
@media only screen and (max-width: 1199.98px) {
    .sectionPadding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 991.98px) {
    .sectionPadding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767.98px) {
    .sectionPadding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}


/*------ Section Title ------*/

.section-title {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 40px;
    line-height: 1.1;
    text-transform: capitalize;
}

.section-title h3 {
    font-size: 24px;
}

.section-title p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1199.98px) {
    .section-title h2 {
        font-size: 40px;
    }
    .section-title h3 {
        font-size: 22px;
    }
    .section-title p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 991.98px) {
    .section-title h2 {
        font-size: 40px;
    }
    .section-title h2 br {
        display: none;
    }
    .section-title h3 {
        font-size: 22px;
    }
    .section-title p br {
        display: none;
    }
}

@media only screen and (max-width: 767.98px) {
    .section-title h2 {
        font-size: 35px;
    }
    .section-title h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575.98px) {
    .section-title h2 {
        font-size: 30px;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
    padding: 5px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
}

header.active {
  background-color: rgba(25,135,84,0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
}
header .logo {
    width: 120px;
}
header.active .logo{
	width:80px;
	transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    header .logo {
        width: 100px;
    }
    header .headerLeft {
        text-align: center;
    }
    header .headerRight {
        padding-top: 15px;
        text-align: center;
    }
}

.video-gallery {
  display: block;
  padding: 15px; 
  margin: 0 auto;
}

.video-gallery .gallery-item {
  position: relative;
  width: 100%;
  height: 400px;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.video-gallery .gallery-item img {
  position: relative;
  display: block;
  width: 115%;
  height: 400px;
  object-fit: cover;
  opacity: .9;
  /*transition: opacity .35s, transform .35s;*/
  transition: all 350ms ease-in-out;
  transform: translate3d(-23px, 0, 0);
  /*backface-visibility: hidden;*/
}

.north-cascades-img {
  object-position: 50% 30%;
}

.video-gallery .gallery-item .gallery-item-caption {
  padding: 32px;
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-gallery .gallery-item h2 {
  font-weight: 300;
  overflow: hidden;
  padding: 12px 0;
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
  position: relative;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}

.video-gallery .gallery-item p {
  letter-spacing: 1px;
  font-size: 12px;
  padding: 12px 0;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover img {
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
  text-align: left;
}

.video-gallery .gallery-item h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 1px;
  background: #fff;
  transition: transform 0.3s;
  transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/*
@media screen and (max-width: 784px) {
  .video-gallery {
    width: 100%;
    padding: 15px;    

  }
  .video-gallery .gallery-item {
    width: 95%;
    margin: 0 auto; 
    width: 100%;
  }
}
*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    padding: 40px 0 20px;
    background-color: #8f160b;
	background-image: url(../images/trans-bg.png);
    background-position: center;
    background-repeat:repeat;
    border-top: 5px solid #ffc107;
}

footer .footer-top .list-inline-item {
    line-height: 1;
}

footer .footer-top .list-inline-item a {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    display: inline-block;
}

footer .footer-top .list-inline-item a:hover {
    text-decoration: underline;
}

footer .footer-top .list-inline-item:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 10px;
    margin-right: 10px;
}

footer .footer-bottom .copyright {
    font-size: 16px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    footer {
        padding: 30px 0 30px;
    }
    footer .footer-top .list-inline-item a {
        font-size: 14px;
    }
    footer .footer-bottom .copyright {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/


/* ----------------------------------
    ## Banner Section
----------------------------------*/

.pageContentWrapper {
    margin-top: 0px;
}

@media only screen and (max-width: 767px) {
    .pageContentWrapper {
        margin-top: 0px;
    }
}

.bannerSection {
    background: url(../images/main-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 500px) {
    .bannerSection {
       background: url(../images/mob-img.jpg);
	   background-position: center;
	   background-repeat: no-repeat;
	   background-size: cover;
    }
}
/*---- Left Section ----*/

.bannerSection h1 {
    font-size: 40px;
    line-height: 1.1;
    text-transform: capitalize;
}

.bannerSection h1 span {
    font-size: 26px;
	margin-bottom:10px;
    display: block;
	color:#fbb112;
    text-transform: none;
    font-family: 'Quicksand', sans-serif;
}

.bannerSection .left-col p {
    font-size: 20px;
    line-height: 1.5;
}

.bannerSection .left-col h2 img {
    width: 50px;
    margin-right: 5px;
}
.trin-trin
{
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes trin {

    from {
        transform:rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0,0,1,15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0,0,1,0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0,0,1,-15deg);
    }
    80% {
        transform:rotate3d(0, 0, 1, 0deg);
    }

}
.bannerSection .left-col h2.text-red {
    font-size: 45px;
    line-height: 1;
    display: flex;
    align-items: center;
	color:#fbb112;
	font-family: 'Kdam Thmor Pro', sans-serif;
}

@media only screen and (max-width: 1399.98px) {
    .bannerSection h1 {
        font-size: 40px;
    }
    .bannerSection .left-col h2.text-red {
        font-size: 40px;
    }
}

@media only screen and (max-width: 991.98px) {
    .bannerSection h1 {
        text-align: center;
        margin-bottom: 15px;
        font-size: 35px;
    }
    .bannerSection h1 span {
        font-size: 22px;
    }
    .bannerSection .left-col p {
        text-align: center;
        font-size: 16px;
    }
    .bannerSection .left-col h2.text-red {
        font-size: 36px;
        justify-content: center;
    }
    .bannerSection .left-col h2.text-red img {
        width: 35px;
    }
}

@media only screen and (max-width: 767.98px) {
    .bannerSection h1 {
        font-size: 30px;
    }
    .bannerSection h1 span {
        font-size: 20px;
    }
    .bannerSection .left-col p {
        font-size: 14px;
    }
    .bannerSection .left-col h2.text-red {
        font-size: 24px;
    }
    .bannerSection .left-col h2 img {
        width: 20px;
    }
}



/* ----------------------------------
    ## Who We Are Section
----------------------------------*/


/* ----------------------------------
    ## Spot Your Pet Section
----------------------------------*/

.spotYourPetSection {
    background: url(../images/banner-pet-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ----------------------------------
    ## Select How You Need Section
----------------------------------*/
.howYouNeedSection{
	background-color:#f2f2f2;
	background-image: url(../images/bg-pattern.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.howYouNeedSection .itemyouGet {
    padding: 25px 25px 25px 25px;
    border-radius: 5px;
}

.howYouNeedSection .itemyouGet h3 {
    font-size: 28px;
}

.itemyouGet p {
    font-size: 16px;
    line-height: 1.5;
}

@media only screen and (max-width: 1199.98px) {
    .howYouNeedSection .itemyouGet h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 991.98px) {
    .howYouNeedSection .itemyouGet h3 {
        font-size: 24px;
    }
    .itemyouGet p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767.98px) {
    .howYouNeedSection .itemyouGet {
        max-width: 300px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .howYouNeedSection .itemyouGet h3 {
        font-size: 22px;
    }
    .itemyouGet p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575.98px) {
    .howYouNeedSection .itemyouGet h3 {
        font-size: 22px;
    }
}


/* ----------------------------------
    ## Testimonial Section
----------------------------------*/

.testimonialSection .testimonialBox p {
    font-size: 22px;
    line-height: 1.5;
}

.testimonialSection .testimonialBox img.qoute-icon {
    width: 90px;
}

.testimonialSection .testimonialBox img.headshot {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.testimonialSection .testimonialBox .author {
    font-size: 24px;
}

.testimonialSection .testimonialBox .designation {
    font-size: 18px;
    display: block;
}

.testimonialSection .testimonialBox .imageBlock {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1199.98px) {
    .testimonialSection .testimonialBox p {
        font-size: 19px;
    }
}

@media only screen and (max-width: 991.98px) {
    .testimonialSection .testimonialBox p {
        font-size: 17px;
    }
    .testimonialSection .testimonialBox img.qoute-icon {
        width: 75px;
    }
    .testimonialSection .testimonialBox img.headshot {
        width: 95px;
        height: 95px;
    }
    .testimonialSection .testimonialBox .author {
        font-size: 22px;
    }
    .testimonialSection .testimonialBox .designation {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767.98px) {
    .testimonialSection .testimonialBox p {
        font-size: 16px;
    }
    .testimonialSection .testimonialBox img.qoute-icon {
        width: 60px;
    }
    .testimonialSection .testimonialBox img.headshot {
        width: 85px;
        height: 85px;
    }
    .testimonialSection .testimonialBox .imageBlock {
        flex-direction: column;
    }
    .testimonialSection .testimonialBox .author {
        font-size: 20px;
    }
    .testimonialSection .testimonialBox .designation {
        font-size: 15px;
    }
}


/* ----------------------------------
    ## FAQ Section
----------------------------------*/

.accordion .accordion-section {
    margin-bottom: 20px;
}

.accordion .accordion-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.accordion .accordion-section-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    padding: 10px 30px 10px 20px;
    border: 1px solid #198754;
    display: block;
    position: relative;
    transition: ease 0.3s all;
}

.accordion .accordion-section-title.active {
    color: #fbb112;
    border: 1px solid #198754;
    background-color: #198754;
}

.accordion .accordion-section-title:after {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
    content: '';
    height: 0;
    width: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #198754;
}

.accordion .accordion-section-title.active:after {
    border-top: 0;
    border-bottom: 7px solid #fff;
}

.accordion-section-content {
    display: none;
    border: 1px solid #198754;
    padding: 20px;
}

.accordion-section-content p {
    font-size: 17px;
    line-height: 1.5;
}

@media only screen and (max-width: 991.99px) {
    .accordion .accordion-section-title {
        font-size: 18px;
    }
    .accordion-section-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .accordion .accordion-section-title {
        font-size: 16px;
    }
    .accordion-section-content p {
        font-size: 15px;
    }
}


/* ----------------------------------
    ## CTA Section
----------------------------------*/

.ctaSection {
    background: url(../images/banner-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ----------------------------------
    ## Modal/Popup Style
----------------------------------*/

.modal-body {
    padding: 30px 20px 20px;
}

.modal .btn-close {
    position: absolute;
    z-index: 1155;
    top: 5px;
    right: 5px;
}

.modal-body h2 {
    font-size: 36px;
}

.modal-body h3 {
    font-size: 18px;
}

.modal-body P {
    font-size: 14px;
    line-height: 1.5;
}

@media only screen and (max-width: 767.98px) {
    .form-control {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575.98px) {
    .modal-body h2 {
        font-size: 28px;
    }
    .modal-body h3 {
        font-size: 16px;
    }
    .modal-body P {
        font-size: 12px;
    }
    .form-control {
        font-size: 13px;
    }
}


/*--------------------------------------------------------------
# Upsell/Downsell Page
--------------------------------------------------------------*/

.whoWeAreSection .textBlock h3 {
    font-size: 32px;
}

.whoWeAreSection .textBlock p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.whoWeAreSection .textBlock p:last-child {
    margin-bottom: 0;
}

.whoWeAreSection .arrowListRow {
    max-width: 1000px;
}

.whoWeAreSection .custom-list-arrow {
    list-style: none;
    padding-left: 0;
}

.whoWeAreSection .custom-list-arrow li {
    font-size: 20px;
    font-weight: 500;
    background-image: url(../icons/arrow-right.png);
    background-repeat: no-repeat;
    background-position: left 18px;
    padding-left: 55px;
    padding-top: 15px;
}

.whoWeAreSection .paymentBlock h2 {
    font-size: 40px;
}

.whoWeAreSection .paymentBlock h3 {
    font-size: 40px;
}

.whoWeAreSection .paymentBlock h4 {
    font-size: 50px;
}

.whoWeAreSection .payNowBtn {
    font-size: 30px;
    display: block;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
}

.whoWeAreSection .no-thanks {
    font-size: 14px;
}

@media only screen and (max-width: 1199.98px) {
    .whoWeAreSection .custom-list-arrow li {
        font-size: 18px;
        background-position: left 15px;
    }
}

@media only screen and (max-width: 991.98px) {
    .whoWeAreSection .textBlock h3 {
        font-size: 30px;
    }
    .whoWeAreSection .textBlock p {
        font-size: 16px;
    }
    .whoWeAreSection .arrowListRow .col-lg-6.mx-auto {
        padding-left: 0;
        padding-right: 0;
    }
    .whoWeAreSection .custom-list-arrow li {
        padding-left: 40px;
    }
    .whoWeAreSection .paymentBlock h2 {
        font-size: 36px;
    }
    .whoWeAreSection .paymentBlock h3 {
        font-size: 36px;
    }
    .whoWeAreSection .paymentBlock h4 {
        font-size: 45px;
    }
    .whoWeAreSection .payNowBtn {
        font-size: 22px;
    }
    .whoWeAreSection .no-thanks {
        font-size: 13px;
    }
}

@media only screen and (max-width: 767.98px) {
    .whoWeAreSection .textBlock h3 {
        font-size: 28px;
    }
    .whoWeAreSection .custom-list-arrow li {
        font-size: 16px;
    }
    .whoWeAreSection .paymentBlock h2 {
        font-size: 32px;
    }
    .whoWeAreSection .paymentBlock h3 {
        font-size: 32px;
    }
    .whoWeAreSection .paymentBlock h4 {
        font-size: 40px;
    }
    .whoWeAreSection .payNowBtn {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575.98px) {
    .whoWeAreSection .paymentBlock h2 {
        font-size: 30px;
    }
    .whoWeAreSection .paymentBlock h3 {
        font-size: 30px;
    }
    .whoWeAreSection .paymentBlock h4 {
        font-size: 36px;
    }
    .whoWeAreSection .payNowBtn {
        font-size: 18px;
    }
    .whoWeAreSection .no-thanks {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# Order Page
--------------------------------------------------------------*/


/* ----------------------------------
## Order Section
----------------------------------*/

.formcontentSec {
    /* border: 1px solid #d9d9d9; */
    border-radius: 10px;
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    -webkit-box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

.formcontentSec .form-status {
    margin-top: 40px;
    display: none;
}

.your_productlist {
    background: #ecd51512;
    padding: 15px;
    float: left;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin-bottom: 30px;
}

.order_Section .left-col .your_productlist ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.order_Section .left-col .your_productlist li {
    background: none;
    float: left;
    width: 100%;
    font-size: 14px;
    color: #757575;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.order_Section .left-col .your_productlist li:not(:last-child) {
    border-bottom: 1px solid #b0d2de;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.order_Section .left-col .your_productlist li:first-child,
.order_Section .left-col .your_productlist li:last-child {
    color: #000;
    font-size: 15px;
}

.order_Section .left-col .your_productlist li:last-child {
    font-size: 18px;
    padding-left: 0;
}

.order_Section .left-col .your_productlist li .pull-left {
    float: left;
}

.order_Section .left-col .your_productlist li .pull-right {
    float: right;
}

.order_Section h2.headingsec {
    color: #3c3c3c;
    font-size: 20px;
    line-height: 30px;
    border-bottom: 2px dotted #c7c7c7;
    padding: 0 0 20px;
    margin: 0 0 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}

.order_Section .btn-outer {
    text-align: center;
}

.declaration p {
    font-size: 14px;
    color: #9b9b9b;
    text-align: center;
    max-width: 345px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 15px;
    font-family: 'Montserrat', sans-serif;
}

.order_Section .cards {
    text-align: center;
}

.order_Section .cards img {
    display: inline-block;
}

.order_Section .pay-btn.btn {
    font-size: 22px;
}

@media only screen and (max-width: 991.98px) {
    .order_Section .pay-btn.btn {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .formcontentSec {
        padding: 15px;
    }
    .order_Section h2.headingsec {
        font-size: 18px;
    }
    .order_Section .left-col .your_productlist li {
        font-size: 12px;
    }
    .order_Section .left-col .your_productlist li:first-child,
    .order_Section .left-col .your_productlist li:last-child {
        font-size: 14px;
    }
    .declaration p {
        font-size: 13px;
    }
    .order_Section .pay-btn.btn {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .order_Section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/*--------------------------------------------------------------
# Order confirmation(Thank you)/Order Cancelled Page
--------------------------------------------------------------*/


/* ----------------------------------
    ## Thank You Content Section
----------------------------------*/

.thankyouContentSec p {
    font-size: 20px;
    line-height: 1.5;
}

.thankyouContentSec .supportItem {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.thankyouContentSec .supportItem .imageBlock {
    flex-shrink: 0;
    margin-right: 20px;
}

.thankyouContentSec .supportItem .imageBlock img {
    width: 90px;
}

@media only screen and (max-width: 1199.98px) {
    .thankyouContentSec p {
        font-size: 19px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 991.98px) {
    .thankyouContentSec p {
        font-size: 18px;
    }
    .thankyouContentSec .supportItem .imageBlock img {
        width: 70px;
    }
    .facebook-logo {
        text-align: center;
    }
    .facebook-logo img {
        width: 260px;
    }
}

@media only screen and (max-width: 575.98px) {
    .thankyouContentSec p {
        font-size: 16px;
    }
    .thankyouContentSec .supportItem {
        flex-direction: column;
        text-align: center;
        max-width: 320px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .thankyouContentSec .supportItem .imageBlock img {
        margin-bottom: 12px;
    }
}


/*--------------------------------------------------------------
#  Privacy Policy and Term & Conditions page
--------------------------------------------------------------*/

.privacypolicyterms h2 {
    font-size: 32px;
}

.privacypolicyterms h3 {
    font-size: 24px;
}

.privacypolicyterms h4 {
    font-size: 22px;
}

.privacypolicyterms p {
    font-size: 18px;
}

.privacypolicyterms p a {
    color: #1577da;
}

.privacypolicyterms li {
    font-size: 18px;
}

.privacypolicyterms .highlight {
    font-weight: 500;
}

.privacypolicyterms p,
.privacypolicyterms li,
.privacypolicyterms h2,
.privacypolicyterms h3,
.privacypolicyterms h4 {
    font-weight: 500;
}

.termcond_privacypilocy {
    padding-top: 80px;
}

.termcond_privacypilocy .section-title {
    padding-bottom: 0;
}

@media only screen and (max-width: 991.99px) {
    .termcond_privacypilocy {
        padding-top: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .privacypolicyterms h2 {
        font-size: 28px;
    }
    .privacypolicyterms h3 {
        font-size: 22px;
    }
    .privacypolicyterms h4 {
        font-size: 20px;
    }
    .privacypolicyterms p,
    .privacypolicyterms li {
        font-size: 16px;
    }
}
.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-image{transition:all .4s ease-in-out;}
.lightbox-enabled {padding-top:100%;
cursor:pointer;
background-size:cover;
background-position:center;}

.lightbox-container {width:100vw;
height:100vh;
position:fixed;
top:0;
left:0;
  display:flex;
  align-items:center;
  justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:9999;
opacity:0;
pointer-events:none;
}

.lightbox-container.active {
  opacity:1;
  pointer-events:all;
}
.lightbox-image-wrapper {
  display:flex;
  transform:scale(0);
  align-items:center;
  justify-content:center;
  max-width:90vw;
  max-height:90vh;
  position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
  color:white;
  z-index:9999999;
 cursor:pointer; 
  position:absolute;
  font-family: 'Material Icons'!important;
  font-size:50px;
}

.lightbox-btn:focus {
  outline:none;
}

.left {left:50px;}
.right {right:50px;}
#close {top:50px;
right:50px;}

.lightbox-image {
  width:100%;
  -webkit-box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19); 
box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19);
  max-height:95vh;
  object-fit:cover;
 }

@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}


.slideleft {
   animation-name: slideleft;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}


.slideright{
   animation-name: slideright;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}

.fp-wrapper {
    text-align: center;
    /* padding: 50px 0 75px; */
}

.fp-slider-wrapper {
    padding: 0;	
    border: 1px dashed #198754;
	margin:0 10px;
}

.fp-slider-wrapper a {
    display: block;
    position: relative;
}

.fp-wrapper h1 {
    font: 400 40px 'Playfair Display', serif;
    color: #e1ab35;
    text-transform: uppercase;
}

.fp-wrapper span {
    font: 400 13px/21px 'Roboto', sans-serif;
    color: #680909;
}

.fp-slider-items.slick-initialized.slick-slider {
    /* padding: 38px 0 0; */
}

.fp-slider-items button.slick-arrow{
    display: inline-block;
    position: absolute;
    width: 41px;
    height: 41px;
    bottom: 0;
    margin: auto;
    transform: translateY(-70px);
    font-size:  0;
    border: none;
    outline: none;
}
.fp-slider-wrapper .fp-img:before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(153, 126, 67, .30);
    opacity: 0;
    outline: 1px solid #ffffff;
    outline-offset: -10px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}

.fp-slider-wrapper .fp-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    background: rgba(255, 255, 255, .5);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}

.fp-slider-wrapper:hover .fp-img:before, 
.fp-slider-wrapper:hover .fp-img:after {
    opacity: 1;
}

#ft-title{
    font: 500 13px/21px 'Roboto', sans-serif;
    color: #680909;
    text-transform: uppercase;
    letter-spacing: 0.20em;
}
.fp-img {
    position: relative;
	background: #fff;
}
.fp-content{
	background:#fff;
	padding:20px 0;
}
.slick-slide img{
    display: inline-block;
    width: 100%;
	max-width:200px;
    height: auto;
}

.slider-details {
    padding: 20px 0;
    opacity: 0;
    transition: all .3s ease;
}
        
.fp-slider-wrapper:hover .slider-details {
    opacity: 1;
}

.slider-details strong{
    font: 500 20px 'Roboto', sans-serif;
    color: #2f2f2f;
}

.slider-details a{
    font: 500 12px 'Roboto', sans-serif;
    color: #680909;
    line-height: 2.5em;
}

.slick-track * {
  outline: none;
}
.slick-prev,
.slick-next{
	top:40%;
}
.slick-prev:before, .slick-next:before{
	color:#8f160b;
	font-size:40px;
}
.slick-prev{
	left:-40px;
}
.slick-next{
	right:-40px;
}
@media (max-width:500px){
	.slick-prev{
	left:-20px;
	z-index:2
	}
	.slick-next{
		right:-20px;
	}
}

.rounded-social-buttons {
  text-align: center;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2.125rem;
  height: 2.125rem;
  border: 0.125rem solid #fff;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1.4625rem;
  font-weight: normal;
  line-height: 1em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
  font-size: 15px;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
  background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #e507a1;
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
  color: #e507a1;
  background: #fefefe;
  border-color: #e507a1;
}
