:root {
    --theme-primary-color: #00796b;
    --theme-secondary-color: #ff5722;
    --theme-tertiary-color: #007e8c;
    --theme-fourth-color: #0081ab;
    --theme-gray-color: #f4f4f4;
    --font-primary: "Mulish", serif;
}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    font-optical-sizing: auto;
    color: #000000;
}

*,
::after,
::before {
    box-sizing: border-box;
}

a {
    color: #0b57d0;
    line-height: normal;
}

a:visited {
    color: #673ab7;
}

a[href^="tel"] {
    white-space: nowrap;
}

.dvLayout {
    overflow: visible;
}

img {
    border: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

#return-to-top {
    bottom: 20px;
    cursor: pointer;
    display: none;
    height: 50px;
    right: 20px;
    position: fixed;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    width: 50px;
    z-index: 999;
}

#return-to-top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 100%;
    background: var(--theme-secondary-color);
    border: 4px rgb(255 255 255 / 70%);
    border-style: outset;
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    z-index: -1;
    transition: border-color 0.3s;
}

#return-to-top img {
    width: 25px;
    opacity: 0.4;
    transition: opacity 0.3s;
    margin-top: 12px;
}

#return-to-top:hover img {
    opacity: 1;
}

.container {
    max-width: 1280px !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 100% !important;
    }
}

/* === common-heading, h1-h6 === */
.mega-heading,
.large-heading,
.medium-heading,
.small-heading,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
    color: var(--theme-primary-color);
}

h1,
.mega-heading {
    font-size: 36px;
}

h2,
.large-heading {
    font-size: 30px;
}

h3,
.medium-heading {
    font-size: 26px;
}

h4,
.small-heading {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

/* === common-sec === */
.py-50,
.common-sec {
    padding-top: 50px;
    padding-bottom: 50px;
}

.common-sec {
    position: relative;
    z-index: 0;
}

.common-sec:last-child {
    border-bottom: 1px solid #f6f6fd;
}

.common-sec:nth-child(even):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f7f8f9;
    z-index: -1;
}

/* === image box === */
.img-box {
    border-radius: 3px;
    transition: 0.5s;
    margin-bottom: 15px;
    text-align: center;
}

.img-box img {
    border-radius: 3px;
}

.img-box:last-child {
    margin-bottom: 0;
}

figure.img-box img + figcaption {
    margin-top: 10px;
    text-align: left;
    padding: 10px;
    border-radius: 3px;
    box-shadow: -5px 5px 20px 0 rgb(0 0 0 / 5%);
}

@media (min-width: 992px) {
    .img-box.float-lg-right {
        max-width: 50%;
        padding-left: 15px;
    }

    .img-box.float-lg-left {
        max-width: 50%;
        padding-right: 15px;
    }

    .count-lg-2 {
        -webkit-column-count: 2;
        column-count: 2;
    }

    .count-lg-3 {
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (min-width: 768px) {
    .count-md-2 {
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 1199px) {
    .py-50,
    .common-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    div[class*="col-lg"] .img-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    h1,
    .mega-heading {
        font-size: 30px;
    }

    h2,
    .large-heading {
        font-size: 26px;
    }

    h3,
    .medium-heading {
        font-size: 24px;
    }

    h4,
    .small-heading {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    h1,
    .mega-heading {
        font-size: 26px;
    }

    h2,
    .large-heading {
        font-size: 24px;
    }

    h3,
    .medium-heading {
        font-size: 22px;
    }

    h4,
    .small-heading {
        font-size: 20px;
    }

    div[class*="col-md"] .img-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 1.5rem;
    }

    h1,
    .mega-heading {
        font-size: 24px;
    }

    h2,
    .large-heading {
        font-size: 22px;
    }

    h3,
    .medium-heading {
        font-size: 20px;
    }
}

@media (max-width: 425px) {
    .count-2 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .count-3 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
/*======= Theme Btn =======*/
.common-btn {
    position: relative;
    border: 1px solid var(--theme-secondary-color);
    background: transparent;
    text-align: center !important;
    padding: 15px 25px;
    min-width: 150px;
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #ffffff;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.4s ease-in-out 0s;
    overflow: hidden;
}
.common-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.common-btn:after {
    content: "";
    position: absolute;
    background: var(--theme-secondary-color);
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    transition: all 0.2s;
    z-index: -1;
}
.common-btn:hover:after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.theme-btn a,
.theme-btn button {
    color: #fff;
    background: var(--theme-secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
    text-decoration: none;
    min-width: 150px;
    line-height: normal;
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-out 0s;
    z-index: 1;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.theme-btn a:before,
.theme-btn button:before {
    content: "";
    position: absolute;
    height: 400px;
    width: 430px;
    top: 50%;
    left: 50%;
    background: var(--theme-primary-color);
    border-radius: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: all 0.5s ease-out 0s;
    z-index: -1;
}

.theme-btn a:hover:before,
.theme-btn button:hover:before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn a:hover,
.theme-btn button:hover {
    color: #fff !important;
}

.theme-btn.normal a,
.theme-btn.normal button {
    background: transparent;
    border: 2px solid var(--theme-secondary-color);
}

.theme-btn a svg path,
.theme-btn button svg path {
    transition: all 0.5s ease-out 0s;
}

.theme-btn a:hover svg path,
.theme-btn button:hover svg path {
    fill: rgb(255 255 255);
}

@media all and (max-width: 1450px) {
    .theme-btn a,
    .theme-btn button {
        font-size: 14px;
        padding: 5px 15px;
        line-height: 28px;
    }
}

.list {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.list > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.list > li::before {
    position: absolute;
    color: var(--theme-tertiary-color);
    top: 2px;
    left: 0;
    content: "\f14a";
    padding-right: 5px;
    font-size: 16px;
    font-family: "FontAwesome";
}

/*===== Breadcrumb =====*/
.breadcrumb-area {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.breadcrumb-area .breadcrumb {
    background-color: transparent;
    padding: 10px 0;
    margin-bottom: 0;
}
.breadcrumb-area .breadcrumb ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb-area .breadcrumb a {
    background-color: #f2f2f2;
    height: 28px;
    position: relative;
    color: #0573e6;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding-left: 22px;
}

.breadcrumb-area .breadcrumb a:after,
.breadcrumb-area .breadcrumb a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    z-index: 1;
}

.breadcrumb-area .breadcrumb a:before {
    border-width: 16px 0 16px 16px;
    border-left-color: #fff;
    left: calc(100% + 2px);
    top: -2px;
}

.breadcrumb-area .breadcrumb a:after {
    border-width: 14px 0 14px 14px;
    border-left-color: #f2f2f2;
    left: 100%;
    top: 0;
}

.breadcrumb li.active {
    display: flex;
    align-items: center;
}

.breadcrumb li.active em {
    white-space: normal;
    margin-left: 20px;
    font-size: 14px;
    color: #343a40;
}

.breadcrumb-area .breadcrumb li:first-child a {
    padding-left: 8px;
    padding-right: 3px;
}

.breadcrumb-area .breadcrumb li:first-child a i {
    margin-right: 5px;
}
