@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
:root {
    --gl-white: #fff;
    --gl-gray: #999999;
    --gl-gray2: #777777;
    --gl-gray-dark: #333333;
    --gl-primary: #2FA3CD;
    --gl-primary-rgba: rgba(47, 163, 205, 0.8);
    --gl-primary-rgba2: rgba(47, 163, 205, 0.7);
    --gl-primary-rgba3: rgba(47, 163, 205, 0.6);
    --gl-primary-rgba4: rgba(47, 163, 205, 0.5);
    --gl-primary-rgba5: rgba(47, 163, 205, 0.4);
    --gl-secondary: #99CA4B;
    --gl-secondary-rgba: rgba(153, 202, 75, 0.8);
    --gl-success: #49a340;
    --gl-info: #16b1d8;
    --gl-warning: #ebbb2d;
    --gl-danger: #f7172e;
    --gl-light: #eeeeee;
    --gl-light2: #dddddd;
    --gl-light3: #f2f2f2;
    --gl-light4: #f7f7f7;
    --gl-dark: #222222;
    --gl-font-sans-serif: 'Montserrat', sans-serif;
    --gl-header-height: 65px;
}

* {
    margin: 0;
    padding: 0;
}

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

@media (prefers-reduced-motion:no-preference) {
     :root {
        scroll-behavior: smooth;
    }
}

body {
    font-family: var(--gl-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

p {
    font-weight: 400;
    font-size: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.2rem;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

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

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

.small,
small {
    font-size: 0.875em;
}

sub,
sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

img {
    max-width: 100%;
}

a {
    color: var(--gl-primary);
    text-decoration: none;
    outline: none;
}

a:hover,
a.link-default:hover {
    color: var(--gl-secondary);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

a.link-default {
    color: inherit;
    text-decoration: none;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}


/* forms inputs */

input:focus,
button:focus,
input:active,
button:active {
    outline: none;
}

input,
button {
    font-family: var(--gl-font-sans-serif);
}


/* buttons */

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: solid 1px var(--gl-light2);
    transition: all 400ms;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    font-size: 120%;
    padding: 6px 30px;
}

.btn-sm {
    font-size: 80%;
    padding: 7px 15px;
}

.btn-xs {
    font-size: 70%;
    padding: 5px 15px;
}

.btn-rounded {
    border-radius: 50px;
}

.btn:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translate(-100%, 0%);
    transition: all 400ms;
    z-index: -1;
}

.btn:hover:before {
    transform: translate(0%, 0%);
}

.btn:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* btn default */

.btn-default {
    background: #fff;
    color: var(--gl-dark);
    z-index: 2;
}

.btn-default:before {
    background: var(--gl-light4);
}

.btn-default:hover {
    color: var(--gl-primary);
}


/* btn primary */

.btn-primary {
    background: var(--gl-primary);
    color: #fff;
    border: none;
    z-index: 2;
    bottom: -7px;
}

.btn-primary:before {
    background: var(--gl-secondary);
}

.btn-primary:hover {
    color: #fff;
}


/* btn transparent */

.btn-transparent {
    background: transparent;
    color: #fff;
    border-color: #fff;
    z-index: 2;
}

.btn-transparent:before {
    background: var(--gl-primary);
}

.btn-transparent:hover {
    color: #fff;
}


/* START of grid system */

.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.gl-xs-1,
.gl-sm-1,
.gl-md-1,
.gl-xs-2,
.gl-sm-2,
.gl-md-2,
.gl-xs-3,
.gl-sm-3,
.gl-md-3,
.gl-xs-4,
.gl-sm-4,
.gl-md-4,
.gl-xs-5,
.gl-sm-5,
.gl-md-5,
.gl-xs-6,
.gl-sm-6,
.gl-md-6,
.gl-xs-7,
.gl-sm-7,
.gl-md-7,
.gl-xs-8,
.gl-sm-8,
.gl-md-8,
.gl-xs-9,
.gl-sm-9,
.gl-md-9,
.gl-xs-10,
.gl-sm-10,
.gl-md-10,
.gl-xs-11,
.gl-sm-11,
.gl-md-11,
.gl-xs-12,
.gl-sm-12,
.gl-md-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.gl-xs-1 {
    width: 8.33333333%;
}

.gl-xs-2 {
    width: 16.66666667%;
}

.gl-xs-3 {
    width: 25%;
}

.gl-xs-4 {
    width: 33.33333333%;
}

.gl-xs-5 {
    width: 41.66666667%;
}

.gl-xs-6 {
    width: 50%;
}

.gl-xs-7 {
    width: 58.33333333%;
}

.gl-xs-8 {
    width: 66.66666667%;
}

.gl-xs-9 {
    width: 75%;
}

.gl-xs-10 {
    width: 83.33333333%;
}

.gl-xs-11 {
    width: 91.66666667%;
}

.gl-xs-12 {
    width: 100%;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
    .gl-sm-1,
    .gl-md-1,
    .gl-sm-2,
    .gl-md-2,
    .gl-sm-3,
    .gl-md-3,
    .gl-sm-4,
    .gl-md-4,
    .gl-sm-5,
    .gl-md-5,
    .gl-sm-6,
    .gl-md-6,
    .gl-sm-7,
    .gl-md-7,
    .gl-sm-8,
    .gl-md-8,
    .gl-sm-9,
    .gl-md-9,
    .gl-sm-10,
    .gl-md-10,
    .gl-sm-11,
    .gl-md-11,
    .gl-sm-12,
    .gl-md-12 {
        flex-grow: 0;
        flex-shrink: 0;
    }
    .gl-sm-1 {
        width: 8.33333333%;
    }
    .gl-sm-2 {
        width: 16.66666667%;
    }
    .gl-sm-3 {
        width: 25%;
    }
    .gl-sm-4 {
        width: 33.33333333%;
    }
    .gl-sm-5 {
        width: 41.66666667%;
    }
    .gl-sm-6 {
        width: 50%;
    }
    .gl-sm-7 {
        width: 58.33333333%;
    }
    .gl-sm-8 {
        width: 66.66666667%;
    }
    .gl-sm-9 {
        width: 75%;
    }
    .gl-sm-10 {
        width: 83.33333333%;
    }
    .gl-sm-11 {
        width: 91.66666667%;
    }
    .gl-sm-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
    .row,
    .row-sm {
        display: flex;
        flex-wrap: wrap;
    }
    .gl-md-1 {
        width: 8.33333333%;
    }
    .gl-md-2 {
        width: 16.66666667%;
    }
    .gl-md-3 {
        width: 25%;
    }
    .gl-md-4 {
        width: 33.33333333%;
    }
    .gl-md-5 {
        width: 41.66666667%;
    }
    .gl-md-6 {
        width: 50%;
    }
    .gl-md-7 {
        width: 58.33333333%;
    }
    .gl-md-8 {
        width: 66.66666667%;
    }
    .gl-md-9 {
        width: 75%;
    }
    .gl-md-10 {
        width: 83.33333333%;
    }
    .gl-md-11 {
        width: 91.66666667%;
    }
    .gl-md-12 {
        width: 100%;
    }
    .gl-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .gl-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .gl-md-offset-3 {
        margin-left: 25%;
    }
    .gl-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .gl-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .gl-md-offset-6 {
        margin-left: 50%;
    }
    .gl-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .gl-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .gl-md-offset-9 {
        margin-left: 75%;
    }
    .gl-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .gl-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .gl-md-offset-12 {
        margin-left: 100%;
    }
}

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

.container:after,
.container-fluid:after,
.row:after {
    content: '';
    display: table;
    clear: both;
}


/* END of grid system */


/* heading styles */

.heading-center {
    display: block;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-weight: normal;
    /*  background-color: #808080; */
}

.heading {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.heading small {
    font-size: 18px;
    color: var(--gl-primary);
}

.heading small a {
    color: inherit;
}

.heading:after,
.heading-center:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gl-primary);
    position: absolute;
}

.heading-center:after {
    margin: 0 auto;
    left: 0%;
    right: 0%;
    bottom: 0;
}

.heading:after {
    bottom: 0;
    left: 0;
}

.heading small {
    display: block;
    font-size: 70%;
    text-transform: uppercase;
    letter-spacing: 10px;
    padding-bottom: 15px;
    font-weight: 400;
}

.heading span,
.heading-center span {
    color: var(--gl-primary);
}

.heading-white:after {
    background: #fff;
}


/* MISC STYLES */

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

.clear {
    clear: both;
}

.space5 {
    display: block;
    clear: both;
    padding: 5px 0;
}

.space10 {
    display: block;
    clear: both;
    padding: 10px 0;
}

.space15 {
    display: block;
    clear: both;
    padding: 15px 0;
}

.space20 {
    display: block;
    clear: both;
    padding: 20px 0;
}

.space30 {
    display: block;
    clear: both;
    padding: 30px 0;
}

.space40 {
    display: block;
    clear: both;
    padding: 40px 0;
}

.space50 {
    display: block;
    clear: both;
    padding: 50px 0;
}


/* MODAL OVERLAY */

.modalOverlay {
    display: none;
    position: fixed;
    top: var(--gl-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.7;
    z-index: 9;
}


/* NAVIGATION MENU BAR */

.navigation-menu-bar {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    background-color: transparent;
}

.navigation-menu-bar-dark {
    background-color: var(--gl-primary);
}

.logo-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-block a {
    display: inline-flex;
}

.logo-block img {
    width: auto;
    height: 100%;
    max-width: none;
}


/* nav-menu */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    clear: both;
    width: 100%;
}

.nav-menu>ul {
    margin: 0;
    padding: 0;
    height: auto;
}

.nav-menu>ul>li,
.nav-menu>ul>li>ul>li {
    list-style-type: none;
    position: relative;
    margin: 0 5px;
    text-align: center;
}

.nav-menu>ul>li>a,
.nav-menu>ul>li>ul>li>a {
    display: block;
    padding: 15px;
    height: auto;
    font-size: 0.9rem;
    color: inherit;
    text-decoration: none;
    transition: all 400ms;
}

.nav-menu>ul>li:hover>a {
    color: var(--gl-primary);
}

@media (min-width: 992px) {
    .navigation-menu-bar {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navigation-menu-bar-sticky {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 2;
    }
    .navigation-menu-barScrolled {
        background: rgba(0, 0, 0, 0.7);
    }
    .navigation-menu-barScrolled .logo-block a,
    .navigation-menu-barScrolled .nav-menu>ul>li {
        height: 50px;
        line-height: 50px;
    }
    .navigation-menu-barScrolled .nav-menu>ul>li>a {
        padding-top: 0;
        padding-bottom: 0;
    }
    .navigation-menu-bar .row {
        margin-left: 0;
        margin-right: 0;
    }
    .logo-block {
        margin-right: auto;
    }
    .nav-menu {
        display: inline-flex;
        width: auto;
        clear: none;
        margin-left: auto;
        height: 40px;
    }
    .nav-menu>ul {
        display: flex;
        align-items: center;
    }
    .nav-menu>ul>li {
        border-bottom: none;
        color: #fff;
    }
    .nav-menu>ul>li>a {
        display: inline-block;
        padding-top: 0;
        padding-bottom: 0;
    }
    .nav-menu>ul>li:hover>a {
        color: var(--gl-primary);
    }
    .nav-menu>ul>li>ul {
        display: block;
        position: absolute;
        width: 170%;
        top: 110%;
        left: 0;
        margin: 0;
        padding: 0;
        line-height: 1;
        transition: all 400ms;
        opacity: 0;
        visibility: hidden;
    }
    .nav-menu>ul>li:hover>ul {
        visibility: visible;
        opacity: 1;
        top: 100%;
    }
}


/* sliderCarouselwithArrowNlist */

.sliderCarouselwithArrowNlist {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.sliderCarouselwithArrowNlist .owl-carousel .item {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.sliderCarouselwithArrowNlist .owl-carousel .owl-controls {
    margin: 0;
}

.sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons {
    margin: 0;
    padding: 0;
}

.sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--gl-primary);
    color: #fff;
    font-size: 1.5rem;
    list-style-type: none;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    opacity: 1;
    padding: 0;
    margin: 0 2px;
}

.sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div:hover {
    background: var(--gl-secondary);
    color: #fff;
}

.sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div i {
    line-height: inherit;
}


/* bannerSection */

.bannerSection {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px 0 0 0;
    margin-top: 10px;
    overflow: hidden;
}

.bannerSection .sliderCarouselwithArrowNlist {
    width: 100%;
    height: 50vh;
    overflow: visible;
    margin-top: 80px;
}

.bannerSection .sliderCarouselwithArrowNlist .owl-carousel.sliderCarouselSet1,
.bannerSection .sliderCarouselwithArrowNlist .owl-carousel .owl-wrapper-outer,
.bannerSection .sliderCarouselwithArrowNlist .owl-carousel .owl-wrapper,
.bannerSection .sliderCarouselwithArrowNlist .owl-carousel .owl-item,
.bannerSection .sliderCarouselwithArrowNlist .owl-carousel .item,
.bannerSection .sliderCarouselwithArrowNlist .owl-carousel .item .bannerImgSlide {
    height: 100%;
}

.bannerImgSlide {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
}

.bannerSectionDesc {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px var(--gl-light2);
}

.bannerSectionDesc h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.bannerSectionDesc h4 {
    font-size: 1rem;
    font-weight: normal;
}

.bannerFormCol {
    display: block;
    position: relative;
    margin-top: 20px;
}

.bannerFormCol h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 10;
}

.bannerFormCol h4,
.freeConsHead h4 {
    font-size: 1.4rem;
    font-weight: normal;
}

.bannerFormCol .bannerFormColInn,
.bannerFormCol .bannerFormColInn form {
    display: block;
}

.bannerFormCol .bannerFormColInn form .fieldInput {
    display: block;
    position: relative;
    height: 50px;
    margin: 0 0 10px 0;
}

.bannerFormCol .bannerFormColInn form .fieldInput span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: inherit;
    z-index: 2;
    border-right: solid 1px var(--gl-light);
    color: var(--gl-primary);
}

.bannerFormCol .bannerFormColInn form input[type="text"],
.bannerFormCol .bannerFormColInn form input[type="email"] {
    width: 100%;
    height: inherit;
    background: #fff;
    border: solid 1px var(--gl-light);
    text-indent: 40px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bannerFormCol .bannerFormColInn form button[type="submit"] {
    cursor: pointer;
}

.bannerSection .sliderCarouselwithArrowNlist:before,
.bannerSection .sliderCarouselwithArrowNlist:after {
    content: '';
    display: block;
    position: absolute;
    right: -25px;
    bottom: 0;
    left: -25px;
    opacity: 0.6;
    border: solid 50px var(--gl-primary);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.bannerSection .sliderCarouselwithArrowNlist:before {
    top: -65px;
}

.bannerSection .sliderCarouselwithArrowNlist:after {
    top: -50px;
}


/* freeConsHead */

.freeConsHead {
    display: block;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .bannerSection {
        display: flex;
        align-items: center;
        min-height: 100vh;
        padding: 0;
        margin-top: 0;
    }
    .bannerSection .sliderCarouselwithArrowNlist {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 50%;
        height: 100vh;
        margin-top: 0;
        border-radius: 50% 0 0 50%;
    }
    .bannerSection .sliderCarouselwithArrowNlist:before,
    .bannerSection .sliderCarouselwithArrowNlist:after {
        width: 100%;
        height: 100%;
        right: 0;
        border-radius: 50% 0 0 50%;
    }
    .bannerSection .sliderCarouselwithArrowNlist:before {
        top: -80px;
        left: -50px;
        border-width: 150px;
    }
    .bannerSection .sliderCarouselwithArrowNlist:after {
        top: 100px;
        left: -50px;
        border-width: 150px;
        opacity: 0.3;
    }
    .sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        opacity: 0.5;
    }
    .sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div.owl-prev {
        left: 10px;
    }
    .sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div.owl-next {
        right: 10px;
    }
    .bannerSection .sliderCarouselwithArrowNlist .owl-carousel .owl-controls .owl-buttons div.owl-prev {
        left: 10px;
    }
    .bannerImgSlide {
        border-radius: 50% 0 0 50%;
    }
    .bannerFormCol {
        margin-top: 0;
    }
    .bannerSection>.container>.row {
        align-items: center;
    }
    /*scrollDownBtn*/
    .scrollDownBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 40px;
        right: 0;
        bottom: 10px;
        left: 0;
        margin: 0 auto;
        z-index: 2;
    }
    .scrollDownBtn span {
        display: none;
        position: relative;
        margin-bottom: 30px;
        text-transform: uppercase;
        color: #fff;
        font-size: 12px;
    }
    .scrollDownBtn a {
        display: block;
        position: relative;
        bottom: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: var(--gl-primary);
        z-index: 2;
        font-size: 30px;
        transition: all 400ms;
        -webkit-animation: scrollDownBtnAnimation 1.5s linear infinite;
        -o-animation: scrollDownBtnAnimation 1.5s linear infinite;
        -moz-animation: scrollDownBtnAnimation 1.5s linear infinite;
        -ms-animation: scrollDownBtnAnimation 1.5s linear infinite;
        animation: scrollDownBtnAnimation 1.5s linear infinite;
    }
    .scrollDownBtn a:before {
        content: '';
        display: block;
        background: #fff;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        border: solid 1px var(--gl-primary-rgba5);
        border-radius: 50%;
        transition: all 400ms;
    }
    .scrollDownBtn a:hover {
        color: #fff;
    }
    .scrollDownBtn a:hover:before {
        background: var(--gl-primary);
        border-color: transparent;
    }
    @-webkit-keyframes scrollDownBtnAnimation {
        0% {
            bottom: 0px;
        }
        50% {
            bottom: 10px;
        }
        100% {
            bottom: 0px;
        }
    }
    @-o-keyframes scrollDownBtnAnimation {
        0% {
            bottom: 0px;
        }
        50% {
            bottom: 10px;
        }
        100% {
            bottom: 0px;
        }
    }
    @-moz-keyframes scrollDownBtnAnimation {
        0% {
            bottom: 0px;
        }
        50% {
            bottom: 10px;
        }
        100% {
            bottom: 0px;
        }
    }
    @-ms-keyframes scrollDownBtnAnimation {
        0% {
            bottom: 0px;
        }
        50% {
            bottom: 10px;
        }
        100% {
            bottom: 0px;
        }
    }
    @keyframes scrollDownBtnAnimation {
        0% {
            bottom: 0px;
        }
        50% {
            bottom: 10px;
        }
        100% {
            bottom: 0px;
        }
    }
}

@media (min-width: 992px) {
    .freeConsHead {
        margin-top: 0;
        position: absolute;
        right: 0;
        bottom: 80px;
        left: 0;
    }
}

@media (min-width: 1367px) {
    .bannerSectionDesc h1 {
        font-size: 2rem;
    }
}


/* section */

.section {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.section:after {
    content: '';
    display: block;
    clear: both;
}


/*servicesOverviewSection*/

.servicesOverviewSection {
    /* background: #fff; */
    background: #8080805e;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.servicesOverviewSection .item {
    display: block;
    margin: 60px 15px 0 15px;
}

.ourserviceBlockCol {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: #fff;
    transition: all 400ms;
    opacity: 0.5;
    transform: scale(0.7);
    text-align: center;
    border-radius: 10px;
    border: solid 2px var(--gl-primary);
}

.ourserviceBlockCol .ourserviceBlockColIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    color: #fff;
    background: -webkit-linear-gradient(left, var(--gl-primary), var(--gl-primary-rgba3));
    font-size: 40px;
    border-radius: 50%;
    margin: -50px auto 0 auto;
    position: relative;
}

.ourserviceBlockCol .ourserviceBlockColIcon:before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    background: #fff;
    z-index: -1;
    border: solid 2px var(--gl-primary);
    border-radius: 50%;
}

.ourserviceBlockCol .ourserviceBlockColIcon i {
    font-size: inherit;
}

.ourserviceBlockCol .ourserviceBlockColDesc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: auto;
    position: absolute;
    top: 30px;
    right: 15px;
    bottom: 0;
    left: 15px;
}

.ourserviceBlockCol .ourserviceBlockColDesc h3.heading {
    display: block;
    width: 100%;
    font-size: 22px;
    padding-bottom: 0px;
    border-bottom: solid 1px var(--gl-light2);
}

.ourserviceBlockCol .ourserviceBlockColDesc h3.heading:after {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.ourserviceBlockCol .ourserviceBlockColDesc p {
    font-size: 14px;
}

.servicesOverviewSection .owl-item.active .ourserviceBlockCol {
    opacity: 1;
    transform: scale(1);
}


/* controls styles */

.carouselTheme1 .owl-buttons {
    display: flex;
    align-items: center;
    position: absolute;
    top: -50px;
    right: 0%;
    z-index: 2;
    width: 81px;
    margin: 0;
}

.carouselTheme1.owl-carousel .owl-buttons div.owl-prev,
.carouselTheme1.owl-carousel .owl-buttons div.owl-next {
    display: block;
    padding: 0;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    background: var(--gl-primary);
    color: #fff;
    font-size: 32px;
    opacity: 1;
}

.carouselTheme1.owl-carousel .owl-buttons div.owl-prev {
    margin-right: 1px;
}

.carouselTheme1.owl-carousel .owl-buttons div.owl-prev:hover,
.carouselTheme1.owl-carousel .owl-buttons div.owl-next:hover {
    background: var(--gl-secondary);
}

.carouselTheme1.owl-carousel .owl-pagination .owl-page span {
    background: var(--gl-primary);
    transform: scale(0.7);
    transition: all 400ms;
}

.carouselTheme1.owl-carousel .owl-pagination .owl-page.active span {
    transform: scale(1);
}

#ourservicesSlider.carouselTheme1 .owl-buttons {
    top: initial;
    right: 15px;
    bottom: -15px;
}


/* abtOverviewSection */

.abtOverviewBlock {
    display: block;
}

.abtOverviewBlock p {
    display: flex;
    flex-wrap: wrap;
}

.abtOverviewBlock p i {
    width: 30px;
    margin-top: 5px;
    color: var(--gl-primary);
}

.abtOverviewBlock p span {
    width: calc(100% - 30px);
    font-size: 1.3rem;
}

.abtOverviewBlock a.btn {
    margin-top: 10px;
}

.abtOverviewBlockBg {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.abtOverviewBlock,
.abtOverviewBlockBg {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .abtOverviewSection {
        padding-top: 0;
        padding-bottom: 0;
    }
    .abtOverviewSection .container>.row {
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    .abtOverviewSection .container>.row .gl-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
    .abtOverviewSection .container>.row:nth-of-type(2) {
        flex-direction: row-reverse;
    }
    .abtOverviewBlock,
    .abtOverviewBlockBg {
        margin-bottom: 0;
    }
    .abtOverviewSection .container>.row:nth-of-type(1) .abtOverviewBlock,
    .abtOverviewSection .container>.row:nth-of-type(3) .abtOverviewBlock {
        padding-right: 50px;
    }
    .abtOverviewSection .container>.row:nth-of-type(2) .abtOverviewBlock {
        padding-left: 50px;
    }
}


/* sectionParallax1 */

.sectionParallax1 {
    background: url('../images/sectionParallax1bg.jpg') no-repeat fixed 100% 0;
    background-size: cover;
    color: #fff;
}

.sectionParallax1:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
}

.sectionParallax1 .heading:after {
    background: #fff;
}

@media (min-width: 992px) {
    .sectionParallax1 {
        min-height: 50vh;
        display: flex;
        align-items: center;
    }
}


/* footerSectionRow FOOTER */

.footerSectionRow {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.footerSectionRow .footerSection {
    background: url('../images/papyrus.png') repeat;
    padding-bottom: 100px;
}

.footerSectionRow .footerSection .headingblock {
    display: block;
}

.footerSectionRow .footerSection .heading,
.footerSectionRow .footerSection .heading-center {
    font-size: 20px;
    font-weight: normal;
}


/*addressInfo*/

.addressInfo {
    display: block;
    position: relative;
    color: inherit;
}

.addressInfo h5 {
    font-size: 20px;
    font-weight: bold;
}

.addressInfo h6 {
    margin: 0 0 20px 0;
    color: inherit;
    font-family: inherit;
    text-transform: none;
    position: relative;
    padding: 0 0 0 40px;
    line-height: 1.3;
    font-size: 16px;
    font-weight: normal;
}

.addressInfo p a,
.addressInfo a {
    color: inherit;
}

.addressInfo a:hover {
    color: var(--gl-primary);
    text-decoration: underline;
}

.addressInfo i {
    width: 30px;
    position: absolute;
    top: 3px;
    left: 0;
    color: var(--gl-primary);
}


/*footer-social*/

.footer-social {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-social a {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    margin: 0;
    text-align: center;
    border-radius: 100%;
}

.footer-social a i {
    height: inherit;
    line-height: inherit;
}

.footer-social a:hover {
    background: var(--gl-primary);
    border-color: transparent;
    color: #fff;
}

.footer-social .footerfacebookLink {
    background: #204385;
}

.footer-social .footertwitterLink {
    background: #ca2128;
}

.footer-social .footeryoutubeLink {
    background: #eb2429;
}

.footer-social .footerlinkedinLink {
    background: #02669a;
}

.footer-social .footerpinterestLink {
    background: #ca2128;
}

.footer-social .footergoogle-plusLink {
    background: #d3492c;
}


/*quickNav*/

.quickNav {
    display: block;
    margin: 0;
}

.quickNav>ul {
    margin: 0 0 0 16px;
    padding: 0;
}

.quickNav>ul>li {
    list-style-type: disc;
    color: var(--gl-dark);
    margin: 0 0 5px 0;
}

.quickNav>ul>li>a {
    display: inline-block;
    color: inherit;
}

.quickNav>ul>li>a:hover {
    color: var(--gl-primary);
    text-decoration: underline;
}


/* CONTACT US */

.enquiry-form {
    position: relative;
}

.enquiry-form label {
    display: none;
    color: #fff;
}

.enq-formgroup {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

.enq-formgroup i {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--gl-primary);
    background: transparent;
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.enquiry-form input,
.enquiry-form textarea {
    display: block;
    width: 100%;
    background: #fff;
    color: var(--gl-dark);
    text-indent: 45px;
    border: solid 1px var(--gl-light2);
    border-radius: 10px;
    font-family: var(--gl-font-sans-serif);
}

.enquiry-form input {
    height: 40px;
}

.enquiry-form textarea {
    height: auto;
    padding-top: 10px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: var(--gl-light);
}

.enquiry-form .textareabox i {
    top: 0;
    left: 0;
    border-radius: 0 30px 30px 0;
}

.enquiry-form .btn-transparent {
    background: #2fa3cd;
    cursor: pointer;
}


/*footerStrip*/

.footerStrip {
    display: block;
    clear: both;
    background: #fff;
    text-align: center;
    padding: 15px 0;
    color: var(--gl-primary);
    border-top: solid 1px var(--gl-light2);
}

.footerStrip a {
    color: inherit;
    font-weight: bold;
}

.footerStrip a:hover {
    text-decoration: underline;
    color: var(--gl-secondary);
}


/*scrollUp*/

.scroll-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    opacity: 0.9;
    position: fixed;
    bottom: 60px;
    right: 15px;
    color: #fff;
    font-size: 26px;
    display: none;
    background: var(--gl-primary);
    z-index: 50;
    border-radius: 10px;
}

.scroll-to-top:hover,
.scroll-to-top:active,
.scroll-to-top:focus {
    background: var(--gl-secondary);
    opacity: 1;
    color: #fff;
}


/* responsive styles for mobile & tablets */

@media (max-height: 700px) {
    .logo-block img {
        height: 80px;
    }
    .bannerSectionDesc h1 {
        font-size: 20px;
    }
    .bannerFormCol .bannerFormColInn form .fieldInput,
    .bannerFormCol .bannerFormColInn form input[type="text"],
    .bannerFormCol .bannerFormColInn form input[type="email"] {
        height: 35px;
    }
    .freeConsHead {
        bottom: 50px;
    }
    .bannerFormCol h3 {
        font-size: 16px;
    }
    .bannerFormCol h4,
    .freeConsHead h4 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .logo-block {
        margin-left: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    .nav-menu>ul.navActiveCol {
        display: block;
    }
    .sliderCarouselwithArrowNlist .owl-carousel .owl-nav button,
    .scrollDownBtn {
        display: none;
    }
    .splSectionColMain .splSectionBlock .splSectionBlockInn div {
        position: absolute;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 2;
    }
    .row-sm {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.3rem;
    }
    h5 {
        font-size: 1.1rem;
    }
    h6 {
        font-size: 1rem;
    }
    .row-sm {
        display: block;
    }
}