@import url('bootstrap.min.css');
@import url("https://fonts.googleapis.com/css?family=Rubik:400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900");

:root {
    --color-primary: #9A258F;
    --color-primary-light: #C465BB;
    --color-primary-dark: #6C0363;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    list-style: none !important;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

i,
em {
    font-style: normal;
}

html,
body {
    position: relative;
    height: 100%;
    width: 100%;
}

body {
    font-size: 16px;
    font-family: "Rubik", sans-serif;
    line-height: 1.65;
    color: #555;
    background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: #222;
}

span {
    display: inline-block;
}

img {
    width: 100%;
    height: auto;
}

a,
a:hover,
a:focus {
    color: inherit;
}

/********** Preloader **********/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #FBFBFB;
    z-index: 10000;
}

.preloader .loader {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.preloader .loader img {
    width: 250px;
    margin: 10px 0;
}

/********** Header Main **********/
.header-main {
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 300;
    width: 300px;
    background-color: #2a2b30;
    overflow: auto;
    left: 0;
    overflow-x: hidden;
    text-align: center;
    z-index: 999;
    border-right: 1px solid #202125;
}

.header-main .logo-container {
    position: relative;
}

.header-main .logo-container img {
    position: relative;
}

.header-main .logo-container .site-title {
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background-color: var(--color-primary);
}

.header-main .logo-container .site-description {
    width: 100%;
    color: #fff;
    padding: 10px 0;
    margin: 0;
    background-color: var(--color-primary-light);
}

.header-main nav ul li {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #202125;
    text-align: left;
}

.header-main nav ul li a {
    display: block;
    line-height: 45px;
    padding-left: 35px;
    position: relative;
    color: #999;
}

.header-main nav ul li a.active {
    color: #fff;
}

.header-main .nav-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 2em;
    width: 100%;
    text-align: center;
}

.header-main .nav-footer .social img {
    width: 40px;
    margin-bottom: 10px;
    cursor: pointer;
}

.header-main .nav-footer .copy p {
    font-size: 12px;
    color: #777;
}

/********** Header Mobile **********/
.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    z-index: 10;
    display: none;
    height: 80px;
    padding: 0 15px;
    text-align: right;
}

.header-mobile img {
    width: 50%;
    max-height: 80px;
}

.header-mobile span {
    font-size: 14px;
    color: #FFFFFF;
    padding: 5px 0 0 10px;
}

/********** Main Section **********/
main {
    margin-left: 300px;
    position: relative;
}

.section {
    background-color: #FFF;
    padding: 15px 25px;
    margin-bottom: 25px;
    height: 100%;
    min-height: 800px;
}

.section .row {
    margin-bottom: 20px;
}

.contact {
    display: flex;
}

.contact .icon {
    width: 50px;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 50px;
    margin-right: 25px;
    align-self: center;
}

.contact .detail p {
    font-size: 20px;
    font-weight: 700;
}


.service {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.service:hover {
    background-color: #ECC1E8;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.service .icon {
    width: 80px;
    margin: 0 auto 10px;
    padding: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 80px;
}

.service h4 {
    font-size: 18px;
    font-weight: 600;
}

.service p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

#map {
    width: 100%;
    height: 200px;
}

/********** Heading **********/

.heading {
    margin: 0 0 25px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.heading .icon {
    float: right;
    width: 38px;
    line-height: 1em;
    color: #222;
}

.heading h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1em;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    color: var(--color-primary);
}

.subheading h3 {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: .5px;
    position: relative;
    padding: 5px 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    padding: 5px 20px 5px 0px;
    margin-bottom: 20px;
}

/********** Form **********/
#contact-form input,
#contact-form textarea {
    width: 100%;
    border: 2px solid #999;
    padding: 5px 10px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    z-index: 1;
    background-color: transparent;
    color: #222;
    margin-bottom: 15px;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

#contact-form textarea {
    resize: none;
    height: auto;
}

/********** Button **********/
.btn-main {
    border: 2px solid var(--color-primary);
    padding: 10px 20px;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.btn-main:hover,
.btn-main:focus {
    color: #fff;
    background-color: var(--color-primary);
}

/********** Shadow Boxes **********/
.shadow-box {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin-bottom: 30px;
    padding: 10px 20px;
}

.shadow-box p {
    margin: 0;
}

.shadow-box-img {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin-bottom: 30px;
    border-radius: 20px;
}

.shadow-box-img img {
    border-radius: 20px;
}

.shadow-box-map {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin-bottom: 30px;
}

/*============ Mobile Responsive Css ============*/
@media screen and (max-width: 767px) {
    .header-main {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    main {
        margin-left: 0;
        padding-top: 80px;
    }

    .section {
        height: 100% !important;
    }

    .heading {
        text-align: center;
    }

    .heading .icon {
        float: none;
        margin-bottom: 10px;
    }

    .heading h2 {
        width: 100%;
        font-size: 26px;
    }

    .subheading h3 {
        font-size: 18px;
    }
}