body {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #ababab;
    margin:0px;
  
}

a {
    color: inherit;
    transition: all 0.3s ease 0s;
}

    a:hover,
    a:focus {
        color: #ababab;
        text-decoration: none;
        outline: 0 none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

    p:last-child {
        margin-bottom: 0;
    }
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   common css end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   scrollbar CSS start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
html::-webkit-scrollbar {
    width: 1.30vw;
}

html::-webkit-scrollbar-thumb {
    background-color: #ffffff;
}

    html::-webkit-scrollbar-thumb:hover {
        background-color: #ffffff;
    }

html::-webkit-scrollbar-track {
    background-color: #555;
}

    html::-webkit-scrollbar-track:hover {
        background-color: #555;
    }

/* blink based browser */

/* geckeo based browser */
html {
    scrollbar-width: thin;
    scrollbar-color: #ffffff #555;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   scrollbar CSS end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Selection color CSS start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
::-moz-selection {
    background-color: #fa6862;
    color: #fff;
}

::selection {
    background-color: #fa6862;
    color: #fff;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Selection color CSS end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
              Reset bootstrap's default style
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.form-control::-webkit-input-placeholder,
::-webkit-input-placeholder {
    opacity: 1;
    color: inherit;
}

.form-control:-moz-placeholder,
:-moz-placeholder {
    /* Firefox 18- */
    opacity: 1;
    color: inherit;
}

.form-control::-moz-placeholder,
::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 1;
    color: inherit;
}

.form-control:-ms-input-placeholder,
:-ms-input-placeholder {
    opacity: 1;
    color: inherit;
}

button,
input,
select,
textarea,
label {
    font-weight: 400;
}

.btn {
    transition: all 0.3s ease 0s;
}

    .btn:hover,
    .btn:focus,
    .btn:active:focus {
        outline: 0 none;
    }

.btn-primary {
    background-color: #fa6862;
    border: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    height: 48px;
    line-height: 50px;
    padding: 0 42px;
    text-transform: uppercase;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary:active:focus {
        background-color: #f9423a;
    }

.btn-border {
    border: 1px solid #d7d8db;
    display: inline-block;
    padding: 7px;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
              Reset bootstrap's default style
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   CSS Helper Class start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.clear:before,
.clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

.pt-table {
    display: table;
    width: 100%;
    height: calc(100.7vh - 4px);
    margin: 0px;
    padding: 0px;
}

.pt-tablecell {
    display: table-cell;
    vertical-align: middle;
    margin: 0px;
    padding: 0px;
}


.relative {
    position: relative;
}

.primary,
.link:hover {
    color: #fa6862;
}

.no-gutter {
    margin-left: 0;
    margin-right: 0;
}

    .no-gutter > [class^=col-] {
        padding-left: 0;
        padding-right: 0;
    }

.flex {
    display: -moz-flex;
    display: flex;
}

.flex-middle {
    -moz-align-items: center;
    align-items: center;
}

.space-between {
    -moz-justify-content: space-between;
    justify-content: space-between;
}

.nicescroll-cursors {
    background: #fa6862 !important;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   CSS Helper Class end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   preloader CSS start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.preloader {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    display: -moz-flex;
    display: flex;
    
    margin: 0px;
}

    .preloader.active.hidden {
        display: none;
    }

.loading-mask {
    background-color: #ffffff;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 20%;
    transition: all 0.6s cubic-bezier(0.61, 0, 0.6, 1) 0s;
    margin: 0px;
}

    .loading-mask:nth-child(2) {
        left: 20%;
        transition-delay: 0.1s;
    }

    .loading-mask:nth-child(3) {
        left: 40%;
        transition-delay: 0.2s;
    }

    .loading-mask:nth-child(4) {
        left: 60%;
        transition-delay: 0.3s;
    }

    .loading-mask:nth-child(5) {
        left: 80%;
        transition-delay: 0.4s;
    }

.preloader.active.done {
    z-index: 0;
    padding: 0px;
    margin:0px;
}

.preloader.active .loading-mask {
    width: 0;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   preloader CSS end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   page style CSS start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.page-close {
    font-size: 50px;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 100;
    color: #fff;
}

.page-title {
    margin-bottom: 75px;
}

    .page-title img {
        margin-bottom: 20px;
    }

    .page-title h2 {
        font-size: 68px;
        margin-bottom: 25px;
        position: relative;
        z-index: 0;
        font-weight: 900;
        text-transform: uppercase;
        color: #fff;
    }

    .page-title p {
        font-size: 16px;
        color: #fff;
        font-family: 'Oswald', sans-serif;
        text-transform: capitalize;
        padding: 2px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.3);
    }

    .page-title .title-bg {
        color: rgba(255, 255, 255, 0.51);
        font-size: 138px;
        left: 0;
        letter-spacing: 10px;
        line-height: 0.7;
        position: absolute;
        right: 0;
        top: 50%;
        z-index: -1;
        transform: translateY(-50%);
    }

.section-title {
    margin-bottom: 20px;
    overflow: hidden;
}

    .section-title h3 {
        display: inline-block;
        position: relative;
    }

        .section-title h3::before,
        .section-title h3::after {
            content: "";
            height: 2px;
            position: absolute;
            bottom: 8px;
            left: calc(100% + 14px);
        }

        .section-title h3::before {
            background-color: #1e2530;
            width: 96px;
            bottom: 14px;
        }

        .section-title h3::after {
            background-color: #fa6862;
            width: 73px;
        }

    .section-title.light h3 {
        color: #fff;
    }

        .section-title.light h3::before {
            background-color: #fff;
        }

.page-nav {
    bottom: 40px;
    left: 0;
    position: absolute;
    right: 0;
    margin: 0px;
    padding: 0px;
}

    .page-nav span {
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
        text-transform: uppercase;
    }
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   page style CSS end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Home page style CSS start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.banner {
    position: relative;
}
/* star animation css start */
.star-block .snow-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: #ffffff;
    z-index: 1;
}

    .star-block .snow-dot:nth-child(1) {
        width: 50px;
        height: 50px;
        top: 70px;
        left: 10%;
        z-index: 1;
        animation: scale-upOne 1s alternate infinite ease-in;
        -webkit-animation: scale-upOne 1s alternate infinite ease-in;
    }

    .star-block .snow-dot:nth-child(2) {
        top: 284px;
        left: 75%;
        animation: scale-upOne 1.1s alternate infinite ease-in;
        width: 20px;
        height: 20px;
    }

    .star-block .snow-dot:nth-child(3) {
        top: 397px;
        left: 20%;
        animation: scale-upOne 0.8s alternate infinite ease-in;
        width: 25px;
        height: 25px;
    }

    .star-block .snow-dot:nth-child(4) {
        top: 136px;
        left: 84%;
        animation: scale-upOne 1s alternate infinite ease-in;
    }

    .star-block .snow-dot:nth-child(5) {
        bottom: 35px;
        right: 12%;
        animation: scale-upOne 1.2s alternate infinite ease-in;
    }

    .star-block .snow-dot:nth-child(6) {
        bottom: 80px;
        right: 31%;
        animation: scale-upOne 0.9s alternate infinite ease-in;
    }

    .star-block .snow-dot:nth-child(7) {
        bottom: 273px;
        right: 86%;
        animation: scale-upOne 1s alternate infinite ease-in;
    }


@-webkit-keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}

@keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}
/* star animation css end */


/* Clouds animation start */
.banner .clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .banner .clouds img {
        position: absolute;
        bottom: 0;
        max-width: 100%;
        animation: animate calc(8s * var(--i)) linear infinite;
        -webkit-animation: animate calc(8s * var(--i)) linear infinite;
        opacity: 0.5;
    }

@keyframes animate {
    0% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }
}
/* Clouds animation end */

.page-home {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: middle;
    margin: 0px;
}

/* End of container */
.hexagon-item {
    cursor: pointer;
    width: 200px;
    height: 173.2050807569px;
    float: left;
    margin-left: -1%;
    z-index: 0;
    position: relative;
    transform: rotate(30deg);
}


.block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hexagon-item:hover {
    z-index: 1;
}

    .hexagon-item:hover .hex-item:last-child {
        opacity: 1;
        transform: scale(1.3);
    }

    .hexagon-item:hover .hex-item:first-child {
        opacity: 1;
        transform: scale(1.2);
    }

        .hexagon-item:hover .hex-item:first-child div:before,
        .hexagon-item:hover .hex-item:first-child div:after {
            height: 15px;
        }

    .hexagon-item:hover .hex-item div::before,
    .hexagon-item:hover .hex-item div::after {
        background-color: #fa6862;
    }

    .hexagon-item:hover .hex-content svg {
        transform: scale(0.97);
    }

.hex-item {
    position: absolute;
    top: 0;
    left: 50px;
    width: 100px;
    height: 173.2050807569px;
}

    .hex-item:first-child {
        z-index: 0;
        transform: scale(0.9);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .hex-item:last-child {
        transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1;
    }

    .hex-item div {
        box-sizing: border-box;
        position: absolute;
        top: 0;
        width: 100px;
        height: 173.2050807569px;
        transform-origin: center center;
    }

        .hex-item div::before,
        .hex-item div::after {
            background-color: #fff;
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
        }

        .hex-item div:before {
            top: 0;
        }

        .hex-item div:after {
            bottom: 0;
        }

        .hex-item div:nth-child(1) {
            transform: rotate(0deg);
        }

        .hex-item div:nth-child(2) {
            transform: rotate(60deg);
        }

        .hex-item div:nth-child(3) {
            transform: rotate(120deg);
        }

.hex-content {
    color: #fff;
    display: block;
    height: 180px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    transform: rotate(-30deg);
    width: 156px;
}

    .hex-content .hex-content-inner {
        left: 50%;
        margin: -3px 0 0 2px;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hex-content .icon {
        display: block;
        font-size: 36px;
        line-height: 30px;
        margin-bottom: 11px;
    }

    .hex-content .title {
        display: block;
        font-family: 'Nothing You Could Do', cursive;
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 24px;
        text-transform: capitalize;
        font-weight: 800;
    }

    .hex-content svg {
        left: -7px;
        position: absolute;
        top: -13px;
        transform: scale(0.87);
        z-index: -1;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    }

    .hex-content:hover {
        color: #fff;
    }
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Home page style CSS end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   service-hex start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.service-hex {
    float: left;
    position: relative;
    width: 20%;
    z-index: 1;
}

    .service-hex svg {
        transform: scale(1.08);
        transition: all 0.4s ease 0s;
    }

    .service-hex .st0 {
        stroke: #1e2530;
        fill: #fff;
    }

    .service-hex .st1 {
        fill: #1e2530;
    }

    .service-hex .content {
        color: #fff;
        left: 50%;
        position: absolute;
        text-align: center;
        top: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }

    .service-hex .icon {
        font-size: 30px;
        margin-bottom: 9px;
    }

    .service-hex h4 {
        color: #fff;
        font-size: 34px;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .service-hex p {
        font-size: 14px;
        height: 0;
        line-height: 24px;
        overflow: hidden;
        transition: all 0.4s ease 0s;
        padding: 0 20px;
    }

    .service-hex:hover {
        z-index: 2;
    }

        .service-hex:hover svg {
            transform: scale(1.5);
        }

        .service-hex:hover .st1 {
            fill: #fa6862;
        }

        .service-hex:hover .content {
            width: 135%;
        }

        .service-hex:hover p {
            height: 72px;
        }

.pt-table.desktop-768 .pt-tablecell {
    padding-bottom: 110px;
    padding-top: 60px;
}

    .pt-table.desktop-768 .pt-tablecell .page-nav {
        bottom: 40px;
    }
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   service-hex end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Color Switcher start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.preview-wrapper {
    background-color: #000;
    border: 1px solid #fff;
    border-right: 0;
    color: #333;
    height: 150px;
    right: 0px;
    position: fixed;
    top: 100px;
    width: 260px;
    z-index: 1200;
    transition: all 0.4s ease-in-out 0s;
    transform: translateX(100%);
    margin: 0px;
    padding: 0px;

}

    .preview-wrapper.extend {
        transform: translateX(0px);
    }

.switcher-head {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    height: 46px;
    line-height: 46px;
    position: relative;
}

    .switcher-head span {
        border-bottom: 2px solid #eeeeee;
        display: block;
        margin: 0 20px;
        color: #fff;
    }

    .switcher-head i {
        font-size: 33px;
        color: #ffff;
        padding: 6px;
        background: transparent;
    }

.switcher-trigger {
    background-color: #fff;
    border: 1px solid #ddd;
    border-right: 0;
    cursor: pointer;
    font-size: 20px;
    height: 48px;
    left: -48px;
    line-height: 46px;
    position: absolute;
    text-align: center;
    top: -1px;
    width: 48px;
}

.switcher-body {
    background-color: #000;
    height: calc(100% - 50px);
    left: 0;
    padding: 20px;
    position: fixed;
    right: 0;
    top: 47px;
    outline: none;
}

    .switcher-body h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .switcher-body select {
        border: 1px solid #e5e5e5;
        height: 40px;
        margin-bottom: 20px;
        width: 100%;
        -webklit--appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
    }

.color-options {
    margin-bottom: 10px;
    padding: 0;
}

    .color-options li {
        display: inline-block;
        background-color: #e6ae03;
        height: 30px;
        margin-bottom: 10px;
        margin-right: 6px;
        text-indent: -9999em;
        width: 30px;
        cursor: pointer;
    }

        .color-options li.c0 {
            background-color: #fa6862;
        }

        .color-options li.c1 {
            background-color: #02b7ce;
        }

        .color-options li.c2 {
            background-color: #86a438;
        }

        .color-options li.c3 {
            background-color: #f3a36d;
        }
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Color Switcher end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Modal end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.wrap-modal1 {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9000;
    overflow: auto;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

.show-modal1 {
    visibility: visible;
    opacity: 1;
}

.overlay-modal1 {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 1;
}

.wrap-modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9000;
    overflow: auto;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

.carreer_txt {
    font-weight: 800;
    padding: 30px;
    text-transform: capitalize;
}

    .carreer_txt p {
        padding: 30px;
        text-transform: capitalize;
        font-size: 16px;
        color: #fff;
        border-top: 1px solid #fa6862;
        border-bottom: 1px solid #fa6862;
    }

.show-modal {
    visibility: visible;
    opacity: 1;
}

.overlay-modal {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 1;
}

.img_zodi h5 {
    color: #fff;
    font-size: 14px;
}

.modaldemo {
    background-image: url(../images/zodiac/banner.png);
    padding: 11px;
    border: 2px solid #fff;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.modal_img {
    background-color: transparent;
    justify-content: center;
}

.modal_txt {
    text-align: center;
    color: #fff;
    margin: 10px;
}

    .modal_txt h3 {
        color: #fff;
        font-size: 15px;
    }


.how-pos3-parent {
    position: relative;
}

.how-pos3 {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    background: transparent;
    border: transparent;
    font-size: 44px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.p-t-60 {
    padding-top: 60px;
}

.p-b-30 {
    padding-bottom: 30px;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Modal end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/*------------------------------------------------
	Responsive Media Queries
-------------------------------------------------*/
@media (max-width: 575.98px) {
}

@media (min-width: 576px) and (max-width: 767.98px) {
}

@media only screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .pt-table {
        height: auto;
    }

    .pt-table,
    .pt-tablecell {
        display: block;
    }

    .page-title {
        margin-bottom: 45px;
    }

        .page-title h2 {
            font-size: 25px;
        }

        .page-title .title-bg {
            font-size: 27px;
        }

    .hexagon-item {
        float: none;
        margin: 0 auto 50px;
    }

        .hexagon-item:first-child {
            margin-left: auto;
        }

    .page-home .hexagon-item:nth-last-child(1),
    .page-home .hexagon-item:nth-last-child(2),
    .page-home .hexagon-item:nth-last-child(3) {
        transform: rotate(30deg) translate(0px, 0px);
    }

    .service-hex {
        float: none;
        margin: 0 auto 40px;
        width: 60%;
    }

        .service-hex:last-child {
            margin-bottom: 0;
        }

        .service-hex:hover svg {
            transform: scale(1.8);
        }

        .service-hex:hover .content {
            width: 120%;
        }

    .page-nav {
        bottom: auto;
        margin: 0px;
        padding: 0px;
    }

        .page-nav .flex {
            display: block;
            text-align: center;
        }

            .page-nav .flex span {
                display: block;
                margin: 20px 0;
            }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        overflow-x: hidden;
    }

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

    .page-title .title-bg {
        font-size: 100px;
    }

    .hexagon-item {
        height: 224.205px;
    }

    .service-hex {
        width: 33.3333%;
    }

        .service-hex:hover {
            z-index: 2;
        }

            .service-hex:hover svg {
                transform: scale(1.5);
            }

            .service-hex:hover .content {
                width: 105%;
            }

        .service-hex:nth-child(4),
        .service-hex:nth-child(5) {
            transform: translate(50%, -15%);
        }

    .page-nav {
        bottom: auto;
    }

        .page-nav .flex {
            display: block;
            text-align: center;
        }

            .page-nav .flex span {
                display: block;
                margin: 20px 0;
            }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hexagon-item {
        height: 222.205px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
}

@media (min-width: 1400px) {
}






.dark {
    background-color: #0c0f15;
}

    .dark .page-home .overlay {
        background-color: rgba(14, 17, 24, 0.97);
    }

    .dark .page-title h2 {
        color: #ffffff;
    }

    .dark .page-title .title-bg {
        color: rgba(70, 88, 124, 0.06);
    }

    .dark .section-title h3::before {
        background-color: #fff;
    }

    .dark h1,
    .dark h2,
    .dark h3,
    .dark h4,
    .dark h5,
    .dark h6,
    .dark .about-author .author-desc p {
        color: #fff;
    }

    .dark .switcher-body h4 {
        color: #0c0f15;
    }

    .dark .service-hex .st0 {
        fill: transparent;
    }

    .dark .service-hex:hover .st0 {
        fill: #fff;
    }

    .dark .testimonials .text,
    .dark .btn-border {
        border-color: #1e2530;
    }
