/*
Template Name: Doggo
Author: Ingrid Kuhn
Author URI: themeforest/user/ingridk
Version: 1.1
Last change:25th July 2019 

	Table of Contents

	#General and Typography
	#Preloader
	#Navigation
	#Headers
	#Testimonials
	#Call to action
	#About
	#Pricing Tables
	#Team	
	#Services
	#Image Galleries
	#Contact	
	#Blog Pages
	#Services
	#Footer
	#Miscellaneous
	#Media queries


/*=========================== General and Typography ============================ */

.pet-body {
    background: linear-gradient(135deg, #f8f5f0 0%, #e8e1d5 100%);
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.afghan-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.header-section {
    background: linear-gradient(135deg, #93521e 0%, #663c1a 100%);
    color: white;
    padding: 40px 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.dog-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-text {
    flex: 1;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white !important;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    /* max-width: 700px; */
    font-weight: 300;
}

.share-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f5f2ed;
    border-bottom: 1px solid #e8e1d5;
}

.share-title {
    font-weight: 600;
    color: #8B4513;
    font-size: 1.1rem;
}

.share-icons {
    display: flex;
    gap: 15px;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: #8B4513;
    color: white;
}

.content-section {
    padding: 40px 30px;
}

.intro-text {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: #f9f7f3;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #8B4513;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    font-size: 1.2rem;
}

.card-content {
    color: #555;
    line-height: 1.7;
}

.highlight-section {
    background: linear-gradient(135deg, #f5f2ed 0%, #e8dfd1 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e8e1d5;
}

.highlight-title {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
}

.footer-section {
    background: #8B4513;
    color: white;
    padding: 25px 30px;
    text-align: center;
    margin-top: 40px;
}

.footer-text {
    opacity: 0.9;
    font-size: 0.95rem;
}

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-title {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.modal-text {
    margin-bottom: 25px;
    color: #555;
}

.modal-close {
    background: #8B4513;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.modal-close:hover {
    background: #A0522D;
}

@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        text-align: center;
    }

    .dog-photo {
        width: 120px;
        height: 120px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .share-bar {
        flex-direction: column;
        gap: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
    font-size: 25px !important;
}
}






.breed-card {
    text-align: center;
    background: #fff;
    /* border-radius: 20px; */
    padding: 20px 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.breed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breed-card img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 15px;
}

.breed-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.btn-read {
    background-color: #fbe5b5;
    border: none;
    border-radius: 25px;
    padding: 0px 20px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
}

.btn-read:hover {
    background-color: #f7d57f;
}

.pets-style {
    color: #41240e !important;
    background-color: #f9ad3d !important;
    border-radius: 20px !important;
}


.dlsxaN {
    display: none;
}


.owl-carousel,
.ls-bottom-slidebuttons,
.ls-bottom-nav-wrapper {
    z-index: 100 !important;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #585555;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

h1 {
    font-size: 4.7em;
    line-height: 1em;
    color: #222;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}

h1 span {
    font-weight: 300;
}

h2 {
    font-size: 3.1em;
    font-weight: 600;
    font-family: Nunito;
}

h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5em;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

h4 {
    font-family: 'Nunito', sans-serif;
    color: #222;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

h5 {
    color: #222;
    font-family: 'Nunito', sans-serif;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
}

h6 {
    color: #222;
    font-family: 'Nunito', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.h7 {
    color: #8a8a8a;
    font-family: 'Nunito', sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.lead {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.4em;
}

/* subtitle */
.subtitle,
p.subtitle {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 0px;
    color: #808080;
    line-height: 1.2em;
}

/* subtitle 2 */
.subtitle2 {
    font-size: 22px;
    line-height: 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    color: #222;
}

/* Links */
a {
    transition: color .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
}

*:focus {
    outline-style: none;
    box-shadow: none;
    border-color: transparent;
}

/*=========================== Preloader ============================ */
#preloader {
    position: fixed;
    top: 0;
    background: #fff;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
}

#preloader i {
    text-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
    font-size: 70px;
    animation: pulse 2s infinite;
}

/*=========================== Navigation ============================ */
.fixed-top {
    z-index: 99999;
}

.navbar {
    transition: all .2s ease-in-out;
    box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.07);
}

.navbar-nav a {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
    color: #000000;
}

.navbar-nav .nav-link {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
}

.nav-item {
    border-radius: 20px;
    transition: all .2s ease-in-out;
}

.navbar .nav-item:focus .dropdown.show {
    background: transparent !important;
}

.navbar .nav-item.active,
.navbar .nav-item:hover {
    transition: all .2s ease-in-out;
}

.navbar.shrink .nav-brand {
    margin-top: 0px;
}

.navbar.shrink .navbar-toggle {
    margin: 8px 15px 8px 0;
    padding: 4px 5px;
}

/* dropdown style */
.nav-link.dropdown-toggle:focus {
    background: transparent !important;
}

.dropdown-item {
    color: #fff !important;
    transition: all .2s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.41);
}

.dropdown-menu {
    border: 0px;
}

.navbar .dropdown-menu a:before {
    display: none;
}

/* navbar brand */
.nav-brand {
    line-height: 20px;
    margin-top: 0px;
}

.nav-brand img {
    max-height: 95px;
}

.navbar-brand i {
    vertical-align: sub;
    margin-right: 10px;
    font-size: 45px;
}

.navbar-toggler {
    transition: all 0.2s ease 0s;
    color: #3e220f;
    margin-right: 10px;
}

/* top-bar */
.top-bar {
    transition: all 0.8s;
    top: 0;
    width: 100%;
    width: 100%;
    position: relative;
    background: #fff;
}

.top-bar ul,
ol {
    margin-bottom: 0px;
    padding: 0px;
}

.top-bar .contact-details li:first-child {
    margin-left: 0px;
}

.top-bar .contact-details i {
    margin-right: 8px;
}

.top-bar .contact-details li {
    font-size: 13px;
    display: inline-block;
    line-height: 42px;
    font-weight: 600;
    padding: 0px 20px;
    border-left: 1px solid #eee;
    letter-spacing: 0.5px;
}

.top-bar ul.social-list li a i {
    border-left: 1px solid #eee;
}

/* Social icons */
ul.social-list {
    list-style-type: none;
}

ul.social-list li a {
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

ul.social-list li a i {
    display: block;
    width: 40px;
    transition: all 0.2s ease-in-out;
    line-height: 42px;
    text-align: center;
    font-size: 18px;
}

ul.social-list li.list-inline-item:not(:last-child) {
    margin: 0px;
}

ul.social-list.small-icons li a i {
    width: 27px;
    line-height: 27px;
    font-size: 16px;
}

/* =========================== Header ============================ */
/* Slider header */
#slider {
    width: 100% !important;
    height: 700px;
}

.header-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.header-wrapper .header-text {
    margin-top: 12%;
    white-space: normal;
    padding: 20px;
}

.ls-outline .ls-nav-prev,
.ls-outline .ls-nav-next {
    z-index: 99 !important;
    margin-top: 40px !important;
}

.header-text {
    border-radius: 0px;
    z-index: 99;
    text-align: center;
    margin-right: 0px;
    position: relative;
}

.header-text h1 {
    text-transform: uppercase;
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.header-text span {
    font-weight: 400;
    font-size: 0.8em;
    text-transform: none;
}

.header-p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.ls-bg-wrap:after,
.ls-slide-transition-wrapper:before {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    transition: 0.8s ease-in-out;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    position: absolute;
}

.ls-v6 .ls-bottom-nav-wrapper {
    top: -12% !important;
}

.ls-v6 .ls-nav-next,
.ls-v6 .ls-nav-prev {
    margin-top: -50px !important;
}

/* image header */
#header1-section {
    background-image: url("../images/header-header1.jpg");
    background-position: 75% center;
    background-size: cover;
    padding: 10em 0;
}

/* video header and call to action */
#video-header {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
    width: 100%;
    height: 100%;
}

#video-header .subtitle {
    font-size: 20px;
}

.video-section .video_content>p {
    font-size: 18px;
    line-height: 28px;
}

.video-section .video_content>h1 {
    line-height: 60px;
}

.video-section i {
    color: red;
    margin: 0px 5px;
    animation-name: pulse;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
}

.video-section .video_content {
    position: relative;
    z-index: 99;
}

/*=========================== Testimonials sections ============================ */

#testimonials {
    background-image: url("../images/img-testimonials_bg.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* testimonials style1 */
.testimonial {
    padding: 50px 30px 50px 130px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 5px 3px 20px rgba(0, 0, 0, 0.15);
}

.testimonial:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    width: 50px;
    height: 50px;
    line-height: 100px;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -300px;
    right: 0;
    opacity: 0.2;
}

.testimonial .pic {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 70px;
    left: 20px;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial .description {
    font-size: 17px;
    font-style: italic;
    line-height: 25px;
    margin-bottom: 25px;
    padding: 10px;
}

.testimonial .title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.testimonial .post {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
}

/* testimonials style2 */
.testimonial2 {
    text-align: center;
}

.testimonial2:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    line-height: 100px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 900;
    position: absolute;
    top: 50px;
    left: 20px;
}

.testimonial2 .pic {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 10px solid #fff;
}

.testimonial2 .pic img {
    width: 100%;
    height: auto;
}

.testimonial2 .description {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 25px;
    padding: 50px 20px;
    background: #fff;
    border-radius: 10px;
    margin-top: -40px;
}

.testimonial2 .title {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.testimonial2 .post {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

/* testimonial 3 */
.testimonial3 {
    margin: 30px 10px 0px 10px;
}

.testimonial3:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    line-height: 0px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 900;
    position: absolute;
    left: 20px;
    z-index: 99;
}

.testimonial3 .description {
    position: relative;
    padding: 25px 20px;
    border: 3px solid;
    font-weight: 700;
    color: #fff;
}

.testimonial3 .description:after {
    content: "";
    width: 20px;
    height: 20px;
    border-style: none none solid solid;
    border-width: 0 0 3px 3px;
    position: absolute;
    bottom: -13px;
    left: 26%;
    transform: skewY(-45deg);
}

.testimonial3 .pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px 30px;
    display: inline-block;
    float: left;
    border: 5px solid;
}

.testimonial3 .pic img {
    width: 100%;
    height: auto;
}

.testimonial3 .testimonial3-title {
    display: inline-block;
    text-transform: capitalize;
    margin-top: 35px;
}

.testimonial3 .testimonial3-title span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial3 .testimonial3-title small {
    display: block;
    font-size: 16px;
}

/*=========================== Call to action sections ============================ */
/* number counter */
.counter-calltoaction {
    background-image: url("../images/call-to-action-counter_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.counter {
    background: #fff;
    transition: all ease-in-out 0.2s;
    border-radius: 0px;
    text-align: center;
    padding: 20px;
    box-shadow: 3px 5px 16px rgba(0, 0, 0, 0.1);
}

.counter .counter-icon {
    display: block;
    font-size: 60px;
    height: 100px;
    transition: all ease-in-out 0.2s;
    line-height: 100px;
    display: inline-block;
}

.counter:hover {
    transform: scale(1.2);
}

.counter .counter-value {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #222;
    letter-spacing: 2px;
}

.counter .counter-value:after {
    content: "+";
}

.counter .title {
    font-size: 16px;
    letter-spacing: 0.7px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

/* Features with icon */
#feature-section {
    background-image: url("../images/about-about1.png");
    background-position: right bottom;
    background-repeat: no-repeat;
}

.feature-with-icon i {
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin-bottom: 10px;
    text-align: center;
    font-size: 50px;
}

.feature-with-icon {
    transition: all 0.4s ease-in-out;
    border: 2px solid transparent;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    box-shadow: 3px 5px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-with-icon h5 {
    margin-bottom: 10px;
}

.feature-with-icon:hover i {
    transform: scale(1.2);
}

.feature-with-icon::after,
.feature-with-icon::before {
    border-radius: 0px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transition: all 0.8s ease-in-out 0s;
    width: 100%;
    z-index: 3;
}

.feature-with-icon::before {
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform-origin: 0 100% 0;
}

.feature-with-icon::after {
    border-right: 2px solid;
    border-top: 2px solid;
    transform-origin: 100% 0 0;
}

.feature-with-icon:hover::after,
.feature-with-icon:hover::before {
    transform: scale(1);
}

.feature-with-icon:hover {
    border: 2px solid rgba(0, 160, 80, 0);
}

/* call to action 1*/
#callout {
    background-image: url("../images/call-to-action-calltoaction_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.callout-img {
    position: absolute;
}

/* call to action 2*/
#callout2 {
    background-image: url("../images/call-to-action-calltoaction_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* call to action 3*/
#callout3 {
    background-image: url("../images/call-to-action-calltoaction_bg3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/*=========================== about ============================ */

/* circle images with parallax effect*/

.circle-images img {
    border: 12px solid;
}

/*=========================== Pricing tables ============================ */
/* Price Table style1 */
.pricing-table {
    padding: 100px 0 40px;
    text-align: center;
    transition: all 0.5s ease 0s;
    box-shadow: 5px 3px 20px rgba(0, 0, 0, 0.10);
}

.pricing-table:hover {
    box-shadow: 5px 3px 20px rgba(0, 0, 0, 0.15);
}

.pricing-table:hover .title {
    width: 96%;
    box-shadow: 5px 3px 20px rgba(0, 0, 0, 0.15);
}

.pricing-table .title {
    width: 90%;
    padding: 10px 0;
    margin: 0;
    border: 1px solid #f6f6f6;
    font-weight: 800;
    color: #fff;
    position: absolute;
    top: 30px;
    left: -0px;
    transition: all 0.5s ease 0s;
}

.pricing-table .title:after {
    content: "";
    border-top: 15px solid #222;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -30px;
    left: -1px;
    transition: all 0.5s ease 0s;
}

.pricing-table .price-value {
    font-size: 50px;
    color: #25283d;
    margin-bottom: 45px;
    font-weight: 900;
    margin-top: 20px;
}

.pricing-table .month {
    display: block;
    font-size: 14px;
    color: #222;
    line-height: 0;
    text-transform: uppercase;
}

.pricing-table .pricing-content {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-table .pricing-content li {
    font-size: 17px;
    line-height: 40px;
    border-bottom: 1px solid #f6f6f6;
    font-weight: 600;
}

/* price table style 2 */
.pricing-table2 {
    padding: 0px 20px 30px 20px;
    transition: all 0.5s ease 0s;
    border: 2px solid transparent;
    text-align: center;
}

.pricing-table2:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.pricing-table2 .title {
    transition: all 0.5s ease 0s;
    margin-bottom: 10px;
    font-size: 36px;
}

.pricing-table2 i {
    font-size: 90px;
    transition: all 0.5s ease 0s;
    display: block;
}

.pricing-table2 .price-value {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 700;
    border-bottom: 1px dashed;
    padding-bottom: 20px;
}

.pricing-table2 .month {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 0px;
}

.pricing-table2 .pricing-content {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0px;
}

.pricing-table2 .pricing-content li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*=========================== Team sections ============================ */
/* team style 1 */
.teamstyle1 {
    padding: 20px;
    text-align: center;
    border: 0px;
}

.teamstyle1 .team-header {
    margin: 30px 0 0px 0;
    font-weight: 700;
}

.teamstyle1 span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 700;
}

.teamstyle1 p {
    margin-top: 20px;
}

.teamstyle1 .img-box {
    opacity: 1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.2s;
}

.teamstyle1 .img-box img {
    transition: all ease-in-out 0.2s;
}

.teamstyle1:hover .img-box img {
    transform: scale(1.2)rotate(5deg);
    transition: all ease-in-out 0.2s;
}

.teamstyle1 .img-box a {
    color: #fff;
}

.teamstyle1:hover .img-box .social-icons {
    opacity: 1;
}

.teamstyle1 .img-box ul a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.teamstyle1 .img-box a:hover li {
    border-color: #fff;
}

/* team style 2 */
.teamstyle2 .team-member .team-name h5 {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0px;
}

.teamstyle2 .team-member .team-name span {
    font-size: 18px;
    display: block;
    font-weight: 700;
    margin-top: 5px;
}

.teamstyle2 .team-member-info .team-social li {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
}

.teamstyle2 .team-member-info .team-social a {
    display: inline-block;
    text-align: center;
    line-height: 30px;
    color: #fff;
}

.teamstyle2 .team-social {
    margin-top: 20px;
    padding: 0px;
}

.teamstyle2 .team-member-info {
    margin-top: 20px;
}

.teamstyle2 .team-member img {
    height: 120px;
    width: 120px;
    transition: all ease-in-out 0.2s;
    border: 5px solid;
}

.teamstyle2 {
    transition: all ease-in-out 0.2s;
    text-align: center;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    padding: 30px 20px 25px;
    position: relative;
}

.teamstyle2.no-border-top {
    border-top: 0px;
}

.teamstyle2.no-border-right {
    border-right: 0px;
}

.teamstyle2:hover,
.teamstyle2:hover a,
.teamstyle2:hover h5,
.teamstyle2:hover span {
    color: #fff;
}

.teamstyle2:hover img {
    transition: all ease-in-out 0.2s;
    transform: scale(1.2);
}

.teamstyle2:hover .team-member {
    position: relative;
}

.teamstyle2:hover .team-social a,
.teamstyle2:hover .team-member-info p,
.teamstyle2:hover .team-name span,
.teamstyle2:hover .team-name {
    color: #fff;
}

.teamstyle2:hover .team-member-info a:hover,
.teamstyle2 .team-member-info .team-social a:hover {
    color: #1f2025;
}

/* team style 3 */
.teamstyle3 .teamimg .team-name {
    margin-top: 30px;
    margin-bottom: 20px;
}

.teamstyle3 .teamimg .team-name h5 {
    margin-bottom: 0px;
    font-weight: 700;
}

.teamstyle3 .teamimg .team-name span {
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

.teamstyle3 .team-info .social-icons li {
    display: inline-block;
}

.teamstyle3 .team-info ul.social-icons {
    padding: 5px 10px;
    margin: 0px;
    display: inline-block;
    border-radius: 20px;
}

.teamstyle3 .team-info .social-icons a {
    display: inline-block;
    padding: 0px 7px;
    text-align: center;
}

.teamstyle3:hover .team-info .social-icons a {
    color: #fff;
}

.teamstyle3 .team-info .social-icons li:first-child a {
    padding-left: 0;
}

.teamstyle3 .teamimg {
    margin-top: -50px;
}

.teamstyle3 .teamimg img {
    height: 130px !important;
    width: 130px !important;
    border-radius: 10px;
    float: none;
    margin: auto;
}

.teamstyle3 {
    padding: 30px 20px 25px;
    margin-top: 20px;
    border-radius: 10px;
}

.teamstyle3:hover {
    background: #fff;
}

.teamstyle3:before {
    content: "\f110";
    transition: all ease-in-out 0.2s;
    position: absolute;
    font-family: "Flaticon";
    font-size: 50px;
    right: 0px;
    transform: rotate(-20deg);
    z-index: 0;
    bottom: 0px;
    opacity: 0.4;
}

/* =========================== Services sections ============================ */
/* service box style 1 */
.serviceBox1 {
    padding: 0 10px 30px;
    border: 1px solid transparent;
    border-radius: 20px;
    margin-top: 90px;
}

.serviceBox1 .service-content {
    text-align: center;
    padding: 15px 20px 30px;
    margin-top: -80px;
    border-radius: 25px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s;
}

.serviceBox1 .service-content:hover {
    box-shadow: 0 0 20px -5px #000;
}

.serviceBox1 .service-icon {
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease 0s;
    max-width: 180px;
}

.serviceBox1:hover .service-icon {
    transform: scale(1.1)rotate(4deg);
}

.serviceBox1 .title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.serviceBox1 .title a {
    color: #222;
}

.serviceBox1 .service-icon img {
    border: 10px solid #fff;
}

.serviceBox1 .description {
    margin-bottom: 10px;
}

.serviceBox1 .btn {
    margin-top: 30px;
}

/* servicebox style 2 */
.serviceBox2 {
    margin-bottom: 20px;
    text-align: center;
}

.serviceBox2 .service-icon {
    text-align: center;
    font-size: 60px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    display: inline-table;
    width: 100px;
    color: #fff;
}

.serviceBox2:hover .service-icon {
    transform: rotate(14deg);
}

.serviceBox2 .service-content {
    margin-top: 20px;
}

/* =========================== Image galleries ============================ */
/* isotope gallery */
.portfolio-item {
    position: relative;
}

.isotope-item {
    z-index: 2
}

.isotope-hidden.isotope-item {
    z-index: 1
}

.isotope,
.isotope .isotope-item {
    transition-duration: 0.8s;
}

.isotope-item {
    margin-right: -1px;
    backface-visibility: hidden;
    padding: 0px;
}

.isotope {
    transition-property: height, width;
}

.isotope .isotope-item {
    transition-property: transform, opacity;
}

.gallery-item.selected img {
    transition: opacity 1s ease-in-out;
}

.gallery-thumb {
    display: block;
    position: relative;
    border-radius: 10px;
    margin: 10px;
}

.scrollimation .gallery-thumb {
    transform: translateY(100px);
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.touch .scrollimation .gallery-thumb,
.scrollimation .gallery-thumb.in {
    transform: translateY(0px);
    opacity: 1;
}

.gallery-thumb .overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    border-radius: 0;
    transition: opacity .3s ease-out;
    background: rgba(0, 0, 0, 0.45);
}

.gallery-thumb:hover .overlay-mask {
    opacity: 1;
}

.gallery-thumb .link {
    display: inline-block;
    margin: 0;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    opacity: 0;
    position: absolute;
    height: 80px;
    width: 80px;
    bottom: 0%;
    vertical-align: middle;
    left: 50%;
    text-align: center;
    z-index: 3;
    margin-left: 20px;
    transform: translateX(-200px);
    transition: all .3s ease-out;
}

.gallery-thumb:hover .link {
    transform: translate(0);
    opacity: 1;
    transition: all .3s ease-out .3s;
}

.gallery-thumb .link.centered {
    margin-left: -105px;
    transform: translateY(200px);
    transition-delay: 0s;
}

.gallery-thumb i {
    transition: all 0.2s ease-in-out;
    color: #fff;
    position: absolute;
    float: left;
    width: 100% !important;
    border-radius: 50%;
    height: 80px;
    top: -20px;
    line-height: 80px;
    left: 65px;
}

.gallery-thumb:hover .link.centered {
    transform: translateY(0);
    transition-delay: 0.1s;
    line-height: 70px;
}

/* Gallery 2 */
.wrapper-gallery {
    text-align: center;
}

.polaroid-gallery {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
}

.caption-gallery {
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}

.item-gallery .polaroid-gallery:before {
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 0.35s;
}

.item-gallery:nth-of-type(4n+1) {
    transform: scale(0.9, 0.9) rotate(5deg);
    transition: all 0.35s;
}

.item-gallery:nth-of-type(4n+1) .polaroid-gallery:before {
    transform: rotate(6deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    right: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item-gallery:nth-of-type(4n+2) {
    transform: scale(0.9, 0.9) rotate(-5deg);
    transition: all 0.35s;
}

.item-gallery:nth-of-type(4n+2) .polaroid-gallery:before {
    transform: rotate(-6deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    left: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.4);
}

.item-gallery:nth-of-type(4n+4) {
    transform: scale(0.9, 0.9) rotate(3deg);
    transition: all 0.35s;
}

.item-gallery:nth-of-type(4n+4) .polaroid-gallery:before {
    transform: rotate(4deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    right: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.3);
}

.item-gallery:nth-of-type(4n+3) {
    transform: scale(0.9, 0.9) rotate(-3deg);
    transition: all 0.35s;
}

.item-gallery:nth-of-type(4n+3) .polaroid:before {
    transform: rotate(-4deg);
    height: 20%;
    width: 47%;
    bottom: 30px;
    left: 12px;
    box-shadow: 0 2.1rem 2rem rgba(0, 0, 0, 0.3);
}

.item-gallery:hover {
    filter: none;
    transform: scale(1, 1) rotate(0deg) !important;
    transition: all 0.35s;
}

.item-gallery:hover .polaroid-gallery:before {
    content: '';
    position: absolute;
    z-index: -1;
    transform: rotate(0deg);
    height: 90%;
    width: 90%;
    bottom: 0%;
    right: 5%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transition: all 0.35s;
}

/*=========================== Contact ============================ */
.margin-icon {
    margin-right: 8px;
}

.list-contact li {
    line-height: 32px;
}

.rounded-icons i {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
}

.contact-icon {
    text-align: center;
    border-radius: 0px;
    padding: 40px 10px 40px 10px;
    border: 5px solid transparent;
    transition: all 0.35s;
}

.contact-icon .top-icon {
    transition: all .3s ease-out;
    font-size: 50px;
    right: 0;
    left: 0;
    line-height: 90px;
}

.contact-icon:hover .top-icon {
    transform: scale(1.2);
}

.contact-icon p {
    font-size: 18px;
    font-weight: 700;
}

.contact-icon h5 {
    font-weight: 700;
}

/* contact form 3 */
.contact-form3 {
    border-radius: 10px;
    padding: 0px 20px 20px 20px;
}

.contact-form3.bg-secondary .form-control {
    color: #f4f4f4;
    border-color: #fff;
}

.contact-form3 .form-control {
    border-radius: 0px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    background: transparent;
}

/*=========================== Blog Pages ============================ */
#blog-home .card.blog-card {
    border: 0px;
    border-radius: 0px;
    margin-top: 40px;
    border-bottom: 1px solid;
}

/*blog  prev style1 */

.post-slide:hover .post-date {
    margin-top: 20px;
}

.post-slide .post-date {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    padding: 2% 3%;
    width: 60px;
    height: 60px;
    text-align: center;
    transition: all 0.50s ease;
}

.post-slide .date {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.post-slide .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.post-slide .post-review {
    transition: all 0.50s ease;
    padding: 30px;
    border-top: 5px solid;
}

.post-slide .post-title {
    margin: 0 0 10px 0;
}

.post-slide .post-title a {
    font-size: 24px;
    font-weight: 700;
}

.post-slide .post-title a:hover {
    text-decoration: none;
    font-weight: bold;
}

.post-slide .post-bar {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}

.post-slide .post-bar li {
    color: #555;
    font-size: 10px;
    margin-right: 10px;
    display: inline-block;
}

.post-slide .post-bar li a {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

.post-slide .post-bar li i {
    margin-right: 5px;
}

.post-slide .post-description {
    margin-bottom: 28px;
}

/*blog prev style2 */
.post-slide2 {
    background: #fff;
}

.post-slide2 .post-img img {
    transition: all 1.20s ease;
    border-radius: 0px 0px 260px 100px;
}

.post-slide2:hover .post-img img {
    border-radius: 50%;
}

.post-slide2 .post-date {
    color: #fff;
    position: absolute;
    right: 10px;
    display: block;
    width: 80px;
    height: 80px;
    text-align: center;
    transition: all 0.50s ease;
    border-radius: 50%;
    top: 20%;
    border: 4px solid rgba(255, 255, 255, 0.51);
}

.post-slide2 .date {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 11px;
}

.post-slide2 .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.post-slide2 .post-review {
    transition: all 0.50s ease;
    padding: 30px;
}

.post-slide2 .post-title {
    margin: 0 0 10px 0;
}

.post-slide2 .post-title a {
    font-size: 24px;
}

.post-slide2 .post-bar {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}

.post-slide2 .post-bar li {
    color: #555;
    font-size: 10px;
    margin-right: 10px;
    display: inline-block;
}

.post-slide2 .post-bar li a {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

.post-slide2 .post-bar li i {
    margin-right: 5px;
}

/*popular posts widget */
.popular-post {
    padding: 10px;
}

.popular-post:first-child {
    padding-top: 0px;
}

.popular-posts-thumb {
    float: left;
    overflow: hidden;
    margin-right: 10px;
}

.popular-posts-thumb img {
    background: #fff;
    border: 1px dashed #e0e0e0;
    padding: 6px;
    height: 75px;
    width: 75px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.popular-posts-content h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.popular-posts-meta {
    font-size: 13px;
}

.popular-posts-meta span {
    color: #2e2e2e;
}

.popular-posts-meta span.time {
    margin-right: 10px;
    font-size: 13px;
}

/* blog style1 */
.blog-card .post-info {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px 5px 0px 0px;
}

.blog-card .card-body {
    padding: 20px 0 0 0px;
}

.blog-card .post-info a {
    margin: 0px 5px;
}

.card.blog-card:first-child {
    margin-top: 0px !important;
}

.blog-card .card-img-top {
    transition: all .3s ease-out;
}

.blog-card .blog-img {
    overflow: hidden;
    border: 10px solid;
}

.blog-card .card-img-top:hover {
    transform: scale(1.2) rotate(5deg);
}

/* blog sidebar and comments */
.blog-sidebar .card {
    background: none;
    padding: 20px;
}

.comment {
    padding: 30px 0px;
    border-bottom: 1px dotted;
}

.comment-img {
    max-width: 150px;
    max-height: 150px;
}

.comment:last-child {
    border-bottom: 0px;
}

/*=========================== Services ============================ */
/* Services icon style */
.icon-wrapper {
    display: inline-block;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    transition: all 0.2s ease-in-out;
}

.icon-box {
    padding: 30px 20px 0px 20px;
    z-index: 99;
}

.icon-box:hover .icon-wrapper {
    transform: scale(1.2);
}

.icon-box.style2 {
    border: 4px solid transparent;
    padding: 20px 40px;
}

.icon-box.style2 h4 {
    margin-top: 0px;
    font-weight: 400;
}

.icon-box.style2 .icon-wrapper {
    margin-top: -70px;
    width: 200px;
    margin-bottom: 20px;
    transition: all 0.2s ease-in-out;
    border: 0;
    position: relative;
    margin-bottom: 90px;
}

.icon-box.style2 .icon-wrapper img {
    border: 10px solid #fff;
}

.icon-box.style2:before {
    content: "\f111";
    transition: all ease-in-out 0.2s;
    position: absolute;
    font-family: "Flaticon";
    font-size: 50px;
    left: 0px;
    z-index: 0;
    top: -5px;
    opacity: 0.4;
    text-align: center;
    z-index: 9;
}

.icon-wrapper i {
    color: #fff;
    font-size: 80px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

/* services style2 */
.services3-wrapper {
    padding: 0px;
}

.services3 .header {
    transition: all ease-in-out 0.2s;
    color: #fff;
    position: absolute;
    margin-top: -80px;
    padding: 10px 20px;
    transform: rotate(5deg);
    right: 10px;
    font-size: 28px;
    text-align: center;
}

.services3-wrapper:hover .header {
    transform: rotate(-5deg);
}

.services3 {
    border-bottom: 10px solid;
}

/*=========================== Footer ============================ */
footer {
    padding: 70px 0;
}

.logo-footer {
    max-width: 200px;
}

.credits p {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 0px;
    text-align: center;
}

/*=========================== Miscellaneous ============================ */
/* light text */
.text-light p,
.text-light a,
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
    color: #fff !important;
}

/* progress bar */
.progress {
    margin: 5px;
}

/* elements page */
#elements .btn {
    margin: 10px;
}

#elements .btn-group .btn {
    margin: 0px;
}

.element-heading {
    text-align: center;
    border-bottom: 1px dotted;
    padding: 20px;
}

.elements-subheader {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 40px 0px;
    font-size: 24px;
    color: #808080;
    text-align: center;
    text-transform: uppercase;
}

.element-block {
    padding: 30px;
}

.element-section {
    padding: 150px 100px;
}

#glyphs {
    border-bottom: 1px solid #ccc;
    padding: 2em 0;
    text-align: center;
}

.glyph {
    display: inline-block;
    width: 9em;
    margin: 1em;
    text-align: center;
    vertical-align: top;
    background: #FFF;
}

.glyph .glyph-icon {
    padding: 10px;
    display: block;
    font-family: "Flaticon";
    font-size: 64px;
    line-height: 1;
}

.glyph .glyph-icon:before {
    font-size: 64px;
    color: #222;
    margin-left: 0;
}

.class-name {
    font-size: 0.65em;
    background-color: #222;
    color: #fff;
    border-radius: 4px 4px 0 0;
    padding: 0.5em;
    color: #FFFF99;
    font-family: Consolas, Monaco, Lucida Console;
}

.author-name {
    font-size: 0.6em;
    background-color: #fcfcfd;
    border: 1px solid #DEDEE4;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    padding: 0.5em;
}

/* buttons */
.btn {
    border: none;
    border-radius: 0px;
    color: #ffffff;
    padding: 0px 40px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 2.7em;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 16px;
    outline: none;
    position: relative;
    transition: all ease-in-out 0.3s;
}

.btn:after {
    content: "";
    position: absolute;
    height: 100%;
    left: 50%;
    right: 50%;
    border-radius: inherit;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.9s;
    opacity: 0;
}

.btn:hover:after,
.btn.hover:after {
    left: 0;
    right: 0;
    opacity: 1;
}

.btn.btn-transparent {
    border: 2px solid;
}

.btn.btn-transparent:hover {
    transform: scale(1.1);
}

.btn-lg {
    padding: 1.2rem 5.4rem !important;
    font-size: 1.35rem !important;
    line-height: 1.5;
}

.btn-sm {
    padding: 0.rem 0.9rem !important;
    font-size: 0.9rem !important;
}

.btn-light {
    color: #212529 !important;
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    margin: 0px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
    outline: none;
    box-shadow: none !important;
}

button:focus {
    outline: 0px;
}

/* forms */
.form-control {
    transition: all 0.3s ease-in-out;
    border: 0;
    border: 2px solid;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 0px;
    line-height: 2;
}

.form-control input {
    height: 50px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-control.border2 {
    border-color: #fff;
}

.input-group-btn .btn {
    margin-top: 0px;
    height: 48px;
    margin-left: 0px;
    border-radius: 0;
}

/* Blockquote */
blockquote {
    padding: 30px;
    font-family: 'Nunito', sans-serif;
    margin-top: 40px;
}

blockquote footer {
    padding: 0px;
    font-size: 14px;
    font-weight: 400;
    background: transparent !important;
    color: inherit;
}

blockquote p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

cite:before {
    content: '― ';
}

cite {
    font-style: normal;
    font-size: 15px;
}

blockquote:before {
    margin-top: -50px;
    left: 16px;
    color: #fff;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.5em;
    position: absolute;
    opacity: 0.5;
}

/* form label */
label {
    margin-top: 10px;
}

/* rotate img on hover */
.rotate-img img {
    max-width: 100%;
    transition: all 0.3s;
}

.rotate-img:hover img {
    transform: rotate(-5deg);
}

/* Map */
#map-canvas {
    max-width: 100%;
    height: 350px;
    border-radius: 0px;
}

#map-canvas.map-small-height {
    border-radius: 20px;
    height: 250px;
}

/* bg-secondary */
.bg-secondary label {
    color: #fff;
}

/* Sidebar */
.sidebar-header {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 700;
}

.sidebar-header:first-child {
    margin-top: 0px;
}

#sidebar.bg-primary p {
    color: #fff;
}

#sidebar.bg-primary .sidebar-header {
    color: #fff;
}

/* Go to top icon */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 42px;
    transition: all 0.2s ease-in-out;
    z-index: 119;
}

.back-to-top i {
    display: block;
    width: 44px;
    height: 44px;
    line-height: 40px;
    font-size: 32px;
    color: #fff;
    border-radius: 0px;
    text-align: center;
    border: 1px solid #fff;
}

.back-to-top:hover {
    transform: scale(1.3);
}

/*Nav-tabs */
.nav-tabs .nav-link {
    font-size: 18px;
    padding: 30px 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    margin-right: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
}

.nav-tabs .nav-item,
.nav-tabs,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border: 0px;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    color: #fff;
}

.nav-tabs .nav-item i {
    font-weight: normal;
    font-size: 40px;
    display: block;
    transition: all .42s ease-in-out;
    text-align: center;
}

.nav-tabs .nav-item:hover i {
    -moz-transform: translate(0px, 0);
    -moz-transition: -moz-transform 0.8s ease;
    transform: rotate(14deg) scale(1.3);
    transition: -webkit-transform 0.8s ease;
}

/* tab content */

.tab-content {
    background: #fff;
    padding: 60px;
    border: 0px;
    box-shadow: 1px 2px 20px rgba(105, 105, 105, 0.15);
}

.tab-content.block-padding:last-child {
    padding-bottom: 90px;
}

i.fa.fa-angle-up {
    background: #3e220f;
}

/* tab animation on active */
.tab-pane.active {
    animation: slide-down 0.5s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translatey(-20px);
    }

    100% {
        opacity: 1;
        transform: translatey(0);
    }
}

/* centered navs */
.center-nav {
    display: flex;
    justify-content: center;
}

/* cards */
.card {
    display: block;
    border: 0px;
    border-radius: 15px;
    padding: 20px;
}

.card-header {
    background: none;
}

.card-title {
    transition: all 0.2s ease-in-out;
}

a .card-title:hover {
    color: inherit;
}

/* widgets */
.widget-area {
    margin: 40px 0px;
    padding: 20px;
}

.widget-area:first-child {
    margin-top: 0px;
}

.widget-area:before {
    font-family: 'Flaticon';
    content: "\f110";
    font-weight: normal;
    font-size: 30px;
    margin: 0 auto;
    position: absolute;
    margin-top: -30px;
    float: right;
    right: 20px;
    transform: rotate(12deg);
    opacity: 0.5;
}

.widget-area .form-control {
    border: 2px solid transparent;
}

/* accordions */
.accordion-cards .card {
    border: 0px;
    display: block;
    padding: 0px;
    border-radius: 0px;
    background: #fff;
}

.accordion-cards .card-header {
    padding: 10px 20px;
    border-radius: 5px;
    border-bottom: 0;
    transition: all 0.8s;
    color: #2 !important;
    margin: 5px;
    cursor: pointer;
}

.accordion-cards .card-header .show {
    background-color: #cecece;
}

.accordion-cards .card-body {
    margin: 0 20px;
    padding: 40px;
    border-radius: 5px;
}

/* accordion */
.accordion .card {
    padding: 0px;
    background: transparent;
}

.accordion .card-header {
    font-weight: 600;
    font-size: 19px;
    padding: 5px 0px;
    line-height: 1.3;
    border: 0px;
}

.accordion .card-link {
    color: #fff !important;
    transition: all 0.8s;
    display: block;
    padding: 5px 20px;
}

.accordion .card-header a:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 17px;
    top: 0;
    background: transparent !important;
    margin-right: 10px;
}

.accordion .card-header a.collapsed:before {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
}

/* img fluid */
.img-fluid {
    max-width: 100%;
}

/* full-container */
.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

/* section */
section {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* no-padding */
.no-padding {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* section-heading */
.section-heading {
    margin-bottom: 90px;
    text-align: center;
    position: relative;
    z-index: 99;
}

.section-heading h2 {
    font-size: 62px;
    font-weight: 800;
}

.section-heading.light-icon h2:before {
    color: #fff !important;
}

.section-heading h2:before {
    content: "\f110";
    z-index: 0;
    font-family: "flaticon";
    font-size: 120px;
    z-index: 0;
    opacity: 0.3;
    display: block;
    font-weight: normal;
    left: 35%;
    z-index: -1;
    margin-top: -40px;
    position: absolute;
}

/* custom ul */
ul.custom {
    list-style: none;
    margin-bottom: 0;
}

ul.custom li {
    padding: 5px 0px;
    font-size: 16px;
    line-height: 24px;
}

ul.custom li:before {
    font-family: "Flaticon";
    content: "\f111";
    padding-right: 7px;
    font-weight: normal;
    font-size: 15px;
}

.text-light ul.custom li:before {
    color: #fff !important;
}

/* checkmark ul */
ul.checkmark {
    list-style: none;
    margin-bottom: 0;
}

ul.checkmark li {
    padding: 5px 0px;
    font-size: 16px;
    line-height: 26px;
}

ul.checkmark li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    padding-right: 7px;
}

/* white border if bg same color as form border */
.bg-primary .form-control {
    border-color: #fff;
}

/* img rotate */
.img-rotate-outline {
    transform: rotate(-3deg);
    border: 15px solid #cecece;
}

/* img zoom on hover */
.img-zoom-hover {
    overflow: hidden;
}

.img-zoom-hover img {
    transition: all 0.2s ease-in-out;
}

.img-zoom-hover:hover img {
    transform: scale(1.1);
}

/* block padding */
.block-padding {
    padding-top: 90px;
    padding-bottom: 90px;
}

.block-padding:last-child.pb-block {
    padding-bottom: 90px;
}

.block-padding:first-child {
    padding-top: 0px;
}

.block-padding:last-child {
    padding-bottom: 0px;
}

.bottom-block-padding {
    padding-top: 70px;
}

/* overlay background */
.overlay {
    box-shadow: inset 0 0 0 1000px rgba(41, 41, 41, 0.42);
}

.overlay-light {
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.42);
}

.overlay-dark {
    box-shadow: inset 0 0 0 1000px rgba(41, 41, 41, 0.87);
}

/* extra paddings and margins */
.p-10 {
    padding: 100px 0;
}

.p-20 {
    padding: 200px 0;
}

.pb-8 {
    padding-bottom: 80px;
}

.mt-8 {
    padding-top: 80px;
}

/* pulse animation */
@keyframes pulse {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(0.75);
    }

    to {
        transform: scale(1);
    }
}

/* transparent white bg */
.bg-white-80 {
    background: rgba(255, 255, 255, 0.71) !important;
}

/* list group */
.list-group {
    font-weight: 700;
    font-size: 18px;
}

.list-group-item:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    top: 0;
    margin-right: 10px;
}

.list-group-item {
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
    border: 0;
    border-radius: 0px !important;
    font-size: 16px;
    padding: .05rem 1.25rem;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    color: #fff;
}

/* Pagination*/
.pagination {
    margin-bottom: 0px;
}

.page-link:hover,
.page-link:focus,
.page-link.active {
    color: #fff;
    border: 1px solid #fff;
    outline: 0;
}

.page-link {
    transition: all 0.2s ease-in-out;
    font-family: 'Nunito', sans-serif;
    color: #fff;
    font-weight: 700;
    border: 1px solid #fff;
}

/* Jumbotron */
.jumbotron {
    background: url("../images/img-jumbotron.jpg");
    text-align: left;
    margin-bottom: 0px;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    background-size: cover;
}

.jumbo-heading {
    text-align: center;
    position: relative;
    z-index: 110;
}

.jumbo-heading h1 {
    color: #fff;
}

/* Owl-carousel */
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    text-align: center;
}

.owl-nav {
    margin: 0 auto;
    top: 0px;
    left: 50%;
}

.owl-prev {
    left: -10px;
}

.owl-next {
    right: -10px;
}

.owl-prev i,
.owl-next i {
    transition: all .3s ease-in-out;
    font-size: 40px;
}

.owl-prev i:hover,
.owl-next i:hover {
    transform: scale(1.2);
}

.owl-carousel.owl-loaded {
    display: block;
    clear: both;
}

.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-carousel .owl-stage-outer {
    margin-top: -40px;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
    border: 1px solid #cecece;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 0.4rem;
    height: 0.4rem;
    margin: 0 0.3rem;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-stage {
    margin-top: 40px;
}

/* owl carousel with navigation on top */
.top-centered-nav .owl-nav {
    position: absolute;
}

.top-centered-nav .owl-prev,
.top-centered-nav .owl-next {
    top: 0%;
}

.top-centered-nav .owl-prev {
    left: -30px;
}

.top-centered-nav .owl-next {
    right: -30px;
}

/* Mailchimp message */
#mce-error-response,
#mce-success-response {
    display: none;
    margin-top: 20px;
}

/* Page margin*/
.page {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 90px;
    position: relative;
    z-index: 100;
}

/* opacity on hover */
.hover-opacity {
    transition: all 0.4s ease-in-out;
}

.hover-opacity:hover {
    opacity: 0.6;
}

/* alerts */
.alert {
    padding: 20px;
}

.alert-primary,
.alert-secondary {
    color: #fff;
}

/* nav pills */
.nav-pills .nav-link {
    font-size: 20px;
    color: #fff;
    border-radius: 0px;
    padding: 10px 40px;
    margin: 5px 10px;
    transition: all 0.2s ease-in-out;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.nav-link.disabled {
    color: #6c757d !important;
}

/* pills /badges */
.badge-pill {
    padding: 10px;
    margin: 3px;
    border-radius: 0px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.badge-default {
    color: #fff;
}

/* breadcrumbs */
.breadcrumb {
    margin-bottom: 0;
    color: #fff;
    background: transparent;
    font-size: 11px;
    display: inline-block;
    padding: 0px;
    text-align: center;
    padding: 5px 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.breadcrumb .breadcrumb-item {
    display: inline;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #cecece;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    font-size: 17px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "/";
}

/* SVG dividers*/

svg.divider {
    margin-bottom: -10px;
    margin-top: -30%;
}

svg.divider.header-top {
    fill: #ffffff;
    position: absolute;
    margin-bottom: 0;
    margin-top: -10%;
}

.divider-zindex-top img {
    margin-top: -10%;
    position: absolute;
    width: 100%;
    aspect-ratio: 2;
}

.z-99 img {
    z-index: 99 !important;
}

a.nav-link.nav-background {
    background: #412410;
}

button#submit_btn {
    background: #ca0f48;
}

/*=========================== Media queries ============================ */
/* Small devices (landscape phones, 544px) */
@media (max-width: 544px) {

    /* slider */
    .header-wrapper .header-text {
        padding: 10px !important;
    }

    .header-text h1 {
        margin-bottom: 0px !important;
    }

    .header-text:before {
        display: none !important;
    }

    .ls-bottom-nav-wrapper {
        bottom: -10px;
    }

    /* testimonials */
    .testimonial3 .pic {
        margin: 0 auto;
        display: block;
        float: none;
    }

    .testimonial3 .testimonial3-title {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    .testimonial {
        margin: 0px;
        padding: 20px;
    }

    .testimonial .pic {
        display: block;
        position: relative;
        top: 0px;
        margin: 0 auto;
        left: 0px;
    }

    /* jumbotron */
    .jumbotron h1 {
        font-size: 1.7em !important;
    }

    .jumbotron {
        min-height: 180px !important;
    }

    .jumbotron .breadcrumb {
        max-width: 200px;
    }

    /* others */
    .services3 {
        padding: 15px !important;
    }

    .back-to-top i {
        width: 24px;
        height: 24px;
        line-height: 20px;
        font-size: 22px;
    }

    .nav-pills .nav-link {
        font-size: 15px;
    }

    .btn.ml-1 {
        margin-left: 0px !important;
    }

    .breadcrumb {
        padding: 0px 10px;
    }

    .btn {
        padding: 0px 20px;
    }

    .serviceBox1 .title a {
        font-size: 20px;
    }

    .section-heading h2,
    h2 {
        font-size: 2.4em !important;
    }

    .owl-prev i,
    .owl-next i {
        font-size: 20px;
    }

    .nav-tabs .nav-link {
        width: 100%;
        margin-right: 0px;
        text-align: center;
    }

    .navbar-brand span {
        font-size: 30px;
    }

    .navbar-brand i {
        font-size: 40px;
    }

    .navbar-collapse.show,
    .navbar-collapse {
        max-height: 300px !important;
    }

    .input-group .form-control,
    .input-group-btn {
        display: inline-table;
        width: 100%;
        margin-top: 10px;
    }

    .input-group>.custom-select:not(:last-child),
    .input-group>.form-control:not(:last-child),
    .input-group-btn .btn {
        border-radius: 10px;
    }

    .card {
        padding: 20px;
    }

    .btn-lg {
        padding: 20px !important;
    }

    .back-to-top {
        right: 12px;
    }

    .card.blog-card {
        padding: 30px 0px;
    }

    .card-header {
        padding: .75rem 0rem;
    }

    .blog-sidebar .card {
        padding: 0px;
    }

    .text-xs-center {
        text-align: center;
    }

    .header-wrapper .header-text {
        margin-top: 15% !important;
    }
}

/* Medium/small devices (767px) */
@media (max-width: 767px) {
    .services3 .header {
        font-size: 22px;
        position: relative;
        margin-top: -30px;
    }

    #header1-section {
        padding: 5em 0;
        background-position: left center !important;
    }

    .subtitle2 {
        font-size: 16px;
    }

    .adoption-header {
        margin-top: 0px;
    }

    .btn.float-left {
        float: none !important;
    }

    .feature-with-icon {
        text-align: center;
    }

    .owl-prev {
        left: -0px;
    }

    .owl-next {
        right: -0px;
    }

    .nav-tabs .nav-link {
        width: 100%;
        margin-right: 0px;
        text-align: center;
    }

    .hidden-small {
        display: none;
    }

    .accordion a:before {
        width: 20px;
        height: 20px;
        line-height: 20px;
        left: -25px;
        top: 10px;
    }

    .accordion:before {
        left: 12px;
    }

    .accordion .card-header {
        padding: 5px;
    }

    .bg-collumn {
        min-height: 200px !important;
    }

    section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-heading {
        margin-bottom: 60px;
    }

    .section-heading:before {
        font-size: 40px;
    }

    h1 {
        font-size: 2.4em;
    }

    .section-heading h2,
    h2 {
        font-size: 2.2em;
    }

    h3 {
        font-size: 1.7em;
    }

    h4 {
        font-size: 1.5em;
    }

    .h7 {
        font-size: 16px;
        line-height: 27px;
    }

    .header-p {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .header-text h1 {
        margin-bottom: 20px;
        font-size: 7em;
    }

    .page {
        padding-top: 0px;
        padding-bottom: 30px;
    }

    footer {
        padding: 30px;
    }

    .mt-5,
    .my-5 {
        margin-top: 2rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .ls-outline .ls-nav-prev,
    .ls-outline .ls-nav-next {
        display: none !important;
    }

    .block-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .block-padding:last-child,
    .block-padding:last-child.pb-block {
        padding-bottom: 40px;
    }

    .bottom-block-padding {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .section-heading h2:before {
        font-size: 70px;
        z-index: -1;
        margin-top: -20px;
    }
}

/* Medium devices (1024px) */
@media (max-width: 1024px) {

    /* fixed backgrounds, important fix for IOS */
    .bg-fixed {
        background-attachment: scroll !important;
        background-size: cover;
    }
}

/* Medium devices (991px) */
@media (min-width: 992px) {

    /* fixed backgrounds, important fix for IOS */
    .bg-fixed {
        background-attachment: fixed;
        background-size: cover;
    }

    /* page with sidebar */
    .page-with-sidebar {
        padding-right: 30px;
    }

    /* page with sidebar right*/
    .page-with-sidebar.right {
        padding-left: 30px;
    }

    /* circle images with parallax effect*/
    .circle-images {
        position: absolute;
        margin-top: -100px;
    }

    .circle-images img {
        border: 12px solid;
    }

    .circle-images .img1 {
        max-width: 220px;
        height: auto;
    }

    .circle-images .img2 {
        max-width: 350px;
        height: auto;
        margin-left: 120px;
        margin-top: -100px;
    }

    .circle-images .img3 {
        max-width: 270px;
        height: auto;
        margin-top: -70px !important;
    }

    .icon-box h4 {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .video-section .p-5 {
        padding: 0px !important;
    }

    .page-with-sidebar {
        margin-top: 20px;
    }

    .header-wrapper .header-text {
        margin-top: 5%;
    }

    #header1-section p,
    #header1-section h1 {
        color: #fff !important;
    }

    #header1-section {
        box-shadow: inset 0 0 0 1000px rgba(12, 12, 12, 0.23);
    }

    .hidden-md {
        display: none;
    }

    .bg-collumn {
        min-height: 300px;
    }

    .nav-tabs .nav-link {
        padding: 15px 30px;
    }

    #sidebar {
        margin-top: 50px;
    }

    /* no background or hidden on small devices */
    .no-bg-small {
        background-image: none !important;
    }

    .hidden-medium-small {
        display: none;
    }

    /* slider */
    .header-text:before {
        font-size: 50px !important;
        margin-top: 30px;
    }

    /*top bar */
    .top-bar .contact-details li {
        font-size: 13px;
    }

    .top-bar .contact-details li {
        margin: 0px !important;
    }

    .top-bar .contact-details i {
        margin-right: 8px;
        margin-left: 8px;
    }

    /* others */
    .res-margin {
        margin-top: 30px;
    }

    .img-rotate-outline {
        padding: 30px;
        border: 0px;
    }

    .navbar-collapse.show {
        max-height: 400px;
    }

    .navbar-collapse {
        max-height: 400px;
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 10px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background-color: lightgray;
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background-color: darkgray;
    }

    .navbar-collapse.show {
        overflow-y: scroll !important;
        overflow-x: hidden !important;
    }
}

/* Large devices (large desktops, min 1200px ) The navbar toggle appears at this breakpoint*/
@media (min-width: 1200px) {
    .navbar.shrink {
        height: 100px;
    }

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

    /* vertical-tabs */
    .vertical-tabs .nav.nav-tabs {
        float: left;
        display: inline-block;
        margin-right: 0;
        border-bottom: 0;
        border-right: 1px solid #ddd;
    }

    .vertical-tabs nav .nav-tabs {
        display: inline-block;
        width: 25%;
    }

    .vertical-tabs .tab-content {
        float: right;
        width: 75%;
        display: inline-block;
    }

    .vertical-tabs .nav-tabs .nav-link {
        margin-right: 0px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        padding: 20px 20px;
        margin-bottom: 20px;
        border-radius: 0px;
        text-align: center;
    }

    /* jumbotron */
    .jumbotron {
        height: 300px;
    }

    /* navigation */
    .navbar-nav .nav-link {
        height: 60px;
    }

    .navbar {
        height: 106px;
        line-height: 45px;
    }

    .shrink .dropdown-menu {
        margin-top: 7px;
    }

    .dropdown-menu {
        margin-top: 22px;
        border-radius: 0px;
        padding: 0px;
    }
}

/* Large devices (large desktops, max 1200px ) */

@media (max-width: 1200px) {

    .ls-v6 .ls-nav-next,
    .ls-v6 .ls-nav-prev {
        display: none !important;
    }

    /* hide top bar */
    .top-bar {
        display: none !important;
    }

    .circle-images {
        text-align: center;
    }

    #not-found {
        margin-top: 5rem;
        margin-bottom: 3rem;
    }

    .counter {
        margin-bottom: 20px;
    }

    /* Jumbotron */
    .jumbotron {
        min-height: 250px;
        background-size: cover !important;
    }

    /* navigation */
    .dropdown-menu:before {
        display: none;
    }

    .navbar .nav-item {
        margin-top: 20px;
    }

    .navbar-nav .dropdown-menu {
        float: left;
        width: 100%;
    }

    .navbar-toggler:hover i {
        color: #3e220f;
    }

    .navbar {
        min-height: 50px;
        padding: 0px;
    }

    .nav-brand img {
        max-height: 80px;
        padding: 5px;
    }

    .dropdown-item,
    .navbar-nav .nav-link {
        text-align: center;
    }

    .dropdown-item {
        padding: 0.8rem;
    }

    .navbar-collapse.show {
        display: block;
        padding-bottom: 40px;
    }

    /* slider */
    .header-text.full-width {
        width: 100% !important;
        margin-left: 2%;
        padding: 0px !important;
        margin-top: 10% !important;
    }
}

/* Extra Large devices (min 1500px ) */

@media (min-width: 1500px) {
    .wide-xl {
        width: calc(100% + 30%);
    }

    #header1-section {
        padding: 15em 0;
    }
}