@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900');
* {
    font-family: 'Lato', sans-serif;
    margin: 0px;
    padding: 0px;
    /*   font-family: 'Lobster', cursive;*/
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.375em;
    color: #333333;
    background-color: #fff;
    margin: 0px;
    padding: 0px;
}


/* start here bottom to top scroll*/

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.btn-scroll {
    width: 50px;
    height: 50px;
    background-color: #fff;
    line-height: 40px;
    border-radius: 50%;
    color: #11aaee;
    border: 1px solid #11aaee;
    box-shadow: 0 14px 26px -12px rgba(17, 170, 238, 0.82), 0 4px 23px 0px rgba(17, 170, 238, 0.30), 0 8px 10px -5px rgba(17, 170, 238, 0.20);
}

.btn-scroll::before {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #11aaee;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}

.btn-scroll:hover::before {
    transform: scale(1);
    transition: 0.5s ease-in-out;
}

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


/*start here bottom to top scroll*/

::selection {
    background: #11aaee;
    color: #FFF;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Lato', sans-serif;
}

p {
    font-family: 'Lato', sans-serif;
}


/*start here header section*/

.top-header {
    background-color: #28303b;
    color: #7f8997;
    overflow: hidden;
    position: relative;
}

.top-header {
    background-color: #fff;
    color: #333;
    height: 50px;
    padding-top: 6px;
}

.top-header:before {
    box-shadow: 2px 2px 0px 11px #2cc8f5;
}

.top-header:before {
    content: "";
    background: #18364a;
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    height: 100%;
    width: 79px;
    right: 47%;
    top: 0;
    position: absolute;
    box-shadow: 2px 2px 0px 11px #2cc8f5;
}

.top-header:after {
    background: #18364a;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    content: '';
}

.top-header p,
.top-header p {
    margin: 0;
    font-size: 19px;
    text-transform: capitalize;
}

.top-header p {
    margin-top: 8px;
    font-size: 15px;
    color: #777;
}

.social-media a.facebook {
    background-color: #3a6bb1;
}

.social-media a {
    color: #fff;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-top: 2px;
    position: relative;
    z-index: 2;
}

.social-media a.twitter {
    background-color: #0ec8f5;
}

.social-media a.google-plus {
    background-color: #f2623b;
}

.social-media a.linkedin {
    background-color: #0094d3;
}

.social-media a:hover:after {
    opacity: 1;
    transform: scaleY(1);
}

.social-media a:after {
    content: '';
    position: absolute;
    background-color: #364c61;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scaleY(0);
    -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;
}


/*close here header section*/


/*start here header-top*/

.header-top {
    background-color: #f3f3f5;
    padding: 10px 0px;
}

.logo img {
    width: 70%;
    /* margin-left: 15px; */
}

.company-name img {
    padding-top: 3px;
    width: 150px;
    position: relative;
    z-index: 999;
    margin-right: 50px;
    transition: 0.5s ease-in-out;
    display: none;
}

.top-contact ul li i {
    color: #2cc8f5;
    font-size: 30px;
    height: 50px;
    left: 0;
    line-height: 50px;
    margin-top: -25px;
    position: absolute;
    text-align: center;
    top: 40%;
    width: 50px;
}

.top-contact ul li p {
    margin-right: 15px;
    padding-left: 46px;
    text-align: left;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.top-contact ul li p span {
    color: #676767;
    display: block;
    font-size: 12px;
}

.top-contact ul li p span a {
    color: #676767;
    display: block;
}

.top-contact ul li p span a:hover,
.top-contact ul li p span a:focus {
    color: #2cc8f5;
}

.top-contact ul li {
    display: inline-block;
    position: relative;
}

.top-contact {
    margin-top: 15px;
}

.top-contact ul {
    margin: 0px;
}

@media screen and (max-width:767px) {
    .top-contact {
        display: none;
    }
    .logo img {
        width: 20%;
        margin: auto;
    }
}


/*close here header-top*/


/*start here navbar*/

.affix {
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.affix-top {
    position: static;
    top: -50px;
}

.affix+.container-fluid {
    padding-top: 70px;
}

.navbar-bg {
    background-color: #fff;
    border: none;
    margin-bottom: 0px;
}

.navbar-border {
    -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
}

.navbar-menu>li>a {
    position: relative;
    display: block;
    padding: 20px 20px;
}

.navbar-bg .navbar-nav>li>a:hover,
.navbar-bg .navbar-nav>li>a:focus {
    color: #2cc8f5;
    background-color: transparent;
}

.navbar-bg .navbar-nav>li>a {
    color: #777;
    font-weight: 500;
    font-size: 15px;
}

.navbar-bg .navbar-nav>.active>a,
.navbar-bg .navbar-nav>.active>a:hover,
.navbar-bg .navbar-nav>.active>a:focus {
    color: #fff;
    font-weight: 600;
    background-color: #2cc8f5;
}

.dropdown-nav {
    width: 450px;
    background-color: rgba(0, 0, 0, 0.7);
    padding-bottom: 20px;
}

.left-list {
    width: 48%;
    float: left;
}

.right-list {
    width: 48%;
    float: left;
    margin-left: 15px;
}

.left-list ul li a {
    display: block;
    padding: 10px 10px;
    color: #fff;
}

.right-list ul li a {
    display: block;
    padding: 10px 10px;
    color: #fff;
}

.left-list ul li a:hover,
.right-list ul li a:hover {
    background-color: #2cc8f5;
    border-radius: 4px;
}

.dropdown:hover .dropdown-nav {
    display: block;
}


/*toggle button start*/

.icon-toggle {
    width: 40px;
    height: 40px;
    background-color: transparent;
    margin: auto;
    position: absolute;
    right: 17px !important;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: none;
    margin-bottom: 10px;
    padding-bottom: 30px;
}

@media screen and (max-width:991px) {
    .icon-toggle {
        display: block;
    }
}

.humbuger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 4px;
    background-color: #262626;
    cursor: pointer;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease-in-out;
    margin-bottom: 30px;
}

.humbuger::before,
.humbuger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    cursor: pointer;
    background-color: #262626;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease-in-out;
}

.humbuger::before {
    top: -10px;
    transition: 0.5s ease-in-out;
}

.humbuger::after {
    top: 10px;
    transition: 0.5s ease-in-out;
}

.icon-toggle.active .humbuger {
    background-color: transparent;
    transition: 0.5s ease-in-out;
    box-shadow: none;
}

.icon-toggle.active .humbuger::after {
    top: 0px;
    transform: rotate(137deg);
    transition: 0.5s ease-in-out;
}

.icon-toggle.active .humbuger::before {
    top: 0px;
    transform: rotate(45deg);
    transition: 0.5s ease-in-out;
}

@media (max-width: 991px) {
    .left-list ul li a {
        display: block;
        padding: 10px 10px;
        color: #777;
    }
    .right-list ul li a {
        display: block;
        padding: 10px 10px;
        color: #777;
    }
    .right-list {
        margin: 0px;
    }
    .navbar-left,
    .navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in {
        display: block !important;
    }
    .dropdown-nav {
        width: auto;
        background-color: rgba(0, 0, 0, 0.7);
        padding-bottom: 20px;
    }
    .left-list {
        width: 100%;
        float: none;
    }
    .right-list {
        width: 100%;
        float: none;
    }
}

@media (max-width: 992px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media screen and (max-width:767px) {
    .dropdown-overflow {
        height: 400px;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .navbar-menu li a {
        border-bottom: 1px solid #e0e0e0;
    }
}

@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }
}


/*toggle button close*/


/*close here navbar*/


/*start here slider*/

.carousel-control.left,
.carousel-control.right {
    background-image: none !important;
    background-color: transparent !important;
    opacity: 0.7;
}

.carousel-control .icon-next,
.carousel-control .fa-arrow-right {
    right: 50%;
    margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .fa-arrow-left,
.carousel-control .fa-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-block;
}

.arrow {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.arrow:hover {
    background-color: #222;
    border: 1px solid #ddd;
    color: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.slider-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.indicators-circle li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 2px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.indicators-circle .active {
    width: 15px;
    height: 15px;
    margin: 0;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

@media screen and (min-width: 768px) {
    .carousel-control .fa-arrow-right,
    .carousel-control .icon-next {
        margin-right: -15px;
    }
}

@media screen and (min-width: 768px) {
    .carousel-control .fa-arrow-left,
    .carousel-control .fa-arrow-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        margin-top: -15px;
        font-size: 30px;
    }
}

@media screen and (max-width:767px) {
    .arrow {
        width: 30px;
        height: 30px;
        background-color: transparent;
        border: 1px solid #ddd;
        color: #fff;
        border-radius: 50%;
        line-height: 30px;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }
    .carousel-control .fa-arrow-left,
    .carousel-control .fa-arrow-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        margin-top: -15px;
        font-size: 10px;
    }
    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .fa-arrow-left,
    .carousel-control .fa-arrow-right {
        position: absolute;
        top: 60%;
        z-index: 5;
        display: inline-block;
    }
}

@media screen and (min-width: 768px) and (max-width:991px) {
    .carousel-control .fa-arrow-left,
    .carousel-control .fa-arrow-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        margin-top: -15px;
        font-size: 15px;
    }
    .arrow {
        width: 35px;
        height: 35px;
        background-color: transparent;
        border: 1px solid #ddd;
        color: #fff;
        border-radius: 50%;
        line-height: 30px;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }
}

@media screen and (min-width:992px) {
    .carousel-control .fa-arrow-left,
    .carousel-control .fa-arrow-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        margin-top: -15px;
        font-size: 20px;
    }
    .arrow {
        width: 40px;
        height: 40px;
        background-color: transparent;
        border: 1px solid #ddd;
        color: #fff;
        border-radius: 50%;
        line-height: 40px;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }
    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .fa-arrow-left,
    .carousel-control .fa-arrow-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        display: inline-block;
    }
}


/*close here slider*/


/*start here our process section*/

.Process-box {
    margin-top: 20px;
    transition: 0.5s ease-in-out;
}

.process-title-header {
    margin-bottom: 30px;
}

.title-blue h2 {
    color: #1faceb;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    transition: 0.5s ease-in-out;
    font-family: 'Lobster', cursive;
    font-size: 40px;
}

.title-blue p {
    color: #757575;
    transition: 0.5s ease-in-out;
}

.icon-yellow i {
    color: #1faceb !important;
    margin-bottom: 10px;
    font-size-adjust: auto;
    font-size: 30px;
    transition: 0.5s ease-in-out;
}

.icon-yellow::before,
.icon-yellow::after {
    vertical-align: middle;
    content: "";
    width: 40px;
    height: 4px;
    border-bottom: 1px solid;
    border-top: 1px solid;
    display: inline-block;
    margin: 0 10px;
    color: #1faceb !important;
    transition: 0.5s ease-in-out;
    position: relative;
    top: -6px;
}

.Courses-images {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 50px;
    transition: 0.5s ease-in-out;
}

.image-box {
    margin-top: 25px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.image-block {
    display: block !important;
    transition: 0.5s ease-in-out;
}

.image-box img {
    position: absolute;
    ;
    top: 0px;
    left: 0px;
    margin-bottom: 50px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 10px 2px 2px rgba(0, 0, 0, .1);
    transition: 0.5s ease-in-out;
}

.Process-wrapper {
    padding: 20px 25px;
    position: relative;
    border: 1px solid #efefef;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0px 9px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}

.process-color {
    border-color: #1faceb;
    transition: 0.5s ease-in-out;
}

.arrow-color {
    position: absolute;
    right: -8px;
    top: 42%;
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    border: 1px solid #1faceb;
    border-bottom-color: transparent;
    border-left-color: transparent;
    background-color: #fff;
    transition: 0.5s ease-in-out;
}

.arrow-color1 {
    position: absolute;
    left: -8px;
    top: 42%;
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    border: 1px solid #1faceb;
    border-top-color: transparent;
    border-right-color: transparent;
    background-color: #fff;
    transition: 0.5s ease-in-out;
}

.process-title h3 {
    margin: 0px;
    font-size: 18px;
    margin-top: 7px;
    font-weight: 700;
    color: #1ae;
    transition: 0.5s ease-in-out;
    margin-bottom: 10px;
}

.process-title h3 span {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: #1ae;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
}

.process-content p {
    text-align: justify;
    color: #888;
}

@media screen and (max-width:991px) {
    .image-block {
        display: none !important;
        transition: 0.5s ease-in-out;
    }
    .process-title {
        text-align: center;
    }
    .arrow-color {
        position: absolute;
        right: -8px;
        top: 42%;
        transform: rotate(45deg);
        width: 15px;
        height: 15px;
        border: 1px solid #1faceb;
        border-bottom-color: transparent;
        border-left-color: transparent;
        background-color: #fff;
        transition: 0.5s ease-in-out;
        display: none !important;
    }
    .arrow-color1 {
        position: absolute;
        left: -8px;
        top: 42%;
        transform: rotate(45deg);
        width: 15px;
        height: 15px;
        border: 1px solid #1faceb;
        border-top-color: transparent;
        border-right-color: transparent;
        background-color: #fff;
        transition: 0.5s ease-in-out;
        display: none !important
    }
    .title-black {
        transition: 0.5s ease-in-out;
    }
    .process-header {
        display: flex;
        margin-bottom: 10px;
        transition: 0.5s ease-in-out;
    }
    .process-header .courses-icon {
        margin-right: 10px;
        font-size: 20px;
        color: #1faceb;
        transition: 0.5s ease-in-out;
    }
    .process-header .courses-title h3 {
        margin: 0px;
        white-space: nowrap;
        font-size: 17px;
        margin-top: 5px;
        font-weight: 600;
        transition: 0.5s ease-in-out;
    }
    .courses-content p {
        text-align: justify !important;
        transition: 0.5s ease-in-out;
    }
}

@media screen and (max-width:576px) {
    .image-block {
        display: none !important;
        transition: 0.5s ease-in-out;
    }
    .arrow-color {
        position: absolute;
        right: -8px;
        top: 42%;
        transform: rotate(45deg);
        width: 15px;
        height: 15px;
        border: 1px solid #1faceb;
        border-bottom-color: transparent;
        border-left-color: transparent;
        background-color: #fff;
        transition: 0.5s ease-in-out;
        display: none !important;
    }
    .arrow-color1 {
        position: absolute;
        left: -8px;
        top: 42%;
        transform: rotate(45deg);
        width: 15px;
        height: 15px;
        border: 1px solid #1faceb;
        border-top-color: transparent;
        border-right-color: transparent;
        background-color: #fff;
        transition: 0.5s ease-in-out;
        display: none !important
    }
    .title-black {
        transition: 0.5s ease-in-out;
    }
    .title-black h2 {
        color: #262626;
        font-weight: 700 !important;
        margin-bottom: 20px !important;
        font-size: 22px;
        transition: 0.5s ease-in-out;
    }
    .title-black p {
        text-align: justify !important;
        transition: 0.5s ease-in-out;
    }
    .process-header {
        display: flex;
        margin-bottom: 10px;
        transition: 0.5s ease-in-out;
    }
    .process-header .courses-icon {
        margin-right: 5px;
        font-size: 12px;
        color: #1faceb;
        transition: 0.5s ease-in-out;
    }
    .process-header .courses-title h3 {
        margin: 0px;
        white-space: nowrap;
        font-size: 13px;
        margin-top: 0px;
        font-weight: 700;
        transition: 0.5s ease-in-out;
    }
    .courses-content p {
        text-align: justify !important;
        transition: 0.5s ease-in-out;
    }
}


/*close here our process section*/


/*start here about section*/

.about-section {
    background-color: #11aaee;
}

.title-white h2 {
    color: #fff;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    transition: 0.5s ease-in-out;
    font-family: 'Lobster', cursive;
    font-size: 40px;
}

.title-white p {
    color: #757575;
    transition: 0.5s ease-in-out;
}

.icon-white i {
    color: #fff !important;
    margin-bottom: 10px;
    font-size-adjust: auto;
    font-size: 30px;
    transition: 0.5s ease-in-out;
}

.icon-white::before,
.icon-white::after {
    vertical-align: middle;
    content: "";
    width: 40px;
    height: 4px;
    border-bottom: 1px solid;
    border-top: 1px solid;
    display: inline-block;
    margin: 0 10px;
    color: #fff !important;
    transition: 0.5s ease-in-out;
    position: relative;
    top: -6px;
}

.about-content p {
    color: #fff;
    line-height: 22px;
    text-align: justify;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.image-about {
    position: relative;
}

.about-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 170, 238, 0.5);
    transform: scaleX(0);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.image-about:hover .about-overlay {
    display: block;
    transform: scaleX(1);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.sup_btn {
    text-decoration: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0;
    height: 36px;
    padding: 0px 49px 0px 19px;
    text-transform: capitalize;
    font-weight: 300;
    position: relative;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-size: 16px;
    line-height: 35px;
    z-index: 3;
    position: relative;
    border: none;
}

.sup_blue_btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.sup_btn span {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 0;
    width: 34px;
    height: 34px;
    position: absolute;
    right: 0px;
    top: 0px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.sup_black_btn span,
.sup_blue_btn span {
    background: #fff;
    color: #211f20;
}

.sup_btn span i {
    position: absolute;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 34px;
    left: 0;
    top: 0;
}

.sup_btn span i {
    position: absolute;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 34px;
    left: 0;
    top: 0;
}

.sup_black_btn:hover,
.sup_blue_btn:hover {
    color: #211f20;
}

.sup_btn:hover,
.sup_btn:focus {
    padding-left: 49px;
    padding-right: 19px;
}

.sup_btn:hover span,
.sup_btn:focus span {
    width: calc(100% - 0px);
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 0;
    z-index: -1;
}

.sup_btn:hover span i,
.sup_btn:focus span i {
    left: 12%;
    text-align: left;
}

@media screen and (max-width:991px) {
    .about-section {
        background-image: url('../images/gcon-bg1.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center center;
    }
    .about-content {
        padding-bottom: 20px;
    }
    .about-content p {
        color: #fff;
        line-height: 22px;
        text-align: justify;
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    .change-mr {
        margin-bottom: 5px;
    }
}


/*close here about section*/


/*start here master section*/

.master-description {
    margin-top: 100px;
}

.master-description h2 {
    font-weight: 900;
}

.master-description p {
    color: #777;
    margin-bottom: 20px;
}

@media screen and (max-width:991px) {
    .master-section {
        background-image: url('../images/masterimage.jpg');
        background-size: cover;
        background-position: top center;
        position: relative;
        background-repeat: no-repeat;
    }
    .master-section::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .master-description {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .master-description h2 {
        color: #fff;
        font-size: 20px;
        font-weight: 800;
    }
    .master-description p {
        color: #f5f5f5;
        margin-bottom: 20px;
    }
}


/*close here master section*/


/*start here Our Service Section*/

.service {
    width: 100%;
    padding: 10px;
    height: 230px;
    text-align: center;
    border: 1px solid #e5e5e5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service .icon-holder {
    position: relative;
    top: 43px;
    display: inline-block;
    margin-bottom: 17px;
    padding: 10px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    box-shadow: 1px 1px 1px 0px #cccccc;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service .heading {
    position: relative;
    top: 59px;
    text-align: center;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service .icon-holder>img.icon {
    width: 40px;
}

.service:hover {
    border-color: #1faceb;
}

.service:hover .icon-holder {
    top: -30px;
    border: 1px solid #1faceb;
}

.service:hover .heading {
    top: -20px;
}

.service .description {
    width: 80%;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    position: relative;
}

.service .btn-learn {
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.service:hover .btn-learn {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.service:hover .description {
    top: -10px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

section#commitment {
    background-color: #f9f9f9;
    padding: 0px;
    margin-top: 30px;
}

.heading {
    font-size: 16px;
    font-weight: 600;
    /* margin-bottom: 5px; */
    line-height: 22px;
    color: #1d1c1c;
}

section#commitment .headingOne {
    margin-bottom: 0;
}

.icon-holder i {
    color: #1faceb;
}

.service:hover .icon-holder i {
    color: #1faceb;
}

.learn-btn {
    text-decoration: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0;
    height: 32px;
    padding: 0px 49px 0px 19px;
    text-transform: capitalize;
    font-weight: 300;
    position: relative;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
    line-height: 32px;
    z-index: 3;
    position: relative;
    border: none;
}

.learn-blue-btn {
    background-color: #1faceb;
    color: #fff;
    border: 1px solid #1faceb;
}

.learn-btn span {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 0;
    width: 34px;
    height: 30px;
    position: absolute;
    right: 0px;
    top: 0px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.learn-blue-btn span {
    background: #fff;
    color: #211f20;
}

.learn-btn span i {
    position: absolute;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 34px;
    left: 0;
    top: 0;
}

.learn-btn span i {
    position: absolute;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 34px;
    left: 0;
    top: 0;
}

.learn-blue-btn:hover {
    color: #211f20;
}

.learn-btn:hover,
.learn-btn:focus {
    padding-left: 49px;
    padding-right: 19px;
}

.learn-btn:hover span,
.learn-btn:focus span {
    width: calc(100% - 0px);
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 0;
    z-index: -1;
}

.learn-btn:hover span i,
.learn-btn:focus span i {
    left: 12%;
    text-align: left;
}

@media screen and (max-width:991px) {
    .service {
        border-color: #1faceb;
    }
    .service .icon-holder {
        top: -30px;
        border: 1px solid #1faceb;
    }
    .service .heading {
        top: -30px;
    }
    .service .description {
        top: -10px;
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    .service .btn-learn {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    .service {
        width: 100%;
        margin: 40px 0;
        padding: 10px;
        height: 220px;
        text-align: center;
        border: 1px solid #1faceb;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}


/*start close Our Service Section*/


/*start here contact shortcut section*/

.contact-shortcut {
    background-image: url('../images/add_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 30px;
    position: relative;
}

.contact-shortcut::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 170, 238, 0.4);
}

.contact-box-btn {
    position: relative;
    display: block;
    text-align: center;
    margin: auto;
}

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

.short-contact h1 {
    color: #fff;
    font-weight: 800;
}

.short-contact p {
    color: #f5f5f5;
}

.contact-btn {
    text-decoration: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0;
    height: 50px;
    padding: 0px 49px 0px 19px;
    text-transform: capitalize;
    font-weight: 300;
    position: relative;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
    line-height: 48px;
    z-index: 3;
    position: relative;
    border: none;
}

.contact-blue-btn {
    background-color: #11aaee;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #1faceb;
}

.contact-btn span {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 0;
    width: 34px;
    height: 48px;
    position: absolute;
    right: 0px;
    top: 0px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.contact-blue-btn span {
    background: #fff;
    color: #211f20;
}

.contact-btn span i {
    position: absolute;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 34px;
    left: 0;
    top: 0;
}

.contact-btn span i {
    position: absolute;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 46px;
    left: 0;
    top: 0;
}

.contact-blue-btn:hover {
    color: #211f20;
}

.contact-btn:hover,
.contact-btn:focus {
    padding-left: 49px;
    padding-right: 19px;
}

.contact-btn:hover span,
.contact-btn:focus span {
    width: calc(100% - 0px);
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 0;
    z-index: -1;
}

.contact-btn:hover span i,
.contact-btn:focus span i {
    left: 12%;
    text-align: left;
}


/*close here contact shortcut section*/


/*start here follow section*/

.follow-secation {}

.foolow-box {
    width: 100%;
}

.follow {
    width: 20%;
    float: left;
}

.follow h2 {
    margin: 0px;
    text-align: center;
    background-color: #11aaee;
    padding: 43px 0px;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.follow a {
    font-size: 30px;
    color: #fff;
    padding: 40px 0px;
}

.follow .facebook {
    background-color: #3b5999;
    display: block;
    text-align: center;
}

.follow .twitter {
    background-color: #55acee;
    display: block;
    text-align: center;
}

.follow .googlplus {
    background-color: #0077B5;
    display: block;
    text-align: center;
}

.follow .linkedin {
    background-color: #dd4b39;
    display: block;
    text-align: center;
}

.follow a i {
    animation-name: example;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}


/* Safari 4.0 - 8.0 */

@-webkit-keyframes example {
    from {
        transform: scale(1.3);
    }
    to {
        transform: scale(0.8);
    }
}


/* Standard syntax */

@keyframes example {
    from {
        transform: scale(1.3);
    }
    to {
        transform: scale(0.8);
    }
}

.arrow-ani {
    animation-name: arrow;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}


/* Safari 4.0 - 8.0 */

@-webkit-keyframes arrow {
    from {
        margin-left: 10px;
    }
    to {
        margin-left: 0px;
    }
}


/* Standard syntax */

@keyframes arrow {
    from {
        margin-left: 10px;
    }
    to {
        margin-left: 0px;
    }
}

@media screen and (max-width:767px) {
    .follow-header {
        width: 100% !important;
        box-sizing: border-box;
    }
    .follow-header span {
        display: block;
    }
    .follow {
        width: 25%;
    }
    .follow h2 {
        margin: 0px;
        text-align: center;
        background-color: #11aaee;
        padding: 43px 0px;
        font-size: 22px;
        color: #fff;
        font-weight: 700;
    }
    /* Safari 4.0 - 8.0 */
    @-webkit-keyframes arrow {
        from {
            padding-top: 0px;
        }
        to {
            padding-top: 0px;
        }
    }
    /* Standard syntax */
    @keyframes arrow {
        from {
            padding-top: 0px;
        }
        to {
            padding-top: 0px;
        }
    }
    /* Safari 4.0 - 8.0 */
    @-webkit-keyframes example {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(0.6);
        }
    }
    /* Standard syntax */
    @keyframes example {
        from {
            transform: scale(1);
        }
        to {
            transform: scale(0.6);
        }
    }
}


/*close here follow section*/


/*footer start here*/

.footer-box {
    clear: both;
    width: 100%;
    background-color: #333;
    padding: 20px 0px 0px 0px;
    position: relative;
    background-image: url('../images/gcon-bg2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-box::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.9);
}

.footer-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Lobster', cursive;
}

.footer-nav li a {
    display: block;
    padding: 5px 10px;
    color: #f5f5f5;
}

.footer-nav li:last-child a {
    border-bottom: none;
}

.footer-nav li a:hover {
    color: #fff;
    transition: 0.5s ease-in-out;
    background-color: #11aaee;
}

.copyright {
    border-top: 1px solid #ddd;
    padding: 10px 10px 0px 10px;
}

.copyright p {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer-address li {
    color: #f5f5f5;
    padding: 10px 0px;
    font-size: 13px;
}

.footer-address li a {
    color: #f5f5f5;
    letter-spacing: 0.5px;
}

.footer-address li a:hover {
    color: #11aaee;
}

.logo-footer img {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 200px;
    padding: 3px;
    background: #fff;
    border-radius: 2px;
}

.logo-footer p {
    color: #f5f5f5;
    text-align: justify;
}


/*footer close here*/


/*start here client section*/

.client-section {
    margin-bottom: 30px;
}

.client-image {
    border: 1px solid #eee;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.client-text p {
    color: #777;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
}

.client-image img {
    margin: auto;
}


/*==================================================
* Effect 5
* ===============================================*/

.client-image {
    background: #FFF;
}

.effect5 {
    position: relative;
}

.effect5:before,
.effect5:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 25px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #c5c5c5;
    -webkit-box-shadow: 0 35px 20px rgba(17, 170, 238, 0.21);
    -moz-box-shadow: 0 35px 20px rgba(17, 170, 238, 0.21);
    box-shadow: 0 35px 20px rgba(17, 170, 238, 0.21);
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
}

.effect5:after {
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    transform: rotate(8deg);
    right: 10px;
    left: auto;
}


/*close here client section*/


/*about us section start here*/

.about-page {
    margin-bottom: 30px;
}

.banner-image {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.Page-name {
    color: #fff;
    z-index: 999;
    position: absolute;
    top: 20%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.Page-name h2 {
    font-size: 40px;
    font-weight: 700;
}

.Page-name ul li a {
    color: #11aaee;
}

.Page-name ul li {
    color: #bfbaba;
}

@media screen and (max-width:767px) {
    .banner-image {
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 400px;
        position: relative;
        z-index: 1;
    }
    .banner-overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }
}


/*start here about us section*/

.about-description p {
    color: #757474;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
}


/*close here about us section*/


/*sidebar service list start here*/

.service-list ul {
    margin: 0px;
    padding: 0px;
}

.service-list ul li a {
    display: block;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    color: #777;
}

.service-list ul li:last-child a {
    border-bottom: none;
}

.service-list ul li a:hover {
    border-left: 5px solid #11aaee;
    color: #11aaee;
}


/*sidebar service list close here*/


/*about us section close here*/


/*start here career Page*/

.career-form {
    -webkit-box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    -moz-box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    background-color: #fff;
}

.input-control {
    height: 40px;
    border-radius: 0px;
    border-color: #ddd;
}

.input-control:focus {
    border-color: rgba(17, 170, 238, 0.38);
}

.career-form {
    padding: 40px 20px;
}

.btn-submit {
    padding: 8px 30px;
    background-color: #11aaee;
    color: #fff;
    border: 1px solid #11aaee;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.btn-submit:hover,
.btn-submit:focus {
    background-color: transparent;
    border: 1px solid #11aaee;
    color: #333;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}


/*close here career Page*/


/*portfolio page start here*/

.portfolioimage {
    padding: 0;
    /* box-sizing: border-box; */
    margin: 20px 0px;
    width: 100%;
    height: 200px;
}

.portfolioimage img {
    margin: 0;
}

.portfolio-text {
    margin-top: 10px;
}

@media screen and (max-width:767px) {
    .portfolioimage {
        margin: auto;
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }
}


/*portfolio page close here*/


/*contact page start here */

.contacat-form {
    -webkit-box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    -moz-box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    background-color: #fff;
}

.txt-red {
    color: red;
}

.contact-header h2 {
    background-color: #11aaee;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    font-weight: 800;
    margin: 0px;
}

.address-box {
    background-color: #fff;
    -webkit-box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    -moz-box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
    box-shadow: 0 14px 26px -21px rgba(17, 170, 238, 0.2), 0 4px 23px 0px rgba(17, 170, 238, 0.1), 0 8px 10px -5px rgba(17, 170, 238, 0.2);
}

.address-box ul li {
    padding: 5px 0px;
    color: #333;
}

.address-box ul li i {
    color: #11aaee;
}


/*contact page close here */


/*start here products page*/

.blue {
    background-color: #0061a3;
}

.yellow {
    background-color: #f3bc28;
}

.orange {
    background-color: #ff8b01;
}

.red {
    background-color: #a82d2d;
}

.products {
    padding: 20px;
    border-radius: 8px;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.products-content {
    color: #fff;
}

.feat {
    font-size: 14px;
    color: #e7fff9;
    margin-bottom: 40px;
}

.products-content h4 {
    font-size: 22px;
}

.products-point li {
    font-size: 12px;
    line-height: 24px;
}

.products-point li i {
    font-size: 7px;
    top: 8px;
}

.price {
    margin-top: 20px;
    display: block;
    color: #fff;
    margin-bottom: 20px;
}

.price .amount {
    font-size: 40px;
    font-weight: 700;
}

.year {
    text-align: right !important;
    display: block;
    margin-right: 63px;
    font-size: 11px;
    font-style: italic;
}

.btn-order1 {
    background-color: #18c66d;
    color: #fff;
    padding: 8px 30px;
}

.btn-order1:hover,
.btn-order1:focus {
    background-color: #18c66d;
    color: #fff;
    box-shadow: 0px 8px 10px 5px rgba(0, 0, 0, 0.1);
}

.zoomeffect:hover {
    box-shadow: 0px 6px 20px 7px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.products-point {
    color: #e7fff9;
}

.fs .amount {
    font-size: 30px;
}

.point-small {
    margin: 0px;
    padding-left: 5px;
}

.order-small {
    padding: 5px 15px;
}

@media screen and (max-width:768px) {
    .products-content h4 {
        font-size: 17px;
        font-weight: 600;
    }
    .year {
        text-align: right !important;
        display: block;
        margin-right: 40px;
        font-size: 11px;
        font-style: italic;
    }
    .price .amount {
        font-size: 40px;
        font-weight: 700;
    }
    .products-point li {
        font-size: 13px;
        line-height: 24px;
    }
    .products-point li i {
        font-size: 7px;
        top: 8px;
    }
    .products-point {
        margin-top: 10px;
    }
}


/*close here products page*/


/*start here lab mangement */

.wrapper-box {
    border: 1px solid #0369B5;
    padding: 15px 25px;
}

.bill-manager img {
    width: 50px;
    float: right;
}

.bill-title {
    margin-left: 20px;
}

.bill-title .blue-text {
    color: #208BEF;
}

.bill-title .green-text {
    color: #76AD0B;
}

.bill-title .orange-text {
    color: #E06902;
}

.mainfeature {
    background: #034ea2;
    padding: 10px;
    font-size: 14px;
    padding-left: 21px;
    color: #fff !important;
    margin-bottom: 10px;
    margin-top: 10px;
}

.mainfeature h4 {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    padding: 4px 0px;
}

.Objective li {
    font-size: 14px;
    color: #777777;
    line-height: 24px;
}

.Objective li:hover {
    color: #248DDB;
}

@media screen and (max-width:767px) {
    .mainfeature {
        background: #034ea2;
        padding: 10px;
        font-size: 14px;
        padding-left: 21px;
        color: #fff;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .mainfeature p {
        margin: 0px;
    }
    .Objective li {
        font-size: 14px;
        color: #777;
    }
    .Objective li:hover {
        color: #248DDB;
    }
}

.pnlhead {
    background: #000;
    border-radius: 10px 10px 0px 0px;
}

.pnlhead>p {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0px;
    padding: 5px;
}

.fs-smal p {
    font-size: 16px;
}

.pnlback1 {
    border-radius: 0px 0px 10px 10px;
    min-height: 191px;
    background: #A93359;
    box-shadow: 1px 9px 8px 0px;
}

.pnlback1>ul>li,
.pnlback2>ul>li,
.pnlback3>ul>li {
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.pnlback2 {
    min-height: 191px;
    background: #1C9FC7;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 1px 9px 8px 0px;
}

.pnlback3 {
    min-height: 191px;
    background: #769347;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 1px 9px 8px 0px;
}

.gallery {
    margin-top: 10px;
    margin-bottom: 10px;
}

.phead {
    color: #50402D !important;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.head2 {
    font-family: "Times New Roman", Georgia, Serif;
    font-weight: bold;
    color: #194e47;
    margin-bottom: 10px;
}

.head2lbl {
    font-family: "Times New Roman", Georgia, Serif;
    color: #000;
}

.head3 {
    font-family: "Times New Roman", Georgia, Serif;
    color: #194e47;
    text-transform: none;
    border-bottom: 1px solid #194e47;
    margin-bottom: 10px;
}

.head3fea>ul>li {
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.pnlhead1 {
    background: #000;
}

.pnlhead1>p {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0px;
    padding: 5px;
}

.pnl1 {
    background: #A93359;
}

.pnl2 {
    background: #1C9FC7;
}

.pnl3 {
    background: #769347;
}

.pnl1>ul>li,
.pnl2>ul>li,
.pnl3>ul>li {
    list-style: none;
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.endmassge h1 {
    line-height: 24px;
}

.text-black p {
    color: #777;
    font-size: 14px;
}


/*close here lab mangement */

.padd-list li {
    padding: 0px;
}


/*start here sesrvice page*/

.service-title h2 {
    color: #333;
    font-size: 30px;
    font-weight: 600;
}

.service-text p {
    color: #777;
    text-align: justify;
}

@media screen and (max-width:767px) {
    .service-title h2 {
        color: #333;
        font-size: 20px;
        font-weight: 600;
    }
}


/*close here sesrvice page*/
