* {
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: robotoslab;
    src: url('../fonts/RobotoSlab-Regular.ttf');
}

@font-face {
    font-family: Arciform;
    src: url('../fonts/Arciform.otf');
}

/*@import url(https://fonts.googleapis.com/css?family=Overlock);*/

a {
    text-decoration: none;
    color: #333;
}

a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
    background-color: transparent;
}

body {
    color: #333!important;
    /*    font-family: robotoslab;*/
    font-family: 'Raleway', sans-serif;
}

body::-webkit-scrollbar {
    width: 17px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    /*    border: 2px solid white;*/
}

body::-webkit-scrollbar-thumb {
    background-color: #484848;
    outline: 0px solid #0b5196;
    border: 6px solid white;
    border-top: 1px solid white;
    border-bottom: 1px solid whites;
}

.back-top {
    position: fixed;
    bottom: 10%;
    right: 40px;
    text-align: right;
    background: #f58220;
    color: white;
    text-align: center;
    line-height: 50px;
    width: 0px;
    height: 0px;
    font-size: 26px;
    display: block;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 8;
}

.back-top:hover,
.back-top:visited,
.back-top:active,
.back-top:focus {
    background: #f58220!important;
    color: white!important;
}

.back-top-in-view {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

/******** login page css start *********/

.login-box-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/banner-bg4.jpg');
    background-repeat: no-repeat;
    background-size: cover;

}

.login-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}

.login-form-box {
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.login-img {
    width: 300px;
    margin-top: 14px;
}

.login-txt {
    /*    font-family: HammersmithOne-Regular;*/
    font-weight: 700;
    text-transform: uppercase;
}

.ad-login-btn {
    appearance: none;
    border: 0;
    width: 100%;
    padding: 7px 15px;
    text-align: center;
    text-transform: uppercase;
    background-color: #57b847;
    color: #fff;
}

.ad-login-btn:hover {
    background-color: #57b847;
    color: #fff;
}

.f-link a:hover,
.f-link a:visited,
.f-link a:focus,
.f-link a:active {
    color: #333;
}

/******** login page css end *********/

/******** text-box common css start *********/

.animate-form-control {
    position: relative;
    padding-top: 5px;
    margin-bottom: 25px;
}

.animate-form-control label {
    position: absolute;
    top: 12px;
    left: 12px;
    opacity: 0.5;
    transition: 0.4s ease;
    z-index: 0;
}

.animate-form-control input:focus + label {
    top: -10px;
    opacity: 1;
}

.animate-form-control input:valid + label {
    top: -10px;
    opacity: 1;
}

.animate-form-control textarea:focus + label {
    top: -10px;
    opacity: 1;
}

.animate-form-control textarea:valid + label {
    top: -10px;
    opacity: 1;
}

.form-control {
    background-color: #fffffffa;
    position: relative;
    z-index: 1;
    border: 0;
    border: 1px solid #9c9c9c;
    box-shadow: none;
}

.form-control:focus {
    border-color: #ccc;
    box-shadow: none;
}

.animate-form-control .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

/******** text-box common css end *********/

/*************** start screen css start ******************/

#start_screen {
    width: 100%;
    height: 100vh;
    background: #151515;
    position: fixed;
    z-index: 999;
    transition: 0.4s all ease;
}

.main_wrapper {
    position: relative;
}

header {
    position: absolute;
    z-index: 9;
    width: 100%;
    transition: all 0.6s ease;
}

.header-fixed {
    position: fixed;
    z-index: 999;
    top: -21px;
    transition: all 0.6s ease;
}

.header-wrap {
    border-radius: 0px;
    transition: all 0.6s ease;
    position: relative;
}
.header-inner-wrap{
    position:relative;
}
.login-link{
    position:absolute;
    top:0px;
    right:0px;
    z-index: 1;
}
.header-wrap-fixed {
    border-radius: 0;
    width: 100%;
    transition: all 0.6s ease;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

#logo_wrapper {
    margin: 0 auto;
    width: 280px;
    top: 50%;
    left: 50%;
    /* left: 39%; */
    /*    background: #fff;*/
    padding: 100px;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
}

#spin_img {
    transform: scale(0);
    transition: 0.9s all ease;
}

.spinner {
    transform: scale(1)!important;
    animation: spin 2s linear infinite;
}

.spinner_opacity {
    opacity: 0!important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#arrow_img1 {
    position: absolute;
    top: 40px;
    left: 0px;
    z-index: 2;
    width: 85px;
    transition: 0.9s all ease;
    opacity: 0;
    /*    transform: translate(75px, 85px);*/
}

.arrow_img1_trans {
    opacity: 1!important;
    top: 82px!important;
    left: 75px!important;
}

.arrow_img1_trans2 {
    opacity: 0!important;
    top: 40px!important;
    left: 0px!important;
}

#arrow_img2 {
    position: absolute;
    top: 0px;
    left: 115px;
    z-index: 1;
    width: 85px;
    transition: 0.9s all ease;
    opacity: 0;
    /*    transform: translate(75px, 85px);*/
}

.arrow_img2_trans {
    opacity: 1!important;
    top: 31px!important;
    left: 115px!important;
}

.arrow_img2_trans2 {
    opacity: 0!important;
    top: 0px!important;
    left: 115px!important;
}

#arrow_img3 {
    position: absolute;
    top: 40px;
    right: 0px;
    z-index: 0;
    width: 85px;
    transition: 0.9s all ease;
    opacity: 0;
    /*    transform: translate(75px, 85px);*/
}

.arrow_img3_trans {
    opacity: 1!important;
    top: 66px!important;
    right: 65px!important;
}

.arrow_img3_trans2 {
    opacity: 0!important;
    top: 40px!important;
    right: 0px!important;
}

/*************** start screen css end ******************/

/*************** head navigation css start ******************/

.logo_img {
    width: 175px;
    margin-left: 15px;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 25px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #333;
    border-radius: 4px;
}

.navbar {
    width: 100%;
    padding: 0px 0px;
    margin-bottom: 0px;
    border: 0;
    position: absolute;
    background: rgba(255, 255, 255, 1);
    border-radius: 0;
}

.navbar-fixed-style {
    position: fixed;
    z-index: 9999;
}

.nav-wrap {
    float: right;
    margin-top: 17px;
}

.navbar-nav > li > a {
    /*    font-family: robotoslab;*/
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #000;
    padding: 15px 24px;
}

.navbar-nav > li > a:hover {
    background: transparent!important;
}

.navbar-nav > li > a:visited,
.navbar-nav > li > a:active,
.navbar-nav > li > a:focus {
    background: transparent;
}

span.hover_arrow {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: -15px;
    left: 48%;
    opacity: 0;
    transition: 0.5s all ease;
}

span.hover_arrow_red {
    background-image: url('../img/hoverarrowred.png');
    background-position: top left;
    background-size: cover;
}

span.hover_arrow_yellow {
    background-image: url('../img/hoverarrowyellow.png');
    background-position: top left;
    background-size: cover;
}

span.hover_arrow_orange {
    background-image: url('../img/hoverarroworange.png');
    background-position: top left;
    background-size: cover;
}

.nav > li:hover span.hover_arrow {
    bottom: -3px;
    opacity: 1;
}

.navbar-collapse.in {
    overflow-y: initial;
}

/*
li.active span.hover_arrow {
    opacity: 1;
    bottom: -5px;
}
*/

li.active span.hover_arrow_red {
    opacity: 1;
    bottom: -5px;
}

li.active span.hover_arrow_yellow {
    opacity: 1;
    bottom: -5px;
}

li.active span.hover_arrow_orange {
    opacity: 1;
    bottom: -5px;
}

.navbar-fixed {
    position: fixed;
    top: 0px;
    transform: translateY(-150%);
    transition: all 0.6s ease;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    padding-bottom: 0;
    z-index: 999;
}

.navbar-fixed-translate {
    transform: translateY(0%);
}

/*hamburger-menu css start*/

.hamburger-menu-wrap {
    display: none;
}

.hamburger-menu-wrap {
    float: right;
    padding-top: 40px;
    padding-right: 15px;
}

.btn-menu-div {
    text-align: center;
    padding: 0px 10px;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 5px;
    overflow: hidden;
}

.menu-bars {
    width: 25px;
    height: 2px;
    margin: 7px 0;
    background: #333;
    display: block;
    position: relative;
    transition: all 0.4s ease;
}

.menubar1-hover {
    transform: translate(0px, 9px) rotate(45deg);
}

.menubar2-hover {
    /*    transform: translate(100%);*/
    opacity: 0;
}

.menubar3-hover {
    transform: translate(0px, -9px) rotate(-45deg);
}

.mobile-menu-div {
    position: fixed;
    background: white;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    z-index: 999999;
    top: 101px;
    left: 0;
    transition: all 0.9s ease;
    transform: translateX(100%);
}

.mobile-menu-div-translate {
    transform: translateX(0%);
}

.menu-wrap ul {
    list-style-type: none;
    text-align: center;
    padding-top: 25px;
}

.menu-wrap ul li {
    padding: 15px 0;
}

.menu-wrap ul li a {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #000;
    display: block;
}

/*hamburger-menu css end*/

/*************** head navigation css end ******************/

/*************** particle css start ******************/

.name-div {
    position: relative;
    z-index: 3;
}

.particle-wrap {
    /*	margin-top: 100px;*/
    width: 100%;
    position: relative;
    padding: 20% 0px 15%;
    /*    overflow: hidden;*/
    background: url('../img/banner-bg4.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}

#particles {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

.ban-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: rgba(7, 26, 70, 0.60);
    z-index: 0;
}

.scroll-down {
    /*
    width: 50px;
    height: 70px;
*/
    text-align: center;
    /*    line-height: 60px;*/
    position: absolute;
    bottom: -30px;
    left: 50%;
    overflow: hidden;
    background: rgb(255, 215, 62);
    border: 5px solid #ececec;
    box-sizing: border-box;
    border-radius: 25px 25px 25px 25px;
    z-index: 2;
    transform: translateX(-50%);
}

.fa-long-arrow-down {
    padding: 20px 15px;
    color: #333;
    font-size: 16px;
    position: relative;
    top: -5px;
    cursor: pointer;
    animation: down-arrow 4s infinite;
    /*	opacity: 0;*/
}

@keyframes down-arrow {
    0% {
        top: 5px;
        /*        opacity: 1;   */
    }
    25% {
        top: -5px;
        /*        opacity: 0.5;*/
    }
    50% {
        top: 5px;
        /*        opacity: 1;*/
    }
    75% {
        top: -5px;
        /*        opacity: 0.5;*/
    }
    100% {
        top: 5px;
        /*        opacity: 1;*/
    }
}

span.name-wrap {
    display: inline-block;
    padding: 10px 0;
    /* background-color: #333; */
    width: 100%;
    text-align: center;
    float: none;
}

span.name {
    /*    font-family: Arciform;*/
    font-family: 'Raleway', sans-serif;
    /*    	font-family: 'Bree Serif', serif;*/
    /*    	font-family: 'Righteous', cursive;*/
    /*    font-family: 'Source Code Pro', monospace;*/
    color: #fff;
    font-size: 55px;
    padding: 0px 1px;
    text-align: center;
    /*	background: #fff;*/
    text-transform: uppercase;
    display: inline-block;
}

h2.tag-name {
    /*    font-family: Arciform;*/
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-top: 0;
}

span.empty-name {
    padding: 0 5px;
}

/*************** particle css end ******************/

/*************** about me css start ******************/

.about-section {
    background: #ececec;
    /*    padding-bottom: 80px!important;*/
}

.about-wrap {
    /*    margin-top: -250px;*/
    /*    padding: 20px;*/
}

h1 {
    font-size: 30px;
    position: relative;
}

h1:after {
    /*    content: "";*/
    display: block;
    width: 100px;
    height: 0px;
    border-bottom: 3px solid #10daa8;
    position: absolute;
    bottom: 0;
    left: 0;
}

.img-div {
    padding: 0;
    background: #ececec;
    border-radius: 0px;
    /*    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);*/
    /*    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);*/
    /*    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);*/
}

.abt-img {
    width: 100%;
    position: relative;
    /* left: -45px; */
    transition: 0.9s all ease;
    border-radius: 0px;
    width: 245px;
    margin: 0 auto;
    display: block;
}

.about-details {
    /*    background: #ececec;*/
    /*    margin-top: 235px;*/
    padding: 0px 40px;
    transition: all 0.5s ease;
}

.about-section:hover .abt-img {
    /*	top: 0px;*/
    /*	left: 0px;*/
    /*	box-shadow: -45px 45px 25px 13px rgba(122, 122, 122, 0.48);*/
}

p.details-para {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    padding-top: 10px;
    text-align: justify;
    margin: 0;
}

.social-media ul {
    list-style-type: none;
}

.social-media ul li {
    display: inline-block;
    padding: 0px 10px;
    font-size: 16px;
    padding-left: 0;
}

.read-more-btn {
    padding: 10px 20px;
    text-transform: capitalize;
    font-size: 14px;
    color: #333;
    border: 1px solid #333;
    background-color: transparent;
    transition: all 0.3s ease;
    /*    border-radius: 5px;*/
}

.read-more-btn:active,
.read-more-btn:visited,
.read-more-btn:focus {
    color: #333;
    background-color: transparent;
}

.read-more-btn:hover {
    color: white;
    background-color: #333;
}


/*************** about me css end ******************/

/*************** service css start ******************/

.services-section {
    /*    background-color: #333;*/
    position: relative;
    background: url(../img/sign2.jpg) repeat;
    background-size: 760px;
    background-attachment: fixed;
    /*    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.ser-wrap {
    z-index: 1;
    position: relative;
}

.ovrlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(255, 200, 5, 0.30);
    z-index: 0;
}

.services-section h2 {
    font-size: 30px;
    color: white;
}

.card-list {
    overflow: hidden;
    margin-top: 20px;
}

.project {
    width: 100%;
    max-width: 225px;
    /*            float: left;*/
    padding: 0;
    margin: 30px auto;
    cursor: default;
}

.project__card {
    position: relative;
    transition: box-shadow .3s ease;
    box-shadow: 0 10px 30px transparent;
    width: 100%;
    max-width: 225px;
    height: 225px;
    background: white;
    border: 1px solid #333;
    border-radius: 10px;
    margin: 0 auto;
    background-image: url('../img/card-bg.jpg');
    background-size: cover;
    margin: 0 0 30px;
}

.project:hover .project__card {
    box-shadow: 0 10px 30px rgba(253, 253, 253, 0.4)
}

.project:hover .project__title {
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 1;
}

.project__detail {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: translateZ(30px);
    transform: translateZ(30px);
    border: 0 solid #333;
    transition: border .4s ease;
    border-radius: 10px;
}

.card-img {
    width: 100px;
    margin: 0 auto 10px;
}

.services-section h2.project__title {
    font-size: 15px!important;
    color: #000;
    margin: 0;
    transition: .4s ease;
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
    -ms-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
    will-change: transform;
}

/*************** services css end ******************/

/*************** appointment css start ******************/

.appointment-section {
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.appointment-div {
    padding: 30px 0;
    text-align: center;
}

.start-img-div {
    background-image: url('../img/sun.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.sun-img {
    width: 100%;
}

.appointment-row {
    padding: 20px;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.pin-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
}

label.type-heading {
    font-size: 16px;
}

.checkbox-div {
    display: block;
    padding-bottom: 10px;
    text-align: left;
}

input[type=checkbox] {
    margin-right: 10px;
    margin-top: 0;
    vertical-align: text-top;
}

input[type=radio] {
    margin-right: 5px;
    margin-top: 0;
    vertical-align: text-top;
}

.radio-div {
    display: inline-block;
    margin-right: 20px;
    vertical-align: sub;
}

#datepicker > span:hover {
    cursor: pointer;
}

/*************** appointment css end ******************/

/*************** testimonial css start ******************/

.test-owl-wrapper {
    padding: 0 30px;
}

#test-owl {
    padding: 0 30px;
}

.owl-stage {
    transition: 1s !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 2px;
    margin: 5px 8px;
    background: #666;
    transition: all 0.5s ease;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #f58220;
}

.owl-theme .owl-dots .owl-dot.active span {
    /*    height: 20px;*/
    /*    width: 5px;*/
    background: #f58220;
    transform: rotate(90deg) translateX(-6px);
    transform-origin: center;
    transition: all 0.6s ease;
}

.owl-theme .owl-nav {
    /*    position: absolute;*/
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -40px;
    top: 20%;
    background: transparent;
    margin: 0;
    padding: 0;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -40px;
    top: 20%;
    background: transparent;
    margin: 0;
    padding: 0;
}

.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
    background: transparent;
}

.foot-gradient-bg {
    background-image: url('../img/banner-bg4.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.overlay-white {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 235, 60, 0.5);
    z-index: -1;
}

.qoute-img {
    width: 100px;
    padding-top: 20px;
}

.testimonial-wrap {
    color: white;
    padding: 40px;
    text-align: center;
    /*    padding-bottom: 0;*/
}

.testimonial-div {
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
    background: url(../img/sign2.jpg) repeat;
    background-size: 760px;
    background-attachment: fixed;
}

.contact-div {
    position: relative;
    z-index: 5;
}

.overlay-yellow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 203, 5, 0.83);
    z-index: -1;
}

.test-para {
    font-size: 16px;
    line-height: 28px;
    padding: 0 100px;
    /*    display: inline-block;*/
}

.test-name {
    font-size: 20px;
    text-transform: capitalize;
    display: inline-block;
    color: #000;
    position: relative;
    font-weight: 700;
}

.test-name:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    top: 11px;
    left: -60px;
    background: #000;
}

/*************** testimonial css end ******************/

/*************** contact css start ******************/

.contact-wrap {
    border-bottom: 1px solid #3b3b3b;
}

.footer-headings {
    color: #878787;
    text-transform: capitalize;
    font-size: 18px;
    padding-bottom: 10px;
    position: relative;
}

.footer-headings:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: 0;
    left: 0px;
    background: #FF5722;
}

.fa {
    vertical-align: middle;
}

.fa-mobile {
    font-size: 24px;
}

.clr {
    color: #000;
}

li.clr a {
    color: #000;
}

address {
    margin: 20px 0;
}

.btn-send {
    background: #FF5722;
    border: 0;
    outline: 0;
}

/*************** contact css end ******************/

@media (max-width:768px) {
    .logo_img {
        margin-left: 0;
    }
    .nav-wrap {
        display: none;
    }
    .hamburger-menu-wrap {
        display: block;
        padding-right: 0;
    }
    .navbar-header {
        float: none;
    }
    .get-in-touch-div,
    .social-div {
        width: 100%;
        text-align: center;
    }
    .social-media ul {
        text-align: center;
    }
    .social-div .footer-headings:before,
    .get-in-touch-div .footer-headings:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-wrap {
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
    .about-details {
        padding: 0!important;
    }
    .about-wrap-div {
        padding-right: 0!important;
    }
}

@media (max-width:768px) and (min-width:767px) {
    .card-list .col-xs-6 {
        width: 33.33%;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .test-para {
        padding: 0 0px;
    }
    .owl-carousel .owl-nav .owl-prev {
        left: -30px;
    }
    .owl-carousel .owl-nav .owl-next {
        right: -30px;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .navbar-nav > li > a {
        padding: 15px 16px;
    }
    .fa-envelope,
    .fa-phone {
        display: none;
    }
    .owl-carousel .owl-nav .owl-prev {
        left: -30px;
    }
    .owl-carousel .owl-nav .owl-next {
        right: -30px;
    }
    .test-para {
        padding: 0 0px;
    }
}

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

@media (max-width:560px) and (min-width:320px) {
    .particle-wrap {
        padding: 40% 0px 25%;
    }
    span.name {
        font-size: 34px;
    }
    h2.tag-name {
        font-size: 14px;
    }
    .about-wrap {
        padding-bottom: 0!important;
    }
    .abt-img {
        margin-bottom: 20px;
    }
    .about-details {
        text-align: center;
    }
    .card-list .col-xs-6 {
        width: 50%;
    }
    .logo_img {
        margin-left: 10px;
    }
    .about-wrap-div {
        padding-left: 0!important;
    }
    .testimonial-wrap {
        padding: 40px 0;
    }
    .test-para {
        padding: 0;
    }
    .owl-carousel .owl-nav .owl-prev {
        left: -20px;
    }
    .owl-carousel .owl-nav .owl-next {
        right: -20px;
    }
    .get-in-touch-div,
    .social-div {
        text-align: left;
    }
    .social-div .footer-headings:before,
    .get-in-touch-div .footer-headings:before {
        left: 0;
        transform: translateX(0%);
    }
    .social-media ul {
        text-align: left;
    }
    .msg-form-div .form-group .col-md-6,
    .msg-form-div .form-group .col-xs-12 {
        padding-right: 0!important;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        margin: 5px;
    }
    .contact-wrap .col-sm-6.p-r-none {
        padding-left: 0;
    }
    .copy-div {
        padding-right: 15px;
    }
    .back-top {
        display: none;
    }
}

@media (max-width:320px) {
    .logo_img {
        width: 150px;
        margin-left: 0;
    }
    .hamburger-menu-wrap {
        padding-top: 20px;
    }
    span.name {
        font-size: 28px;
    }
    h2.tag-name {
        font-size: 12px;
    }
    .card-list .col-xs-6 {
        width: 50%;
    }
    .test-name:before {
        display: none;
    }
    #test-owl {
        padding: 0 0;
    }
    .test-owl-wrapper {
        padding: 0 15px;
    }
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        display: none!important;
    }
    .long-testi {
        display: none;
    }
    .owl-theme .owl-dots .owl-dot span {
        margin: 5px;
    }
    .back-top {
        display: none;
    }

}
