/* -------------------------------------------------------
    Template: Galaxy - IT Solution HTML5 Template
    Version: 1.0.0
    Author: Iddrak
    Design and Developed by: iddrak
------------------------------------------------------- */

/* --------------------------------------
    [  Table of contents  ]
-----------------------------------------

:: Typography
:: Helper Classes
:: Spacing
:: Bootstrap default calss suctomizations
:: Section Title
:: Button
:: Progress Bar
:: Header Section
:: Hero Section 
:: Hero 2 Section 
:: About Section 
:: Company Info Section 
:: Service Section 
:: Portfolio Section
:: Counter Section 
:: Team Section 
:: Call to Section
:: Contact Page 
:: Blog Section
:: Footer Section 
:: Page Bannser 
:: Service Single 
:: Project Single 
:: Clients
:: Quick Contact Block 
:: Testimonial
:: Pricing Table 
:: Faq section
:: 404 error page

-----------------------------------------
    [ End table content ]
-------------------------------------- */

/* --------------------------------------
    Typography
-------------------------------------- */
body {
    font-family: var(--body-font);
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    color: var(--paragraph-color);
    overflow-x: hidden;
}

:root {
  --main-color-one: #f85032;
  --heading-color: #333333;
  --paragraph-color: #767676;
  --heading-font: "Teko", sans-serif;
  --body-font: "Poppins", sans-serif;
}

ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    outline: medium none !important;
    color: #767676;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

a:focus {
    color: var(--main-color-one);
    text-decoration: none !important;
}

a:hover {
    color: var(--main-color-one);
    text-decoration: none !important;
}

input {
    outline: medium none !important;
    color: var(--main-color-one);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: normal;
    color: #333333;
    margin-top: 0px;
    font-weight: 600;
    text-transform: uppercase;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

label {
    font-weight: normal;
}

h1 {
    font-size: 58px;
    font-style: normal;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    font-weight: normal;
    line-height: 24px;
}

i{
    line-height: 1;
}

img{
    width: inherit;
}

*::-moz-selection {
    background: var(--main-color-one);
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--main-color-one);
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: var(--main-color-one);
    color: #ffffff;
    text-shadow: none;
}

/* container-fluid */
.container-fluid.container-space {
    padding: 0 100px;
}

/* Contact form success message */
#form-messages{
    color: green;
}

/* form-control */
.form-control {
    border: 1px solid #ebebeb;
    border-radius: 0px;
    padding: 10px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    background-clip: inherit !important;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--main-color-one);
}

.form-control::-moz-placeholder {
    color: #3a4957;
}

.form-control::-ms-input-placeholder {
    color: #3a4957;
}

.form-control::-webkit-input-placeholder {
    color: #3a4957;
}

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

/* border  */
.border {
    border-color: #ebebeb !important;
}

.border-top {
    border-top-color: #ebebeb !important;
}

.border-left {
    border-left-color: #ebebeb !important;
}

.border-right {
    border-right-color: #ebebeb !important;
}

.border-bottom {
    border-bottom-color: #ebebeb !important;
}

/* badge  */
.badge {
    border-radius: 3px;
}

.badge+.badge {
    margin-left: 6px;
}

.badge-md {
    padding: 5px 8px;
    font-size: 13px;
    font-weight: normal;
}

.badge-primary {
    background: var(--main-color-one);
}

/* Back to to */
.back-to-top a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 70px;
    right: 20px;
    margin: 0px;
    font-size: 14px;
    background: #111;
    padding: 10px 15px;
    letter-spacing: 1px;
    color: var(--main-color-one);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    transform: rotate(-90deg);
}

.back-to-top a i{
    padding-left: 10px;
    color: var(--main-color-one);
}

@media (max-width: 767px){
    .back-to-top a {
        bottom: 70px;
        right: -20px;
    }
}

/* pagination */
.pagination .page-item .page-link {
    padding: 0;
    color: #666666;
    border-color: #ebebeb;
    margin: 0 4px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
}

.pagination .page-item .page-link span {
    display: block;
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
    color: #ffffff;
}

.pagination .page-item:first-child .page-link {
    border-radius: 50%;
}

.pagination .page-item:last-child .page-link {
    border-radius: 50%;
}

/* --------------------------------------
    Helper Classes
-------------------------------------- */

.text-primary {
    color: var(--main-color-one) !important;
}

.text-secondary {
    color: #000000 !important;
}

.text-white {
    color: #ffffff;
}

.text-dark {
    color: #333333 !important;
}

.text-light {
    color: #666666 !important;
}

.text-success {
    color: #0abb0a !important;
}

.text-danger {
    color: #f52626 !important;
}

.skew-reverse {
    display: inline-block;
}

.bg-primary {
    background: var(--main-color-one) !important;
}

.bg-dark {
    background: #111 !important;
}

.bg-prefix{
    position: relative;
    background-position: center;
    background-size: cover;
}

.overlay{
    background: rgba(0,0,0,.8);
    padding: 100px 0;
}

/* --------------------------------------
    Spacing
-------------------------------------- */

.pt-0{
    padding-top: 0;
}

.pt-5{
    padding-top: 5px;
}

.pt-10{
    padding-top: 10px;
}

.pt-15{
    padding-top: 15px;
}

.pt-20{
    padding-top: 20px;
}

.pt-25{
    padding-top: 25px;
}

.pt-30{
    padding-top: 30px;
}

.pt-35{
    padding-top: 35px;
}

.pt-40{
    padding-top: 40px;
}

.pt-45{
    padding-top: 45px;
}

.pt-50{
    padding-top: 50px;
}

.pt-55{
    padding-top: 55px;
}

.pt-60{
    padding-top: 60px;
}

.pt-65{
    padding-top: 65px;
}

.pt-70{
    padding-top: 70px;
}

.pt-75{
    padding-top: 75px;
}

.pt-80{
    padding-top: 80px;
}

.pt-90{
    padding-top: 90px;
}

.pt-100{
    padding-top: 100px;
}

.pt-105{
    padding-top: 105px;
}

.pt-110{
    padding-top: 110px;
}

.pt-115{
    padding-top: 115px;
}

.pt-120{
    padding-top: 120px;
}

.pt-125{
    padding-top: 125px;
}

.pt-130{
    padding-top: 130px;
}

.pt-135{
    padding-top: 135px;
}

.pt-140{
    padding-top: 140px;
}

.pt-145{
    padding-top: 145px;
}

.pt-150{
    padding-top: 150px;
}

.pb-0{
    padding-bottom: 0;
}

.pb-5{
    padding-bottom: 5px;
}

.pb-10{
    padding-bottom: 10px;
}

.pb-15{
    padding-bottom: 15px;
}

.pb-20{
    padding-bottom: 20px;
}

.pb-25{
    padding-bottom: 25px;
}

.pb-30{
    padding-bottom: 30px;
}

.pb-35{
    padding-bottom: 35px;
}

.pb-40{
    padding-bottom: 40px;
}

.pb-45{
    padding-bottom: 45px;
}

.pb-50{
    padding-bottom: 50px;
}

.pb-55{
    padding-bottom: 55px;
}

.pb-60{
    padding-bottom: 60px;
}

.pb-65{
    padding-bottom: 65px;
}

.pb-70{
    padding-bottom: 70px;
}

.pb-75{
    padding-bottom: 75px;
}

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

.pb-85{
    padding-bottom: 85px;
}

.pb-90{
    padding-bottom: 90px;
}

.pb-100{
    padding-bottom: 100px;
}

.pb-105{
    padding-bottom: 105px;
}

.pb-110{
    padding-bottom: 110px;
}

.pb-115{
    padding-bottom: 115px;
}

.pb-120{
    padding-bottom: 120px;
}

.pb-125{
    padding-bottom: 125px;
}

.pb-130{
    padding-bottom: 130px;
}

.pb-135{
    padding-bottom: 135px;
}

.pb-140{
    padding-bottom: 140px;
}

.pb-145{
    padding-bottom: 145px;
}

.pb-150{
    padding-bottom: 150px;
}

.mt-0{
    margin-top: 0;
}

.mt-5{
    margin-top: 5px;
}

.mt-10{
    margin-top: 10px;
}

.mt-15{
    margin-top: 15px;
}

.mt-20{
    margin-top: 20px;
}

.mt-25{
    margin-top: 25px;
}

.mt-30{
    margin-top: 30px;
}

.mt-35{
    margin-top: 35px;
}

.mt-40{
    margin-top: 40px;
}

.mt-45{
    margin-top: 45px;
}

.mt-50{
    margin-top: 50px;
}

.mt-55{
    margin-top: 55px;
}

.mt-60{
    margin-top: 60px;
}

.mt-65{
    margin-top: 65px;
}

.mt-70{
    margin-top: 70px;
}

.mt-75{
    margin-top: 75px;
}

.mt-80{
    margin-top: 80px;
}

.mt-85{
    margin-top: 85px;
}

.mt-90{
    margin-top: 90px;
}

.mt-100{
    margin-top: 100px;
}

.mt-105{
    margin-top: 105px;
}

.mt-110{
    margin-top: 110px;
}

.mt-115{
    margin-top: 115px;
}

.mt-120{
    margin-top: 120px;
}

.mt-125{
    margin-top: 125px;
}

.mt-130{
    margin-top: 130px;
}

.mt-135{
    margin-top: 135px;
}

.mt-140{
    margin-top: 140px;
}

.mt-145{
    margin-top: 145px;
}

.mt-150{
    margin-top: 150px;
}

.mb-0{
    margin-bottom: 0!important;
}

.mb-5{
    margin-bottom: 5px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-15{
    margin-bottom: 15px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-25{
    margin-bottom: 25px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-35{
    margin-bottom: 35px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-45{
    margin-bottom: 45px;
}

.mb-50{
    margin-bottom: 50px;
}

.mb-55{
    margin-bottom: 55px;
}

.mb-60{
    margin-bottom: 60px;
}

.mb-65{
    margin-bottom: 65px;
}

.mb-70{
    margin-bottom: 70px;
}

.mb-75{
    margin-bottom: 75px;
}

.mb-80{
    margin-bottom: 80px;
}

.mb-90{
    margin-bottom: 90px;
}

.mb-100{
    margin-bottom: 100px;
}

.mb-105{
    margin-bottom: 105px;
}

.mb-110{
    margin-bottom: 110px;
}

.mb-115{
    margin-bottom: 115px;
}

.mb-120{
    margin-bottom: 120px;
}

.mb-125{
    margin-bottom: 125px;
}

.mb-130{
    margin-bottom: 130px;
}

.mb-135{
    margin-bottom: 135px;
}

.mb-140{
    margin-bottom: 140px;
}

.mb-145{
    margin-bottom: 145px;
}

.mb-150{
    margin-bottom: 150px;
}

@media (max-width: 991px){

    /* Margin Top */
    .md-mt-5{
        margin-top: 5px;
    }

    .md-mt-10{
        margin-top: 10px;
    }

    .md-mt-15{
        margin-top: 15px;
    }

    .md-mt-20{
        margin-top: 20px;
    }

    .md-mt-25{
        margin-top: 25px;
    }

    .md-mt-30{
        margin-top: 30px;
    }

    .md-mt-35{
        margin-top: 35px;
    }

    .md-mt-40{
        margin-top: 40px;
    }

    .md-mt-45{
        margin-top: 45px;
    }

    .md-mt-50{
        margin-top: 50px;
    }

    .md-mt-55{
        margin-top: 55px;
    }

    .md-mt-60{
        margin-top: 60px;
    }

    .md-mt-65{
        margin-top: 65px;
    }

    .md-mt-70{
        margin-top: 70px;
    }

    /* Margin bottom */
    .md-mb-5{
        margin-bottom: 5px;
    }

    .md-mb-10{
        margin-bottom: 10px;
    }

    .md-mb-15{
        margin-bottom: 15px;
    }

    .md-mb-20{
        margin-bottom: 20px;
    }

    .md-mb-25{
        margin-bottom: 25px;
    }

    .md-mb-30{
        margin-bottom: 30px;
    }

    .md-mb-35{
        margin-bottom: 35px;
    }

    .md-mb-40{
        margin-bottom: 40px;
    }

    .md-mb-45{
        margin-bottom: 45px;
    }

    .md-mb-50{
        margin-bottom: 50px;
    }

    .md-mb-55{
        margin-bottom: 55px;
    }

    .md-mb-60{
        margin-bottom: 60px;
    }

    .md-mb-65{
        margin-bottom: 65px;
    }

    .md-mb-70{
        margin-bottom: 70px;
    }
}

@media (max-width: 767px){

    /* Margin Top */
    .xs-mt-5{
        margin-top: 5px;
    }

    .xs-mt-10{
        margin-top: 10px;
    }

    .xs-mt-15{
        margin-top: 15px;
    }

    .xs-mt-20{
        margin-top: 20px;
    }

    .xs-mt-25{
        margin-top: 25px;
    }

    .xs-mt-30{
        margin-top: 30px;
    }

    .xs-mt-35{
        margin-top: 35px;
    }

    .xs-mt-40{
        margin-top: 40px;
    }

    .xs-mt-45{
        margin-top: 45px;
    }

    .xs-mt-50{
        margin-top: 50px;
    }

    .xs-mt-55{
        margin-top: 55px;
    }

    .xs-mt-60{
        margin-top: 60px;
    }

    .xs-mt-65{
        margin-top: 65px;
    }

    .xs-mt-70{
        margin-top: 70px;
    }

    /* Margin bottom */
    .xs-mb-5{
        margin-top: 5px;
    }

    .xs-mb-10{
        margin-top: 10px;
    }

    .xs-mb-15{
        margin-top: 15px;
    }

    .xs-mb-20{
        margin-top: 20px;
    }

    .xs-mb-25{
        margin-top: 25px;
    }

    .xs-mb-30{
        margin-top: 30px;
    }

    .xs-mb-35{
        margin-top: 35px;
    }

    .xs-mb-40{
        margin-top: 40px;
    }

    .xs-mb-45{
        margin-top: 45px;
    }

    .xs-mb-50{
        margin-top: 50px;
    }

    .xs-mb-55{
        margin-top: 55px;
    }

    .xs-mb-60{
        margin-top: 60px;
    }

    .xs-mb-65{
        margin-top: 65px;
    }

    .xs-mb-70{
        margin-top: 70px;
    }
}

/* Font Size */
.font-sm {
    font-size: 13px;
}

.font-md {
    font-size: 16px;
}

.font-lg {
    font-size: 17px;
}

.font-xl {
    font-size: 21px;
}

.font-xxl {
    font-size: 30px;
}

.font-xxxl {
    font-size: 40px;
    line-height: 40px;
}

.line-h-sm {
    line-height: 13px;
}

.line-h-md {
    line-height: 16px;
}

.line-h-lg {
    line-height: 17px;
}

.line-h-xl {
    line-height: 21px;
}

.line-h-xxl {
    line-height: 30px;
}

.line-h-xxxl {
    line-height: 40px;
}

/* Vertical height */
.h-100vh {
    height: 100vh !important;
}

/* Sticky column */
.is-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

hr {
    border-top-color: rgba(255, 255, 255, 0.1);
}

hr.hr-dark {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.bg-holder {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.bg-holder-bottom {
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
}

/* ----------------------------------------------
    Bootstrap default calss suctomizations
---------------------------------------------- */
/* Card */
.card{
    border: 0;
}

.card-body{
    padding: 0;
}

i{
    line-height: 0;
}

/* Form group */
.form-group {
    margin-bottom: 2rem;
}

.b-radius-none {
    border-radius: 0 !important;
}

.b-radius-left-none {
    border-radius: 0 3px 3px 0 !important;
}

.b-radius-right-none {
    border-radius: 3px 0 0 3px !important;
}

.sticky-top {
    z-index: 8;
}

.z-index-1 {
    z-index: 1;
}

.z-index-9 {
    z-index: 9;
}

.z-index-99 {
    z-index: 99;
}

.z-index-999 {
    z-index: 999;
}

.overflw-x-hidden {
    overflow-x: hidden;
}

.overflw-y-hidden {
    overflow-y: hidden;
}

.p-lg-6 {
    padding: 5rem !important;
}

.px-lg-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}

.py-lg-6 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
}

.pt-lg-6 {
    padding-top: 5rem !important;
}

.pb-lg-6 {
    padding-bottom: 5rem !important;
}

.pl-lg-6 {
    padding-left: 5rem !important;
}

.pr-lg-6 {
    padding-right: 5rem !important;
}

.list ul {
    padding: 0px;
    margin: 0;
}

.list ul li {
    list-style: none;
    position: relative;
    margin-bottom: 12px;
}

.author-text {
    border-left: 4px solid var(--main-color-one) !important;
    padding: 5px 0px 0px 20px;
}

/* -----------------------------
    Section Title
----------------------------- */
.section-title {
    position: relative;
    padding-bottom: 50px;
}

.section-title .title{
    font-size: 60px;
    letter-spacing: 1px;
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 0;
}

.section-title .title span{
    color: var(--main-color-one);
}

.section-title .sub-title {
    position: absolute; 
    top: -60px;
    letter-spacing: 1px;
    font-size: 110px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: .1;
}

.section-title .text {
    font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1600px) {
    #team-section .section-title{
        padding-bottom: 60px;
    }

    #blog-section .section-title{
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #team-section .section-title{
        padding-bottom: 60px;
    }

    #blog-section .section-title{
        padding-bottom: 30px;
    }

    .section-title .sub-title {
        top: -40px;
        font-size: 82px;
    }
    .section-title .title {
        font-size: 52px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title{
        padding-bottom: 30px;
    }

    #team-section .section-title{
        padding-bottom: 35px;
    }

    #blog-section .section-title{
        padding-bottom: 8px;
    }

    .section-title .sub-title {
        top: -33px;
        font-size: 72px;
    }

    .section-title .title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .container{
        max-width: 400px;
        margin: auto !important;
    }

    .swipeinner.container{
        margin: inherit;
    }

    .section-title{
        padding-bottom: 30px;
    }

    #team-section .section-title{
        padding-bottom: 40px;
    }

    #blog-section .section-title{
        padding-bottom: 10px;
    }

    .section-title .sub-title {
        top: -33px;
        font-size: 62px;
    }

    .section-title .title {
        font-size: 36px;
        line-height: 32px;
    }
}

/* -----------------------------
    Button
----------------------------- */
button {
    outline: medium none !important;
    color: var(--main-color-one);
}

.btn {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.btn {
    font-weight: 700;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 0;
    letter-spacing: 1px;
}

.btn-primary {
    color: #fff;
    background-color: var(--main-color-one);
    border-color: none;
    border: 2px solid var(--main-color-one);
    border-radius: 0;
}

.btn-primary:hover {
    color: var(--main-color-one);
    background-color: transparent;
    border-color: none;
    border: 2px solid var(--main-color-one);
}

.btn-primary:focus {
    color: #fff;
    background-color: var(--main-color-one);
    border-color: none;
    border: 2px solid var(--main-color-one);
}

.btn:not(:disabled):not(.disabled).active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

.btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

.show>.btn.dropdown-toggle:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

/* -----------------------------
    Progress Bar
----------------------------- */
.progress {
    background: #f8f8f8;
}

.progress .progress-bar {
    background: #111;
}

/* -------------------------------
    Header Section
------------------------------- */
#header-section.style-1{
    transition: all linear .3s;
}

#header-section.style-1:hover{
    background-color: rgba(0,0,0,.5);
}

.header {
    z-index: 9;
    position: relative;
}

.header .container-fluid {
    padding: 0 60px;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
}

/* Header Button Start */
.header-btn a{
    padding: 15px 20px;
    background: var(--main-color-one);
    color: #fff;
}

.header-btn a:hover{
    background: var(--main-color-one);
    color: #fff;
}
/*Header Button End*/

.header .is-sticky.navbar {
    background: #ffffff;
}

.navbar {
    padding: 0;
}

.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px;
    color: #333333;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.header .navbar-nav li>a i {
    margin-left: 5px;
    font-size: 9px;
}

.navbar .navbar-nav .nav-link i {
    font-weight: bold;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--main-color-one);
}

.dropdown-menu {
    z-index: 9999;
}

.navbar-collapse {
    position: relative;
}

.navbar-light {
    color: #ffffff;
    background-color: #f8f8f8;
    border-color: #ebebeb;
}

.navbar-light .navbar-nav>li>a {
    color: #ffffff;
}

.navbar-light .navbar-nav>.dropdown>a .caret {
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
}

.navbar-brand {
    padding: 30px 0px;
    margin-right: 0;
}

.navbar-brand img {
    height: 43px;
}

.navbar .navbar-brand {
    color: #ffffff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
}

.header .navbar-nav>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .navbar-nav li>a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3px 0px;
    color: #333333;
    text-transform: capitalize;
    font-size: 14px;
}

.header .navbar-nav li>a:hover {
    color: var(--main-color-one);
}

.header .add-listing {
    -ms-flex-item-align: center;
    align-self: center;
    text-align: right;
    width: 200px;
}

.header li>.dropdown-item:focus,
.header li>.dropdown-item:hover {
    color: var(--main-color-one);
    background: none;
}

.header .dropdown-item.active,
.header .dropdown-item:active,
.header .dropdown-item:focus,
.header .dropdown-item:hover {
    background: none;
}

.header .dropdown-toggle::after {
    content: none;
}

.header .navbar-collapse {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
}

.header .megamenu .dropdown-item {
    padding: 0px;
}

.header .navbar .dropdown-menu a.dropdown-item {
    min-width: 180px;
}

.navbar .navbar-nav .dropdown-menu li.active>a {
    padding-left: 20px !important;
}

.header .navbar .dropdown>.dropdown-menu li>a:hover {
    padding-left: 20px !important;
}

.header .navbar .dropdown-menu {
    padding: 15px;
}

.header .navbar .dropdown-menu li a i {
    margin-left: auto;
}

.navbar .dropdown>.dropdown-menu li>a {
    font-size: 14px;
    padding: 10px 20px 10px 20px;
    border-radius: 3px;
    position: relative;
}

.navbar .dropdown>.dropdown-menu li>a:hover,
.navbar .dropdown>.dropdown-menu li.active a {
    background: rgba(248, 80, 50, 0.1);
    color: var(--main-color-one);
    padding-left: 15px;
}

.navbar .dropdown>.dropdown-menu li>a:after {
    content: "";
    background: var(--main-color-one);
    height: 3px;
    width: 3px;
    display: inline-block;
    border-radius: 3px;
    position: absolute;
    left: 2px;
    top: 4px;
    bottom: 5px;
    margin: auto;
    border: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar .dropdown > .dropdown-menu li:hover > a::after {
    content: "";
    background: var(--main-color-one);
    height: 15px;
    width: 2px;
    display: inline-block;
    border-radius: 3px;
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    margin: auto;
    border: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar .dropdown>.dropdown-menu li.active>a:after {
    content: "";
    background: var(--main-color-one);
    height: 15px;
    width: 2px;
    display: inline-block;
    border-radius: 3px;
    position: absolute;
    left: 9px;
    top: 4px;
    bottom: 5px;
    margin: auto;
    border: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Header default */
.header.default {
    background: #000000;
}

.header.default .navbar .navbar-brand {
    margin-right: 0px;
}

.header.default .navbar .navbar-nav .nav-link {
    color: #ffffff;
}

.header.default .navbar .navbar-nav .nav-link:hover {
    color: var(--main-color-one);
}

.header.default .navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--main-color-one);
}

.header.default .navbar .navbar-nav .dropdown-menu li.active>a {
    color: var(--main-color-one);
    padding-left: 10px;
}

/* Header transparent */
.header.default.header-transparent {
    position: absolute;
    background: transparent;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .dropdown-menu li.active>a {
    color: var(--main-color-one);
    padding-left: 10px;
}

.header-transparent .add-listing {
    -ms-flex-item-align: inherit;
    align-self: inherit;
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    text-align: right;
}

.header-transparent .login a {
    color: #ffffff;
}

.header-transparent .login a:hover {
    color: var(--main-color-one);
}

/* Header Sticky */
.header .is-sticky.navbar {
    position: fixed !important;
    width: 100%;
    background: #000000 !important;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 0 25px;
}
.header.style-2 .is-sticky.navbar{
    background: #fff !important;
}

.header .is-sticky.navbar .navbar-brand {
    display: block;
}

.header .is-sticky.navbar .header-contact-info {
    display: none !important;
}

.header-transparent .is-sticky.navbar {
    position: fixed !important;
    width: 100%;
    background: #18191c;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    top: 0;
    z-index: 9;
}

.header-transparent .is-sticky.navbar .header-contact-info {
    display: none !important;
}

.header-transparent .is-sticky.navbar .navbar {
    position: relative;
    top: 0px;
    right: 0px;
    left: 0;
    border-top: none !important;
    width: 100%;
}

.nav-title {
    line-height: 1.6;
}

@media (min-width: 992px) {
    .header .navbar .dropdown-menu {
        margin: 0px;
        font-size: 14px;
        border-radius: 0px;
        border: none;
        left: 100%;
        -webkit-transform: translate3d(-50%, 10px, 0);
        transform: translate3d(-50%, 10px, 0);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, transform;
        transition-property: opacity, visibility, transform, -webkit-transform;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        display: block !important;
        width: 220px !important;
    }
    .header .navbar .dropdown-menu.megamenu {
        left: 50%;
    }
    .navbar-nav .dropdown-menu.dropdown-menu-lg {
        min-width: 630px;
    }
    .navbar-nav .dropdown-menu.dropdown-menu-md {
        min-width: 450px;
    }
    .navbar-nav .mega-menu {
        position: static;
    }
    .header .navbar .dropdown:hover>.dropdown-menu {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        visibility: visible;
        opacity: 1;
    }
    .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: 100%;
        right: auto;
        -webkit-transform: translate3d(15px, 10px, 0);
        transform: translate3d(15px, 10px, 0);
    }
    .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
        right: 100%;
        left: auto;
        -webkit-transform: translate3d(-15px, 10px, 0);
        transform: translate3d(-15px, 10px, 0);
    }
    .navbar-nav li:hover>ul.dropdown-menu {
        visibility: visible;
        opacity: 1;
    }
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
    }
    .dropdown-menu>li>a:hover:after {
        text-decoration: underline;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

.place-card-large {
    display: none !important;
}

@media (max-width: 1199px) {
    .header .container {
        max-width: 96%;
    }
}

@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .header .is-sticky.navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .header .add-listing, .header .is-sticky.add-listing{
        width: 260px;
    }
}

@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 13px;
        font-size: 14px;
    }

    .header .is-sticky.navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .header-transparent .navbar-brand {
        margin-right: 20px;
    }
    
    .hero-home .swiper-container:before {
        background: none !important;
    }

    .header .add-listing, .header .is-sticky.add-listing{
        width: 260px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav li:hover ul.dropdown-menu {
        width: 8rem;
    }

    .header .navbar .dropdown-menu a.dropdown-item {
        min-width: 140px;
    }
}

@media (max-width: 991px) {
    .btn {
        padding: 15px 20px;
    }

    .header .container {
        max-width: 100%;
    }

    /*header*/
    .header .container-fluid {
        padding: 0 20px;
    }

    .navbar-toggler {
        border: none;
        position: absolute;
        height: 75px;
        right: 0;
    }

    .header .is-sticky.navbar .navbar-toggler {
        right: 20px;
    }

    .header .header-left-bg {
        display: none;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header {
        color: #fff;
    }

    .header .navbar-nav>li {
        display: block;
    }

    .header .navbar .dropdown-menu {
        margin: 0px;
        font-size: 14px;
        border-radius: 0px;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #f8f8f8;
        padding: 14px 30px;
        font-size: 13px;
        max-height: 300px;
        overflow-x: scroll;
    }

    .header .navbar .dropdown-menu .dropdown-menu {
        background: #ffffff;
    }

    .header .navbar .dropdown-menu .dropdown-menu .dropdown-menu {
        background: #f8f8f8;
    }

    .header .add-listing {
        margin-right: 50px;
    }


    .header .navbar-collapse {
        position: absolute;
        top: 100%;
        z-index: 9999;
        background: #ffffff;
        width: 100%;
        left: 0;
        border-top: 1px solid #ebebeb;
        border-bottom: 1px solid #ebebeb;
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        overflow-y: scroll;
        max-height: 300px;
    }

    .navbar-brand img {
        height: 34px;
    }

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

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

    .navbar .navbar-nav .nav-link i {
        margin-left: auto;
    }

    .header .navbar .nav-title {
        margin-bottom: 10px !important;
        margin-top: 20px;
    }

    .navbar .dropdown>.dropdown-menu li>a {
        font-size: 13px;
    }

    .header .navbar-nav>li {
        border-bottom: 1px solid #ebebeb;
    }

    .header .navbar-nav>li:last-child {
        border-bottom: 0;
    }

    .header.default .navbar .navbar-nav .nav-link {
        color: #333333;
    }

    .header-transparent {
        position: relative;
        background: #333333;
    }

    .header-transparent .navbar .navbar-nav .nav-link {
        color: #333333;
    }

    .header .is-sticky.navbar .navbar-nav .nav-link {
        padding: 10px 20px;
    }
}


@media (max-width: 991px) {
    .header .is-sticky .navbar {
        top: 0;
        right: 0;
    }

    .header-right-bg:before {
        left: 0;
        height: 100%;
        -webkit-transform: inherit;
        transform: inherit;
    }

    .header .is-sticky.navbar {
        padding: 0 20px;
    }

    .header.default {
        padding: 0;
    }

    .header.default .navbar-brand {
        display: block;
    }

    .header.default .navbar-toggler {
        color: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* header transparent */
    .header-transparent-style-02 .navbar .navbar-nav .nav-link {
        color: #333333;
    }

    .header-transparent-style-02 .navbar .navbar-nav .nav-item.active .nav-link:before {
        content: none;
    }

    .header-transparent-style-02 .navbar .navbar-nav .nav-item.active .nav-link:after {
        content: none;
    }

    .header-transparent-style-02 .navbar .navbar-toggler:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .header .navbar .navbar-nav .nav-item.active .nav-link:after,
    .header .navbar .navbar-nav .nav-item.active .nav-link:before {
        display: none;
    }

    .header .navbar .navbar-nav .nav-item:hover .nav-link:after,
    .header .navbar .navbar-nav .nav-item:hover .nav-link:before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 96%;
    }
}

@media (max-width: 575px) {
    .header.default .navbar-toggler {
        padding: 0;
        height: 60px;
    }
}

/* -------------------------------
    Hero Section 
 -------------------------------*/
.hero-home .swiper-container {
    position: relative;
}

.hero-home .swiper-container .swiper-slide .hero {
    height: 750px;
    padding-top: 70px;
    padding-bottom: 30px;
}

.hero-home .swiper-container .swiper-slide .hero .hero-content {
    position: relative;
    z-index: 1;
}

.hero-home .swiper-container .swiper-slide .hero .hero-content h3 {
    letter-spacing: 4.4px;
    font-weight: 400;
}

.hero-home .swiper-container .swiper-slide .hero .hero-content a{
    padding: 20px;
    border-radius: 0;
    border: 2px solid var(--main-color-one);
    background: var(--main-color-one);;
    color: #fff;
}

.hero-home .swiper-container .swiper-slide .hero .hero-content a:hover{
    background: #fff;
    border: 2px solid #fff;
    color: var(--main-color-one);
}

.hero-home .swiper-container .swiper-slide .hero .hero-title {
    font-size: 120px;
    line-height: 110px;
}

.hero-home .swiper-container-horizontal .swiper-pagination-bullets {
    right: 60px !important;
    left: auto;
}

.hero-home .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 10px 0px;
    display: block;
    width: 5px;
    height: 30px;
    left: inherit !important;
    border-radius: 50px;
}

.hero-home .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-transform: none;
    transform: none;
}

.hero-home .swiper-pagination-bullet-active {
    background: var(--main-color-one);
    opacity: 1;
}

.hero-home .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: inherit;
    top: 50%;
    -webkit-transform: inherit;
    transform: inherit;
    width: auto !important;
}

.swiper-button-next,
.swiper-button-prev {
    z-index: 8;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-home .swiper-container .swiper-slide .hero {
        height: 838px;
    }
}

@media (max-width: 991px) {
    .hero-home .swiper-container .swiper-slide .hero {
        height: 690px;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-title {
        font-size: 90px;
        line-height: 80px;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-content h3 {
        letter-spacing: 3px;
        font-size: 26px;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-content .lead {
        font-size: 16px;
    }

    .hero-home .swiper-container .social {
        display: none !important;
    }

    .hero-home .swiper-pagination {
        display: none;
    }

    .hero .hero-content {
        padding: 100px 0;
    }

    .hero .hero-title {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-home .swiper-container:before {
        background: none !important;
    }
}

@media (max-width: 767px) {
    .hero-home .swiper-container .swiper-slide .hero {
        height: 600px;
        padding-bottom: 0;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-title {
        font-size: 70px;
        line-height: 70px;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-content h3 {
        letter-spacing: 1px;
        font-size: 22px;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-content .lead {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero-home .swiper-container .swiper-slide .hero {
        height: 500px;
    }

    .hero-home .swiper-container .swiper-slide .hero .hero-title {
        font-size: 50px;
        line-height: 50px;
    }
}

/* -------------------------------
    Hero 2 Section 
--------------------------------*/
.hero-area.style-2{
    padding-top: 50px;
}

.hero-area.style-2 .hero-content{
    padding-top: 100px;
}

.hero-area.style-2 .hero-content .subtitle{
    font-size: 20px;
}

.hero-area.style-2 .hero-content .title{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.hero-area.style-2 .hero-content .title span{
    display: block;
    font-weight: 700;
    color: var(--main-color-one);
}

.hero-area.style-2 .hero-content .text{
    font-size: 18px;
}

.hero-area.style-2 .hero-img{
    width: 500px;
}

@media (max-width: 767px) {
    .hero-area.style-2 .hero-content {
        padding: 50px 0;
    }

    .hero-area.style-2 .hero-img {
        width: 300px;
        text-align: center;
        margin: auto;
    }

    .hero-area.style-2 .hero-content .title {
        font-size: 42px;
    }

    .hero-area.style-2 .hero-content .title span {
        margin-top: 10px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px){
    .hero-area.style-2 .hero-content .title {
        font-size: 36px;
    }

    .hero-area.style-2 .hero-img {
        width: 400px;
    }
}


/* -------------------------------
    About Section 
--------------------------------*/
.about-img{
    position: relative;
}

.about-img .thumb{
    border-radius: 25px;
}

.about-img .thumb img{
    border-radius: 25px;
    width: 100%;
}

.about-img .about-logo span{
    font-size: 80px;
}

.about-img .about-inner-img img {
	position: absolute;
	right: -70px;
	bottom: 10px;
	border: 20px solid rgba(255,255,255,.5);
	border-radius: 25px;
}

.about-content .subtitle{
    color: var(--main-color-one);
    text-transform: uppercase;
    font-size: 18px;
}

.about-content{
    padding-left: 50px;
}

.about-icon i{
    font-size: 60px;;
}

@media only screen and (min-width:992px) and (max-width:1200px){  
    .about-img .about-logo span {
        font-size: 58px;
    }

    .about-img .about-inner-img img {
        bottom: 0;
    }

    .about-item-info{
        margin-top: 30px;
    }

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


@media only screen and (min-width:768px) and (max-width:991px){    
    .about-img .about-inner-img img {
        position: absolute;
        right: -60px;
        bottom: 0px;
        border: 20px solid rgba(255,255,255,.5);
        border-radius: 25px;
        width: 200px;
    }

    .about-img .about-logo span {
        font-size: 60px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-item-info{
        padding-left: 30px;
    }

    .skills{
        margin-top: 30px;
    }
}

@media (max-width:767px) {
    .about-img .about-inner-img img {
        position: relative;
        left: 0;
        top: 0;
        border: 5px solid rgba(255,255,255,.5);
    }

    .about-content {
        padding-left: 0;
    }
}

/* -------------------------------
    Company Info Section 
--------------------------------*/
.company-info strong{
    padding-right: 5px;
}

/* -------------------------------
    Service Section 
--------------------------------*/
.service-item{
    box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
    padding: 30px;
}

.service-item-info {
    padding-left: 20px;
}

.service-item .service-icon i{
    font-size: 48px;
    color: var(--main-color-one);
}

/* -------------------------------
    Portfolio Section
--------------------------------*/
.my-shuffle-container .grid-item {
    width: 33.33%;
    padding: 15px;
}

/* Portfolio item */
.grid-item .portfolio-item {
    position: relative;
    overflow: hidden;
}

.grid-item .portfolio-item:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.7);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
}

.grid-item .portfolio-item:hover:before{
    visibility: visible;
    opacity: 1;

}

.grid-item .portfolio-item .portfolio-info{
    position: absolute;
    bottom: 5%;
    left: -150px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
}

.grid-item .portfolio-item:hover .portfolio-info{
    left: 5%;
}

.grid-item .portfolio-item .portfolio-info .portfolio-category span{
    font-size: 14px;
    text-transform: uppercase;
    color: var(--main-color-one);
}

.grid-item .portfolio-item .portfolio-info .portfolio-title h6{
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

.grid-item .portfolio-item .portfolio-icon{
    position: absolute;
    bottom: 10%;
    right: -150px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
}

.grid-item .portfolio-item:hover .portfolio-icon{
    right: 5%;
}

.grid-item .portfolio-item .portfolio-icon i{
    height: 40px;
    width: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
}

.grid-item .portfolio-item .portfolio-icon i:hover{
    border: 1px solid var(--main-color-one);
    color: #fff;
    background: var(--main-color-one);
}

/* Filter menu */
.filters-group {
    display: table;
    margin: 0 auto 50px;
    text-align: center;
}

.filters-group button {
    margin: 0 5px 4px;
    padding: 2px 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 22px;
    border-radius: 50px;
    font-weight: 600;
    color: #333;
    background: transparent;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filters-group button span {
    display: block;
}

.filters-group button:hover {
    background: var(--main-color-one);
    color: #ffffff;
}

.filters-group button.active {
    background: var(--main-color-one);
    color: #fff;
}

@media (max-width: 767px) {
    .my-shuffle-container .grid-item,
    .my-shuffle-container.columns-3 .grid-item,
    .my-shuffle-container.columns-4 .grid-item,
    .my-shuffle-container.columns-5 .grid-item,
    .my-shuffle-container.columns-6 .grid-item {
        width: 50%;
    }

    .mfp-img-mobile .mfp-image-holder {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px){
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        background: transparent;
    }
}

@media (max-width: 575px) {
    .my-shuffle-container.columns-2 .grid-item,
    .my-shuffle-container .grid-item {
        width: 100%;
    }

    .my-shuffle-container .grid-item,
    .my-shuffle-container.columns-2 .grid-item,
    .my-shuffle-container.columns-3 .grid-item,
    .my-shuffle-container.columns-4 .grid-item,
    .my-shuffle-container.columns-5 .grid-item,
    .my-shuffle-container.columns-6 .grid-item {
        width: 100%;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        background: transparent;
    }
}

/* -------------------------------
    Counter Section 
--------------------------------*/
.counter-content{
    border: 1px solid var(--main-color-one);
    padding: 50px;
}

.counter-content span{
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: var(--main-color-one);
}

.counter-content label{
    font-size: 22px;
    color: #fff;
}

@media (max-width: 767px) {
    .counter-content {
        margin: 15px 0;
    }

    #counter-section .overlay {
        padding: 50px 0;
    }
}

/* -------------------------------
    Team Section 
--------------------------------*/
.team {
    position: relative;
}

.team .team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 36px;
    display: block;
    text-align: center;
}

.team .team-info .team-name h5 a {
    color: #ffffff;
}

.team .team-info .team-name h5 a:hover {
    color: var(--main-color-one);
}

.team .team-info .team-name span {
    color: #ffffff;
}

/* -------------------------------
    Call to Section
--------------------------------*/
#callto-section{
    position: relative;
    overflow: hidden;
}

#callto-section .overlay{
    padding: 150px 0 410px 0;
    background: rgba(0,0,0,.2);
}

#callto-section:before{
    position: absolute;
    content: "";
    left: -150px;
    top: -50px;
    height: 120%;
    width: 60%;
    background: #000;
    transform: skewX(15deg);
}

.callto-content{
    position: absolute;
    z-index: 99;
    width: 40%;
}

.callto-content .sub-title{
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.callto-content .title{
    font-size: 72px;
    line-height: 75px;
    margin-top: 5px;
}

.callto-content .title span{
    display: block;
    color: var(--main-color-one);
}

@media (max-width: 1400px){
    #callto-section .overlay {
        padding: 100px 0 360px 0;
    } 

    #callto-section::before {
        width: 70%;
    } 

    .callto-content {
        position: absolute;
        z-index: 99;
        width: 100%;
    }

    .callto-content p{
        max-width: 500px;
    }
}

@media (max-width: 767px){
}

@media (max-width: 767px){
    #callto-section .overlay {
        padding: 100px 0 330px 0;
    }

    #callto-section::before {
        width: 100%;
    }

    .callto-content {
        position: absolute;
        z-index: 99;
        width: 100%;
    }

    .callto-content .sub-title {
        font-size: 16px;
    }

    .callto-content p{
        max-width: 500px;
    }
}

@media (max-width: 575px){
    #callto-section .overlay {
        padding: 70px 0 300px 0;
    } 

    .callto-content .title {
        font-size: 36px;
        line-height: 48px;
        margin-top: 5px;
    }

    .callto-content p{
        max-width: 320px;
    }
}

/* -------------------------------
    Contact Page 
--------------------------------*/
.contact-info ul li i{
    font-size: 42px;
    color: var(--main-color-one);
}

.contact-info ul li p{
    padding-left: 30px;
}

.contact-info ul li p span{
    display: block;
    color: #333;
    font-weight: 500;
}

.contact-social ul li a i{
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #555;
    background: #eee;
    margin-right: 10px;
    border-radius: 50%;
    transition: .3s;
}

.contact-social ul li a i:hover{
    color: #fff;
    background: var(--main-color-one);
}

/* -------------------------------
    Blog Section
--------------------------------*/
.blog-post{
    position: relative;
}

.blog-post-meta{
    position: absolute;
    top: 0;
    right: 0;
}

.blog-post-meta li a{
    height: 70px;
    width: 70px;
    text-align: center;
    background: #000;
    display: block;
    padding: 5px;
    overflow: hidden;
}

.blog-post-meta li a span{
    display: block;
    font-size: 20px;
    color: #fff;
    margin-top: 5px;
}

@media (max-width: 767px){
    .blog-post h2{
        font-size: 36px;
    }
}

.blockquote p{
    font-style: italic;
    line-height: 1.5;
}

.blockquote cite{
    color: var(--main-color-one);
}

.blog-meta ul li a{
    padding: 10px;
    color: #555;
    font-size: 14px;
}

.blog-meta ul li a:hover{
    color: var(--main-color-one);
}

.blog-meta ul li a i{
    margin-right: 5px;
}

/* -------------------------------
    Footer Section 
--------------------------------*/
#footer-section{
    background-color: #111;
    padding: 100px 0 50px;
}

.footer-widget h4{
    color: #ddd;;
}

.footer-detl h6{
    font-family: 'Poppins', sans-serif;
}

.footer-detl p{
    text-transform: uppercase;
}

.footer-widget-social ul li a{
    margin: 2px;
}

.footer-widget-social ul li a i{
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #777;
    background-color: rgba(0,0,0,.2);
    border-radius: 50%;
    transition: all linear .3s;
}

.footer-widget-social ul li a i:hover{
    background-color: var(--main-color-one);
    color: #fff;
}

.footer-widget-links ul li{
    padding: 5px 0;
}

.footer-widget-links ul li a{
    color: #888;;
}

.footer-widget-links ul li a:hover{
    color: var(--main-color-one);
}

.footer-widget-newsletter input{
    width: 100%;
    display: block;
    padding: 15px;
}

.footer-widget-newsletter button i{
    margin-right: 5px;
}

.copyright-area{
    border-top: 1px solid #222;
    padding-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .footer-widget-links.legal-service h4, .footer-widget-newsletter h4{
        margin-top: 50px;
    }
}

@media (max-width: 767px){
    #footer-section{
        padding: 60px 0 50px;
        margin-top: 50px;
    }
}

@media (max-width: 575px){
    .useful-links, .legal-service, .footer-widget-newsletter{
        margin-top: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px){
    .legal-service, .footer-widget-newsletter{
        margin-top: 50px;
    }
    
}

/* -------------------------------
    Page Bannser 
--------------------------------*/
.page-banner {
    position: relative;
    padding: 200px 0 100px;
}

.page-banner h1 {
    font-weight: 700;
}

.breadcrumb-item a{
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.breadcrumb-item.active{
    color: var(--main-color-one);
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 767px){
    .page-banner {
        padding: 200px 0 100px;
    }
}

/* -------------------------------
    Service Single 
--------------------------------*/
.service-content .heading .subtitle{
    color: var(--main-color-one);
}

.inner-img img{
    width: 100%;
}

.service-content .icon-list-circle i{
    font-size: 12px;
    color: var(--main-color-one);
    margin-right: 7px;
    padding: 12px 0;
}

.service-technologies ul li{
    float: left;
    width: 33.33%;
}

@media only screen and (min-width:768px) and (max-width: 991px){
    .icon-list-circle{
        margin-top:50px;
    }
} 

@media (max-width: 767px) {
    .service-technologies ul li {
        font-size: 14px;
    }
}

/* -------------------------------
     Project Single 
--------------------------------*/
.project-content .heading .subtitle{
    color: var(--main-color-one);
}

.project-content .icon-list-circle i{
    font-size: 12px;
    color: var(--main-color-one);
    margin-right: 7px;
    padding: 12px 0;
}

.project-technologies ul li{
    float: left;
    width: 33.33%;
}

/* Sidebar */
.sidebar{
    box-shadow: 0 5px 20px 0 rgba(0,0,0,.06);
    padding: 30px;
}

.sidebar .widget-search{
    position: relative;
}

.sidebar .widget-search input{
    padding: 17px;
    border-radius: 0;
    font-size: 14px;
}

.sidebar .widget-search button{
    position: absolute;
    top: 0;
    right: 0;
    height: 57px;
    line-height: 62px;
    width: 50px;
    font-size: 20px;
    border: 0;
    color: var(--main-color-one);
    background: transparent;
    cursor: pointer;
}

.instagram-img img{
    width: 100%;
    border: 1px solid #ddd;
}

.sidebar .widget-archive.categories ul li a{
    padding: 7px 0;
    display: block;
}

.sidebar .widget-archive.categories i{
    color: var(--main-color-one);
    margin-right: 10px;
    font-size: 14px;
}

.sidebar .widget-archive.categories ul li a span{
    float: right;
}

.sidebar .recent-post-item .thumb{
    width: 200px;
    padding-right: 20px;
}

.sidebar .recent-post-item .thumb img{
    width: 100%;
}

.sidebar .recent-post-item .title{
    font-size: 16px;
    transition: .3s;
}

.sidebar .recent-post-item .title:hover{
    color: var(--main-color-one);
}

.sidebar .recent-post-item span{
    font-size: 13px;
    color: var(--main-color-one);

}

.sidebar .widget-tag-cloud{
    overflow: hidden;
}

.sidebar .tagcloud ul li{
    float: left;
}

.sidebar .tagcloud ul li a{
    padding: 5px 15px;
    background: #f3f6fd;
    margin: 5px 2px;
    border-radius: 50px;
    font-size: 13px;
    display: block;
    transition: .3s;
}

.sidebar .tagcloud ul li a:hover, .sidebar .tagcloud ul li a.active{
    background: var(--main-color-one);
    color: #fff;
}

.terms-item h4{
    font-family: 'Poppins', sans-serif;
    text-transform: inherit;
    font-size: 20px;
}

.terms-item ul{
    padding-left: 30px;
}

.terms-item ul li{
    list-style: disc;
    padding: 10px 0;
}

/* -------------------------------
    Clients 
--------------------------------*/
.client-title{
    max-width: 600px;
    margin: auto;
}
.client-title p{
    margin-top: 20px;
    font-size: 20px;
}
.client-item{
    text-align: center;
}
.client-item img{
    width: 200px;
    margin: auto;
    text-align: center;
    filter: grayscale(100%);
    opacity: .5;
    transition: all linear .3s;
}
.client-item img:hover{
    filter: grayscale(0);
    opacity: 1;  
}
.client-desc-text{
    max-width: 600px;
    padding: 120px 0 150px;
}
.client-desc-text h2{
    font-size: 52px;
    color: #e80566;
}
.client-desc-text h2 span{
    color: #0c0043;
}
.client-desc-text p{
    margin-top: 30px;
    font-size: 20px;
}
.client-desc-overlay{
    background: url(images/clients/client-desc.jpg);
    background-size: 60%;
    background-position: bottom right;
    background-repeat: no-repeat;
}

@media only screen and (min-width:576px) and (max-width:991px){
    .client-item img {
        width: 160px;
    }
}

/* -------------------------------
    Quick Contact Block 
--------------------------------*/
.quick-contact-block-area{
    background: #000;
}

.quick-contact-block-area .col-lg-6{
    margin: 0;
    padding: 0;
}

.quick-contact-block-area .block-content h2{
    text-transform: capitalize;
    color: #ddd;
}

.quick-contact-block-area .block-left{
    background: #111;
    padding: 100px;
}

.quick-contact-block-area .block-right{
    background: rgba(0, 0, 0, .8);
    padding: 100px;
}

.block-content .phone a{
    font-size: 48px;
    margin-top: 30px;
    display: block;
    font-weight: 400;
    color: var(--main-color-one);
}

@media only screen and (min-width:992px) and (max-width:1200px){
    .block-content .phone a{
        font-size: 36px;;
    }
}

@media (max-width:991px){
    .quick-contact-block-area .block-left, .quick-contact-block-area .block-right {
        padding: 50px;
    }

    .block-content .phone a{
        font-size: 36px;;
    }

    .block-content .title{
        font-size: 36px;
    }
}

@media (max-width:767px){
    .block-content .phone a {
        font-size: 28px !important;
    }
}

/* -------------------------------
    Testimonial 
--------------------------------*/
#testimonial-section .section-title{
    padding-bottom: 30px;
}

#testimonial-section .owl-carousel{
    text-align: center;
}

#testimonial-section .owl-carousel .owl-item img {
    display: block;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    margin: auto;
}

#testimonial-section .owl-carousel .testimonial-item{
    position: relative;
    padding: 30px;
    margin: auto;
    max-width: 700px;
    box-shadow: 0 10px 30px -12px rgba(0,0,0,.2);
    margin: 30px 15px 30px;
}

#testimonial-section .owl-carousel .testimonial-item .icon{
    position: absolute;
    top: 0;
    left: 15px;
    font-size: 60px;
    opacity: .3;
    color: var(--main-color-one);
}

#testimonial-section .owl-carousel .testimonial-item .testimonial-text .subtitle{
    color: var(--main-color-one);
}

/*Owl nav*/
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
	display: none;
}

/*Owl dots*/
.owl-carousel button.owl-dot {
    margin: 0 5px;
    font-size: 24px;
    background: #ddd;
    height: 15px;
    width: 15px;
    border-radius: 50%;
}
.owl-dots .owl-dot.active{
    background: var(--main-color-one);
    width: 40px;
    border-radius: 25px;
}

/* -------------------------------
    Pricing Table 
--------------------------------*/
.pricing-title .subtitle{
    color: var(--main-color-one);
    margin-bottom: 20px;
    display: block;
}

.pricing-plan .price-item{
    box-shadow: 0 10px 30px -8px rgba(171,171,171,.5);
    padding: 70px;
    position: relative;
}

.pricing-plan .price-item .shape{
    position: absolute;
    top: 60px;
    left: 50%;
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pricing-plan .price-item .subtitle{
    color: var(--main-color-one);
}

.pricing-plan .price-item .price{
    font-size: 48px;
    color: #000;;
}

.pricing-plan .price-info-list li{
    padding: 7px 0;
}

.nav-tabs {
	border-bottom: 0;
}

.nav-tabs .nav-link{
    background-color: transparent;
    color: #495057;
}

.nav-tabs .nav-link.active {
    color: var(--main-color-one);
    background-color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .pricing-plan .price-item {
        padding: 30px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-plan .price-item {
        padding: 30px;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .pricing-plan .price-item {
        padding: 30px;
    }
}

/* -------------------------------
    Faq section
--------------------------------*/
.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}
.accordion-button, .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
}
.accordion-button:not(.collapsed){
    color: var(--main-color-one);
    border-color: var(--main-color-one);
    font-weight: 600;
}
.accordion-button:focus {
    z-index: 3;
    border-color: var(--main-color-one);
    outline: 0;
    box-shadow: none;
}
.faq-quote{
    max-width: 600px;
    margin: auto;
}
.faq-quote h2 {
    font-size: 42px;
    margin-bottom: 20px;
}
.faq-quote h2 span{
    color: #7F00FF;
}
.faq-btn a{
    padding: 20px 30px;
    background: var(--main-color-one);
    color: #fff;
    letter-spacing: 1px;
    border-radius: 50px;
}
.faq-btn a:hover{
    background: var(--main-color-one);
}

/* -------------------------------
    404 error page
--------------------------------*/
.error-page .number{
    font-size: 150px;
    color: var(--main-color-one);
    margin: 20px 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.error-page{
    width: 500px;
    margin: auto;
}
.error-page .number .span-1{
    color: #000;
}
.error-page .number .span-2{
    color: #0575E6;
}
.error-page a{
    font-size: 20px;
    margin-top: 30px;
    display: block;
}

@media (max-width:767px){
    .error-page {
        width: auto;
    }

    .error-page .title{
        font-size: 40px;
    }

    .error-page .number{
        font-size: 72px;
    }
}