@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

:root {
    scroll-behavior: auto;
    --base-color: #A3A5A7;
    --heading-color: #1D2043;
    --primary-color: #1AB8AB;
    --light-color: #FAFAFA;
    --base-font: 'Poppins', sans-serif;
    --heading-font: 'Playfair Display', serif;
}

body {
    color: var(--base-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    font-family: var(--base-font);
}

a {
    color: var(--base-color);
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

h1,
h2 {
    font-weight: 700;
    font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--heading-color);
}

::selection {
    background-color: #fcf1e7;
    color: #1f2044;
    text-shadow: none
}

-webkit-::selection {
    background-color: #fcf1e7;
    color: #1f2044;
    text-shadow: none
}

::-moz-selection {
    background-color: #fcf1e7;
    color: #1f2044;
    text-shadow: none
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #2e2e2e
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 35px;
    line-height: 1.35;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

header:after,
section:after,
footer:after {
    display: block;
    clear: both;
    content: "";
}

.text-main {
    color: var(--primary-color);
}

.theme-btn, a.theme-btn {
    z-index: 1;
    color: white;
    font-size: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.5s;
    position: relative;
    text-align: center;
    padding: 10px 22px;
    border-radius: 32px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-transform: uppercase;
    background: var(--primary-color);
    box-shadow: 0 16px 16px rgba(116, 113, 113, 0.16);
}

.theme-btn:before,
a.theme-btn:before {
    content: '';
    width: 44px;
    z-index: -1;
    left: 5px;
    opacity: 0.2;
    transition: 0.75s;
    background: white;
    position: absolute;
    border-radius: 20px;
    height: calc(100% - 10px);
}

.theme-btn i,
a.theme-btn i {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 40px;
}

.theme-btn:hover:before,
a.theme-btn:hover:before {
    left: calc(100% - 49px);
}

.theme-btn:hover i,
a.theme-btn:hover i {
    margin-left: 45px;
    margin-right: -3px;
}

/* Read More Btn */
.read-more {
    font-weight: 500;
    align-items: center;
    display: inline-flex;
    text-decoration: underline;
    color: var(--primary-color);
}

.read-more i {
    font-size: 13px;
    transition: 0.5s;
    margin-left: 20px;
}

.read-more:hover i {
    margin-left: 25px;
}



/* List Style one */
.list-style-one li {
    font-weight: 600;
    font-size: 18px;
    display: flex;
}

.list-style-one li:before {
    content: "\f00c";
    font-size: 12px;
    height: 25px;
    width: 25px;
    flex: none;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    background: #f3f1fe;
    margin: 5px 12px 0 0;
    color: var(--primary-color);
    font-family: 'Font Awesome 5 Free'
}

.list-style-one li:not(:last-child) {
    margin-bottom: 15px;
}

/*** Preloader style ** */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.gif);
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}


.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.wrapper #content {
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.full-page {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.section {
    min-height: 100%;
}

#pp-nav {
    display: none;
}

.progress-nav {
    position: fixed;
    width: 2px;
    top: 50%;
    right: 60px;
    z-index: 9;
    transform: translate(0, -50%)
}

.progress-nav ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.progress-nav li {
    width: 2px;
    height: 30px;
    overflow: hidden;
    position: relative;
    background: var(--primary-color);
    transition: background .5s ease-in-out;
}

.progress-nav li:before {
    display: block;
    height: 100%;
    content: "";
    width: 2px;
    left: 0;
    top: 0;
    position: absolute;
    background: var(--primary-color);
}

.progress-nav li.active:before {
    animation: navHeight .5s ease-in-out forwards;
}

@-webkit-keyframes navHeight {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@keyframes navHeight {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.progress-nav li.active,
.progress-nav li.active ~ li {
    background: #D2D2D2;
}

.progress-nav li:before {
    height: 100%;
}

.progress-nav li.active ~ li:before {
    height: 0%;
}

.pp-scrollable {
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.slide-container {
    width: 100%;
    display: flex;
    min-height: 100%;
    position: relative;
    padding-top: 100px;
    align-items: center;
    padding-bottom: 100px;
}

.bg-lighter,
.slide-light {
    background-color: var(--light-color);
}

.section:not(.active) .animate-element {
    animation-name: none;
}

.section.active .animate-element {
    animation-duration: .7s;
    animation-fill-mode: both;
}

.section.active .delay1 {
    animation-delay: .1s;
}

.section.active .delay2 {
    animation-delay: .2s;
}

.section.active .delay3 {
    animation-delay: .3s;
}

.section.active .delay4 {
    animation-delay: .4s;
}

.section.active .delay5 {
    animation-delay: .5s;
}

.section.active .delay6 {
    animation-delay: .6s;
}

.section.active .delay7 {
    animation-delay: .7s;
}

.section.active .delay8 {
    animation-delay: .8s;
}

.section.active .delay9 {
    animation-delay: .9s;
}

.section.active .delay10 {
    animation-delay: 1s;
}

.section.active .delay11 {
    animation-delay: 1.1s;
}

.section.active .delay12 {
    animation-delay: 1.2s;
}

.section.active .delay13 {
    animation-delay: 1.3s;
}

.section.active .delay14 {
    animation-delay: 1.4s;
}

.section.active .delay15 {
    animation-delay: 1.5s;
}

.section.active .delay16 {
    animation-delay: 1.6s;
}

.header .container-fluid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.body-piling .brand {
    position: fixed;
    z-index: 500;
    left: 50px;
    top: 15px;
}

.brand-name {
    color: var(--heading-color);
}

.brand-name img{
	max-width: 120px;
	height: auto;
}

.lets-chat {
    position: fixed;
    top: 35px;
    z-index: 99;
    right: 130px;
    display: flex;
    align-items: center;
}

.lets-chat span {
    font-size: 16px;
    color: var(--heading-color);
}

.lets-chat button {
    height: 34px;
    width: 34px;
    background: white;
    margin-left: 20px;
    border-radius: 3px;
    box-shadow: 0 3px 6px rgba(116, 116, 116, 0.16);
}

/*Nav Toggle Btn*/
.nav_logo{
	max-width: 100%;
	max-height: 70px;

}

.nav-toggle-btn {
    margin: 0;
    padding: 0;
    top: 38px;
    right: 50px;
    border: none;
    z-index: 995;
    position: fixed;
    background-color: transparent;
}

.hamburger {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px
}

.hamburger span {
    align-self: flex-end;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    transition: all 400ms ease-in-out
}

.hamburger .meat {
    width: 83.33333333%;
    transition: all 200ms ease-in-out
}

.hamburger .bottom-bun {
    width: 58.33333333%;
    transition: all 400ms ease-in-out
}

.hamburger:hover span {
    width: 100%
}

html:not(.body-menu-opened) .hamburger:hover .top-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms
}

html:not(.body-menu-opened) .hamburger:hover .meat {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms
}

html:not(.body-menu-opened) .hamburger:hover .bottom-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms
}

@-webkit-keyframes burger-hover {
    0% {
        width: 100%
    }

    50% {
        width: 50%
    }

    100% {
        width: 100%
    }
}

@keyframes burger-hover {
    0% {
        width: 100%
    }

    50% {
        width: 50%
    }

    100% {
        width: 100%
    }
}

.body-menu-opened .hamburger .top-bun {
    transform: rotate(-45deg) translate(-4.5px, 4px);
    width: 100%
}

.body-menu-opened .hamburger .bottom-bun {
    transform: rotate(45deg) translate(-4.5px, -4px);
    width: 100%
}

.body-menu-opened .hamburger .meat {
    width: 0
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    width: 100%;
    padding: 30px 60px 60px 60px;
    display: flex;
    max-width: 100%;
    background: #fff;
    flex-direction: column;
    transition: transform .4s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.body-menu-opened .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%)
}

.hide-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0%;
    z-index: 980;
    display: none;
    background: rgba(0, 0, 0, .65);
}

.menu {
    width: 400px;
    max-width: 100%;
}

.menu .menu-main {
    transition-delay: .4s;
}

.body-menu-opened .menu .menu-main {
    opacity: 1;
    transform: translateY(0);
}

.menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 18px;
    font-weight: 700;
}

.menu-main > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-main > ul > li {
    margin-bottom: 1.1875rem;
    padding-left: 2px;
}

.menu-main a,
.menu-main a:hover {
    color: #1f2044;
    text-decoration: none;
}

.menu-main .active a,
.menu-main a:hover {
    background-color: #fcf1e7;
    box-shadow: #fcf1e7 0 0 0 2px;
}

.menu-main a:after {
    content: ".";
    opacity: 0;
    display: inline-block;
    transform: translate(2rem, 0);
    transition: all .3s ease-in-out;
}

.menu-main .active a:after {
    transform: translate(0, 0);
    opacity: 1;
}

.menu-ornament {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background-image: url(../images/bags/menu_back.svg);
	background-repeat: no-repeat;
	background-size: cover;
}




.about-content h3 {
    font-size: 31px;
    margin-top: 10px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    max-width: 500px;
}

p b {
    font-weight: 500;
    color: var(--heading-color);
}

b a:not(:hover) {
    color: var(--heading-color);
}

.about-inner-images {
    position: relative;
}

.about-inner-images .shape-one {
    position: absolute;
    top: 50px;
    left: 28%;
    max-width: 15%;
}

.about-inner-images .shape-two {
    position: absolute;
    top: 0;
    left: 10%;
    max-width: 10%;
}


.service-inner-images {
    position: relative;
    max-width: 600px;
}

.service-inner-images .shape-one {
    position: absolute;
    left: 0;
    top: 12%;
}

.service-inner-images .shape-two {
    position: absolute;
    top: 0;
    right: 20%;
    max-width: 20%;
}

.service-content {
    max-width: 450px;
    margin-left: auto;
}

.our-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    width: 45%;
    display: flex;
    margin-top: 40px;
    align-items: center;
}

.service-item .icon {
    height: 44px;
    width: 44px;
    flex: none;
    transition: 0.5s;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    background: #aaa;
}

.service-item h4 {
    margin: 0;
    transition: 0.5s;
    padding: 7px 0 6px;
    border-bottom: 2px solid transparent;
}

.service-item:hover .icon {
    background: var(--primary-color);
}

.service-item:hover h4 {
    border-color: var(--primary-color);
}


.skill-content {
    max-width: 450px;
}
ul.skills_list{
	padding-inline-start: 10px;
}
ul.skills_list li{
	list-style : disc inside;
	font-size: 18px;
	font-weight: 500;
}
.skill-images-inner {
    position: relative;
    display: inline-block;
}

.skill-images-inner .shape-one {
    position: absolute;
    top: 10px;
    left: 10%;
    max-width: 20%;
}

.skill-images-inner .shape-two {
    position: absolute;
    top: 5%;
    right: 15%;
    max-width: 20%;
}



.contact-wrap {
    border-radius: 25px;
    box-shadow: 0 25px 18px rgb(183 189 212 / 16%);
}

.contact-content {
    padding: 0 60px 80px;
}
.slide-contact{	
	background-color: var(--light-color);
}

.contact-content .section-title {
    max-width: 400px;
}


@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}


.breadcrumb {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
}

.page-title {
    font-size: 45px;
    margin-bottom: 15px;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}


.page-inner-content {
    width: 100%;
}



.sidebar {
    max-width: 335px;
}

.widget:not(:last-child) {
    margin-bottom: 50px;
}

.widget-title {
    position: relative;
    margin-bottom: 33px;
    padding-bottom: 20px;
}

.widget-title:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 60px;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
}

.footer-contact {
    z-index: 2;
    position: relative;
	min-height: 500px;
}

.footer-contact h3 {
    font-size: 23px;
}


.footer-bottom-shape {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1400px;
    display: flex;
    max-width: 100%;
    justify-content: center;
    transform: translate(-50%);
}

.footer-bottom-girl {
    position: absolute;
    left: 25%;
    bottom: 5px;
    max-width: 30%;
}
.footer-bottom-map {
      width: 100%;
      position: absolute; 
	  bottom: 0; 
	  left: 0;
}

.pricingTable{
	text-align: center;
	background: #fff;
	margin: 0 -15px;
	box-shadow: 0 0 10px #ababab;
	padding: 40px 40px 0  40px ;
	border-radius: 10px;
	color: #cad0de;
	transform: scale(1);
	transition: all 0.5s ease 0s;
}
.pricingTable p{
	line-height: 1rem;
	color: #aaa;
}
.pricingTable:hover{
	transform: scale(0.95);
	z-index: 1;
}
.pricingTable .pricingTable-header{
	padding: 30px 0 10px 0 ;
	background: #f5f6f9;
	border-radius:  50% 50% 0 0;
	transition: all 0.5s ease 0s;
}
.pricingTable:hover .pricingTable-header{
	background: #ff9624;
}
.pricingTable .pricingTable-header i{
	font-size: 50px;
	color: #858c9a;
	margin-bottom: 10px;
	transition: all 0.5s ease 0s;
}
.pricingTable .price-value{
	font-size: 35px;
	color: #ff9624;
	transition: all 0.5s ease 0s;
}
.pricingTable .month{
	display: block;
	font-size: 14px;
	color: #cad0de;
}
.pricingTable:hover .pricingTable-header i,
.pricingTable:hover .price-value,
.pricingTable:hover .month{
	color: #fff;
}
.pricingTable .heading{
	font-size: 24px;
	color: #ff9624;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.pricingTable .pricingTable-signup a:hover{
	box-shadow: 0 0 10px #ffa442;
}
.pricingTable.red .price-value,
.pricingTable.red .heading{
	color: var(--heading-color);
}
.pricingTable.red:hover .price-value{
	color: #fff;
}
.pricingTable.red:hover .pricingTable-header{
	background: var(--primary-color);
	color: white;
}



	
    
