@charset "utf-8";
*, *:after, *:before {box-sizing: border-box;}

@font-face {
    font-family: 'MontserratBlack';
    src: url('../fonts/montserrat-black-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MontserratBold';
    src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MontserratRegular';
    src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	padding: 0;
	margin: 0;
    color: #212020;
}
body, html{overflow-x: hidden;}
.container{position: relative;}
.container:after, .clearfix:after{content: ""; display: block; clear: both;}
.spacer, .clear {height: 0; line-height: 0; clear: both; font-size: 0; display: block;}

.span-text {
    padding: 1%;
    color: #f15f24;
    font-size: large;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-3 {
    margin-top: 0.5rem;
}

.sk_tag {
    color: white;
    font-weight: bold;
    background-color: #f15f24;
    border-radius: 5rem;
    padding: 10px;
}






  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color: #fff;
  }











/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }

  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s !important;
    transition: .4s !important;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s !important;
    transition: .4s !important;
  }

  input:checked + .slider {
    background-color: #f15f24;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #f15f24;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px) !important;
    -ms-transform: translateX(26px) !important;
    transform: translateX(26px) !important;
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }












/* defult css Styles
---------------------------------*/
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, blockquote {margin: 0; padding: 0; border: 0; display: block;}
h1, h2, h3, h4, h5, h6 {font-weight:normal; line-height: normal;}
h1 {font-size: 28px; margin: 0 0 15px;}
h2 {font-size: 24px; margin: 0 0 15px;}
h3 {font-size: 20px; margin: 0 0 12px;}
h4 {font-size: 18px; margin: 0 0 12px;}
h5 {font-size: 16px; margin: 0 0 10px;}
h6 {font-size: 14px; margin: 0 0 10px;}
ul, ol {margin-bottom: 10px; padding-left: 15px;}
li {margin: 0 0 10px; padding: 0;}
p {padding-bottom: 20px;margin: 0;}
p:last-child{padding-bottom: 0;}
label, span, strong {display: inline-block;}
p label, p span, p strong {display: inline;}
strong{font-weight: 700;}
a {
	color: #0047b3;
	text-decoration: none;
	border: none;
	outline: none;
	display: inline-block;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
a:hover, a:focus{
    color: #f15f24;
    text-decoration: none;
    outline: none;
}
.editor_text a:hover{
    text-decoration: underline;
}
img {border: none; outline: none; display: inline-block; max-width: 100%;}
mark {background-color: #ff9; color: #000; font-style: italic; font-weight: bold;}
del {text-decoration: line-through;}
hr {display: block; height: 1px; border: 0; margin: 10px 0; padding: 0; border-top: 1px solid #d3d3d3;}
/* ::-moz-selection{background: #0047b3; color: #fff; text-shadow: none;}
::selection{background: #0047b3; color: #fff; text-shadow: none;} */
table {border: none; border-collapse: collapse;	border-spacing: 0; width: 100%;}
table th, table td {padding: 10px 12px;	vertical-align: top; border: 1px solid #d3d3d3;}

/* FORM
---------------------------------*/
fieldset {padding: 5px 10px 10px; margin: 0 0 30px; border: 1px solid #d3d3d3;}
fieldset:last-child{margin: 0;}
legend{display: block; width: auto; max-width: 100%; padding: 0 10px; margin: 0; font-size: 16px; color: inherit; white-space: normal;}
form {margin: 0; padding: 0;}
label{
	/* text-align: left;
	line-height: 20px;
	margin: 0 0 8px;
	padding: 0;
    font-weight: normal; */

    font: 500 13px/20px 'Montserrat', sans-serif;
    color: #f15f24;
    margin: 0 0 15px 0;
    text-transform: capitalize;
}
input, select, textarea {
	padding: 5px 10px;
	width: 100%;
	height: 44px;
    border: 1px solid #d3d3d3;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background-color: transparent;
	color: #212020;
	font-size: 16px;
	line-height: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    position: relative;
	vertical-align: top;
	outline: none;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;

    width: 100%;
    font: 500 13px/42px 'Montserrat', sans-serif;
    color: #808080;
    border: 1px solid transparent;
    background-color: #f1f1f1;
    border-radius: 30px;
    padding: 0 30px;
    outline: none;
}
input[type="password"]{font-family: 'verdana';}
input[type="file"]{padding: 0 10px;}
textarea {height: 90px;	resize: none; overflow: auto;}
textarea.row2{height: 90px;}
textarea.row3{height: 140px;}
textarea.row4{height: 190px;}
select{
    cursor:pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/select.png);
	background-position: 98% -6px;
	background-repeat: no-repeat;
	padding-right: 20px;
}
::-webkit-input-placeholder {opacity: 1;}
:-moz-placeholder {opacity: 1;}
::-moz-placeholder {opacity: 1;}
:-ms-input-placeholder {opacity: 1;}
input[type="radio"], input[type="checkbox"]{cursor: pointer; margin: 2px 5px 0 0; vertical-align: top;width: auto;
    height: auto;}
input[readonly="readonly"]{cursor: not-allowed; background: #f4f4f4 !important;}

input[type="text"]:focus, textarea:focus, select:focus{border-color: #0047b3; outline: none;}
.ui-datepicker{width: 240px;}
#ui-datepicker-div {font-size: 12px;}
.ui-datepicker-title select{height: 26px;background-position: 100% -15px;padding: 3px;margin: 1px 3px !important;width: 45%;border: 1px solid;}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{width: 45%;}
.ui-datepicker td span, .ui-datepicker td a{text-align: center;}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{width: 25px;height: 28px;top: 3px;border: none;}
.ui-datepicker .ui-datepicker-prev-hover{left: 2px;}
.ui-datepicker .ui-datepicker-next-hover{right: 2px;}

.form_wrap ul{list-style: none; padding: 0; margin-bottom: -10px;}
.form_wrap ul > li{margin-bottom: 0;}
.labelWrap{display:block;margin:0 0 10px;line-height:inherit; position: relative;}
.labelWrap > span{margin: 0 0 5px;}
.hideLabel{position:absolute;opacity:0;pointer-events:none}
.form_wrap ul:after, .labelWrap:after, .input_check:after, .input_radio:after{content: "";display: block;clear: both;}
.labelWrap i{position: absolute; top: 20px; right: 15px; z-index: 1; pointer-events: none; color: #6b6b6b;}

.input_check, .input_radio{margin: 0; padding: 0; cursor: pointer;}
.input_check label, .input_radio label{font-family: inherit; font-weight: inherit; color: inherit;}
.input_check input[type="checkbox"], .input_radio input[type="radio"]{margin: 4px 5px 0 0;width: auto;
    height: auto;}

.col4.input_check, .col4.input_radio, .col5.input_check, .col5.input_radio{margin: 0 -10px;}
.col4.input_check > label, .col4.input_radio > label{float: left; padding: 0 10px; width: 25%;}
.col5.input_check > label, .col5.input_radio > label{float: left; padding: 0 10px; width: 20%;}

.file_upload{position: relative;}
.file_upload input{padding-right: 110px; padding-left: 0; border-width: 0;}
.file_upload label.inputfile{
    margin: 0 !important;
    padding: 0 !important;
    width: 100px;
	font-weight: normal;
    cursor: pointer;
    position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.file_upload label.inputfile .btn{display: block; padding: 0; min-width: auto;}
.file_upload label.inputfile input{display: none;}

/* BUTTONs
---------------------------------*/
.button-add-cart:before,
.clicked.cartBouton:before{
    content: "";
    width:25px;
    height: 25px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: text-top;
    background-color: transparent;
    background-position : center center;
    background-repeat:no-repeat;
    position: inherit;
}
.cartBouton:before,
.clicked.cartBouton:before{
    background-image: url(../images/cart-icon-btn.png);
    background-size: contain;
    margin-top: -5px;
}
[type="submit"], [type="reset"], [type="button"], .btn{
    font:700 18px/45px 'Montserrat', sans-serif;
    color:#fff;
    text-transform: uppercase;
    border:1px solid #f15f24;
    padding: 0 40px;
    border-radius: 30px;
    line-height: 47px;
    transition:all 0.5s ease;
    display: inline-block;
    outline: none ;
    background: #f15f24 no-repeat;
    height: 47px;
    min-width: 140px;
    cursor: pointer;
    vertical-align: top;
    position: relative;
    z-index: 0;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
button i, .btn i{vertical-align: middle; margin: -3px 5px 0 0; position: relative; top: 0;}
[type="reset"]{margin-right: 10px;}
[type="reset"], [type="submit"].btn_black, [type="reset"].btn_black, button.btn_black, .btn.btn_black{background-color: #1e1202; border-color: #1e1202; color: #fff;}
[type="submit"].btn_green, [type="reset"].btn_green, button.btn_green, .btn.btn_green{background-color: #f15f24; border-color: #f15f24; color: #fff;}
[type="submit"].btn_white, [type="reset"].btn_white, button.btn_white, .btn.btn_white{
    background-color: #fff;
    border-color: #fff;
    color: #4c4c4c;
}
[type="submit"].btn_t, [type="reset"].btn_t, button.btn_t, .btn.btn_t{background-color: transparent; border-color: #0047b3; color: #0047b3;}
[type="submit"]:hover, [type="submit"]:focus, [type="reset"]:hover, [type="reset"]:focus, .btn:hover, .btn:focus, .btn:active:focus{
    outline: none;
	background-color: #f15f24;
	border-color: #f15f24;
	color: #fff;
}
[type="submit"].btn_green:hover, [type="submit"].btn_green:focus, [type="reset"].btn_green:hover, [type="reset"].btn_green:focus, button.btn_green:hover, button.btn_green:focus, button.btn_green:active:focus, .btn.btn_green:hover, .btn.btn_green:focus, .btn.btn_green:active:focus{
	background-color: #177b1e;
	border-color: #177b1e;
	color: #fff;
}

[type="submit"].btn-sm, [type="reset"].btn-sm, button.btn-sm, .btn.btn-sm{height: 34px; line-height: 32px; min-width: inherit;}
[type="submit"].btn-lg, [type="reset"].btn-lg, button.btn-lg, .btn.btn-lg{height: 55px; line-height: 55px; font-size: 19px;}

.btn_group a, .btn_group input, .btn_group button{margin: 0 0 0 5px;}
.btn_group a:first-child, .btn_group input:first-child, .btn_group button:first-child{margin-left: 0;}
.btn_group a:last-child, .btn_group input:last-child, .btn_group button:last-child{margin-right: 0;}

.btn_center{text-align: center; margin-top: 30px;}
.btn_left{text-align: left;	margin-top: 30px;}
.btn_right{text-align: right; margin-top: 30px;}

/* CAPTCHA
---------------------------------*/
.captcha_img{float: left;}
.captcha_img > div, .captcha_img > img {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    margin: -13px -47px;
}
.captcha_img > img{max-width: inherit;}
.btn_wl {float: left; margin: 0 0 0 30px;}
.btn_wr {float: right;}
.btn_wr.w100{width: 100%; margin: 0;}
.btn_wr.w100 [type="submit"], .btn_wr.w100 [type="reset"]{width: 100%;}
/* CAPTCHA END */

/* ERROR_MSG
---------------------------------*/
.error, .success, .information {
	background: #ffd1d1 url("../images/error_icon.png") no-repeat scroll 10px 10px / 20px 20px;
    border: 1px solid #eab4b4;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #c00;
    display: block;
    font-size: 16px;
    line-height: 24px;
	min-height: 40px;
    margin: 10px 0 0;
    padding: 8px 5px 8px 40px;
	text-align: left;
}
.success {
    background-image: url(../images/success_icon.png);
	background-color: #eaf7d9;
    border-color: #c8dd9c;
    color: #425c05;
}
.information {
    background-image: url(../images/warning_icon.png);
	background-color: #ffeacd;
    border-color: #ffd396;
    color: #856404;
}
.error p, .success p, .information p {
	padding: 0 !important;
	font-size: inherit !important;
	line-height: inherit !important;
	text-align: inherit !important;
}
.input_error{border-color: #c00 !important;}
.input_success{border-color: #425c05 !important;}
.norecord{text-align: center;}
/* ERROR_MSG END*/

/* CLICKED
---------------------------------*/
.loader.clicked{position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000;}
.loader.clicked:before{-webkit-border-radius: 0; border-radius: 0; background: rgba(0, 0, 0, 0.8);}
.loader.clicked:after{width: 70px; height: 70px; margin: -35px 0 0 -35px; border-color: #fff; border-right-color: transparent;}
.noloader.loader.clicked:after{display: none;}
.loader.clicked > div{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-size: 18px;
    line-height: 35px;
    color: #fff;
    z-index: 1;
    margin: 40px 0 0;
    padding: 30px;
    width: 100%;
    text-align: center;
}
.loader.clicked > div span{text-transform: uppercase; margin-top: 20px;}
.clicked{position: relative; pointer-events: none;}
.clicked:before{
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    -webkit-border-radius: 0;
    border-radius: 0;
    opacity: 1;
    z-index: 1;
}
[type="submit"].clicked:before, [type="reset"].clicked:before, button.clicked:before, .btn.clicked:before{-webkit-border-radius: 3px;border-radius: 3px; top: -1px; left: -1px; right: -1px; bottom: -1px;}
.clicked:after{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
    width: 24px;
    height: 24px;
    border: 3px solid #3799FE;
    border-right-color: transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;

    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: rotate-forever;
    -moz-animation-name: rotate-forever;
    animation-name: rotate-forever;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes rotate-forever {
  0% {-webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg);}
}
@-moz-keyframes rotate-forever {
  0% {-webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg);}
}
@keyframes rotate-forever {
  0% {-webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg);}
}
/*CLICKED END*/

/* PAGINATION
---------------------------------*/
.pagination {
    display: block;
    clear: both;
	margin: 40px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 36px;
	text-align: right;
}
.pagination:after{content: ""; display: block; clear: both;}
.pagination p{
	display:inline-block;
	vertical-align:top;
    margin: 0;
    padding: 0 10px 0 0;
    text-align: inherit;
    line-height: inherit;
}
.pagination > div{display:inline-block; vertical-align:top;}
.pagination ul {float: left; margin: 0; padding: 0;}
.pagination ul li{background: #d3d3d3; color: #fff;}
.pagination ul li, .previous_pagi, .next_pagi, a.pagination_view {
	float: left;
	display: block;
	margin: 0 0 0 5px;
	margin: 0;
    padding: 0;
	width: 36px;
	height: 36px;
    line-height: 34px;
	text-align: center;
	border: 1px solid #d3d3d3;
	border-left: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.previous_pagi{border-left: 1px solid #d3d3d3;}
.pagination ul li a{
	display: block;
	border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
	line-height: 34px;
    background: #fff;
    color: #000;
}
.previous_pagi, .next_pagi, a.pagination_view{
    padding: 0 5px;
	color: #000;
    background: #fff;
    font-size: 0;
    position: relative;
}
a.pagination_view{font-size: inherit;}
.previous_pagi:before, .next_pagi:before{
    content: "\f104";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-family:'FontAwesome';
}
.next_pagi:before{content: "\f105";}
.pagination ul li a:hover, a.previous_pagi:hover, a.next_pagi:hover, a.pagination_view:hover {background: #0047b3; color: #fff;}
/*PAGINATION END*/

/* THANKYOU
----------------------*/
.thankyou_block{text-align: center;}
.thankyou_text .heading span, .thankyou_text .subheading span {display: block; color: #9cbe2f; margin-bottom: 10px;}
.thankyou_img{margin: 30px 0 0;}
/*THANKYOU END*/

/* BREADCRUMB
----------------------*/
.breadcrumb {
    background: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 0 0 0;
    margin: 0 0 -35px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #212020;
    font-size: 15px;
    line-height: 20px;
    text-transform: capitalize;
    text-align: right;
    z-index: 5;
    background: #f0f0f0;
}
.breadcrumb ul {margin: 0; padding: 0; list-style-type: none;}
.breadcrumb ul li {display: inline-block; vertical-align: top; margin: 0 25px 0 0; padding: 0; position: relative; font: inherit;}
.breadcrumb ul li:before{content: "/"; display: block; position: absolute; top: 1px; right: -14px; font-family:'FontAwesome';}
.breadcrumb ul li:last-child{margin: 0; padding: 0;}
.breadcrumb ul li:last-child:before{display: none;}
.breadcrumb ul li a {color: inherit;}
.breadcrumb ul li:last-child, .breadcrumb ul li a:hover {color: #f15f24;}
/*BREADCRUMB END*/

/* VIDEO
----------------------*/
.sk_vdo{background-color: #000; width: 100%; padding-top: 56.25%; /* 16:9 Aspect Ratio */ position: relative;}
.sk_vdo iframe, .sk_vdo img{position: absolute; top: 0; left: 0; border: none; width: 100%; height: 100%;}
/*VIDEO END*/

/* OWL
---------------------------------*/
.owl-carousel{padding: 0 35px;}
.owl-carousel .owl-nav:after{content: ""; display: block; clear: both;}
/* .owl-carousel .owl-nav{width: 100px;	position: absolute;	right: 0; top: -65px;} */
.owl-carousel .owl-nav [class*="owl-"]{
	position: absolute;
	top: 50%;
	left: 0;
    margin: -30px 0 0;
    padding: 0;
    width: 24px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 60px;
    color: #212020;
    background: transparent;
    border: none;
    -webkit-border-radius: 0;
	border-radius: 0;
    float: left;
    cursor: pointer;
	opacity: 1;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.owl-carousel .owl-nav .owl-next{float: right; padding: 0 0 0 4px; left: auto; right: 0;}
.owl-carousel .owl-nav .owl-prev.disabled, .owl-carousel .owl-nav .owl-next.disabled{pointer-events: none; opacity: 0.4;}
.owl-carousel .owl-nav [class*="owl-"]:hover{background: transparent; color: #0047b3; opacity: 1;}
.owl-carousel .owl-nav.disabled + .owl-dots{margin-top: 0;}
.owl-carousel .owl-dots{text-align: center;}
.owl-carousel .owl-dots .owl-dot{
    width: 10px;
    height: 10px;
    background: #858585;
    border: 2px solid #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 10px;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.owl-carousel .owl-dots .owl-dot.active{background: #0047b3; border-color: #0047b3;}
/*OWL END*/

/* COMMON STYLE
---------------------------------*/
.scroll_effect{position: relative; display: none;}
.scrollup {
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 5;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    text-align: center;
    -webkit-border-radius: 0;
    border-radius: 0;
    display: none;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.scrollup:hover {-webkit-border-radius: 50%; border-radius: 50%; -webkit-transform: rotate(360deg); transform: rotate(360deg); background: rgba(0,0,0,0.7); color: #fff;}

.floatingBtn {
    position: fixed;
    right: 0;
    top: 70%;
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 60px;
}
.floatingBtn a {
	height: 60px;
	line-height: 60px;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	font-size: 24px;
}

.sk_fleft{float: left;}
.sk_fright{float: right;}
.sk_img_left{ float: left; margin: 5px 30px 0 0; }
.sk_img_right{ float: right; margin: 5px 0 0 30px; }

.ul, .alter_list{list-style: none; padding: 0; margin-top: 0; margin-bottom: -30px; overflow: hidden;}
.ul > li, .alter_list > li{margin-bottom: 30px;}
.border_list{list-style: none; padding: 0; margin: 0;}
.border_list > li{margin: 0; padding: 30px 0; border-bottom: 1px solid #d3d3d3;}
.border_list > li:first-child{padding-top: 0;}
.border_list li:last-child{padding-bottom: 0; border-bottom-width: 0;}
.divider_list{list-style: none; padding: 0;	margin: 0;}
.divider_list:after{content: "";display: block;clear: both;}
.divider_list > li{float: left;	margin: 0; padding: 0 0 0 30px;	position: relative;}
.divider_list > li:before{content: "|";	display: block;	position: absolute;	top: 0;	left: 15px;}
.divider_list > li:first-child{padding: 0;}
.divider_list > li:first-child:before{display: none;}
.center_list{text-align: center; margin-left: -16px; margin-right: -16px; margin-bottom: -24px;}
.center_list li{float: none; display: inline-block; vertical-align: top; margin-left: -3px; margin-right: -3px; margin-bottom: 24px;}
.border_top{padding-top: 30px; margin-top: 30px; border-top: 1px solid #d3d3d3;}
.border_btm{padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid #d3d3d3;}
.bullet, .editor_text ul{
    /* list-style: none; */
    margin: 0 0 0px;
    padding: 0 0 20px;
   /*  overflow: hidden; */
   list-style-position: inside;
    color: #808080;
}
.bullet:last-child, .editor_text ul:last-child{margin: 0;}
.bullet li, .editor_text ul > li{
    /* padding: 0 0 0 25px; */
    margin-bottom: 10px;
    position: relative;
}
/* .bullet li:before, .editor_text ul > li:before{
    position: absolute;
	content: "\f054";
	display: block;
	font-family: 'FontAwesome';
    font-size: 14px;
	line-height: 24px;
	top: 0;
	left: 0;
} */
.bullet.col2 > li, .editor_text ul.col2 > li{float: left;width: 50%;padding-right: 5px;}
.bullet.col3 > li, .editor_text ul.col3 > li{float: left;width: 33.33%;padding-right: 5px;}
.bullet.col4 > li, .editor_text ul.col4 > li{float: left;width: 25%;padding-right: 5px;}
.bullet.col5 > li, .editor_text ul.col5 > li{float: left;width: 20%;padding-right: 5px;}
.bullet.inline > li, .editor_text ul.inline > li{display: inline-block;margin-right: 40px;}
.table_box {display: table;width: 100%;height: 100%;}
.table_box_cell {display: table-cell;width: inherit;height: inherit;vertical-align: middle;}
.table_box_cell img {max-width: 100%;max-height: 100%;vertical-align: middle;display: inline-block;}

/* SITE_ICON
---------------------------------*/
.siteicon{display: inline-block; vertical-align: middle; width: 30px; height: 30px; background: url(../images/sprite.png) no-repeat;}
.siteicon.icon_map{width: 27px;	height: 34px; background-position: 0 -100px;}
.siteicon.icon_phone{width: 30px; height: 30px;	background-position: -100px -100px;}
.siteicon.icon_email{width: 30px; height: 30px;	background-position: -200px -100px;}

/* SOCIAL_ICON
---------------------------------*/
.social a{color: #212020; vertical-align: top; margin: 0 5px 0 0; position: relative; font-size: 0;}
.social a:last-child{margin-right: 0;}
.social a i {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 30px;
	line-height: 30px;
    font-size: 14px;
	text-align: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: transparent;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.social a:hover i{-webkit-transform: rotate(360deg); transform: rotate(360deg); opacity: 1;}

.social a.sk_facebook i{background-color: #3b5999; border-color: #3b5999; color: #fff;}
.social a.sk_twitter i{background-color: #1da1f2; border-color: #1da1f2; color: #fff;}
.social a.sk_linkedin i{background-color: #006fa6; border-color: #006fa6; color: #fff;}
.social a.sk_google-plus i{background-color: #DE5347; border-color: #DE5347; color: #fff;}
.social a.sk_instagram i{background-color: #A4765C; border-color: #A4765C; color: #fff;}
.social a.sk_youtube i{background-color: #E52117; border-color: #E52117; color: #fff;}
.social a.sk_pinterest i{background-color: #bd081c; border-color: #bd081c; color: #fff;}
.social a.sk_rss i{background-color: #F36F24; border-color: #F36F24; color: #fff;}

/* SECTION_HEADING
----------------------*/
.section{width: 100%; padding: 50px 0;	position: relative;}
.section:before{position: absolute;	content: ""; display: block; bottom: 0; left: 0; right: 0; top: 0; z-index: -1;}
/* .heading{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000;
	font-size: 36px;
    line-height: 40px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
} */
.heading{
    font: 700 41px/50px 'Montserrat', sans-serif;
    color: #808080;
    text-align: center;
    padding: 40px 0;
}
/* .heading:before{
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: #0047b3;
    position: absolute;
    bottom: 0;
    left: 0;
} */
.heading.w{color: #fff}
.heading.w:before{background: #fff;}
.heading.noborder{padding-bottom: 0}
.heading.noborder:before{display: none;}
.heading.text-left{text-align: left;}
.heading.text-right{text-align: right;}
.heading.text-center{text-align: center;}
.heading.text-left:before{left: 0; right: auto;}
.heading.text-right:before{left: auto; right: 0;}
.heading.text-center:before{left: 50%; right: auto; margin: 0 0 0 -35px;}
.heading_tag{
    color: #212020;
	font-size: 22px;
    line-height: 24px;
	margin: -20px 0 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.heading_tag:first-child{margin-top: 0;}
.heading_tag p{text-align: inherit;}

.subheading{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
	color: #212020;
	margin-bottom: 10px;
	position: relative;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.subheading span{font-family: 'Roboto', sans-serif; font-weight: 300;}
.heading:last-child, .subheading:last-child, .heading_tag:last-child{margin-bottom: 0;}
.heading a, .subheading a{color: inherit;display: inline;}
.heading a:hover, .heading a:focus, .subheading a:hover, .subheading a:focus, a:hover .heading, a:hover .subheading{color: #0047b3;}

/* COMMON
---------------------------------*/
.disabled{opacity: 0.5; pointer-events: none;}
.sk_content_wrap:after, .sk_content:after, .sk_box:after, .sk_social:after{content: "";display: block;clear: both;}
.sk_content_wrap .sk_content{margin-bottom: 30px;}
.sk_content_wrap .sk_content:last-child{margin-bottom: 0;}
.sk_content_wrap figure{margin: 0 0 20px;}
.sk_content_wrap figure.sk_img_right{float: right; margin: 0 0 0 30px;}
.sk_content_wrap figure.sk_img_left{float: left; margin: 0 30px 0 0;}
/* .sk_content_wrap .btn_center{clear: both;} */

/* .sk_contact .editor_text ul > li{padding-left: 0;} */
.sk_contact .editor_text ul > li::before{display: none;}
.sk_comm > i, .sk_comm > .siteicon{float: left; line-height: 30px; margin: 0;}
.sk_comm > div{margin: 0 0 0 40px; clear: none !important;}
.sk_map{-webkit-cursor: grab; cursor: grab; background: #E5E3DF; height: 300px; position: relative;}
.sk_map iframe{width: 100%; height: 100%; border: none; margin: 0;}

.withIcon.sk_content_wrap figure.sk_icon {
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    float: left;
    margin: 0 20px 0 0;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);
}
.withIcon.sk_content_wrap figure.sk_icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 90%;
    max-height: 90%;
}
.withIcon.sk_content_wrap .heading{padding-left: 70px;}
.withIcon.sk_content_wrap .heading:before{left: 70px;}
.withIcon.sk_content_wrap .sk_content{clear: both;}

.sk_shadow .sk_box{margin: 5px; -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -webkit-border-radius: 3px; border-radius: 3px;}
.sk_shadow .sk_box figure{-webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0;}
.sk_shadow .sk_box .sk_text{padding: 0 10px 10px;}

.sk_shadow_full .sk_box{margin: 5px; padding: 10px; -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -webkit-border-radius: 3px; border-radius: 3px;}

.sk_box figure{overflow: hidden; -webkit-border-radius: 3px; border-radius: 3px; text-align: center;}
.sk_box figure img{-webkit-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s;}
.sk_box a{display: block; color: inherit;}
.sk_box a.btn, .sk_box a.readmore{display: inline-block;}
.sk_box .sk_text{margin-top: 10px; text-align: center;}
.sk_box .sk_text .subheading{text-align: left;}
.sk_box .sk_para{margin-bottom: 10px; text-align: left; min-height: 48px; overflow: hidden;}
.sk_info{margin-bottom: 10px; text-align: left;}
.sk_info span{margin-right: 10px;}
.sk_info span:last-child{margin-right: 0;}
.sk_info span i{margin-right: 3px;}
.sk_box .sk_para:last-child, .sk_info:last-child{margin-bottom: 0;}
.sk_box:hover a figure img{-webkit-transform: scale(1.1); transform: scale(1.1);}

.withIcon.sk_box .sk_text{position: relative; padding: 25px 0 0; margin: 0;}
.withIcon.sk_box figure.sk_icon{
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 50%;
    margin: 0 0 0 -25px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);
}
.withIcon.sk_box figure.sk_icon img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 90%;
    max-height: 90%;
}
.withIcon.sk_box:hover a figure.sk_icon img{-webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}

.sk_sideblock{margin-bottom: 40px;}
.sk_sideblock:last-child{margin-bottom: 0;}
.sk_sideblockShadow{padding:10px; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.1); box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);}
.sk_sideblock .bullet li:before{top: 4px;}
.sk_sideblock ul li a{display: block; color: inherit; padding: 5px 0;}
.sk_sideblock ul li.active a, .sk_sideblock ul li:hover a{color: #0047b3;}
.sk_sideblockShadow > .subheading{margin: -10px -10px 10px; padding: 10px; border-bottom: 1px solid rgba(0,0,0,0.1);}

.sk_toggle .sk_box{margin: 0 0 15px; padding: 10px; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.1); box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);}
.sk_toggle .sk_box:last-child{margin: 0;}
.sk_toggle .sk_ques{cursor: pointer; position: relative; padding: 0 50px 0 0;}
.sk_toggle .sk_ques:after{
    content: "\f078";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: transparent;
    color: #d3d3d3;
    font-size: 14px;
    font-family: 'FontAwesome';
    padding: 0 0 0 1px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.sk_toggle .sk_box.opened > .sk_ques:after {line-height: 28px; padding: 0 1px 0 0; transform: rotate(180deg); background: #d3d3d3; color: #fff;}
.sk_ans{display: none; margin: 10px 0 0;}

.sk_box .readmore{width:auto; height: auto; font: inherit; color: #014baf; background: transparent; -webkit-border-radius: 0; border-radius: 0; margin: 10px 0;}
.sk_box .readmore:hover{color: #212020;}

/* HEADER
---------------------------------*/
.sticky .header_main {
    position: fixed;
    top: -48px;
    background: rgba(255, 255, 255, 0.9);
    border-width: 0;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    z-index: 99;
}
.sticky.fixed .header_main {top: 0; -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);}
.sticky .common_banner{margin-top: 65px;}
.sticky .htop, .sticky .hmiddle, .sticky .nav_wrapper:before, .sticky .nav_wrapper:after{display: none;}
.sticky .nav_wrapper{padding: 0; background: transparent; margin-top: 7px;}
.sticky .nav_menu > ul{color: #000;}
.sticky .nav_menu ul li:hover > a, .sticky .nav_menu ul li.active > a, .sticky .nav_menu ul li.current-menu-item > a{color: #f15f24;border-color: #f15f24;}
.sticky .responsive_btn span, .sticky .responsive_btn span:before, .sticky .responsive_btn span:after{background: #f15f24;}
.sticky .main-header .logo {
    margin: 0 0 0 0;
}
.sticky .header-top{display: none;}
.sticky .main-header .logo:before{
    display: none;
}
.sticky .logo a {
    width: 95px;
    height: 50px;
}
.mainHeader{position: relative; z-index: 5;}
.header_main{
	position: relative;
	left: 0;
	right: 0;
	z-index: 5;
    height: auto;
}
/* .logo{width: 128px;	float: left; padding: 10px 0;}
.logo a{display:block;width:128px;height:128px;background:no-repeat center #f7f7f7;-webkit-background-size:contain;background-size:contain;-webkit-border-radius: 50%;border-radius: 50%;} */
.logo a{position: relative;display:block;width:215px; height: 105px;-webkit-background-size:contain;background-size:contain; background-repeat: no-repeat;width: 286px;height: 141px;top: -12px;}
.hright{float: right; text-align: right;height: auto;}
.htop{
    background: #171817;
    color: #fff;
    padding: 0 0 5px;
	position: relative;
    float: right;
    height: auto;
}
.htop:after{
	content: "";
	display: block;
	position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    background-color: #171817;
    width: 3000px;
}
.htop .time{padding: 3px 0; font-size: 13px;}
.htop .time, .htop .social{display: inline-block; vertical-align: top; margin: 0 0 0 40px}
.htop .social a{color: #fff;}
.htop:before{
	content: "";
	display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35px;
    border-style: solid;
    border-width: 0 35px 35px 0;
    border-color: transparent #171817 transparent;
    z-index: 1;
}
.hmiddle{padding: 20px 0; clear: both;height: auto;}
.hinfo{list-style: none; margin: 0; padding: 0; font-size: 14px; color: #555353; line-height: 18px; display: inline-block; vertical-align: top;}
.hinfo li{display: inline-block; padding: 0; margin: 0 0 0 70px; text-align: left; vertical-align: top; clear: both;}
.hinfo li:first-child{margin: 0;}
.hinfo li:after, .hmiddle:after, .hright:after{content: ""; display: block; clear: both;}
.hinfo .siteicon{float: left; margin: 3px 0;}
.hinfo li > div{margin: 0 0 0 40px;}
.hinfo a{color: inherit;}
.hinfo a:hover{color: #f15f24;}
.hinfo li > div span{
    display: block;
    color: #363535;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.hmiddle .btn{margin-left: 70px;}
/*HEADER END*/

/* MENU
---------------------------------*/
.nav_wrapper{position: relative; float: left; background: #f15f24; padding: 5px 0 0 30px;height: auto;}
.nav_wrapper:before{
    content: "";
    display: block;
    border-style: solid;
    border-width: 40px 40px 0 0;
    border-color: transparent #f15f24 transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    z-index: 1;
}
.nav_wrapper:after{
    content: "";
    display: block;
    width: 3000px;
    background-color: #f15f24;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
}
.nav_menu{height: 36px;}
.nav_menu > ul {
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
	color: #fff;
	text-transform: capitalize;
    display: inline-block;
}
.nav_menu ul li {list-style: none; margin: 0; padding: 0; position: relative;}
.nav_menu > ul > li {margin: 0 0 0 0; float: left;}
.nav_menu > ul > li:first-child{margin-left: 0;}
.nav_menu > ul > li:last-child{margin-right: 0;}
.nav_menu > ul > li a{color: inherit; display: block;}
.nav_menu > ul > li > a {
    height: 36px;
	line-height: 32px;
    padding: 0 0px;
	margin: 0;
	text-align: center;
	position: relative;
    z-index: 1;
    overflow: visible;
    background: transparent;
    border: 0px solid transparent;
}
.nav_menu ul li a > span{display: block;position: relative;z-index: 1;}
.nav_menu > ul > li > a i.fa-home{font-size: 18px;}
.nav_menu ul li:hover > a, .nav_menu ul li.active > a, .nav_menu ul li.current-menu-item > a{border-color: #fff;}

/*******  sub menu *****/
.subarrow {
    pointer-events: none;
    position: absolute;
    right: 5px;
    top: 0;
    width: auto;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.nav_menu ul li > .sub-menu{
	visibility: hidden;
    opacity: 0;
	position: absolute;
    top: 100%;
    left: 0;
	z-index: 1;
	padding: 0;
    margin: 15px 0 0;
    color: #fff;
	background: #0047b3;
	width: 270px;
	max-height: 380px;
    text-align: left;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.5);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.5);
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.nav_menu > ul li:hover > .sub-menu{visibility: visible;opacity: 1;}
.nav_menu > ul > li:hover > .sub-menu{margin: 0;}

.nav_menu ul li > .sub-menu ul{list-style: none; padding: 0; margin: 0;}
.nav_menu > ul > li > .sub-menu li > .sub-menu{left: 100%; top: 0; list-style: none; margin: 0 0 0 15px;}
.nav_menu > ul > li .sub-menu li:hover > .sub-menu{margin: 0;}

.nav_menu ul li .sub-menu li {height: auto;	float: none; margin: 0; padding: 0; position: relative;}

.nav_menu ul li .sub-menu li:last-child{border-bottom:none;}
.nav_menu ul li .sub-menu li:first-child {border-top: none; margin: 0;}
.nav_menu ul li .sub-menu li a{
	padding: 10px;
	line-height: 18px;
	height: auto;
	position: relative;
    overflow: hidden;
}
.nav_menu ul li .sub-menu li:last-child a{border: none;}
.nav_menu ul li .sub-menu li a:after{
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: #00b4d5;
	z-index: -1;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;

}
.nav_menu ul li .sub-menu li:last-child a:after{-webkit-border-radius: 0; border-radius: 0;}
.nav_menu ul li .sub-menu li:first-child a:after{-webkit-border-radius: 0; border-radius: 0;}

.nav_menu ul li .sub-menu li:hover > a, .nav_menu ul li .sub-menu li.active > a, .nav_menu ul li .sub-menu li.current-menu-item > a{background: none; color: #fff;;}
.nav_menu ul li .sub-menu li a:hover:after, .nav_menu ul li .sub-menu li:hover > a:after, .nav_menu ul li .sub-menu li.active > a:after, .nav_menu ul li .sub-menu li.current-menu-item > a:after{width: 100%;}
.nav_menu ul li .sub-menu li i{float: right; margin: 2px -15px 0 0; -webkit-transform: rotate(-90deg); transform: rotate(-90deg);}

/*RESPONSIVE MENU*/
.homeBtn{
    display: none;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 20;
    margin: -2px 0;
}
.homeBtn:hover{color: #014baf;}
.responsive_btn {
    display: none;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 40px;
    margin: -2px 0;
    float: left;
    position: relative;
    z-index: 20;
    border:2px solid #fff;
    border-radius: 50%;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_btn span {display: block; height: 2px; width: 20px; position: relative; top: 50%; margin: -1px auto;}
.responsive_btn span:before,.responsive_btn span:after {content: ""; display: inline-block; height: 100%; width: 100%; position: absolute; left: 0;}
.responsive_btn span:before {top: -6px;}
.responsive_btn span:after {bottom: -6px;}
.responsive_btn span,.responsive_btn span:before,.responsive_btn span:after {
    background: #fff;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_btn:hover span, .responsive_btn:hover span:before, .responsive_btn:hover span:after {background: #014baf;}

.responsive_nav {
    display: block;
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    min-height: 100%;
    z-index: 20;
    background: #000;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_nav ul {margin: 0; padding: 0; text-align: left;}
.responsive_nav ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}
.responsive_nav ul li:first-child {border-top: none;}
.responsive_nav ul li:after{display: none;}
.responsive_nav ul li > a {display: block; padding: 12px 10px 8px; color: inherit; position: relative;}
.responsive_nav ul li a:hover,.responsive_nav ul li a:focus,.responsive_nav ul li.active > a{color: #fff; background: #f15f24;}
.responsive_nav ul ul {padding: 0 0 15px 15px;}
.responsive_nav ul .sub-menu,.responsive_nav ul li a i {display: none;}
.responsive_nav .subarrow {display: block; pointer-events: inherit; width: 30px; height: 40px; line-height: 40px !important; right: 0;}
.responsive_nav ul .sub-menu .container {width: 100%; padding: 0;}
.bodyOverlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    transform: none;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
html.responsive,.responsive body {overflow-y: hidden;}
.responsive .wrapper {-webkit-transform: translate(-280px, 0) !important; transform: translate(-280px, 0) !important;}
.responsive .bodyOverlay {opacity: 1; visibility: visible;}
.responsive .responsive_nav {left: 0;}
.responsive .responsive_btn {pointer-events: none;}
.responsive .responsive_btn span {-webkit-transform: rotate(45deg); transform: rotate(45deg);}
.responsive .responsive_btn span:after {-webkit-transform: rotate(270deg); transform: rotate(270deg); top: 0;}
.responsive .responsive_btn span:before {opacity: 0;}
.responsive_nav .opened > .subarrow {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.responsive_nav .mCSB_outside + .mCSB_scrollTools{right: 0;}
.responsive .responsive_nav .mCSB_outside + .mCSB_scrollTools{right: -4px;}
.responsive_account {
    display: block;
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    min-height: 100%;
    z-index: 20;
    background: #000;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_account ul {margin: 0; padding: 0; text-align: left;}
.responsive_account ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}
.responsive_account ul li:first-child {border-top: none;}
.responsive_account ul li:after{display: none;}
.responsive_account ul li > a {display: block; padding: 12px 10px 8px; color: inherit; position: relative;}
.responsive_account ul li a:hover,.responsive_account ul li a:focus,.responsive_account ul li.active > a{color: #fff; background: #f15f24;}
.responsive_account ul ul {padding: 0 0 15px 15px;}
.responsive_account ul .sub-menu,.responsive_account ul li a i {display: inline-block;margin: 0 10px 0 0;}
.responsive_account .subarrow {display: block; pointer-events: inherit; width: 30px; height: 40px; line-height: 40px !important; right: 0;}
.responsive_account ul .sub-menu .container {width: 100%; padding: 0;}
.bodyOverlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    transform: none;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
html.responsiveaccount,.responsiveaccount body {overflow-y: hidden;}
.responsiveaccount .wrapper {-webkit-transform: translate(-280px, 0) !important; transform: translate(-280px, 0) !important;}
.responsiveaccount .bodyOverlay {opacity: 1; visibility: visible;}
.responsiveaccount .responsive_account {left: 0;}
.responsiveaccount .responsive_btn {pointer-events: none;}
.responsiveaccount .responsive_btn span {-webkit-transform: rotate(45deg); transform: rotate(45deg);}
.responsiveaccount .responsive_btn span:after {-webkit-transform: rotate(270deg); transform: rotate(270deg); top: 0;}
.responsiveaccount .responsive_btn span:before {opacity: 0;}
.responsive_account .opened > .subarrow {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.responsive_account .mCSB_outside + .mCSB_scrollTools{right: 0;}
.responsiveaccount .responsive_account .mCSB_outside + .mCSB_scrollTools{right: -4px;}
.responsiveaccount .responsive_account {
    left: 0;
}
/*MENU END*/

/* SLIDER
---------------------------------*/
.common_banner{position: relative; overflow: hidden; background: #ccc;height: auto;min-height: 0px;}
.common_banner img{width: 100%; display: block; opacity: 1;}
.homebanner{height: auto;}
.innerbanner{max-height: 310px; overflow: hidden;}

.bannerbox{position: relative;}
.bannertext{
	text-align: center;
	color: #fff;
	width: auto;
    background: rgba(0,0,0,0.4);
    -webkit-border-radius: 5px;
    border-radius: 5px;
	padding: 15px 25px;
	position: absolute;
	bottom: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,50%);
	transform: translate(-50%,50%);
}
.bannertext .heading{color: inherit; font-size: 40px; line-height: 44px; padding: 0;}
.bannertext .subheading{color: inherit;}
.bannertext .heading:before{display: none;}

.homeslider.owl-carousel{padding: 0;}
.homeslider.owl-carousel .owl-nav{width: auto;}
.homeslider.owl-carousel .owl-nav [class*="owl-"]{
	margin: -30px 0 0;
    font-size: 0;
    min-width: inherit;
	width: 35px;
	height: 62px;
	background: url(../images/sprite.png) no-repeat -300px -100px;
	opacity: 1;
}
.homeslider.owl-carousel .owl-nav .owl-prev{left: -70px;}
.homeslider.owl-carousel .owl-nav .owl-next{right: -70px; background-position: -400px -100px;}
.homeslider.owl-carousel:hover .owl-nav .owl-prev{left: 10px;}
.homeslider.owl-carousel:hover .owl-nav .owl-next{right: 10px;}
.homeslider.owl-carousel .owl-dots{position: absolute; left: 0; right: 0; bottom: 0;}
.homeslider .bannerimg{width: 100%; padding-top: 46%; position: relative; overflow: hidden;}
.homeslider .bannerimg img{width: 100%; position: absolute; top: 0; left: 0;}
/*SLIDER END*/

/* FOOTER
---------------------------------*/
/* .mainFooter{background: #000; font-size: 14px; padding: 50px 0;	color: #d3d3d3;}
.mainFooter a{color: inherit;}
.mainFooter a:hover, .mainFooter .active > a, .mainFooter .current-menu-item > a, .companyname:hover{color: #fff;} */
.fnav ul{list-style: none; padding: 0; margin: 0; text-align: center;}
.fnav li{
    margin: 0 30px 0 0;
	padding: 0;
	position: relative;
	float: left;
	font-size: 15px;
	line-height: 15px;
	text-transform: capitalize;
}
.fnav li:after{
	content: "";
	display:block;
	position: absolute;
	top: 50%;
	left: auto;
	right: -15px;
	height: 13px;
	width: 2px;
	background: #fff;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.fnav li:last-child{margin: 0;}
.fnav li:last-child:after{display: none;}
.fnav li a{display: block; padding: 0 0 0 0;}
.fnav:after, .copyright:after{content: ""; display: block; clear: both;}
.copyright:after{content:""; display:block; clear: both;}
.copyright {padding: 10px 0 0; font-size: 13px; line-height: 15px;}
.copyright p{padding: 0; text-align: inherit;}
.copyright p:first-child{float: left;}
.copyright p:last-child{float: right;}
/*FOOTER END*/

/* HOME PAGE
---------------------------------*/
.image_section{
    width: 40%;
    float: left;
    position: relative;
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
    z-index: -1;
}
.content_section{
    width: 60%;
    float: right;
    position: relative;
    padding: 50px 0 50px 30px;
}
.image_section_inner{
    background: no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: -50px;
    bottom: -50px;
    right: -50px;
}
.content_section_inner{
    background: #f15f24;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
    z-index: -1;
}
.skewSection{padding: 50px 0; color: #fff;}
.skewSection .subheading{color: inherit; margin-bottom: 15px;}

.speciality_box p{text-align: left;}
.speciality_text{margin-left: 80px;}
.speciality_img{float: left; width: 50px; height: 50px; overflow: hidden;}
.speciality_img img{max-width: 100%; max-height: 100%;}

.stay_on_top{
    background: url(../images/stayontop_bg.jpg) no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    font-size: 35px;
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.stay_on_top .heading{font-size: 55px; line-height: 65px;}

.hook_contact{padding: 100px 0;}
.hook_contact .image_section{float: right;}
.hook_contact .content_section{float: left; padding: 50px 30px 50px 0;}
.content_section input, .content_section textarea{color: #fff}
.content_section .captcha_img{min-height: 58px;}
.content_section input::placeholder, .content_section textarea::placeholder{color: #fff;}
.content_section input::-webkit-input-placeholder, .content_section textarea::-webkit-input-placeholder{color: #fff;}
.content_section input:-moz-placeholder, .content_section textarea:-moz-placeholder{color: #fff;}
.content_section input::-moz-placeholder, .content_section textarea::-moz-placeholder{color: #fff;}
.content_section input:-ms-input-placeholder, .content_section textarea:-ms-input-placeholder{color: #fff;}
.hook_contact .image_section_inner{right: auto; left: 30px;}
.hook_contact .content_section_inner{right: -50px; left: auto;}
.free_quote_sec .heading{font-size: 60px; line-height: 60px;}
.free_quote_main{
    background: #014baf;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: -160px 0 0;
    padding: 45px;
    text-align: center;
    font-size: 20px;
}

.hook_testimonial .testimonial_list .sk_box .sk_text{text-align: center; height: 300px;}
.hook_testimonial .testimonial_list .sk_box:before, .hook_testimonial .testimonial_list .sk_box figure{left: 50%; -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0);}
.hook_testimonial .testimonial_list .sk_box .sk_para{height: 120px; overflow-y: auto;}
.hook_testimonial .testimonial_list .sk_box .readmore{float: right;}
.hook_testimonial .testimonial_list .sk_box .sk_text .subheading{clear: both;}


.bckgrnd_style{
    padding-bottom: 0;
}
.bckgrnd_style .heading{
    color: #fff;
    padding-top: 0;
    text-align: center;
}

.bckgrnd_style_in,.about-us .bckgrnd_style{
    background: url(../images/aboutn.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    margin: 0 -210px;
    padding: 10px 0;
}
.about-us .bckgrnd_style{
    margin: 0;
}
.about-us .bckgrnd_style .container{
    height: 620px;
}
.bckgrnd_style .bckgrnd_style_in .sk_content_wrap{
    padding: 0 210px;
}
.bckgrnd_style .sk_content_wrap{
    width: 100%;
    position: absolute;
    top: 46%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.bckgrnd_style .editor_text p{
    text-align: justify;
    color: #fff;
    font: 700 33px/38px 'Montserrat', sans-serif;
    padding: 0;
}
.custom-services .bckgrnd_style .bckgrnd_style_in .editor_text p{
    padding: 0 105px;
}
.custom-services .bckgrnd_style .bckgrnd_style_in{
    height: 300px;
    margin-top: -50px;
}
.custom-services .bckgrnd_style .form-part{
    margin: 40px auto;
}


.privacy-policy .sk_content .heading,.terms-of-use .sk_content .heading,
.refund-policy .sk_content .heading,.help-center .heading,
.eula .sk_content .heading
{
    color: #f15f24;
    font: 600 42px/52px 'Open Sans', sans-serif;
    padding: 20px 0 20px 0;
    text-transform: capitalize;
    text-align: left;
}
/*HOME END*/

/* SERVICE
---------------------------------*/
.service_list .sk_box figure.sk_img{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 58%;
}
.service_list .sk_box figure.sk_img img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1.01);
    transform: translate(-50%,-50%) scale(1.01);
    max-width: 100%;
    max-height: 100%;
}
.service_list .sk_box:hover a figure.sk_img img{-webkit-transform: translate(-50%,-50%) scale(1.1); transform: translate(-50%,-50%) scale(1.1);}
/*SERVICE END*/

/* BLOG
---------------------------------*/
.blog_list .sk_box figure{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 58%;
}
.blog_list .sk_box figure img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1.01);
    transform: translate(-50%,-50%) scale(1.01);
    max-width: 100%;
    max-height: 100%;
}
.blog_list .subheading{overflow: hidden;}
.blog_list .sk_box figure .sk_info{
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    right: 20px;
}
.blog_list .sk_box figure .sk_info span {position: relative; margin-right: 15px;}
.blog_list .sk_box figure .sk_info span:last-child {margin-right: 0;}
.blog_list .sk_box figure .sk_info span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    width: 1px;
    background: #d3d3d3;
}
.blog_list .sk_box figure .sk_info span:last-child:after {display: none;}
.blog_list .sk_box:hover a figure img{-webkit-transform: translate(-50%,-50%) scale(1.1); transform: translate(-50%,-50%) scale(1.1);}

.comment_list .sk_box .sk_text{margin: 0;}
.comment_list .sk_box .sk_para{min-height: inherit;}
.comment_list .sk_box .sk_text .subheading{text-transform: capitalize;letter-spacing: 0;}
.comment_list .sk_box .sk_text .subheading span{margin-left: 10px;}

.sk_sideblock .blog_list ul li a{padding: 0;}
.sk_sideblock .blog_list .sk_box{font-size: 12px; line-height: 18px;}
.sk_sideblock .blog_list .sk_box figure{width: 80px; height: 46px; float: left; margin: 0 10px 0 0; padding: 0;}
.sk_sideblock .blog_list .sk_box .sk_text{margin: 0;}
.sk_sideblock .blog_list .subheading{margin-bottom: 5px;}
/*BLOG END*/

/* TESTIMONIAL
---------------------------------*/
.testimonial_list .sk_box {
    background-color: #fff;
    padding: 30px 20px;
    margin: 10px;
    list-style: none;
    height: 380px;
    border-radius: 5px;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.2);
}
.testimonial-part .testimonial_list .sk_box{
    box-shadow: -1px 1px 2px 0px rgba(0,0,0,0.2);
}
.testimonial_list .sk_box  .sk_text{margin-top: 0; text-align: left;}
.testimonial_list .sk_box:before, .testimonial_list .sk_box figure{
    width: 80px;
    height: 80px;
    border: 2px solid #cecece;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 25px;
    z-index: 1;
    overflow: hidden;
    background: #fff;
}
.testimonial_list .sk_box figure img{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    width: 100%;
}
.testimonial_list .sk_box:before {
    content: "";
    display: block;
    background: #fff url(../images/quote.png) no-repeat scroll center center / 35px 33px;
}
/* .testimonial_list .sk_box .sk_text {padding: 50px 30px 30px; margin: 0; border: 2px solid #cecece; -webkit-border-radius: 3px; border-radius: 3px; height: auto;} */
.testimonial_list .sk_box .subheading span{display: block; font-size: 16px; line-height: 24px;}
.testimonial-part .testimonial_list {
    padding: 60px 0;
    background-color: #f4f4f4;
}
.btn_center.testi-btn-grp {
    margin-top: 50px;
}
/*TESTIMONIAL END*/

/* Gallery PAGE
---------------------------------*/
.album_list .owl-carousel{margin: 0 0 30px;}
.album_list .owl-carousel .owl-nav.disabled{display: block;}
.album_list .owl-carousel .owl-nav .owl-prev.disabled, .album_list .owl-carousel .owl-nav .owl-next.disabled{opacity: 0.1;}
.item .sk_album{
	white-space: nowrap;
	font-size: 14px;
	line-height: 30px;
	height: 30px;
	color: #666;
	background: #fff;
	padding: 0 20px;
	border: 1px solid #d3d3d3;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	position: relative;
	cursor: pointer;
}
.item .selected.sk_album{background: #f15f24; border-color: #f15f24; color: #fff;}
.selected.sk_album{color: #f15f24;}

.sk_sideblock .album_list .ul{margin: 0;}
.sk_sideblock .album_list .ul > li{padding: 0 0 0 30px; margin-bottom: 10px; position: relative;}
.sk_sideblock .album_list .ul > li:last-child{margin-bottom: 0;}
.sk_sideblock .album_list .ul > li:before{
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/bullet.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
}

.masonry {
    margin: 0;
    padding: 0;
    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    column-gap: 15px;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
}
.gallery_list .ul{margin-bottom: -15px; overflow: visible;}
.gallery_list .ul > li{margin-bottom: 15px;}
.gallery_list .sk_box{position: relative; overflow: hidden; background: #000; color: #fff;}
.gallery_list .sk_box figure{-webkit-border-radius: 0; border-radius: 0;}
.gallery_list .sk_box figure img{display: block; width: 100%;}
.gallery_list .sk_box .sk_text{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 0;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.gallery_list .readmore{
    width: 50px;
    height: 50px;
    background: #202020;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 0;
    margin: 0 0 10px;
    color: #fff;
    font-size: 0;
    position: relative;
}
.gallery_list .readmore:before{
    content: "\f00e";
    display: block;
    font-family:'FontAwesome';
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.gallery_list .readmore:hover{color: #fff;}
.gallery_list .sk_box .sk_text .subheading{text-align: inherit; color: inherit; text-transform: uppercase;}
.gallery_list .sk_box:hover figure img{opacity: 0.5;}
.gallery_list .sk_box:hover .sk_text{top: 50%; -webkit-transform: translate(0,-50%); transform: translate(0,-50%);}
#lcl_wrap:not(.lcl_on_mobile) .lcl_tn_inner li:not(.lcl_sel_thumb):hover,.lcl_tn_inner li.lcl_sel_thumb{border: 2px solid #f15f24;}
/*GALLERY END*/

/* PRODUCT PAGE
---------------------------------*/
.product_list .solutions_text h6{
    height: auto;
    min-height: auto;
    margin-bottom: 5px;
    font-size: 18px;
    text-align: center;
}
.product_list .sk_box .sk_para{
    text-align: center;
}
.product_list ul li:nth-child(even) .service_box .service_img{float: right; margin: 0 0 0 35px;}
.product_list .service_box .subheading{text-transform: capitalize}

.review-box{
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
}
/*PRODUCT END*/


/* =====================about css================================*/

h1, h2, h3, h4, h5, h6, p, div, aside, figure, ul, li{
    padding:0 0 0 0;
    margin:0 0 0 0;
}
a{
    padding: 0 0 0 0;
    margin:0 0 0 0 0;
    text-decoration: none;
}
a{
    color:#f15f24;
    text-decoration:none;
}
a:hover{
    color:#808080;
}
img{
    max-width: 100%;
}

.btn:hover{
    color:#fff;
    background-color: #bf5429;
    border:1px solid #bf5429;
}
.container{
    max-width: 1200px;
}
.title{
    font:700 55px/65px 'Montserrat', sans-serif;
    color:#808080;
    text-transform: capitalize;
    text-align: center;
    padding: 0 0 20px 0;
}
.title span,.title em{
    display: block;
    font:700 40px/45px 'Montserrat', sans-serif;
    color:#f15f24;
    font-style: italic;
    text-transform: uppercase;
    margin-top: 10px;
}
/* ====================== */
/* =====header part===== */
.header-top{
    background-color: #f0f0f0;
    text-align: right;
    padding: 2px 0;
    height: 40px;
    /* overflow: hidden; */
}
.header-top-part{
    float: right;
}
.header-top .h-call,
.header-top .h-solcial-media,
.header-top a.btn{
    float: left;
    margin: 0 0 0 34px;
    outline: none;
}
.header-top .h-solcial-media{margin: 0 0 0 10px;}
.header-top a.btn{
    font: 700 14px/36px 'Montserrat', sans-serif;
    padding: 0px 0px;
    height: 36px;
    line-height: 35px;
    text-align: center;
}
.h-solcial-media li{
    display: inline-block;
    margin: 2px 0 0 0;
}
.h-solcial-media li a{
    height: 32px;
    line-height: 32px;
    width: 32px;
    margin-left: 10px;
    border: 1px solid #c8c8c8;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}
.header-top-part::after,
.header-top-part::before,
.header-top .container::after,
.header-top .container::before{
    content:"";
    clear:both;
    display: block;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.header-top .h-call{
    font:700 16px/35px 'Montserrat', sans-serif;
    color:#808080;
    position: relative;
}
.header-top .h-call::after{
content:"";
position: absolute;
top: 4px;
left: -34px;
background: url(../images/call-ic.png)no-repeat center;
width: 28px;
height: 28px;
}
.header-top .h-call span{
    color:#f15f24;
    padding: 0 0 0 5px;
}
.main-header .logo{
    float: left;
	margin:-21px 0 0 0;
	position:relative;
}
.main-header .logo:before {
    position: absolute;
    left: -15px;
    top: -26px;
    width: 150px;
    height: 150px;
    background: #fff;
    content: "";
    z-index: 0;
    opacity: 1;
    border-radius: 50%;
}
.home .main-header .logo:before{
	position: absolute;
    left: -11px;
    top: -26px;
    width: 136px;
    height: 39px;
    background: url(../images/logo_back_round.png) left top no-repeat;
    content: "";
    z-index: 0;
    opacity: 0.9;
    border-radius: 0;
}
.quote_form{
    margin: 0 auto;
    width: 410px;
}
.form-part .subheading{
    font-size: 33px;
    line-height: 38px;
    font-weight: 500;
    color: #f15f24;
    margin-bottom: 30px;
}
.main-header .main-menu{
    float: right;
    padding: 40px 0 0 0;
}
.home .main-header .main-menu{
    padding: 38px 0 0 0;
}
.main-header .main-menu .menu{    margin-top: 10px;}
.main-header .main-menu .menu,
.main-header .main-menu .cart{
    float: left;
}
.main-header .main-menu .cart{
    padding: 0 0 0 25px;
    margin: -5px 0 0 12px;
    position: relative;
}
.main-header .main-menu .cart::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 1px;
    height: 36px;
    background: rgba(0, 0, 0, 0.2);
}
.main-header .main-menu .cart a {
    position: relative;
    top: 8px;
}
.main-header .main-menu .menu li{
    display: inline-block;
    padding: 0 0 0 42px;
}
.main-header .main-menu .menu li a{
    font: 700 15px/22px 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #808080;
    text-decoration: none;
    position: relative;
    transition: all 0.5s ease;
}
.main-header .main-menu .menu li.active a,
.main-header .main-menu .menu li a:hover{
    color: #f15f24;
    transition: all 0.5s ease;
}
.main-header .main-menu .menu li a::after,
.main-header .main-menu .menu li a::after{
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 3px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    background-color: #f15f24;
    transform: scale(0);
    transition: all 0.5s ease;
}
.main-header .main-menu .menu li.active a::after,
.main-header .main-menu .menu li a:hover::after{
    transform: scale(1);
}
.main-header .logo img {
    max-width: 75%;
}
.main-header .container::after,
.main-header .container::before,
header::after,
header::before{
    content:"";
    display: block;
    clear: both;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.main-header{
    padding: 8px 0;
}
/* .home header{
    background: url(../images/banner.jpg)no-repeat center;
    background-size: cover;
} */
/* ===== */
/* ====banner part===== */
.banner img{
    width: 100%;
}
.banner .container{
    position: relative;
}
.banner-text h5{
    font:700 60px/65px 'Montserrat', sans-serif;
    color:rgba(102,129,151,0.7);
    text-transform: capitalize;
    /* text-align: left; */
}
.banner-text h4{
    font:700 110px/92px 'Montserrat', sans-serif;
    color:rgba(102,129,151,0.7);
    text-transform: capitalize;
    /* text-align: left; */
}
.banner-text h2{
    font:700 144px/150px 'Montserrat', sans-serif;
    color: rgba(174,55,0,0.5);
    text-transform: capitalize;
    border-bottom: 10px solid #5a7c8fb3;
    /* text-align: left; */
}
.banner .btn{
    float: right;
    position: relative;
    font-size: 19px;
    line-height: 45px;
    text-align: center;
    width: 212px;
}
.banner .btn::after,
.banner .btn::before{
    content:"";
    background: url(../images/btn-before.png)no-repeat center;
    width:12px;
    height: 30px;
    position: absolute;
    top:7px;
    left: 15px;
}
.banner .btn::after{
    left: auto;
    right: 15px;
}
.banner .btn.custom-solution{
    float: left;
    font-size: 19px;
    line-height: 20px;
    margin: 0 0 10px 0;
    padding: 2px 40px;

}
.home-video img {
    max-width: 100%;
    vertical-align: bottom;
}
.banner-text{
   /* text-align: right; */
    width: 680px;
    margin: 0 0 0 auto;
}
.banner .container::after,
.banner .container:before{
    content:"";
    display: block;
    clear: both;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.video-bg{
    position: relative;
    top:0;
    left:0;
    right:0;
    bottom: auto;
    /* height: 1000px;
    overflow: hidden; */
}
.video-bg::after{
    content:"";
    /* background: rgba(199,216,225,0.7); */
    background: rgba(207,198,169,0.7);
    background: linear-gradient(34deg, rgba(207,198,169,0.7) 20%, rgba(199,216,225,0.7) 30%);
    position: absolute;
    left: 0;
    right:0;
    top:0;
    bottom:0;
    pointer-events: none;
}
.home .header-top,
.home .main-header{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    /* z-index: 1; */
}
/* .home .header-top{
    z-index: 2;
} */
.home .main-header{
	top: 40px;
}
.home .banner{
    height:0;
    position: relative;
}
/* .home .banner-text{
    bottom:250px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
} */
.home .banner-text {
    /* bottom: 0; */
    position: absolute;
    left: 0;
    opacity: 0.7;
    right: 0;
    z-index: 1;
    width: 650px;
    height: 280px;
    bottom: 100%;
    transform: translate(0, -100%);
}
.banner-btn{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.thank-box, .empty {
    border: 5px solid #9dbe2f;
    padding: 50px;
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);
    font-weight: 700;
}
.empty {
    border: 5px solid #f15f24;
}
.empty a{
    margin: 40px 0 0;
}
.order-details .card {
    background: #ffffff;
    margin: 0 0 30px;
    padding: 20px;
    border: 0 solid #e7e7e7;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    line-height: 24px;
}
@media only screen and (min-width:1300px) and (max-width:1366px){
.banner-text{
    	bottom:150px;
}
}
@media only screen and (min-width:1900px) and (max-width:5000px){
.banner-text{
    	bottom:400px;
}
}
/* ===== */
/* =====video-part===== */
.home-video-part{
    padding: 50px 0;
}
.home-video-part iframe{
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
}
.home-video-part .home-video {
    position: relative;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
}
.home-video-part .home-video::after{
    content:"";
    position: absolute;
    top:0;
    left: 0;
    right:0;
    bottom: 0;
    background: rgba(0,0,0,0.0);
    pointer-events: none;
}
/* ===== */
/* ======home-text====== */
.home-text .container p::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 5px;
    background:#f15f24;
}
.home-text p {
    font: 500 29px/30px 'Montserrat', sans-serif;
    color: #808080;
    padding: 100px 0;
    position: relative;
}
.home-text{
    background: url(../images/text-bg.jpg)no-repeat center;
    background-size:cover;
    border-radius: 70px;
    margin: 30px 0 0 0;
}
/* ===== */
/* ====packaged solutions===== */
.packaged_solutions{
    padding: 60px 0 0 0;
    text-align: center;
}
.solution-list{
    padding: 20px 0 0 0;
    margin-bottom: 0;
    overflow: visible;
    margin-left: auto;
    margin-left: auto;
}
.packaged_solutions .solution-list li{
    list-style: none;
    width: 18%;
    float: left;
    margin: 0 10px;
    cursor: pointer;
    padding: 0 0 20px 0;
    border-top:2px solid transparent;
}
.packaged_solutions .owl-carousel.solution-list li{
    padding: 0 0 70px 0px;
    width: inherit;
    margin: 0px;
}

.packaged_solutions .owl-carousel-slider{
    margin-top: -35px;
}
.packaged_solutions .container{
    padding: 0px;
}

.packaged_solutions .solution-list li.active{
    position: relative;
    border-top:2px solid #f04f2f;
    background: rgb(251,251,251); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(251,251,251,1) 0%, rgba(240,240,240,1) 99%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(251,251,251,1) 0%,rgba(240,240,240,1) 99%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(251,251,251,1) 0%,rgba(240,240,240,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbfbfb', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-9 */
}
.packaged_solutions .solution-list li.active:after{
    content: " ";
    position: absolute;
    bottom: -36px;
    left: 33px;
    background: url(../images/arrow.png) no-repeat bottom;
    width: 152px;
    height: 35px;
}
.packaged_solutions .owl-carousel.solution-list li.active:after{
    bottom: 0px;
    left: 20%;
}
.packaged_solutions .solution-list li .wed-readmore{
    text-decoration: none;
}
.packaged_solutions .solution-list li.active .wed-readmore{
    position: relative;
    outline: none;
}
.packaged_solutions .solution-list li.active .wed-readmore::after,
.packaged_solutions .solution-list li.active .wed-readmore::before{
    content:"";
    position: absolute;
    left: -36px;
    top: -52px;
    background: url(../images/left_sh.png) no-repeat center;
    width:36px;
    height:399px;
}
.packaged_solutions .solution-list li.active .wed-readmore::before{
    background: url(../images/right_sh.png) no-repeat center;
    right: -36px;
    left: auto;
}
.packaged_solutions .solution-list::after,
.packaged_solutions .solution-list::before{
    content:"";
    clear: both;
    display:block;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.solutions_text h6{
    font:700 15px/18px 'Montserrat', sans-serif;
    color: #0e0e0e;
    height: 50px;
    padding: 5px 0 0 0;
}
.solutions_text .sk_para {
    text-align: center;
    display: block;
    font:500 18px/24px 'Montserrat', sans-serif;
    color:#0e0e0e;
    text-transform: capitalize;
    min-height: auto;
}
/* =====tab text===== */
.tab-content{
    padding: 35px 0 60px 0;
    background-color: #f1f1f1;
}
.tab-content .tab{
    background-color: #fff;
    padding: 50px 30px 32px;
    border-radius: 5px;
    box-shadow: 0 5px 5px 0px rgba(0,0,0,0.05);
}
.tab-content .content{
    text-align: left;
}
.tab-content .content h2{
    font:700 36px/45px 'Montserrat', sans-serif;
    color:#0e0e0e;
}
.tab-content .content h6{
    font:700 20px/30px 'Montserrat', sans-serif;
    color:#f15f24;
}
.tab-content .content h5, .owl-item .content h5{
    font:700 16px/22px 'Montserrat', sans-serif;
    color:#0e0e0e;
    text-transform: uppercase;
    padding: 10px 0;
}
.owl-item .content h5{
    font-weight: 700 !important;
}
.tab-content .content h5 em{
    display:block;
    font:700 16px/18px 'Montserrat', sans-serif;
    color:#0e0e0e;
    text-transform: capitalize;
    font-style: normal;
}
.tab-content .content p, .owl-item .content p{
    font:500 15px/22px 'Montserrat', sans-serif;
    color:#0e0e0e;
    padding: 10px 10px;
    text-align: justify;
}
.tab-content .content a{
    font:700 15px/22px 'Montserrat', sans-serif;
    color:#ea4215;
}
.tab-content .content .price,.tab-content .content .tab_btngroup a,
.owl-item .content .price,.owl-item .content .tab_btngroup a{
    list-style: none;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 0;
}
.tab-content .content .tab_btngroup .btn,
.owl-item .content .tab_btngroup .btn
{
    color:#fff;
    font:700 15px/45px 'Montserrat', sans-serif;
    padding: 0 16px;
}
.tab-content .content .tab_btngroup,
.owl-item .content .tab_btngroup{
    font:700 36px/45px 'Montserrat', sans-serif;
    color:#f15f24;
    /*display: flex;*/
    justify-content: space-between;
}
.tab-content .content .tab_btngroup span, .owl-item .tab_btngroup .price span{
    font:700 24px/35px 'Montserrat', sans-serif;
    color:#232323;
}
.tab-content .content .tab_btngroup .cart_btn{
    position: relative;
    padding: 0 20px 0 60px;
}
.tab-content .content .cart_btn::before{
    content:"";
    position: absolute;
    top: 4px;
    left: 12px;
    background: url(../images/cart-icon-btn.png)no-repeat center;
    width:42px;
    height:37px;
}
.tab-content .tab figure {
    margin: 25px 0 0 0;
    height: 320px;
}
.tab-content .tab figure img {
    max-width: 100%;
    height: 100%;
}
.tab-content .content a.readmore {
    text-transform: uppercase;
    font-weight: 500;
}

/* ==== */
/* ======custom solution===== */
.custom-solution-part{
    background: url(../images/custom-solution-bg.jpg)no-repeat center;
    background-size: cover;
    padding: 80px 0 0 0;
}
.custom-solution-text{
    width: 680px;
    height: 570px;
    background-color: #ffffff9c;
    margin: 0 0 0 auto;
    padding: 130px 0 0 65px;
    display: flex;
    flex-direction: column;
}
.custom-solution-text h2{
    font: 700 61px/61px 'Montserrat', sans-serif;
    color:#808080;
}
.custom-solution-text p{
    font:500 21px/25px 'Montserrat', sans-serif;
    color:#000000;
    padding: 20px 0;
}
.custom-solution-text a.btn{
   /*  font-size: 19px;
    line-height: 55px; */
    padding: 0 42px;
}
/* ======= */
/* =====why choose us===== */
.why-choose-us{
    padding: 50px 0;
}
.reasons-list{
    padding: 10px 0 20px 0;
    text-align: center;
}
.reasons-list li{
    list-style: none;
    display: inline-block;
    vertical-align: top;
    width: 28%;
    text-align: center;
    white-space: inherit;
    height: 132px;
    border: 1px solid #ccc;
    padding: 20px 0 0 0;
    margin: 0 17px 20px 18px;
}
.reasons-list li a{display: block;}
.reasons-list li figure{
    float: none;
}
.reasons-list li:first-child figure{
margin: 0 10px 0 0;
}
.reasons-list li h6{
    color: #0e0e0e;
    width: auto;
    float: none;
    font: 700 20px/25px 'Montserrat', sans-serif;
}
.reasons-list li h6 span{
    font:700 12px/18px 'Montserrat', sans-serif;
    color:#0e0e0e;
    display: block;
}
.reasons-list li a::after,
.reasons-list li a::before,
.reasons-list::after,
.reasons-list::before{
    content:"";
    display: block;
    clear: both;
    padding: 0 0 0 0;
    margin:0 0 0 0;
}
/* ====== */
/* =====testimonial part====== */
.testimonial-part {
    padding: 0 0 5px 0;
}
.testimonial-part .container{
    max-width: 1600px;
    padding: 0;
}
.testimonial-part .owl-carousel{padding: 0;}
.testimonial-part .testimonial_list{
    position: relative;
    overflow: visible;
}
.testimonial-part .testimonial_list::before{
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    background: url(../images/angle-up.png)no-repeat bottom;
    width: 73px;
    height: 31px;
    transform: translate(-50%, 0);
}
.testimonial-part ul{
    padding: 40px 0 20px 0;
    background-color: #f4f4f4;
}
.testimonial-part li{
    background-color: #fff;
    padding: 40px 30px;
    list-style: none;
    height: 410px;
    border-radius: 5px;
    box-shadow: -1px 1px 2px 0px rgba(0,0,0,0.2);
}
.testimonial-part .btn-section{
    text-align: center;
}
.testimonial-part .btn-section a.btn:first-child{
    color:#000;
    background-color:#fff;
    border:1px solid #fff;
}
.testimonial-part .btn-section a.btn:first-child:hover{
    color: #fff;
    background-color: #bf5429;
    border: 1px solid #bf5429;
}
.btn-part{
    background-color: #f4f4f4;
    padding: 0 0 30px 0;
}
.testimonial_list .testimonial-text{
    height: 240px;
    overflow: hidden;
    padding: 40px 0 0 0;
    clear: both;
}
.testimonial_list .star-ratting{
    padding: 5px 0 0 0;
}
.testimonial_list .testimonial-text p{
    font: 500 16px/25px 'Montserrat', sans-serif;
    color: #000000;
}
.star-ratting .checked{
    color: #f15f24;
}
.star-ratting  .fa{
    margin-right: 3px;
}
.testimonial_list h4{
    font:700 18px/25px 'Montserrat', sans-serif;
    color:#000000;
    position: relative;
    padding: 0 50px 0 80px;
    min-height: 50px;
}
.testimonial_list h4:after{
    content:"";
    position: absolute;
    top:0;
    right: 0;
    background:url(../images/quote.png)no-repeat center ;
    width:39px;
    height:30px;
}
.testimonial_list h4 span{
    display:block;
    font:700 22px/27px 'Montserrat', sans-serif;
    color:#f15f24;
}
.testimonial_list figure{
float: left;
margin:0 20px 0 0;
}
/* .star-ratting{
    margin:20px 0 0 0;
} */
.testimonial-part .title{
    padding: 0 0 38px 0;
}
/*.testimonial-part .testimonial_list .owl-stage-outer{*/
/*    overflow:visible;*/
/*}*/
/* ===== */
/* ========footer======== */
.top-footer{
    padding: 50px 0;
    background-color: #0d0d0d;
}
.top-footer h5{
    font:500 30px/35px 'Montserrat', sans-serif;
    color:#fff;
    text-align: center;
}
.top-footer h5 a{
    font-weight:700;
    color:#f15f24;
    text-decoration: none;
}
.top-footer h5 a:hover{
    color:#ef7b4c;
}
.footer-menu{
    padding: 20px 0;
    background-color: #f15f24;
    text-align: center;
}
.footer-menu li{
    display: inline-block;
    margin: 0 18px;
}
.footer-menu li a{
    font:500 18px/25px 'Montserrat', sans-serif;
    color:#fff;
    text-decoration:none;
}
footer p{
    font: 500 12.5px/20px 'Montserrat', sans-serif;
    color:#808080;
    text-align: center;
    padding: 10px 0;
}
footer p.copyright{
    font:500 15px/20px 'Montserrat', sans-serif;
    color:#808080;
    margin: 0 0 10px 0;
    padding: 0;
}
.main-footer{
    padding: 40px 0;
    background-color: #f5f5f5;
}
.main-footer .logo a {
    width: 243px;
    height: 176px;
}
.main-footer h5{
    font:700 22px/30px 'Montserrat', sans-serif;
    color:#808080;
    text-transform: uppercase;
    padding: 0 0 20px 0;
}
.main-footer li{
    list-style: none;
    padding: 2px 0;
}
.main-footer li a{
    font:500 16px/25px 'Montserrat', sans-serif;
    color:#808080;
    text-decoration: none;
}
.main-footer p{
    font:500 16px/27px 'Montserrat', sans-serif;
    color:#808080;
    padding: 0 0 10px 35px;
    text-align: left;
    position: relative;
}
.main-footer p a{
    color: inherit;
}
.main-footer p a:hover{
    color:#f58a1f;
}
.main-footer p::after{
    content:"\f095";
    position: absolute;
    top:0;
    left:0;
    font-family: "FontAwesome";
    color:#f58a1f;
    font-size: 18px;
}
.main-footer p.fax::after{
    content:"\f1ac";
}
.main-footer p.email::after{
    content:"\f003";
}
.f-social li {
    display: inline-block;
}
.f-social li a {
    height: 32px;
    line-height: 32px;
    width: 32px;
    border: 1px solid #c8c8c8;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: #f15f24;
    margin: 0 10px 0 0;
}
.f-social li a:hover{
    background: #f15f24;
    border-color: #f15f24;
    color: #fff;
}
.guarantee figure{
    display: inline-block;
}
.contact-detail{
    padding: 0 0 30px 0;
}
.guarantee{
    padding: 20px 0 0 0;
}
/* ======= */

.tab_container .tab{
    display:none;
}
.tab_container .wed-content-wrap.tab.active{
    display: block !important;
}
.tab_container #tab_1{
    display:block;
}
/* ============================contact page=========================== */
.page-title{
    font:700 41px/50px 'Montserrat', sans-serif;
    color:#808080;
    text-align: center;
    padding: 40px 0;
}
.editor_text .contact-detail li{
    border:2px solid #f1f1f1;
    display: inline-block;
    vertical-align: top;
    height: 250px;
    overflow: hidden;
    width: 45%;
    border-radius: 5px;
    padding: 70px 60px;
}
.contact-detail li:first-child{
    margin: 0 65px 0 0;
}
.contact-detail li .figure{
    float: left;
    margin: 0 25px 0 0;
}
.contact-detail li p{
    font: 500 20px/20px 'Montserrat', sans-serif;
    color: #808080;
    padding: 5px 0 0 0;
}
.contact-detail li h4{
    font: 700 35px/47px 'Montserrat', sans-serif;
    color: #808080;
    padding: 22px 0 0 0;
}
.contact-detail li.we-help a{
    font:700 16px 'Montserrat', sans-serif;
    color:#f15f24;
    text-decoration: none;
}
.fb-tw {
    color: #f15f24;
    font: 500 20px 'Montserrat', sans-serif;
    padding-top: 18px;
}
.contact-detail li .fb-tw a {
    margin: 0 10px;
    font: 500 20px 'Montserrat', sans-serif;
    color: #f15f24;
}
.contact-detail li .fb-tw a:first-child{
    margin-left: 0;
}
.contact-detail li .fb-tw a:last-child{
    margin-right: 0;
}


.map-frm-part{
    padding: 50px 0;
}
/* ====form-part===== */
.form-part span{
    display: block;
}
.form-part input,
.form-part textarea{
    width: 100%;
    font:500 13px/42px 'Montserrat', sans-serif;
    color:#808080;
    border:1px solid transparent;
    background-color: #f1f1f1;
    border-radius: 30px;
    padding: 0 30px;
    outline: none;
}
.form-part textarea{
    font:500 13px/20px 'Montserrat', sans-serif;
    height: 100px;
    padding-top: 10px;
}
.form-part label{
    font:500 13px/20px 'Montserrat', sans-serif;
    color:#f15f24;
    margin: 0 0 15px 0;
    text-transform: capitalize;
}
.sk_map{
    height: 445px;
}
.form-part{
    padding: 0 0 15px 0;
}
.form-part.submit-btn input{
    font:700 17px/42px 'Montserrat', sans-serif;
    color:#fff;
    background-color: #f15f24;
    cursor: pointer;
}
/* ======regis=== */
.registration{
    display:none;
    position: fixed;
    left: 0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(0,0,0,0.5);
    z-index: 9;
}
.registration form.registration-frm{
    width: 670px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 120px;
    position: relative;
}
.regis_close{
    position: absolute;
    right: 30px;
    top:10px;
}
.registration-frm figure{
    text-align: center;
    padding: 0 0 25px 0;
}
.reg-tab a{
    font:500 18px/25px 'Montserrat', sans-serif;
    color:#808080;
    margin: 0 20px 0 0;
    text-decoration: none;
    transition: 0.5s ease;
}
.reg-tab{
    text-align: center;
}
.reg-tab a.active,
.reg-tab a:hover{
    font:500 18px/25px 'Montserrat', sans-serif;
    color:#f15f24;
    border-bottom:3px solid #f15f24;
}
.registration-frm img {
    max-width: 50%;
}
/* ========================Product left part started================================= */
.product-left-part{
    /* margin: 0 0 0 40px; */
}
.page-product .main-header {
    padding: 10px 0 80px 0;
}
.page-product .top-footer {
    margin-top: 80px;
}
.container{
    max-width: 1230px;
    margin: 0 auto;
    width: 100%;
}
.product-left-part img,.product-icon-part img{
    max-width: 100%;
}
.left-part-book, .sk_pgallery{
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    margin: 0 0 21px 0;
}
.sk_box .new_price {
    font-size: 22px;
    font-weight: 700;
    color: #282b2e;
}
.sk_box .old_price {
    font-size: 15px;
    text-decoration: line-through;
    color: #989494cc;
}
.sk_box .discount_price{display: none;}
.left-part-book img{
    padding: 58px 113px 58px 161px;
}
.product-left-part .ratings h2 {
    color: #45474a;
    font: 500 18px/25px 'Montserrat', sans-serif;
    display: inline-block;
    padding: 0px 15px 0px 0;
}
.star-ratting-wrap {
    padding: 0 0 30px 0;
}
.checked{
    color: #f25500;
}
.product-buy-part {
    border: 1px solid #d7d7d7;
    margin: 0px 0 40px 0;
    padding: 20px 16px 0px;
}
.buy-part-left{
    float: left;
}
.buy-part-left h3{
    color: #565859;
    font: 500 22px/34px 'Montserrat', sans-serif;
}
.buy-part-left h2{
    color: #282b2e;
    font: 700 22px/34px 'Montserrat', sans-serif;
    padding: 0 0 6px 0;
}
.buy-part-left p{
    color: #7a7a7a;
    font: 500 16px/26px 'Montserrat', sans-serif;
    font-style: italic;
}
.buy-part-right{
    float: right;
}
.buy-part-right del{
    color: #808080;
    font: 500 21px/31px 'Montserrat', sans-serif;
}
.buy-part-right strong{
    color: #f15f24;
    font: 700 25px/35px 'Montserrat', sans-serif;
    display: block;
}
.buy-part-right p{
    color: #808080;
    font: 400 12px/34px 'Montserrat', sans-serif;
    font-style: italic;
    margin: 6px 0 0 25px;
}
.icon-part-left, .icon-bottom-part-left{
    float: left;
}
.icon-part-right, .icon-bottom-part-right{
    float: right;
}
.product-buy-part::after,
.product-buy-part::before,
.product-icon-top-part::after,
.product-icon-top-part::before,
.product-icon-bottom-part::after,
.product-icon-bottom-part::before
{
    content: "";
    display: block;
    clear: both;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.product-icon-top-part .icon-part-left{
    position: relative;
    padding: 6px 0 0px 42px;
}
.product-icon-top-part h6{
    color: #686a6b;
    font: 700 18px/30px 'Montserrat', sans-serif;
}
.icon-part-left::after{
    content:"";
    background: url(../images/24-icon1.png) no-repeat center;
    position: absolute;
    top:0;
    left:0;
    width: 36px;
    height:34px;
}
.product-icon-top-part .icon-part-right{
    position: relative;
    margin: 8px 43px 0 0;
}
.icon-part-right::after{
    content: "";
    background: url(../images/secure-icon.png) no-repeat center;
    position: absolute;
    top: -2px;
    left: -48px;
    width: 47px;
    height: 32px;
}
.product-icon-bottom-part{
    margin: 52px 0 40px 0;
}
.product-video {
    position: relative;
    padding: 40px 0 0;
    text-align: center;
}
.product-video::after {
    content: "";
    background: url(../images/shadow.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    height: 19px;
    bottom: -10px;
}
.product-icon-bottom-part .icon-bottom-part-left{
    color: #000000;
    font: 700 20px/40px 'Open Sans', sans-serif;
}
.icon-bottom-part-left select{
    padding: 14px 10px;
    color: #000000;
    font: 700 18px/22px 'Open Sans', sans-serif;
    width: 90px;
    border-radius: 6px;
    margin: 0 0 0 15px;
}
.icon-bottom-part-right{
    position: relative;
    margin: 0px 94px 0 0px;
}
.icon-bottom-part-right a{
    text-decoration: none;
}
.button{
    font: 700 18px/34px 'Montserrat', sans-serif;
    color: #fff;
    text-transform: uppercase;
    background: url(../images/cart-icon-btn.png) #f15f24 no-repeat 16px 4px;
    border: 1px solid #f15f24;
    padding: 8px 15px 8px 60px;
    border-radius: 30px;
    transition: all 0.5s ease;
    display: inline-block;
    outline: none;
}
.button:hover
{
    background: url(../images/cart-icon.png) #fff no-repeat 16px 4px;
    color:#f15f24;
    border: 1px solid #f15f24;
}

.icon-bottom-part-right a::after{
    content: "";
    background: url(../images/cart-icon-btn.png) no-repeat center;
    position: absolute;
    top: 9px;
    left: 17px;
    width: 42px;
    height: 34px;
}
.icon-bottom-part-right a:hover::after{
    background: url(../images/cart-icon.png) no-repeat center;
}

/* ========================Product left part ended================================= */


/*========================Product right part started================================= */
.product-right-part{
    background-color: #f7f7f7;
    position: relative;
    z-index: 0;
}
.product-right-part .product-right-part-text {
    padding: 45px 0px 10px 15px;
}
.product-right-part-text h1{
    color: #808080;
    font: 700 36px/40px 'Montserrat', sans-serif;
    padding-bottom: 10px;
}
.product-right-part-text span, .product-right-part-text .org_text{
    color: #f15f24;
    font: 700 20px/26px 'Montserrat', sans-serif;
    padding: 0 0 0 0px;
}
.product-right-part-text .online-software{
    text-align: justify;
    color: #808080;
    font: 700 18px/25px 'Montserrat', sans-serif;
    padding: 20px 0 30px 0px;
}
.product-right-part-text .dragon{
   color: #808080;
    font: 700 20px/36px 'Montserrat', sans-serif;
    padding: 0 0 0 0px;
}
.rent-entry-part{
    list-style: none;
    margin: 16px 0 0 0;
}
.rent-entry-part a{
    text-decoration: none;
}
.rent-entry-part .rent-entry-text {
    padding: 14px 17px 14px 17px;
}
.rent-entry-text h5{
    color: #282b2e;
    font: 700 18px/26px 'Montserrat', sans-serif;
}
.rent-entry-text .opened h5{
    color: #808080;
}
.rent-entry-text strong{
    color: #282b2e;
    font: 700 16px/22px 'Open Sans', sans-serif;
}
.rent-entry-text .our-rent-entry{
    color: #999999;
    font: 400 16px/22px 'Open Sans', sans-serif;
}
.rent-entry-part li.rent-entry-text::after{
    display: none;
}
.rent-entry-plus .rent-entry-text a::after{
    display: none;
}
.core-features-list .fa-check{
    display: inline-block;
    padding: 0 20px 0 0;
}
.core-features-list .fa-check::before{
    color: #f15f24;
}
.core-features-list{
    padding: 0px 0 10px 0;
    margin: 0 0px 0 5px;
    list-style: none;
}
.core-features-list li{
    color: #282b2e;
    font: 700 16px/19px 'Montserrat', sans-serif;
}
.rent-entry-part a{
    position: relative;
    list-style: none;
    margin: 0 0 0 0;
    display: block;
}
.rent-entry-text a::after{
    content: "";
    background: url(../images/plus-icon.png) no-repeat center;
    position: absolute;
    top: -5px;
    left: auto;
    right: 0;
    width: 36px;
    height: 34px;
}
.slide-content{
    display: none;
}
a.slide.close-minus::after{
    content: "";
    background: url(../images/list-icon.png) no-repeat center;
    position: absolute;
    top: -5px;
    left: auto;
    right: 0;
    width: 36px;
    height: 34px;
}
a.slide.opened::after{
    content: "";
    background: url(../images/list-icon.png) no-repeat center;
    position: absolute;
    top: -5px;
    left: auto;
    right: 0;
    width: 36px;
    height: 34px;
}
a.slide.opened.close-minus::after{
    content: "";
    background: url(../images/plus-icon.png) no-repeat center;
    position: absolute;
    top: -5px;
    left: auto;
    right: 0;
    width: 36px;
    height: 34px;
}
.rent-entry-text li::after{
    content: "";
    background: url(../images/plus-icon.png) no-repeat center;
    position: absolute;
    top: 6px;
    right: 15px;
    width: 36px;
    height: 34px;
}
.rent-entry-part li{
    color: #282b2e;
    font: 700 16px/26px 'Montserrat', sans-serif;
    margin: 0 0 12px 0;
    background-color: #ffffff;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.08);
    padding:10px 20px;
}
.rent-entry-part .core-features-list li{
    background-color:none;
    box-shadow:unset;
    margin:0 0 0 0;
    padding-bottom: 0;
}
.rent-entry-part .core-features-list li::after{
    display: none;
}
.rent-entry-part li{
    position: relative;
}
.potential-part p{
    color: #808080;
    font: 500 15px/22px 'Montserrat', sans-serif;
    font-style: italic;
    padding: 11px 0 0 8px;
}
.potential-part .potential{
    color: #f25500;
    font: 500 15px/22px 'Montserrat', sans-serif;
}
.icon-bottom-part-left .sk_qty {
    padding: 0;
    color: #000000;
    font: 700 18px/22px 'Open Sans', sans-serif;
    width: 90px;
    border-radius: 6px;
    margin: 0 0 0 15px;
    border: 1px solid #a9a9a9;
    float: right;
    position: relative;
}
.icon-bottom-part-left input.sk_qtyInput {
    background: #fff;
    font: 700 18px/22px 'Open Sans', sans-serif;
    color: #000;
}
.icon-bottom-part-left span.sk_qtyAdd, .icon-bottom-part-left span.sk_qtyMinus {
    position: absolute;
    z-index: 99;
    right: 14px;
    cursor: pointer;
    color: #7f7f7f;
}
.icon-bottom-part-left span.sk_qtyMinus {
    bottom: 0;
}
/* ========================Product right part ended================================= */

/* ===========================You may also Like part started========================= */
.you-may-part h3{
    margin: -40px auto 0px;
    position: relative;
    font: 700 24px/40px 'Montserrat', sans-serif;
    color: #282b2e;
    text-align: center;
}
.you-may-part h3::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    z-index: -1;
}
.you-may-part h3 .you{
    color: #282b2e;
    font: 700 24px/40px 'Montserrat', sans-serif;
    background-color: #fff;
    padding: 0px 15px 0px 15px;
    margin: 63px 0px 43px 0px;
    display: inline-block;
}

/* ===========================Slider part started================================= */
.product-page-slide li{
    background-color: #f7f7f7;
    list-style: none;
    display: inline-block;
    padding: 20px 0px;
    height: 190px;
    overflow: hidden;
    margin: 0 0 0 19px;
}
.product-page-slide li::after,
.product-page-slide li::before{
    content: "";
    display: block;
    clear: both;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.product-page-slide a{
    text-decoration: none;
}
.product-page-slide img{
    max-width: 100%;
}
.product-page-slide figure{
    float: left;
    margin: 0px 9px 0px 0;
}
.product-page-slide .the-text{
    float: right;
}
.product-page-slide .the-dragon-text{
    float: right;
}
.the-text .all-price{
    display: block;
}
.the-text a.button{
    position: relative;
    /* padding: 0px 32px 0 0; */
}
.the-text a.button::after{
    content: "";
    background: url(../images/cart-icon-btn.png) no-repeat center;
    position: absolute;
    top: 6px;
    left: 15px;
    width: 42px;
    height: 34px;
}
.the-text a:hover::after{
    background: url(../images/cart-icon.png) no-repeat center;
}
.the-text .heading{
    color: #282b2e;
    font: 700 16px/20px 'Montserrat', sans-serif;
    height: 49px;
    overflow: hidden;
}
.the-text .all-text{
    color: #282b2e;
    font: 500 16px/20px 'Montserrat', sans-serif;
}
.the-text .all-price{
    color: #282b2e;
    font: 700 22px/36px 'Montserrat', sans-serif;
}
.product-page-slide.owl-carousel.owl-loaded.owl-drag .owl-nav.disabled{
    display: block !important;
}
.product-page-slide.owl-carousel{
    position: relative !important;
}
.product-page-slide .owl-nav.disabled .owl-prev{
    position: absolute !important;
    top: 0 !important;
    left: -57px !important;
    outline: none !important;
}
.product-page-slide .owl-nav.disabled .owl-next{
    position: absolute !important;
    position: absolute !important;
    right: -57px !important;
    top: 0 !important;
    outline: none !important;
}
.product-page-slide .owl-nav.disabled .owl-prev, .owl-nav.disabled .owl-next{
    font-size: 165px !important;
    line-height: 150px !important;
    color: #b2b2b2 !important;
}
.product-page-slide.owl-carousel .owl-item li.item img {
    width: 147px;
}
.product-page-slide.owl-carousel .owl-item li img {
    width: 147px;
}
/* ===========================Slider part ended================================= */

/* ===========================Terms of use part started================================= */
.terms h2,
.page-content h2{
    color: #f15f24;
    font: 700 38px/48px 'Montserrat', sans-serif;
    text-transform: capitalize;
}
.terms p,
.page-content p{
    color: #808080;
    font: 400 17px/27px 'Open Sans', sans-serif;
    padding: 0 0 20px 0;
    text-align: justify;
}
.terms h3,
.page-content h3{
    color: #282b2e;
    font: 700 30px/40px 'Open Sans', sans-serif;
    padding: 0 0 20px 0;
    text-transform: capitalize;
}
.terms h4,
.page-content h4{
    color: #808080;
    font: 500 21px/31px 'Open Sans', sans-serif;
    text-transform: capitalize;
}
/* ===========================Terms of use part ended================================= */

/* ===========================Privacy Policy part started================================= */
.privacy h2{
    color: #f15f24;
    font: 700 42px/52px 'Open Sans', sans-serif;
    padding: 0 0 20px 0;
    text-transform: capitalize;
}
.privacy p,.refund_policy p,.help p{
    color: #808080;
    font: 400 17px/27px 'Open Sans', sans-serif;
    padding: 0 0 20px 0;
    text-align: justify;
}
.privacy h3{
    color: #282b2e;
    font: 700 21px/31px 'Montserrat', sans-serif;
    padding: 0 0 20px 0;
    text-transform: capitalize;
}
.privacy h4{
    color: #808080;
    font: 500 21px/31px 'Montserrat', sans-serif;
    text-transform: capitalize;
}
.privacy strong{
    color: #808080;
    font: 500 18px/28px 'Montserrat', sans-serif;
    text-transform: capitalize;
}
.privacy ul{
    padding-bottom: 20px;
    margin: 0 0 0 50px;
    padding-left: 0;
    overflow: visible;
}
.editor_text .privacy  li{
    padding-left: 0;
    color: #808080;
    font: 400 17px/27px 'Open Sans', sans-serif;
    list-style: disc;
    text-align: justify;
}

/* ===========================Privacy Policy part ended================================= */

/* ===========================About us part started================================= */
.about{
    position: relative;
}
.about img{
    width: 100%;
}
.about-page .about .container{
    position: absolute;
    top: 33%;
    left: 0;
    right: 0;
}
.about h2{
    color: #fff;
    font: 700 42px/52px 'Montserrat', sans-serif;
    text-align: center;
    text-transform: capitalize;
}
.about p{
    text-align: justify;
    color: #fff;
    font: 700 25px/35px 'Montserrat', sans-serif;
    padding: 40px 53px 0 53px;
}
/* ===========================About us part ended================================= */
/* .solution-list li.active figure{
    position: relative;
}
.solution-list li.active figure::after{
    content:"";
    position: absolute;
    top:0;
    left: -27px;
    right: 0;
    bottom: 0;
    background: url(../images/shadow.png) no-repeat center;
    width: 260px;
    height: 300px;
    z-index: -1;
} */

/* =====================about css end================================*/
.wed-content-wrap{display: none;}
.wed-content-wrap.active{display: block;}
/* --------------------- */
.sk_filter {
    background: #f7f7f7;
    border-bottom: 2px solid #fff;
    -webkit-box-shadow: 0px 2px 0px -1px #d3d3d3;
    box-shadow: 0px 2px 0px -1px #d3d3d3;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 5px 10px;
    margin: 0 0 20px;
    line-height: 30px;
    font-size: 12px;
    color: #30363e;
    font-weight: 600;
}
.sk_display_view {
    list-style: none;
    padding: 0;
    margin: 0 30px 0 0;
    float: left;
}
.sk_pcount {
    float: right;
}
.sk_psort {
    float: right;
    display:none;
}
.sk_filterLink {
    display: none;
    margin: 0 30px 0 0;
    float: right;
    cursor: pointer;
}
.sk_sideFilter {
    margin-bottom: 20px;
    position: relative;
}
.sk_sideFilter > .subheading {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #f15f24;
    text-transform: uppercase;
    padding: 0 0 5px;
    margin: 0 0 8px;
    position: relative;
}
.sk_sideFilter .ul {
    padding: 5px;
    margin: 0;
    border: 1px solid #d3d3d3;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
}
.sk_filter:after, .fitlerSelectWrap:after {
    content: "";
    display: block;
    clear: both;
}
.sk_psort ul li {
    line-height: 26px;
    margin: 0 0 0 25px;
    padding: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    float: left;
    cursor: pointer;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    position: relative;
}
.sk_psort label, .sk_filterLink {
    line-height: inherit;
    color: #0084d9;
    font-weight: 700;
    margin: 0 10px 0 0;
    float: left;
}
.sk_display_view li {
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    font-size: 20px;
    float: left;
    margin: 0 5px 0 0;
    padding: 0;
    cursor: pointer;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.sk_display_view li:hover, .sk_display_view li.active {
    color: #e67919;
}
.sk_psort ul {
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}
.sk_sideblock ul li a {
    display: block;
    color: inherit;
    padding: 5px 0;
}
.sk_sideFilter .ul > li a {
    padding: 5px 10px;
}
.sk_sideFilter .ul > li {
    margin-bottom: 1px;
}
.products .sk_box .sk_text .subheading {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
}
.sk_price {
    color: #f15f24;
    font-size: 16px;
    font-weight: 700;
}
.icon_vdo{position: relative;}
.icon_vdo i:before {padding: 0 0 0 6px;}
.icon_vdo span {
    background: #fff;
    color: #f15f24;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.icon_vdo span::before, .icon_vdo span::after{
    content: '';
    background: rgba(255,255,255,0.2);
    position: absolute;
    top: -10px;
    right: -10px;
    bottom:-10px;
    left: -10px;
    border-radius: 50%;
    z-index: -1;
}
.icon_vdo span::after{
    top: -20px;
    right: -20px;
    bottom:-20px;
    left: -20px;
}
.core-features-list li::before {
    content: "\f00c";
    font: normal normal normal 14px/1 FontAwesome;
    color: #f15f24;
    font-size: 22px;
    line-height: 20px;
    padding: 0 15px 0 0;
    position: relative;
    top: 2px;
}
.slide-content {
    color: #999999;
    font: 400 16px/22px 'Open Sans', sans-serif;
    padding: 30px 0 0 0;
}

.table.no-table-border>tbody>tr>td, .table.no-table-border>tbody>tr>th, .table.no-table-border>tfoot>tr>td, .table.no-table-border>tfoot>tr>th, .table.no-table-border>thead>tr>td, .table.no-table-border>thead>tr>th{
    border-width: 0;
    vertical-align: middle;
}
.table.no-table-border thead {
    border-bottom: 2px solid #ccc;
}
.table.no-table-border thead th {
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    color: #808080;
}
.login .regBox .card {
    height: 420px;
    position: relative;
    text-align: center;
}
.login .card , .shipping .card, .dashboard .card, .shippingAddressWrapMain, .address-book .card{
    background: #ffffff;
    margin: 0 0 30px;
    padding: 20px;
    border: 0 solid #e7e7e7;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    line-height: 24px;

}
.dshbrdCard{
    position: relative;
}
.dshbrdCard .btn_right{
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.dashboard .card{min-height: 260px;}
.priceDetails .input_radio input[type="radio"] {
    margin: 6px 5px 0 0;
    width: auto;
    height: auto;
}
.cart_text .subheading a{
    color: #f15f24;
    font: 700 18px/26px 'Montserrat', sans-serif;
    padding: 0 0 0 4px;
}
.cart_img {
    height: 95px;
    width: 95px;
    background: #cccccc;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
.cart_img img{height: 70px;}
.cartprice{
    color: #808080;
    font: 700 16px/26px 'Montserrat', sans-serif;
}
.sk_qty .sk_qty_field {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 5px;
    float: left;
    line-height: 40px;
    color: #f15f24;
    padding: 0;
    font-size: 16px;
    text-align: center;
    box-shadow: -1px 1px 7px 0px rgba(0, 0, 0, 0.15);
}
.sk_qty input.sk_qty_field.sk_qtyInput {
    box-shadow: none;
    background: #fff;
    color: #000;
    width: 60px;
}
#cartForm .btn{
    text-transform: initial;
}
.sk_hcart_qty {
    color: #fff;
    background: #e67919;
    font-size: 12px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -10px;
    left: 25px;
}
.account_section{float: left;margin: 10px 0 0 0;}
.account_section :after{
    content: "";
    display: block;
    position: absolute;
    right: -17px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 3px;
    height: 3px;
    background: #414141;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.account_section:last-child:after{display: none;}
.account_section  span{cursor: pointer;}
.account_section  .dpurl, .responsive_nav .dpurl{
    width: 30px;
    height: 30px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 0 5px 0 0;
    float: left;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}
.account_section{
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: auto;
    right: 140px;
    z-index: 99;
    padding: 0;
    margin: 15px 0 0;
    line-height: inherit;
    color: #30363e;
    background: #fff;
    width: 200px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-align: left;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.5);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.5);
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.myaccount_wrap:hover .account_section{visibility: visible; opacity: 1; pointer-events: auto; margin: 0;}
.account_section li{height: auto; float: none; margin: 1px 0 0; padding: 0; position: relative; display: block; line-height: inherit;}
.account_section li:first-child{margin: 0;}
.account_section li:after{display: none;}
.account_section li a{padding: 10px; line-height: 18px; height: auto; position: relative; overflow: hidden; display: block;}
.account_section li a i{width: 15px; text-align: left;}
/* ------------------------------- */
.product_list .sk_box {
    height: 200px;
    /* width: 380px; */
    background: #f7f7f7;
    padding: 25px 15px 25px;
    text-align: left;
    position: relative;
}
.product_list .sk_box .btn_group {
    position: absolute;
    bottom: 10px;
    right: 30px;
    z-index: 99999;
}
.product_list .sk_box figure {
    float: left;
    margin-right: 0;
    width: 50%;
    margin-left: -12px;
}
.product_list .sk_box .sk_text {
    margin-top: 0;
    text-align: left;
    width: 50%;
    float: right;
}
.product_list .sk_box .sk_text .subheading {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    height: 45px;
    overflow: hidden;
    font-weight: 700;
}
.product_list .sk_box .sk_para {
    margin-bottom: 10px;
    text-align: left;
    min-height: auto;
}
.product_list a.btn.btn-sm {
    font-size: 15px;
    color: #fff;
    padding: 0 10px;
    line-height: 42px;
    height: 44px;
}
.card-total-part {
    max-width: 280px;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 40px;
}
.cart-main-price{
    color: #f15f24;
    font: 700 18px/26px 'Montserrat', sans-serif;
    padding: 0 0 0 4px;
}
.cart-main-price span{
    color: #808080;
}
.sk_dashboardNav {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: auto;
}
.sk_dashboardNav li {
    border-bottom: 1px solid #d3d3d3;
    margin: 0;
}
.login-form-wrap .card{
    background: #ffffff;
    margin: 0 0 30px;
    padding: 20px;
    border: 0 solid #e7e7e7;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    line-height: 24px;
}
.login-form-wrap .col-sm-6, .form_small.login-form-wrap .card{
    width: 50%;
    float: none;
    margin: 0 auto;
}
.login-form-wrap h1.heading{
    font-size: 20px;
    line-height: 25px;
    color: #f15f24;
    text-align: left;
    padding: 0 0 15px;
    text-transform: capitalize;
}
.login-form-wrap h1.heading span {
    border-bottom: 3px solid #f15f3f;
}

.login-form-wrap h1.heading span.already-account {
    border-bottom: none;
    font-size: 12px;
}
.login-form-wrap .goto-link {
    float: right;
    color: #808080;
    font-size: 14px;
    border-bottom: 3px solid transparent;
}
.login-form-wrap .goto-link:hover{
    color: #f15f24;
    border-bottom: 3px solid #f15f3f;
}
.shipping .card-total-part {
    max-width: unset;
}
.checkout .card-total-part, .payment-wrap{
    max-width: unset;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    background: #ffffff;
    margin: 0 0 30px;
    padding: 20px;
    border: 0 solid #e7e7e7;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.1);
    line-height: 24px;
}
.sk_dashboardNav li a {
    display: block;
    color: inherit;
    padding: 10px 0;
}
.dashboard .btn.btn-sm {font-size: 12px;}
.ordrshop {
    text-align: center;
    height: 195px;
    position: relative;
}
.ordrshop a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    min-width: 200px;
}
.change-password .form_small.login-form-wrap .card{width: 100%;}
section.review_block {
    margin: 50px auto 0;
    /*box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);*/
}
.review_block .review_box_shadow{
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
}
.review_block .rating_wrap .rating .fa-star{
    color: #f15f24;
}
.rating i{color: #ccc;}
.rating i.rated{color: #f7c63e;}
.rating i.rated:before {
    content: "\f005";
}
.rvw_left, .rvw_right{
    width: 50%;
    float: left;
}
.review_block .testimonial_list .sk_box:before, .review_block .testimonial_list .sk_box figure,.testimonial_list .sk_box:before{
    display:none;
}
.review_block .testimonial_list .sk_box {
    background-color: #fff;
    padding: 20px 20px;
    list-style: none;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
}
.review_block .withIcon.sk_box .sk_text {
    position: relative;
    padding: 0;
    margin: 0;
}
.details-page .product_list .sk_box {
    height: 300px;
}
.details-page .product_list .sk_box .sk_text .subheading {
    text-align: left;
    font-size: 18px;
    line-height: 24px;
    height: 45px;
    overflow: hidden;
    font-weight: 700;
}
.grid2_view > .ul > li {
    width: 100%;
}
.product_list.grid2_view .sk_box figure {
    width: 38%;
}
.product_list.grid2_view .sk_box .sk_text {
    width: 60%;
}
.product_list.grid2_view .sk_box {
    height: 350px;
}
.proDec{display: none;padding-bottom: 15px;}
.product_list.grid2_view .sk_box .proDec{display: block;}


/* .product .product_list .sk_box {height: auto;padding: 25px 15px 20px;}
.product .product_list .sk_box figure {
    float: none;
    margin-right: 0;
    width: 100%;
    border-radius: 0;
}
.product .product_list .sk_box .sk_text {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    float: none;
}
.product .product_list .sk_box .sk_text .subheading {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
} */
.product_list .sk_box a {
    color: #282b2e;
}
.sk_sideFilter .ul {
    padding: 0px;
    margin: 0;
    border: 1px solid #d3d3d3;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    border-bottom: 0px solid #d3d3d3;
    box-shadow: 1px 1px 10px 0 rgba(0,0,0,0.2);
}
.sk_sideFilter .ul > li {
    margin-bottom: 0px;
}
.sk_sideFilter .ul > li a {
    padding: 10px;
    display: block;
    color: inherit;
    font: 700 15px/22px 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #808080;
    text-decoration: none;
    position: relative;
    transition: all 0.5s ease;
    border-bottom: 1px solid #d3d3d3;
}
.sk_sideFilter .ul > li.active, .sk_sideFilter .ul > li:hover {
    background: #f15f24;
    color: #fff;
}
.sk_sideFilter .ul > li.active a, .sk_sideFilter .ul > li:hover a{
    color: #fff;
}
.product_list.product_slider .subheading a {width: 170px;}
.home-video .icon_vdo span {
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    height: 120px;
    width: 120px;
    border: 4px solid #999ba0;
    border-radius: 50%;
    font-size: 60px;
    line-height: 120px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.home-video .icon_vdo span  i {
    position: relative;
    left: 7px;
}
.home-video .icon_vdo span::before, .home-video .icon_vdo span::after{opacity: 0;}
.testi-btn-grp .btn{
    margin: 0 20px;
}
footer ul.f-social {
    margin: -18px 5px 20px 0;
}
.sk_pgallery img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sk_pgallery .single_img figure{
    height: 475px;
    position: relative;
}
.product-right-part:after{
    content: '';
    background: #f7f7f7;
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
.product .col-sm-6.stickySidebar{padding-right: 25px;}
.btn.btn-sm {
    font-size: 12px;
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
}
.sk_dashboardNav {
    list-style: none;
    padding-left: 0;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    max-width: 220px;
    margin: 0 auto;
}
.form_wrap.form_small {
    width: 60%;
    margin: 0 auto;
    padding: 0 30px 15px;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
}
.sk_dashboardNav li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #fff;
}
.sk_dashboardNav li a {
    display: block;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
    color: #171b38;
    text-transform: uppercase;
}
.sk_dashboardNav li.active a, .sk_dashboardNav li.active a i {
    background: #f15f24;
    color: #fff;
}
.table{
    font-size: 14px;

}

.table.no-border>tbody>tr>td, .table.no-border>tbody>tr, .table.no-border>thead>tr>th{
    border: none !important;
}
.table.no-border>thead>tr{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.table.no-border>tbody>tr.grandPrice {
    border: 1px solid #ccc !important;
    border-left: none !important;
    border-right: none !important;
    text-transform: uppercase;
    font-size: 18px;
    color: #f15f24;
}
.dashboard-head .heading {
    font: 700 24px/50px 'Montserrat', sans-serif;
    text-align: left !important;
    color: #f15f24;
    padding: 0 0 30px 0;
}
.dashboard-head .subheading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #1b1918;
}
.invoiceInfo .invTitle{
    width: 300px;
}
.invoiceInfo .invTitle {
    width: 130px;
}
.invoiceInfo.ul{
    margin-bottom: 0;
}
.invoiceInfo.ul li{
    margin-bottom: 12px;
}
.main-menu .menutoggle
    {
       display: none;
    }

.form_wrap.form_small.login-form-wrap {
    width: auto;
    margin: 0 auto;
    padding: 0;
    box-shadow: none;
}
/* HELPER_CSS
---------------------------------*/
.mt0{margin-top: 0;}
.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt25{margin-top: 25px;}
.mt30{margin-top: 30px;}
.mt35{margin-top: 35px;}
.mt40{margin-top: 40px;}
.mt45{margin-top: 45px;}
.mt50{margin-top: 50px;}
.mt55{margin-top: 55px;}
.mt60{margin-top: 60px;}
.mt65{margin-top: 65px;}
.mt70{margin-top: 70px;}
.mt75{margin-top: 75px;}
.mt80{margin-top: 80px;}
.mt85{margin-top: 85px;}
.mt90{margin-top: 90px;}
.mt95{margin-top: 95px;}
.mt100{margin-top: 100px;}
.mt_25{margin-top: -25px;}
.mt_85{margin-top: -85px;}
.mt_210{margin-top: -210px;}

.mb0{margin-bottom: 0;}
.mb10{margin-bottom: 10px;}
.mb15{margin-bottom: 15px;}
.mb20{margin-bottom: 20px;}
.mb25{margin-bottom: 25px;}
.mb30{margin-bottom: 30px;}
.mb35{margin-bottom: 35px;}
.mb40{margin-bottom: 40px;}
.mb45{margin-bottom: 45px;}
.mb50{margin-bottom: 50px;}
.mb55{margin-bottom: 55px;}
.mb60{margin-bottom: 60px;}
.mb65{margin-bottom: 65px;}
.mb70{margin-bottom: 70px;}
.mb75{margin-bottom: 75px;}
.mb80{margin-bottom: 80px;}
.mb85{margin-bottom: 85px;}
.mb90{margin-bottom: 90px;}
.mb95{margin-bottom: 95px;}
.mb100{margin-bottom: 100px;}

.ml0{margin-left: 0;}
.ml10{margin-left: 10px;}
.ml15{margin-left: 15px;}
.ml20{margin-left: 20px;}
.ml25{margin-left: 25px;}
.ml30{margin-left: 30px;}
.ml35{margin-left: 35px;}
.ml40{margin-left: 40px;}
.ml45{margin-left: 45px;}
.ml50{margin-left: 50px;}
.ml55{margin-left: 55px;}
.ml60{margin-left: 60px;}
.ml65{margin-left: 65px;}
.ml70{margin-left: 70px;}
.ml75{margin-left: 75px;}
.ml80{margin-left: 80px;}
.ml85{margin-left: 85px;}
.ml90{margin-left: 90px;}
.ml95{margin-left: 95px;}
.ml100{margin-left: 100px;}

.mr0{margin-right: 0;}
.mr10{margin-right: 10px;}
.mr15{margin-right: 15px;}
.mr20{margin-right: 20px;}
.mr25{margin-right: 25px;}
.mr30{margin-right: 30px;}
.mr35{margin-right: 35px;}
.mr40{margin-right: 40px;}
.mr45{margin-right: 45px;}
.mr50{margin-right: 50px;}
.mr55{margin-right: 55px;}
.mr60{margin-right: 60px;}
.mr65{margin-right: 65px;}
.mr70{margin-right: 70px;}
.mr75{margin-right: 75px;}
.mr80{margin-right: 80px;}
.mr85{margin-right: 85px;}
.mr90{margin-right: 90px;}
.mr95{margin-right: 95px;}
.mr100{margin-right: 100px;}

.pt0{padding-top: 0;}
.pt10{padding-top: 10px;}
.pt15{padding-top: 15px;}
.pt20{padding-top: 20px;}
.pt25{padding-top: 25px;}
.pt30{padding-top: 30px;}
.pt35{padding-top: 35px;}
.pt40{padding-top: 40px;}
.pt45{padding-top: 45px;}
.pt50{padding-top: 50px;}
.pt55{padding-top: 55px;}
.pt60{padding-top: 60px;}
.pt65{padding-top: 65px;}
.pt70{padding-top: 70px;}
.pt75{padding-top: 75px;}
.pt80{padding-top: 80px;}
.pt85{padding-top: 85px;}
.pt90{padding-top: 90px;}
.pt95{padding-top: 95px;}
.pt100{padding-top: 100px;}
.pt_25{padding-top: -25px;}
.pt_85{padding-top: -85px;}
.pt_210{padding-top: -210px;}

.pb0{padding-bottom: 0;}
.pb10{padding-bottom: 10px;}
.pb15{padding-bottom: 15px;}
.pb20{padding-bottom: 20px;}
.pb25{padding-bottom: 25px;}
.pb30{padding-bottom: 30px;}
.pb35{padding-bottom: 35px;}
.pb40{padding-bottom: 40px;}
.pb45{padding-bottom: 45px;}
.pb50{padding-bottom: 50px;}
.pb55{padding-bottom: 55px;}
.pb60{padding-bottom: 60px;}
.pb65{padding-bottom: 65px;}
.pb70{padding-bottom: 70px;}
.pb75{padding-bottom: 75px;}
.pb80{padding-bottom: 80px;}
.pb85{padding-bottom: 85px;}
.pb90{padding-bottom: 90px;}
.pb95{padding-bottom: 95px;}
.pb100{padding-bottom: 100px;}

.pl0{padding-left: 0;}
.pl10{padding-left: 10px;}
.pl15{padding-left: 15px;}
.pl20{padding-left: 20px;}
.pl25{padding-left: 25px;}
.pl30{padding-left: 30px;}
.pl35{padding-left: 35px;}
.pl40{padding-left: 40px;}
.pl45{padding-left: 45px !important;}
.pl50{padding-left: 50px !important;}
.pl55{padding-left: 55px;}
.pl60{padding-left: 60px;}
.pl65{padding-left: 65px;}
.pl70{padding-left: 70px;}
.pl75{padding-left: 75px;}
.pl80{padding-left: 80px;}
.pl85{padding-left: 85px;}
.pl90{padding-left: 90px;}
.pl95{padding-left: 95px;}
.pl100{padding-left: 100px;}

.pr0{padding-right: 0;}
.pr10{padding-right: 10px;}
.pr15{padding-right: 15px;}
.pr20{padding-right: 20px;}
.pr25{padding-right: 25px;}
.pr30{padding-right: 30px;}
.pr35{padding-right: 35px;}
.pr40{padding-right: 40px;}
.pr45{padding-right: 45px;}
.pr50{padding-right: 50px;}
.pr55{padding-right: 55px;}
.pr60{padding-right: 60px;}
.pr65{padding-right: 65px;}
.pr70{padding-right: 70px;}
.pr75{padding-right: 75px;}
.pr80{padding-right: 80px;}
.pr85{padding-right: 85px;}
.pr90{padding-right: 90px;}
.pr95{padding-right: 95px;}
.pr100{padding-right: 100px;}

.ph0 {padding-top: 0; padding-bottom: 0;}
.ph60 {padding-top: 60px; padding-bottom: 60px;}

.w0{width: 0;}
.w10{width: 10%;}
.w20{width: 20%;}
.w25{width: 25%;}
.w30{width: 30%;}
.w33{width: 33.33%;}
.w40{width: 40%;}
.w50{width: 50%;}
.w60{width: 60%;}
.w66{width: 66.66%;}
.w70{width: 70%;}
.w75{width: 75%;}
.w80{width: 80%;}
.w90{width: 90%;}
.w100{width: 100%;}
.h0{height: 0;}
.h100{height: 100%;}

.f16{font-size: 16px;}
.f18{font-size: 18px;}
.f20{font-size: 20px;}
.f24{font-size: 24px;}

.white{color: #fff;}
.black{color: #000;}
.red{color: #f00;}
.blue{color: #0047b3;}
.green{color: #9cbe2f;}

.float-left{
    float: left;
}

.float-right{
    float: right;
}

/* -------------------responsive--------------- */
/* -------------
    css codee:-remo
    date:-13 12 19
    satrt:-9:46
---------------- */


@media only screen and (min-width:320px) and (max-width:767px)
{
    .main-header .logo a {
        width: 100px !important;
        height: 50px !important;
        top: 0;
        z-index: 9;
    }
    .sk_fleft {
        float: none;
    }
    .menu ul
    {
        background: #f15f24;
    }
    .menu ul li
    {
        border-bottom: 1px solid #fff;
        padding: 10px !important;
    }
    .menu ul li a
    {
        color: #fff !important;
    }
    .main-header .main-menu .menu
    {
        position: absolute;
        left: 0;
        top: 60px;
        right: 0;
        float: none;
        display: none;
    }
    .main-menu .menutoggle
    {
        display: block;
        text-align: right;
        font-size: 18px;
        position: relative;
        top: 20px;
    }
    .main-header .main-menu .menu li
    {
        display: block;
        padding: 0 0 0 0 !important;
    }
    .main-header .main-menu .menu li a {
        font: 700 13px/40px 'Montserrat', sans-serif;
        display: block;
        padding: 0 10px;
    }
    .header-top .h-solcial-media
    {
        float: right;
        margin: 0 0 -1px 10px;
    }
    .header-top{
        position: relative;
    }
    .header-top a.btn
    {
        font: 700 10px/22px 'Montserrat', sans-serif;
        float: right;
        margin: 0 18px 0 0px;
    }
    .header-top-part
    {
        float:none;
        margin: 0 0 0 0;
        text-align: center;
    }
    .header-top .h-call::after
    {
        left: 51px;
    }
    .header-top .h-call
    {
        float: none;
        text-align:center;
        width: 100%;
        margin: 0 0 10px 0;
    }
    .header-top .h-call::after
    {
        position: absolute;
        top: 2px;
        left: -33px;
    }
    .home .main-header
    {
        position: relative;
        top: 1px;
    }
    .main-header .main-menu .cart
    {
        margin: 0;
        padding: 0 20px 0 1px;
        text-align: right;
        float: right;
        position: relative;
        top: 15px;
    }
    .main-header .main-menu .cart img{
        max-width: 85%;
    }
    .main-header .main-menu .cart a
    {
        top: -26px;
        right: 10px;
    }
	.main-header .logo
	{
		margin: 0;
		width: 46px;
	}
	.home .main-header .logo:before
	{
		position: unset;
		height: unset;
		width: unset;
		left: 0;
		top: 0;
		right: 0;
	}
	.header-top .h-call
	{
        font: 700 12px/30px 'Montserrat', sans-serif;
        margin:0 0 0 0;
	}
    .main-header .main-menu
    {
        padding: 0 0 0 0 !important;
        float: none;
    }
    .main-header .main-menu .cart::before
    {
        display: none;
    }
    .header-top .h-solcial-media
    {
        display: block;
        text-align: center;
        float: none;
        padding: 8px 0 10px 0;
        margin: 0 0 0 0;
    }
    .header-top .h-call
    {
        text-align: center;
        width: auto;
        float: none;
        position: relative;
        display: inline-block;
        margin: 0 10px;
    }
	.h-solcial-media li a
	{
		height: 25px;
		line-height: 25px;
        width: 25px;
        margin: 0 3px;
    }
    .main-menu
    {
        display: block;
    }
    .main-header{
        border-bottom:1px solid #ccc;
    }
    .dashboard .header-top-part .sk_fleft.myaccount_wrap{
        float: none;
    }
    .banner .btn.custom-solution, .scrollProduct
    {
        float: none;
        font-size: 11px;
        line-height: 35px;
        margin: 0 0 10px 0;
        padding: 0;
        width: auto;
        height: 35px;
    }
    .banner .btn::after, .banner .btn::before
    {
        display: none;
    }
    .banner .btn.custom-solution br
    {
        display: none;
    }
    .banner .btn.scrollProduct
    {
        font-size: 11px;
        line-height: 35px;
        width: auto;
    }
    .home .header-top
    {
        position: unset;
        left: 0;
        right: 0;
        top: 0;
        background-color: none;
        height: auto;
        overflow: unset;
    }
    .header-top a.btn
    {
        height: auto;
    }
    .header-top a.btn.regis
    {
        float: none;
        width: auto;
        margin: 0 auto;
    }
    .home-video .icon_vdo span i
    {
        position: relative;
        left: 1px;
        top: -13px;
    }
    .home-video .icon_vdo span i.fa.fa-play
    {
        font-size: 25px;
    }
    .home-video .icon_vdo span
    {
        height: 50px;
        width: 50px;
        font-size: 55px;
        line-height: 50px;
    }
    .home-video-part
    {
        padding: 50px 0 20px;
    }
    .home-text p
    {
        font: 500 13px/20px 'Montserrat', sans-serif;
        position: unset;
        padding: 20px 0 20px;
    }
    .home-text
    {
        border-radius: 0px;
    }
    .home .banner-text{
        top: -60px;
        right: 20px;
        bottom: auto;
        max-width: 60%;
        height: auto;
    }
    .packaged_solutions
    {
        padding: 30px 0 0 0;
    }
    .packaged_solutions .title
    {
        font: 700 20px/25px 'Montserrat', sans-serif;
    }
    .packaged_solutions .title span
    {
        font: 700 18px/25px 'Montserrat', sans-serif;
        margin-top: 7px;
        font-style: italic;
    }
    .packaged_solutions .solution-list li
    {
        width: auto;
        float: none;
        margin: 0;
        padding: 0px 0 15px 0;
        display: block;
        text-align: left;
    }
    .solutions_text h6
    {
        height: auto;
        padding: 0px 0 0px 0;
        line-height: 20px;
    }
    .packaged_solutions .solution-list li.active .wed-readmore::after
    {
        display: none;
    }
    .packaged_solutions .solution-list li.active .wed-readmore::before
    {
        display: none;
    }

    .packaged_solutions .solution-list li.active:after
    {
        display: none;
    }
    .solutions_text .sk_para
    {
        font: 500 16px/34px 'Montserrat', sans-serif;
        text-align: left;
    }
    ul.solution-list
    {
        padding: 0px 0 20px 0;
    }
    .packaged_solutions .solution-list li{
        background: #eee;
        padding: 5px 10px;
        border-bottom: 1px solid #ddd;
    }
    .packaged_solutions .solution-list li:last-child{
        border-bottom: 1px solid transparent;
    }
    .packaged_solutions .solution-list li.active
    {
        background: #f15f24;
        padding: 5px 10px;
    }
    .packaged_solutions .solution-list li.active h6,
    .packaged_solutions .solution-list li.active .sk_para{
        color:#fff;
    }
    .packaged_solutions .sk_box figure
    {
        display: none;
    }

    /* -----------------property dragon properrty-------------------- */
    .tab-content .content h2
    {
        font: 700 16px/20px 'Montserrat', sans-serif;
        margin: 20px 0 0 0;
    }
    .tab-content .tab figure
    {
        margin: 0 0 0 0;
    }
    .tab-content .sk_content h5
    {
        font: 700 13px/18px 'Montserrat', sans-serif;
    }
    .tab-content .content p, .owl-item .content p {
        font: 500 14px/22px 'Montserrat', sans-serif;
        text-align: left;
    }
    .tab-content .tab
    {
        padding: 0;
        box-shadow: none;
    }
    .tab-content
    {
        background: #fff;
    }
    .center_list
    {
        margin-right: 0;
    }
    .tab-content .content .tab_btngroup
    {
        font: 700 24px/35px 'Montserrat', sans-serif;
        display: block;
    }
    .tab-content .content a
    {
        font: 700 15px/22px 'Montserrat', sans-serif;
    }
    .tab-content .content .tab_btngroup .cart_btn
    {
        font: 700 14px/40px 'Montserrat', sans-serif;
        position: relative;
        padding: 0 20px 0 60px;
        height: 40px;
    }
    .tab-content .content .tab_btngroup .btn,
    .owl-item .content .tab_btngroup .btn{
        font: 700 14px/40px 'Montserrat', sans-serif;
        height: 40px;
    }
    .tab-content .content .cart_btn::before{
        top: 1px;
        left: 14px
    }
    .tab-content .content .tab_btngroup a
    {
        margin: 0 0 10px 0;
    }
    .tab-content
    {
        padding: 30px 0;
    }

    /* -------------custom-solution-part----------------- */
    .custom-solution-part, .custom-solution-part .container
    {
        padding: 0px;
    }
    .custom-solution-part .custom-solution-text h2
    {
        font: 700 20px/22px 'Montserrat', sans-serif;
    }
    .custom-solution-part .custom-solution-text p
    {
        font: 500 16px/25px 'Montserrat', sans-serif;
        padding: 15px 5px 20px;
    }
    .custom-solution-text a.btn
    {
        padding: 0 20px;
    }
    .custom-solution-part .custom-solution-text a.btn
    {
        font: 700 14px/25px 'Montserrat', sans-serif;
        height: 33px;
        line-height: 33px;
    }
    .custom-solution-text
    {
        padding: 50px 15px;
        width: auto;
        height: auto;
    }
    .tab-content .content .price
    {
        display: block;
    }
    /* --------------.why-choose-us ------------- */
    .why-choose-us
    {
        padding: 30px 0 0px;
    }
    .why-choose-us h2.title
    {
        font: 700 20px/25px 'Montserrat', sans-serif;
        padding: 0 0 10px 0;
    }
    .why-choose-us .title span
    {
        font: 700 18px/25px 'Montserrat', sans-serif;
        margin-top:0;
    }
    /* .why-choose-us .reasons-list
    {
        padding: 10px 0 20px 0;
        text-align: center;
    } */
    .reasons-list li h6
    {
        font: 700 12px/25px 'Montserrat', sans-serif;
        float: none;
        width: auto;
        text-align: center;
    }
    .reasons-list li
    {
        width: 44%;
        white-space: unset;
        text-align: center;
        margin: 0 7px 20px 7px;
        padding: 10px 3px;
        border: 1px solid #ccc;
    }
    .reasons-list li figure
    {
        float: none;
    }

    /* ----------------------our clients testimonials--------------- */
    .section.testimonial-part .sk_content h2.title
    {
        font: 700 17px/25px 'Montserrat', sans-serif;
    }
    .section.testimonial-part em
    {
        font: 700 15px/25px 'Montserrat', sans-serif;
        margin-top:0;
    }
    .section.testimonial-part
    {
        padding: 5px 0 0px 0;
    }
    .testimonial_list h4 span
    {
        font: 700 13px/19px 'Montserrat', sans-serif;
    }
    .testimonial_list h4
    {
        font: 700 14px/22px 'Montserrat', sans-serif;
        padding: 0 51px 0 85px;
        min-height: 40px;
    }
    .testimonial_list .testimonial-text p
    {
        font: 500 15px/25px 'Montserrat', sans-serif;
    }
    .testimonial_list .sk_box
    {
        height: 370px;
    }
    .testi-btn-grp .btn
    {
        margin: 0px 5px 15px;
        font: 700 15px/40px 'Montserrat', sans-serif;
        padding: 0 20px;
        line-height: 36px;
        height: 35px;
        min-width: 157px;
    }
    .btn_center.testi-btn-grp
    {
        margin-top: 30px;
    }
    .testimonial-part .testimonial_list::before
    {
        display: none;
    }
    .testimonial-part .testimonial_list
    {
        padding: 30px 0 10px;
    }
    .testimonial-part .title
    {
        padding: 0 0 0px 0;
    }
    /* ---------------top footer----------- */
    .top-footer
    {
        padding: 25px 0;
    }
    .top-footer h5
    {
        font: 500 17px/25px 'Montserrat', sans-serif;
    }
    .main-footer li a {
        font: 500 14px/20px 'Montserrat', sans-serif;
        display: inline-block;
    }
    .main-footer .logo
    {
        width: 120px;
    }
    .main-footer .logo a
    {
        width: 100% !important;
        height: auto !important;
        top:0;
    }
    .main-footer p {
        font: 500 14px/27px 'Montserrat', sans-serif;
        padding: 0 0 5px 28px;
    }
    .main-footer h5
    {
        font: 700 15px/23px 'Montserrat', sans-serif;
        padding: 5px 0;
        position: relative;
    }
    .main-footer h5::after{
        content:"\f0d7";
        color:#808080;
        font-size: 18px;
        position: absolute;
        top:8px;
        right:0;
        font-family:"FontAwesome";
    }
    .main-footer h5.arrow-down::after{
        content:"\f0d8";
    }
    .main-footer .f-content{
        display: none;
    }
    .main-footer .pl45
    {
        padding-left: 16px !important;
    }
    .main-footer .text-right
    {
        text-align: left;
    }
    .main-footer li:first-child
    {
        padding:0;
    }
    footer ul.f-social
    {
        margin: 0px 5px 0px 0;
    }
    footer ul.f-social li a
    {
        line-height: 30px;
    }
    .guarantee
    {
        padding: 10px 0 0 0;
    }
    .guarantee figure img{
        max-width: 80%;
    }
    .main-footer
    {
        padding: 10px 0;
    }
    .footer-menu li
    {
        display: inline-block;
        margin: 0 8px;
    }
    .footer-menu li a
    {
        font: 500 15px/22px 'Montserrat', sans-serif;
    }
    footer p {
        font: 500 12px/20px 'Montserrat', sans-serif;
        padding: 5px 0;
        text-align: left;
    }
    footer p br{
        display: none;
    }
    footer
    {
        padding: 0px 0 5px !important;
    }
    footer p.copyright
    {
        font: 500 12px/17px 'Montserrat', sans-serif;
        /* text-align: center; */
        /* border-top:1px solid #ddd; */
    }
    .footer-menu
    {
        padding: 7px 0;
    }

    /* ---------------about us page---------- */
    .about-us .heading
    {
        font-size: 25px;
        line-height: 24px;
        margin: 10px 0 0 0;
    }
    .bckgrnd_style .editor_text p
    {
        font: 700 16px/22px 'Montserrat', sans-serif;
        padding: 0 10px;
        text-align: inherit;
    }
    .about-us .bckgrnd_style .container
    {
        height: 210px;
    }
    .header-top
    {
        padding: 5px 0;
        height: auto;
        overflow:unset;
    }
    .main-header .logo:before
    {
        display: none;
    }
    /* --------------product page------------ */
    .sk_filter
    {
        margin: 20px 0 20px;
    }
    .details-page .product_list .sk_box .sk_text .subheading
    {
        text-align: left;
        font-size: 18px;
        line-height: 20px;
        height: auto;
        overflow: inherit;
        font-weight: 700;
    }
    .product_list .sk_box .sk_text
    {
        margin-top: 0;
        text-align: left;
        width: 100%;
        float: none;
        padding: 0 15px;
    }
    .product_list .sk_box figure
    {
        float: none;
        margin-right: 0;
        width: 100%;
        margin-left: 0;
    }
    .product_list ul .col-xs-6
    {
        width: 100%;
    }
    .product_list ul li .sk_box img{
        max-width: 60%;
    }
    .details-page .product_list .sk_box
    {
        height: auto;
    }
    .product_list .sk_box .sk_para
    {
        text-align:left;
    }
    .product_list .sk_price
    {
        margin: 0 0 15px 0;
    }
    .product_list .sk_box .btn_group
    {
        position: relative;
        bottom: 0;
        right: 0;
        text-align: right;
    }
    .product_list a.btn.btn-sm
    {
        font-size: 14px;
        height:auto;
    }

    .product_list.grid2_view .sk_box .sk_text
    {
        width: 100%;
        text-align: left;
    }
    .product_list.grid2_view .sk_box figure
    {
        width: auto;
    }

    /* ------------------property dragon management property------- */
    .buy-part-right p
    {
        font: 400 12px/26px 'Montserrat', sans-serif;
        margin: 0px 0 0 0px;
    }
    .buy-part-left h3
    {
        font: 500 22px/34px 'Montserrat', sans-serif;
    }
    .buy-part-left h2
    {
        font: 700 16px/24px 'Montserrat', sans-serif;
        padding: 0 0 0px 0;
    }
    .buy-part-left p
    {
        font: 500 12px/21px 'Montserrat', sans-serif;
    }
    .buy-part-right del
    {
        font: 500 15px/28px 'Montserrat', sans-serif;
    }
    .buy-part-right strong
    {
        font: 700 16px/23px 'Montserrat', sans-serif;
    }
    .buy-part-right
    {
        float: none;
    }
    .buy-part-left
    {
        float: none;
    }
    .product-buy-part
    {
        padding: 10px 10px 10px;
    }
    .star-ratting-wrap
    {
        padding: 0 0 20px 0;
    }
    .product-icon-bottom-part
    {
        margin: 25px 0 5px 0;
    }
    .icon-bottom-part-left input.sk_qtyInput
    {
        height: 36px;
        font: 700 18px/22px 'Open Sans', sans-serif;
    }
    .icon-bottom-part-left .sk_qty
    {
        border-radius: 0px;
        font: 700 18px/22px 'Open Sans', sans-serif;
    }
    .product-icon-bottom-part .icon-bottom-part-left
    {
        font: 700 17px/40px 'Open Sans', sans-serif;
    }
    .icon-bottom-part-right
    {
        margin: 0;
        float: right;
    }
    .icon-bottom-part-right .button
    {
        font: 700 14px/34px 'Montserrat', sans-serif;
    }
    .product-right-part:after
    {
        display: none;
    }
    .product .col-sm-6.stickySidebar
    {
        padding:0;
    }
    .product .col-sm-6.stickyContent
    {
        /*padding-left: 0;*/
        /*padding-right: 0;*/
        background: #f7f7f7;
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 20px;
    }
    .product-right-part-text h1
    {
        font: 700 19px/28px 'Montserrat', sans-serif;
    }
    .product-right-part-text .online-software
    {
        text-align: inherit;
        font: 700 16px/24px 'Montserrat', sans-serif;
        padding: 20px 0 5px 0px;
    }
    .product-right-part .product-right-part-text
    {
        padding: 45px 0px 10px 0px;
    }
    .product-right-part
    {
        background: #f7f7f7;
    }
    .product-right-part-text .org_text
    {
        color: #f15f24;
        font: 700 18px/26px 'Montserrat', sans-serif;
    }
    .product-right-part-text .dragon
    {
        font: 700 18px/30px 'Montserrat', sans-serif;
    }
    .slide-content
    {
        padding: 18px 0 5px 0;
    }
    .rent-entry-part li
    {
        box-shadow:none;
        margin: 0 0 10px 0;
    }
    .rent-entry-part .rent-entry-text
    {
        padding: 14px 17px 14px 17px;
    }
    .you-may-part h3 .you
    {
        margin: 40px 0px 42px 0px;
        font: 700 21px/30px 'Montserrat', sans-serif;
        margin: 30px 0px 45px 0px;
    }
    .you-may-part h3
    {
        margin: 0px auto 0px;
    }
    .product_list .sk_box
    {
        height: auto;
        padding: 14px 0 12px 0;
    }
    .product_list .sk_box .sk_text .subheading
    {
        text-align: center;
        height: auto;
    }
    .product_list.product_slider .subheading a
    {
        width: auto;
    }
    .you-may-part h3::before
    {
        top: 75px;
    }
    section.review_block .star-indicate
    {
        display: none;
    }
    .icon-bottom-part-left .sk_qty
    {
        margin: 0 0 15px 15px;
    }
    .icon-bottom-part-left .sk_qty
    {
        margin: 0 0 15px 15px;
        width: 65px;
    }
    .icon-bottom-part-left input.sk_qtyInput
    {
        padding: 0 10px;
    }
    .product-video
    {
        padding: 30px 0 0;
    }
    .product-icon-top-part .icon-part-right
    {
        margin: 8px 0px 0 49px;
        float: left;
    }
    .core-features-list li::before
    {
        float: left;
        margin: 0 0 7px 0;
    }
    /* ---------------------------customer srervice------------- */
    .custom-services .bckgrnd_style .bckgrnd_style_in .editor_text p
    {
        padding:0;
    }
    .custom-services .heading
    {
        font-size: 20px;
        line-height: 25px;
        margin: 0;
    }
    .custom-services .bckgrnd_style .bckgrnd_style_in
    {
        height: 220px;
    }
    .form-part .subheading
    {
        font-size: 18px;
        line-height: 25px;
    }
    .quote_form
    {
        width: auto;
    }
    .form-part label
    {
        font: 500 15px/20px 'Montserrat', sans-serif;
    }
    .btn_wr
    {
        margin: 3px 0 0 !important;
    }
    .btn_wr [type="submit"]
    {
        font: 700 16px/45px 'Montserrat', sans-serif;
    }
    .custom-services .section
    {
        padding: 50px 0 0;
    }
    .labelWrap
    {
        margin: 25px 0 10px;
    }
    .custom-services .bckgrnd_style .form-part
    {
        margin: 40px auto 20px;
    }
    .quote_form .labelWrap .btn_wr [type="submit"]
    {
        padding: 0 15px;
        min-width: 114px;
    }

    /* -----------------------contact us---------- */
    .contact-detail li .figure
    {
        float: none;
    }
    .contact-detail li:first-child
    {
        margin: 0 0px 0 0;
        text-align: center;
    }
    .editor_text .contact-detail li
    {
        display: block;
        height: auto;
        padding: 10px 10px;
        margin: 0 0 10px 0;
        overflow: inherit;
        width: auto;
        list-style-type: none;
        text-align: center;
    }
    .contact-detail li .figure
    {
        float: none;
        text-align: center;
    }
    .contact-us .section
    {
        padding: 25px 0;
    }
    .contact-us .heading
    {
        font-size: 22px;
        line-height: 8px;
        padding: 20px 0;
    }
    .contact-detail li p
    {
        font: 500 18px/20px 'Montserrat', sans-serif;
    }
    .contact-detail li h4
    {
        font: 700 17px/28px 'Montserrat', sans-serif;
        margin: 0 0;
        padding: 0 0;
    }
    .contact-detail li.we-help a {
        font: 700 14px 'Montserrat', sans-serif;
    }
    .contact-us .heading
    {
        padding: 20px 0 10px;
        margin-bottom: 10px;
    }
    .contact-us .form-part
    {
        padding: 40px 0 15px 0;
    }
    .contact-us .labelWrap .btn_wr [type="submit"]
    {
        padding: 0 15px;
        min-width: 114px;
    }
    .contact-detail li .fb-tw a
    {
        font: 500 16px 'Montserrat', sans-serif;
    }
    .contact-us .fb-tw
    {
        padding-top: 2px;
    }
    .contact-detail li img {
        max-width: 25%;
        height: auto;
    }
    /* ------------------product overview------------------- */
    .product-left-part .ratings h2
    {
        display: block;
    }
    .contract-generation-amp-leads .section
    {
        padding: 50px 0 30px;
    }

    /* --------------------my cart page------------------ */
    .table .sk_qty input.sk_qty_field.sk_qtyInput
    {
        float: none;
    }
    .sk_qty .sk_qty_field
    {
        float: none;
    }
    .card .btn_group.text-center a.sk_fleft
    {
        width: 100%;
        float: none;
        padding: 0 0 10px 0;
    }
    .card .btn_group.text-center .sk_fright.proceed_checkout
    {
        float: none;
    }
    .cart .section
    {
        padding: 50px 0 30px;
    }
    .cart .heading
    {
        padding: 10px 0;
    }

    /* --------------------login page------------ */

    .login-form-wrap .col-sm-6, .form_small.login-form-wrap .card
    {
        width: auto;
    }
    .form_wrap.form_small
    {
        width:auto;
        padding: 0;
        box-shadow: none;
    }
    .login-form-wrap .goto-link
    {
        float: right;
    }
    .login-form-wrap h1.heading
    {
        font-size: 15px;
        margin: 0 0 0 0;
        padding: 0;
    }
    .login .labelWrap .sk_fright
    {
        float: none;
    }
    .login .section
    {
        padding: 30px 0 3px;
    }
    .login .labelWrap
    {
        margin: 10px 0 10px;
    }

    /* ------------------------forgot password------------ */
    .forgot-password .labelWrap
    {
        margin: 12px 0 10px;
    }
    .forgot-password .section
    {
        padding: 30px 0 30px;
    }
    .forgot-password .labelWrap button[type="submit"]
    {
        padding: 0 30px;
    }

    /* ---------------register---------- */
    .register .section
    {
        padding: 30px 0 30px;
    }
    .register .labelWrap
    {
        margin: 10px 0 10px;
    }
/* =====dashboard==== */
    .dshbrdCard .btn_group.btn_right{
        text-align: left;
        margin: 10px 0;
    }
    .dshbrdCard .btn_group.btn_right a{
        margin: 0 0 10px 0;
    }
    .dashboard .card{
        padding: 20px 15px;
    }
    .btn.btn-sm {
        padding: 0 7px;
        line-height: 30px;
    }
    .account_section{
        position: fixed;
        bottom: 0;
        top: 0;
        right: -200px;
        width: 200px;
        border-radius: 0;
        transition: all 0.5s ease-in-out;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
    }
    .account_section.myacc-menu{
        right: 0px;
        transition: all 0.5s ease-in-out;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
    }
    .dashboard_sidebar{
        display: none;
    }

    /* ===================================== */
    #product_btn section {
        padding: 0 0 30px;
    }
    #product_btn .editor_text span{font-size: 15px !important;}
    #product_btn .heading{margin-bottom: 0;padding-bottom: 0;}
    /*.packaged_solutions {padding: 0;}*/
    .owl-carousel .owl-item img {
        display: block;
        margin: 0 auto;
        width: 50%;
    }
    .owl-carousel.solution-list .owl-nav [class*="owl-"] {top: 30%;}
    #product_btn .sk_content {text-align: justify;}
    #product_btn .sk_content h1, #product_btn .sk_content h2, #product_btn .sk_content h3, #product_btn .sk_content h4, #product_btn .sk_content h5, #product_btn .sk_content h6{
        font-weight: 600;
        margin-bottom: 5px;
        text-align: left;
    }
    #product_btn .price {
        font-size: 28px;
        color: #f15f24;
        font-weight: 700;
        line-height: 34px;
        width: 100%;
    }
    #product_btn .btn, #product_btn .button {
        font: 700 12px/40px 'Montserrat', sans-serif;
        height: 34px;
        line-height: 32px;
        /*min-width: unset;*/
        padding: 0 5px;
        margin-bottom: 5px;
        text-align: center;
    }
    #product_btn .button {
        padding-left:30px;
        background-size: 14%;
        background-position: 8px 7px;
    }
    #product_btn form#addtoCart, #product_btn .tab_btngroup a{
        float: left;
        margin-right: 10px;
    }
    #product_btn .tab_btngroup a:last-child{margin-right: 0px;}
    #product_btn h2 {
        margin-bottom: 15px;
        font-size: 22px;
        font-weight: 700;
    }
}



@media only screen and (width:320px)
{
    .rent-entry-part li
    {
        padding: 10px 0px;
    }
    .rent-entry-text h5
    {
        font: 700 15px/26px 'Montserrat', sans-serif;
    }
    .rent-entry-part .rent-entry-text
    {
        padding: 5px 17px 0px 17px;
    }
    .product-icon-top-part .icon-part-right
    {
        margin: 8px 28px 0 44px;
    }
    .icon-bottom-part-left .sk_qty
    {
        margin: 0 0 15px 15px;
        width: 65px;
    }
    .icon-bottom-part-left input.sk_qtyInput
    {
        padding: 0 10px;
    }
    .icon-bottom-part-right
    {
        margin: 0;
        float: none;
    }
    .icon-bottom-part-right .button
    {
        font: 700 16px/34px 'Montserrat', sans-serif;
    }
    .quote_form .labelWrap .btn_wr [type="submit"]
    {
        padding: 0 10px;
        min-width: auto;
        font: 700 13px/40px 'Montserrat', sans-serif;
        height: 40px;
        border-radius: 30px;
    }
    .contact-us .labelWrap .btn_wr [type="submit"]
    {
        padding: 0 10px;
        min-width: 76px;
        font: 700 13px/45px 'Montserrat', sans-serif;
        border-radius: 0px;
    }
    .product-icon-bottom-part .icon-bottom-part-left
    {
        font: 700 17px/47px 'Open Sans', sans-serif;
    }
    .icon-bottom-part-left .sk_qty
    {
        margin: 0 10px 5px 7px;
        width: 56px;
    }
    .icon-bottom-part-right .button
    {
        font: 700 13px/30px 'Montserrat', sans-serif;
        border-radius: 0;
        padding: 8px 10px 8px 62px;
        border-radius: 30px;
    }
    .icon-bottom-part-left input.sk_qtyInput
    {
        height: 46px;
    }
    .form_small.login-form-wrap .card
    {
        padding: 10px 15px;
    }
   .custom-services .btn_wr
    {
        margin: 0px 0 0 !important;
    }
    .form_small.login-form-wrap .card [type="submit"],
    .form_small.login-form-wrap .card [type="reset"],
    .form_small.login-form-wrap .card [type="button"]{
        font: 700 15px/35px 'Montserrat', sans-serif;
        height: 40px;
        outline: none;
    }
    .login-form-wrap .form_wrap .card form [type="submit"],
    .login-form-wrap .form_wrap .card form [type="reset"],
    .login-form-wrap .form_wrap .card form [type="button"]{
        font: 700 15px/35px 'Montserrat', sans-serif;
        height: 40px;
        outline: none;
    }
}

@media only screen and (width:375px){
    .header-top-part .btn.regis{
        min-width: 115px;
    }
    .header-top {
        padding: 10px 0 0 0;
    }
    [type="submit"], [type="reset"], [type="button"], .btn {
        font: 700 16px/40px 'Montserrat', sans-serif;
        height: 40px;
    }
    .owl-carousel.solution-list .owl-nav [class*="owl-"] {
        top: 18%;
    }
}


@media only screen and (min-width:768px) and (max-width:1024px)
{

    /* ==menu part== */
    .main-header .main-menu .menu li{
        padding: 0px 0 0 25px;
    }
    .main-header .main-menu .menu li a {
        font: 700 14px/20px 'Montserrat', sans-serif;
    }
    .main-header .main-menu .menu li:first-child{
        padding-left: 0;
    }
    .main-header .main-menu .cart {
        padding: 0 0 0 15px;
        margin: 0px 0 0 20px;
    }
    /* -----------------logo----------- */
    /*.home .main-header .logo:before*/
    /*{*/
    /*    display: none;*/
    /*}*/
    .main-header .logo
    {
        margin:-50px 0 0 0;
    }

    .home .main-header .main-menu
    {
        /*padding: 10px 0 0 0;*/

    }
    .main-header
    {
        padding: 12px 0;
    }
    .main-header .logo a
    {
        /*height: 35px !important;*/
        top: 0;
    }
    .why-choose-us .section
    {
        padding: 50px 0 0;
    }
    section.testimonial-part
    {
        padding: 20px 0 0;
    }
    .testimonial-part .title
    {
        padding: 0 0 20px 0;
    }
    .header-top .h-call
    {
        margin: 0 0 0 13px;
    }
    .main-header .logo::before
    {
        left: -9px;
        top: 0px;
        width: 130px;
        height: 130px;
    }
    .solutions_text h6
    {
        padding: 5px 0 10px 0;
        height:auto;
    }
    .main-header .main-menu
    {
        padding: 0;
    }
    .header-top a.btn
    {
        margin: 0 0 0 12px;
        font-size: 13px;
    }
    .home .banner-text
    {
        position: absolute;
        left: 0;
        opacity: 0.7;
        right: 15px;
        z-index: 1;
        width: 360px;
        height: auto !important;
        bottom: 0;
        bottom: 60%;
        transform: translate(0, -60%);
    }
    .banner .btn.custom-solution
    {
        font-size: 15px;
    }
    .header-top
    {
        height: 60px;
        padding: 12px 0 0;
    }

    .banner .btn
    {
        font-size: 15px;
    }
    .home-text p
    {
        font: 500 20px/30px 'Montserrat', sans-serif;
        padding: 40px 0;
    }
    .title
    {
        font: 700 30px/45px 'Montserrat', sans-serif;
    }
    .title span
    {
        font: 700 20px/25px 'Montserrat', sans-serif;
        margin-top:0;
    }
    .packaged_solutions .solution-list li
    {
        width: auto;
        float: none;
        margin-bottom: 25px;
    }
    .tab-content .content .price,
    .owl-item .content .price
    {
        margin: 0px 0 5px 0;
        font: 700 25px/35px 'Montserrat', sans-serif;
    }
    /*.tab-content .content .tab_btngroup span, .owl-item .tab_btngroup .price span {*/
    /*    font: 700 20px/34px 'Montserrat', sans-serif;*/
    /*}*/
    .tab-content .content .tab_btngroup .btn,
    .owl-item .content .tab_btngroup .btn{
        color: #fff;
        font: 700 14px/42px 'Montserrat', sans-serif;
        height: 42px;
    }
    .tab-content .tab {
        background-color: #fff;
        padding: 30px 30px 32px;
    }
    .tab-content .content .cart_btn::before {
        top: 1px;
        left: 14px;
    }
    .tab-content .content h2
    {
        font: 700 28px/32px 'Montserrat', sans-serif;
    }
    .tab-content .content h5, .owl-item .content h5 {
        font: 700 14px/18px 'Montserrat', sans-serif;
        padding: 12px 0;
    }
    .tab-content .content .tab_btngroup .btn,
    .owl-item .content .tab_btngroup .btn
    {
        text-align: center;
    }
    .home-video-part
    {
        padding: 50px 0 30px;
    }
    .custom-solution-text h2
    {
        font: 700 31px/41px 'Montserrat', sans-serif;
    }
    .custom-solution-text
    {
        height: auto;
        padding: 100px 0 100px 35px;
        width: auto;
    }
    .custom-solution-text p {
        font: 500 18px/23px 'Montserrat', sans-serif;
        color: #000000;
        padding: 10px 0;
    }
    .custom-solution-part
    {
        padding:0;
    }
    .reasons-list li h6
    {
        width: auto;
        float: none;
        font: 700 18px/25px 'Montserrat', sans-serif;
    }
    .reasons-list li figure
    {
        float: none;
    }
    .reasons-list li
    {
        width: 28%;
        text-align: center;
        white-space: inherit;
        height: 132px;
        border: 1px solid #ccc;
        padding: 20px 0 0 0;
        margin: 0 17px 20px 18px;
    }
    .section
    {
        padding: 0 0px 50px;
    }
    .editor_text .title em
    {
        font: 700 22px/30px 'Montserrat', sans-serif;
        margin-top: 0;
    }
    .why-choose-us
    {
        padding: 30px 0 0PX;
    }
    /* ====product page==== */
    .product-right-part .product-right-part-text {
        padding: 24px 15px 10px 15px;
    }

    /* ------------footer------- */
    .main-footer .logo a
    {
        width: 253px !important;
    }
    .main-footer
    {
        text-align: left;
    }
    .main-footer .pl45
    {
        padding-left: 0;
    }
    .main-footer .col-sm-4
    {
        width: 50%;
    }
    .main-footer .col-sm-3
    {
        width: 50%;
        text-align: left;
    }
    .main-footer .col-sm-2
    {
        width: 50%;
        margin: 0 0 30px 0;
    }
    .guarantee
    {
        padding: 0px 0 0 0;
    }
    .packaged_solutions .solution-list li.active:after
    {
        /*display: none;*/
    }
    .solution-list
    {
        /*padding: 20px 0 40px 0;*/
    }
    .tab-content .content .tab_btngroup
    {
        display: block;
        justify-content:inherit;
    }
    .tab-content .content .tab_btngroup .btn,
    .owl-item .content .tab_btngroup .btn
    {
        display: inline-block;
        margin: 0 0 10px 0;
    }
    .tab-content .content .tab_btngroup a
    {
        display: block;
    }

    /* ----------------------about us----------------- */
    .bckgrnd_style .editor_text p
    {
        padding: 0 0px 0 15px;
        text-align:inherit;
        font: 700 25px/38px 'Montserrat', sans-serif;
    }
    .about-us .bckgrnd_style .container
    {
        height: 480px;
    }
    .product_list .col-sm-6
    {
        width: 100%;
    }
    .details-page .product_list .sk_box
    {
        height: auto;
    }
    .details-page .product_list .sk_box .sk_text .subheading
    {
        height: auto;
    }
    .product_list .sk_box .btn_group
    {
        position: unset;
        bottom: 0;
        right: 0;
        margin:30px 0 0 0;
    }
    .top-footer h5
    {
        font: 500 22px/30px 'Montserrat', sans-serif;
    }
    .product-right-part-text h1
    {
        font: 700 23px/26px 'Montserrat', sans-serif;
    }
    .product-right-part-text span, .product-right-part-text .org_text {
        font: 700 20px/22px 'Montserrat', sans-serif;
        padding: 5px 0px;
    }
    .rent-entry-part li {
        padding: 10px 0px;
    }
    .rent-entry-text h5 {
        color: #282b2e;
        font: 700 16px/26px 'Montserrat', sans-serif;
    }
    .rent-entry-text .our-rent-entry
    {
        padding: 0 0 10px 0;
    }
    .core-features-list li::before
    {
        float: left;
        margin: 0 0 10px 0;
    }
    .icon-bottom-part-left{
        float: none;
    }
    .icon-bottom-part-left .sk_qty
    {
        width: 75px;
    }
    .icon-bottom-part-left input.sk_qtyInput
    {
        padding: 0 18px;
    }
    .icon-bottom-part-right
    {
        margin: 0;
        float: none;
        margin-top: 20px;
    }
    .icon-bottom-part-right .btn
    {
        width: 100%;
    }
    .buy-part-right
    {
        float: none;
    }
    .product-icon-top-part .icon-part-right
    {
        margin: 8px 0 0 50px;
        float: left;
    }
    .product-icon-top-part .icon-part-left {
        padding: 6px 5px 0px 42px;
    }
    .buy-part-right p
    {
        margin: 0px 0 0 0px;
    }
    .item .sk_text .btn_group .btn-sm
    {
        TEXT-ALIGN: center;
        line-height: 39px;
        height: 38px;
    }
    .item .sk_text .btn_group
    {
        margin: 8px 0 0 0;
    }
    .item .sk_box .sk_text .subheading
    {
        height: auto;
    }
    .product-left-part .ratings h2
    {
        display: block;
    }
    .product-right-part-text .online-software
    {
        padding: 20px 0 5px 0px;
    }
    .buy-part-right
    {
        padding: 0 0 10px 0;
    }
    .custom-services .bckgrnd_style .bckgrnd_style_in .editor_text p
    {
        padding: 0;
    }
    .bckgrnd_style .heading
    {
        font-size: 30px;
        margin-bottom: 0;
    }
    .form-part .subheading
    {
    font-size: 24px;
    line-height: 32px;
    margin-top: 20px;
    }
    .quote_form
    {
        width: auto;
    }
    .custom-services .section
    {
        padding: 50px 0 0;
    }
    .custom-services .bckgrnd_style .form-part
    {
        margin: 10px auto;
    }
    .contact-us .heading
    {
        padding: 0px 0;
    }
    .contact-detail li h4
    {
        font: 700 25px/27px 'Montserrat', sans-serif;
    }
    .editor_text .contact-detail li
    {
        height: auto;
        width: auto;
        margin: 0;
        DISPLAY: block;
        text-align: center;
        margin: 0 0 26px 0;
        padding: 25px 0;
    }
    .contact-detail li .figure
    {
        float: none;
    }
    .contact-us .labelWrap .btn_wr
    {
        margin: 10px 0 0 0;
        float: none;
    }
    .contact-us .labelWrap [type="submit"]
    {
        margin: 10px 0 0 0;

    }

    /* -------cart page----------- */
    .sk_qty .sk_qty_field
    {
        float: none;
    }

    .login-form-wrap .col-sm-6, .form_small.login-form-wrap .card
    {
        width:auto;
    }
    .form_wrap.form_small
    {
        width: auto;
        padding: 10px 15px;
    }
    .cart .heading
    {
        padding: 5px 0;
    }
    .cart .section
    {
        padding: 0px 0 50px;
    }
    /* ============testimonial_list------------------ */
    .testimonial_list li.col-sm-4
    {
        width: 100%;
    }
    .testimonials .section
    {
        padding: 20px 0;
    }
    .contact-us .section
    {
        padding: 50px 0 10px;
    }
    .login .section
    {
        padding:50px 0 0;
    }
    .testimonial_list .sk_text h4 span{
        font: 700 15px/27px 'Montserrat', sans-serif;
    }
    .testimonial_list .sk_box
    {
        height: 400px;
    }
    .testimonial_list .testimonial-text
    {
        height: auto;
    }
    /* ===footer==== */
    footer {
        padding: 0 0 20px 0!important;
    }
    footer ul.f-social {
        margin: 0px 5px 10px 0;
    }
    .top-footer{
        padding: 30px 0;
    }
    /*!* ============ *!*/
    /*.dashboard_sidebar{*/
    /*    display: none;*/
    /*}*/
}
@media only screen and (min-width:768px) and (max-width:991px)
{
    /* -----------------logo----------- */
    .home .main-header .logo:before
    {
        display: none;
    }
    .packaged_solutions .container{
        width: 100%;
    }
    .tab-content .content .tab_btngroup .btn, .owl-item .content .tab_btngroup .btn {
        color: #fff;
        font: 700 10px/34px 'Montserrat', sans-serif;
        height: 34px;
    }
    /* ============ */
    .dashboard_sidebar{
        display: none;
    }
}

@media only screen and (width:1024px)
{
    .home .banner-text
    {
        width: 500px;
        height: 170px;
    }
    .contact-us .labelWrap [type="submit"]
    {
        margin: 0px 0 0 15px;
        border-radius:0px
    }
    .main-header .logo a, .logo a
    {
        width: 170px;
        top: 10px;
        left: 20px;
    }
    .main-header .logo a
    {
        height: 96px !important;
    }
    .home .main-header .logo:before
    {
        display: block;
    }
    .home .main-header .logo
    {
        margin: -3px 0 0 0;
    }
    .home .main-header .main-menu
    {
        padding: 30px 0 0 0;
    }


}
@media only screen and (max-width:991px){
    .header-top, .main-header .logo::before{display: none;}
    .main-header {
        position: relative;
        top: 0;
        background: #181e29;
        padding: 0;
    }
    .main-header .logo {
        margin: 0;
        width: 100%;
        float: none;
        text-align: center;
        background: #fff;
    }
    .main-header .logo a {
        width: 206px !important;
        height: 100px !important;
        margin: 0 auto;
        display: block;
    }
    .main-header .container {
        width: 100%;
        padding: 0;
    }
    .main-header .main-menu.right-content::before, .main-header .main-menu.right-content::after{
        content:'';
        display: block;
        clear: both;
        margin: 0;
        padding: 0;
    }
    .main-header .main-menu {
        padding: 8px 15px !important;
        float: none;
    }
    .home .main-header {top: 0px;}
}


@media only screen and (min-width:992px) and (max-width:1024px)
{
    .tab-content .content .tab_btngroup .btn,
    .owl-item .content .tab_btngroup .btn{
        font: 700 14px/40px 'Montserrat', sans-serif;
    }
    .tab-content .content .tab_btngroup .button{
        font: 700 14px/30px 'Montserrat', sans-serif;
    }
    .tab-content .content .price, .tab-content .content .tab_btngroup a
    .owl-item .content .price, .owl-item .content .tab_btngroup a{
        font: 700 25px/45px 'Montserrat', sans-serif;
    }
}

@media only screen and (min-width:1025px) and (max-width:1200px)
{
    .home .banner-text{
        bottom: 70%;
        transform: translate(0, -70%);
        width: 500px;
        height: auto;
    }
    .main-header .main-menu .menu li{
        padding: 0px 0 0 20px;
    }
    .logo a{
        width: 250px;
    }
    .title {
        font: 700 45px/55px 'Montserrat', sans-serif;
    }
    .tab-content .content .tab_btngroup .btn,
    .owl-item .content .tab_btngroup .btn{
        font: 700 14px/45px 'Montserrat', sans-serif;
    }
    .tab-content .content .tab_btngroup .button{
        font: 700 14px/30px 'Montserrat', sans-serif;
    }
    .tab-content .content .price, .tab-content .content .tab_btngroup a,
    .owl-item .content .price, .owl-item .content .tab_btngroup a{
        font: 700 25px/45px 'Montserrat', sans-serif;
    }
}

@media only screen and (min-width:1200px) and (max-width:1300px)
{
    .home .banner-text{
        bottom: 80%;
        transform: translate(0, -80%);
        width: 600px;
        height: auto;
    }
}

@media only screen and (min-width:1300px) and (max-width:1400px)
{
    .home .banner-text{
        bottom: 90%;
        transform: translate(0, -90%);
    }
}

@media only screen and (min-width:992px) and (max-width:1024px)
{
    .home .main-header .logo:before {
        left: -11px;
        top: 0px;
    }
    .home .main-header .logo
    {
        margin: -30px 0 0 0;
    }
}


.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 49px;
    line-height: 44px;
    font-size: 1.5em;
    background: #fff;
    text-align: center;
    border-right: 1px solid;
    color: #007bb6;}

.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:hover{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}.btn-linkedin:active:hover,.btn-linkedin.active:hover,.open>.dropdown-toggle.btn-linkedin:hover,.btn-linkedin:active:focus,.btn-linkedin.active:focus,.open>.dropdown-toggle.btn-linkedin:focus,.btn-linkedin:active.focus,.btn-linkedin.active.focus,.open>.dropdown-toggle.btn-linkedin.focus{color:#fff;background-color:#00405f;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{background-image:none}
.btn-linkedin.disabled:hover,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin:hover,.btn-linkedin.disabled:focus,.btn-linkedin[disabled]:focus,fieldset[disabled] .btn-linkedin:focus,.btn-linkedin.disabled.focus,.btn-linkedin[disabled].focus,fieldset[disabled] .btn-linkedin.focus{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
.btn-linkedin .badge{color:#007bb6;background-color:#fff}
.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:hover{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}.btn-facebook:active:hover,.btn-facebook.active:hover,.open>.dropdown-toggle.btn-facebook:hover,.btn-facebook:active:focus,.btn-facebook.active:focus,.open>.dropdown-toggle.btn-facebook:focus,.btn-facebook:active.focus,.btn-facebook.active.focus,.open>.dropdown-toggle.btn-facebook.focus{color:#fff;background-color:#23345a;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{background-image:none}
.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled.focus,.btn-facebook[disabled].focus,fieldset[disabled] .btn-facebook.focus{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}
.btn-facebook .badge{color:#3b5998;background-color:#fff}





.bootbtn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 2;
    /* text-align: center; */
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    padding-left: 40%;
  }
  .bootbtn-blk{
      width: 100%;
      display: block;
      height: 3rem;
  }
  .bootbtn:focus,
  .bootbtn:active:focus,
  .bootbtn.active:focus,
  .bootbtn.focus,
  .bootbtn:active.focus,
  .bootbtn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
  }
  .bootbtn:hover,
  .bootbtn:focus,
  .bootbtn.focus {
    color: #fff;
    text-decoration: none;
  }

input.term-checkbox {
    margin: 4px 4px 0 0;
}

span.term-span{
    color: #808080;
    text-transform: none;
}

/* checkout form css*/
.directCreditCard{
    padding-top: 15px;
}
.directCreditCard input,
.directCreditCard select {
    line-height: 16px;
    height: 25px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 0px 10px;
}
.directCreditCard select {
    background-image: none;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
}
.directCreditCard label{
    margin: 0;
}

.directCreditCard .form-group {
    margin-bottom: 15px;
}

.number-block {
    background-color: black;
    border-radius: 5px;
    color: white;
    padding: 10px;
}

.pt_10 {
    padding-top: 10px;
}

.card-pay-button {
    padding: 5px 20px;
    background-color: #f15f24;
    color: white;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    float: right;
}

.card-pay-button:hover {
    cursor: pointer;
    background-color: grey;
}

.product_list .sk_box .btn_group_contact_us {
    position: absolute;
    bottom: 60px;
    right: 30px;
    z-index: 99999;
}