/* Base styles: opinionated defaults*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    overflow-x: hidden !important;
}

/*========START OF PRELODER===========*/

.spinner-wrapper .spinner,
.spinner span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #34c6f4;
    background: -webkit-linear-gradient(to top, #2d276d, #34c6f4);
    background: linear-gradient(to top, #2d276d, #34c6f4);
    z-index: 999999;
}

.spinner-wrapper .spinner {
    width: 50px;
    height: 40px;
    text-align: center;
}

.spinner > div {
    background-color: #ffffff;
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    animation-delay: -1.1s;
}

.spinner .rect3 {
    animation-delay: -1.0s;
}

.spinner .rect4 {
    animation-delay: -0.9s;
}

.spinner .rect5 {
    animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }
}


/* ============ START OF BACK TO TOP BUTTON ==============*/

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

* {
    box-sizing: border-box;
}

.m-backtotop {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #34c6f4;
    background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
    background: linear-gradient(to left, #2d276d, #34c6f4);
    border-radius: 25px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    overflow: hidden;
    color: #fff;
}

.m-backtotop.active {
    bottom: 15px;
    opacity: 1;
    z-index: 11;
}

.m-backtotop > div {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
    z-index: 3333;
}

.m-backtotop > div.text {
    font-size: 5px;
    font-size: 0.5rem;
    line-height: 10px;
    text-transform: uppercase;
    font-weight: 900;
    font-family: "Open Sans", sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px;
}

.m-backtotop:hover {
    transform: scale(1.1);
    bottom: 20px;
    cursor: pointer;
    background: black;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0;
}

.m-backtotop:hover > div.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
}

/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */
@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

a {
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
}

a:hover {
    text-decoration: none;
}

.btn:focus,
.btn:active {
    outline: inherit;
}

/* ========== START OF HEADER PART=============*/
#home {
    background: url(../images/head.jpg);
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    background: rgba(0, 0, 0, 0.29);
    min-height: 700px;
}

.content {
    margin-top: 5%;
}

.sti_logo img {
    max-height: 77px;
}

.home_logo {
    text-align: center;
    display: block;
    padding: 60px;
    margin-bottom: 20px;
}

.home_logo img {
    text-align: center;
    height: 140px;
}

/* ========== STICKEY MENU =========== */
.content-wrapper {
    position: relative;
    background-color: #cccccc;
}

nav {
    transition: 0.5s;
    position: absolute;
    top: -100px;
    list-style: none;
    width: 100%;
    height: 80px;
    padding: 0px !important;
    z-index: 10;
    right: 0;
    background: #ffffff;
    border: none !important;
    box-shadow: inset 0px 0px 1px #edf9ff;
}

#full_menu {
    /*    background: #34c6f4 !important;*/
    height: 80px;
    position: fixed;
    top: -170px;
    width: 100%;
    z-index: 222;
    background: #34c6f4;
    background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
    background: linear-gradient(to left, #2d276d, #34c6f4);
}

#full_menu .shrink {
    height: 80px;
    /*    background-color: #34c6f4 !important;*/
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
    border-radius: 0px;
    transition: all .1s linear;
    background: #34c6f4;
    background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
    background: linear-gradient(to left, #2d276d, #34c6f4);
}

.menu {
    text-align: center;
    background-color: transparent;
}

.menu li {
    display: inline-block;
    text-align: right;
}

.menu > .active > a,
.menu > .active > a:hover,
.menu > .active > a:focus {
    color: #34c6f4 !important;
    background: transparent !important;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #555;
    background-color: transparent !important;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 0px !important;
    font-size: 18px;
    line-height: 20px;
}

.menu li a {
    line-height: 50px;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff !important;
}

.menu li a:hover:after {
    top: 33px;
    font-weight: 500;
    font-size: 18px;
}

.menu li a:after {
    content: "\f005";
    font-family: FontAwesome;
    color: #34c6f4;
    font-size: 0px;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    opacity: 1;
    transition: all 0.4s;
}

#menu > li.active > a:after {
    content: "\f005";
    font-family: FontAwesome;
    color: #34c6f4;
    font-size: 0px;
    font-family: FontAwesome;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    opacity: 1;
    transition: all 0.4s;
}

.navbar-collapse {
    padding: 0px !important;
}

.navbar-default {
    background: #34c6f4;
    background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
    background: linear-gradient(to left, #2d276d, #34c6f4);
    height: 80px;
}

.intro h1 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 80px;
    margin-bottom: 36px !important;
    text-shadow: 4px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.intro p {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin: 10px 0px;
    font-size: 16px;
    text-align: center;
}

.mobile_image {
    max-width: 550px;
    margin: auto;
    margin-bottom: 50px;
    border: 10px solid;
    border-image-source: linear-gradient(-90deg, #2d276d, #34c6f4);
    border-image-slice: 1;
}

.mobile_image img {
    width: 100%;
    /*
    -webkit-filter: grayscale(100%); 
  filter: grayscale(100%);
*/
}

/* ========== START OF ABOUT PART=============*/
#full_about {
    padding: 50px 0px;
    background: #ffffff;
}

.about h2 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    margin-bottom: 25px !important;
    text-transform: capitalize;

}

.line_about {
    background: #34c6f4;
    background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
    background: linear-gradient(to left, #2d276d, #34c6f4);
    height: 5px;
    width: 150px;
    margin: 0 auto;
    border-radius: 20px;
}

.about p {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    width: 70%;
    margin: 0 auto;
    padding-top: 30px;
}

/*======== START OF FULL SERVICE ===========*/

#full_services {
    padding: 50px 0px;
    background: #F7F8FA;

}

#full_services h2 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    margin-bottom: 25px !important;
    text-transform: capitalize;
    text-align: center;

}

.line_full_services {
    background: #34c6f4;
    background: -webkit-linear-gradient(to right, #2d276d, #34c6f4);
    background: linear-gradient(to right, #2d276d, #34c6f4);
    height: 5px;
    width: 150px;
    margin: 0 auto;
    border-radius: 20px;
}

.service p {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    margin: opx;
    padding-top: 30px;
    text-align: left;

}

.ser_left {
    max-width: 500px;
    margin: auto;
    margin-bottom: 50px;
    border: 10px solid;
    border-image-source: linear-gradient(90deg, #2d276d, #34c6f4);
    border-image-slice: 1;
}

/*========START OF MANAGEMENT SERVICE===========*/

#full_man_services {
    padding: 50px 0px;
    background: #ffffff;

}

#full_man_services h2 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    margin-bottom: 25px !important;
    text-transform: capitalize;
    text-align: center;

}

.line_full_services {
    background: #34c6f4;
    background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
    background: linear-gradient(to left, #2d276d, #34c6f4);
    height: 5px;
    width: 150px;
    margin: 0 auto;
    border-radius: 20px;
}

.man_ser {
    margin: 0px;
    list-style-type: none;
}

.man_ser li span i {
    font-size: 16px;
    color: #34c6f4;
    width: 40px;
}

.man_ser li {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 500;
    padding-bottom: 24px;
}

.man_ser_right {
    max-width: 500px;
    margin: auto;
    margin-bottom: 50px;
    border: 10px solid;
    border-image-source: linear-gradient(90deg, #2d276d, #34c6f4);
    border-image-slice: 1;
}

/*========START OF CONTACT===========*/

#full_contact {
    padding: 50px 0px;
    background: #F7F8FA;
}

.contact {
    width: 60%;
    margin: 0 auto;
    box-shadow: 0px 0px 10px 10px #dddddd;
    padding: 50px;
    background: #ffffff;
    text-align: center;
}

.contact h2 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    margin-bottom: 25px !important;
    text-transform: capitalize;
    text-align: center;
}

.contact h3 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
}

.contact p {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
}

footer {
    background: #111111;

}

footer p {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    margin: 0px;
    padding: 15px 0px;
    text-align: center;
}

/* ========== START OF RESPONSIVE PART=============*/
@media (max-width: 767.98px) and (min-width: 320px) {
    body {
        overflow-x: hidden;
    }

    .navbar-default {
        background: #34c6f4;
        background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
        background: linear-gradient(to left, #2d276d, #34c6f4);
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: transparent;
        box-shadow: none;
    }

    .menu {
        background: #34c6f4;
        background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
        background: linear-gradient(to left, #2d276d, #34c6f4);
        padding: 10px 30px;
    }

    .navbar-default .navbar-toggle {
        border-color: #34c6f4;
        background: #34c6f4;
        top: 17px;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #ffffff;
    }

    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover {
        background-color: #34c6f4;
    }

    .home_logo {
        padding: 30px;
        margin-bottom: 0px;
    }

    .intro h1 {
        font-size: 32px;
        margin: 0px !important;
        text-align: center;
    }


    .intro p {
        text-align: center;
        font-size: 14px;
    }


    .overlay {
        min-height: 420px;
    }

    .about h2 {
        font-size: 40px;
    }

    .about p {
        font-size: 14px;
        width: 100%;
    }

    #full_services h2 {
        font-size: 40px;
    }

    .service p {
        font-size: 14px;
        padding-top: 10px;
        margin: 0px;
    }

    #full_man_services h2 {
        font-size: 40px;
    }

    .man_ser li {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .contact {
        width: 100%;
        padding: 15px;
    }

    .contact h2 {
        font-size: 40px;
    }

    .contact p {
        font-size: 14px;
    }

    .sti_logo img {
        max-height: 50px;
        margin: 15px 30px;
    }
}

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


    .navbar-default {
        background: #34c6f4;
        background: -webkit-linear-gradient(to left, #2d276d, #34c6f4);
        background: linear-gradient(to left, #2d276d, #34c6f4);
    }

    .sti_logo img {
        max-height: 50px;
        margin: 15px;
    }

    .intro h1 {
        font-size: 64px;
        letter-spacing: 1px;
    }

    .contact {
        width: 75%;
    }
}

@media (max-width: 2600px) and (min-width: 1900px) {
    .overlay {
        background: rgba(0, 0, 0, 0.29);
        min-height: 900px;
    }
}
