* {
	margin: 0px;
	padding: 0px;
}
.clear {
	clear: both;
}
body {
	color: #1b1b1b !important;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: roboto;
  src: url(../fonts/Roboto/Roboto-Bold.ttf);
  font-weight: 600;
} 
@font-face {
  font-family: roboto;
  src: url(../fonts/Roboto/Roboto-Regular.ttf);
  font-weight: 400;
} 
@font-face {
  font-family: roboto;
  src: url(../fonts/Roboto/Roboto-Medium.ttf);
  font-weight: 500;
}  
header .header {
	background: linear-gradient(to right, #e78200 50%, #1761a0 50%);
	height: auto;
	width: 100%;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.16);
	z-index: 9999999999;
	position: fixed;
	border-bottom: 1px solid white;
	-webkit-transition: all 0.5s ease;
	-moz-transition: position 10s;
	-ms-transition: position 10s;
	-o-transition: position 10s;
	transition: all 0.5s ease;
}
section {
	margin-top: 78px;
}
.header_logo {
	text-align: center;
	height: 76px;
	overflow: visible;
}
.header_logo::after {
    content: "";
    border-left: 115px solid transparent;
	border-right: 115px solid transparent;
	border-bottom: 130px solid white;
    width: calc(100% - 30px);
    height: 35px;
    display: inline-block;
    position: absolute;
    left: -17px;
    z-index: 99;
}
.header_logo img {
	width: 115px;
	margin-top: 25px;
	z-index: 99999999;
	position: relative;
}
.email_contact {
	font-family: roboto;
	font-weight: 400;
	font-size: 15px;
	color: white;
	width: 58%;
	float: left;
	padding: 14px 0px;
}
.email_contact .email a, .email_contact .contact a {
	color: white;
}
.email_contact .email {
	padding-bottom: 5px;
}
.social_ico {
	width: 40%;
	float: left;
	padding: 26px 0px;
}
.social_ico ul {
	list-style: none;
	margin: 0px;
}
.social_ico ul li {
	height: 25px;
	width: 25px;
	display: inline-block;
	margin: 0px 3px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
}
.social_ico ul li a {
	color: #e78200;
}
.social_ico ul li a:hover {
	text-decoration: none;
}
.social_ico ul li:hover {
	background: #1761a0;
	cursor: pointer;
	transition: ease-in-out 0.3s;
}
.social_ico ul li:hover a {
	color: white;
}
.social_ico ul li a i {
    margin-top: 5px;
}
.menu {
	display: inline-block;
}
.menu ul {
	list-style: none;
	margin: 0px;
}
.menu ul li {
	display: inline-block;
	text-align: center;
	padding: 27px 0px 27px 20px;
	position: relative;
}
.menu ul li a {
	color: white;
	font-family: roboto;
	font-weight: 500;
	font-size: 15px;
}
.menu ul li a:hover {
	text-decoration: none;
}
.menu ul li a i {
	font-size: 10px;
}
.menu ul li ul {
    position: absolute;
    left: 0px;
    top: 112px;
    background-color: #fff;
    width: 300px;
    text-align: left;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    z-index: -1;
    box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.2);
    transition: all 0.3s ease 0s;
    max-height: 500px;
	overflow-x: hidden;
	overflow-y: auto;
}
.menu ul li > ul li > ul {
    position: relative;
    top: 0;
    width: 100%;
    visibility: visible;
	opacity: 1;
	box-shadow: none;
	background: #eaf4fd;
	display: none;
	clear: both;
}
.menu ul li > ul li .icon i:hover {
	cursor: pointer;
}
.menu ul li > ul li > ul li a {
	color: black;
	font-size: 14px;
	padding-left: 15px;
}
.desktop.menu ul li:hover {
	cursor: pointer;
}
.desktop.menu ul li:hover a {
	color: #e78200;
}
.desktop.menu ul li:hover > ul li a {
	color: black;
}
.desktop.menu > ul > li:hover > ul{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    z-index: 999;
    visibility: visible;
    top: 77px;
}
.desktop.menu ul li > ul li > a i{
	font-size: 16px;
	font-weight: normal;
	float: right;
	margin-top: 4px;
}
.menu ul li > ul li:hover .icon {
	background: #e78200;
	color: white;
}
.menu ul li > ul li .icon {
	background: white;
	padding: 10px 0px;
	width: 10%;
	float: right;
	height: 41px;
	color: black;
}
/*.desktop.menu ul li ul li:hover > ul{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    z-index: 999;
    visibility: visible;
    top: 77px;
}*/
.menu ul li > ul li > ul li a {
	color: black;
	font-weight: 400;
	padding: 10px 10px 10px 20px;
	display: block;
}
.menu > ul > li > ul > li > a {
    color: black;
    font-weight: 400;
    padding: 10px;
    display: block;
    width: 90%;
	float: left;
	height: 41px;
}
.menu ul li > ul li > ul.open {
	display: block;
	z-index: 99
}
.menu ul li > ul li:nth-child(3) a, .menu ul li > ul li:nth-child(4) a {
	width: 100%;
}
.desktop.menu ul li > ul li:hover > a {
	color: white;
	background: #e78200;
}
.menu ul li > ul li {
    padding: 0px;
    width: 100%;
    display: inline-block;
    text-align: left;
}
.dropbtn {
  	background-color: transparent;
	color: white;
	padding: 5px;
	font-size: 16px;
	border: none;
	font-family: roboto;
	font-weight: 400;
	border: 1px solid white;
}
.dropbtn i {
	font-size: 10px;
}
.lang-dropdown {
	position: relative;
	float: right;
	padding: 20px 0px;
}

.lang-dropdown-content {
  	opacity: 0;
	position: absolute;
	background-color: #fff;
	min-width: 100px;
	box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.1);
	z-index: 1;
	right: 0;
	transition: transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);
	transition-delay: 0s, 0s, 0s;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	transition-delay: .3s;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.lang-dropdown a {
	color: black;
	padding: 5px 12px;
	text-decoration: none;
	display: block;
	font-family: roboto;
	font-weight: 400;
}
.lang-dropdown-content a:hover {background-color: #f7f7f7; text-decoration: none;}

.lang-dropdown:hover .lang-dropdown-content {opacity: 1; transform: scaleY(1);}

.lang-dropdown:hover .dropbtn {background-color: white; color: #1761a0;}

.lang-dropdown .flag.en {
    background-position: 0px 0px;
}
.lang-dropdown .flag.fr {
    background-position: -30px 0px;
}
.lang-dropdown .flag.ru {
    background-position: -61px -0px;
}
.lang-dropdown .flag {
    background: url('../images/flag.jpg');
    width: 26px;
	height: 20px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px;
    background-repeat: no-repeat;
}
.over-content {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: #1761a0;*/
	opacity: 0.3;
}
.banner-bottom-view-pro {
	background: #e78200;
	width: 100%;
	height: auto;
	padding: 20px 0px;
	position: relative;
}
.banner-bottom-view-pro .topline {
    font-size: 24px;
    color: white;
    font-family: roboto;
    font-weight: 400;
}
.banner-bottom-view-pro .bottomline {
	font-size: 24px;
	color: white;
	font-family: roboto;
	font-weight: 600;
}
.view-all-pro-btn {
    text-align: center;
    padding: 10px 15px;
    border: 1px solid white;
    border-radius: 3px;
    margin: 11px 0px;
    width: 100%;
	display: block;
}
.banner-bottom-view-pro a {
	font-size: 18px;
    font-family: roboto;
    font-weight: 400;
    color: white;
}
.view-all-pro-btn:hover {
	background: rgba(255,255,255,.3);
}
.banner-bottom-view-pro a:hover {
	color: #fff;
	text-decoration: none;
}
.banner-bottom-view-pro::after {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #e78200;
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
}
.why-us-home-sec {
    background: #eaf4fd;
    width: 100%;
    height: auto;
}
.why-us-men-back {
	background: url(../images/banner-men-back.png) no-repeat;
	background-size: cover; 
	width: 100%;
	padding-bottom: 70px;
	background-position: 0% 20% !important;
	border-bottom: 1px dashed #d2d2d2;
}
.headings {
	font-family: roboto;
	font-weight: 500;
	margin: 70px 0px 40px 0px;
	position: relative;
	font-size: 36px;
}
/*.headings::after {
    content: "";
    background: #e78200;
    width: 25px;
    height: 2px;
    position: absolute;
    bottom: -11px;
    left: 0;
}*/
.why-us-home-sec p {
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 1px;
}
.read-more {
	margin-top: 20px;
	color: #e78200;
	display: inline-block;
	font-size: 16px;
	font-family: roboto;
	font-weight: 400;
	letter-spacing: 1px;
}
.whyus-point {
    font-family: roboto;
    font-weight: 500;
    display: block;
    padding: 6px 0px;
    font-size: 16px;
    letter-spacing: 1px;
}
.part1 {
    width: 50%;
    float: left;
}
.part2 {
    width: 50%;
    float: left;
}
.why-us-points {
	display: inline-block;
	width: 100%;
	margin-top: 20px;
}
.why-us-home-sec .headings i {
	color: #1761a0;
	padding-right: 5px;
}
/*.headings.center::after {
    content: "";
    background: #e78200;
    width: 25px;
    height: 2px;
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translate(-50%);
}*/
.whyus-point i {
    padding-right: 10px;
    color: #1761a0;
}
.headings.center {
    font-family: roboto;
    font-weight: 500;
    margin: 70px 0px 40px 0px;
    position: relative;
    text-align: center;
    font-size: 36px;
}
.welcome-sec p {
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 1px;
}
.welcome-sec {
	margin-bottom: 70px;
}
.our-services-sec {
	width: 100%;
	background: url(../images/our-services-back.png) no-repeat;
	background-attachment: fixed;
}
.our-services-sec .our-servises-inner {
	background: rgba(23, 97, 160, 0.8);
	width: 100%;
}
.our-servises-inner .headings{
	color: white;
	margin-bottom: 20px;
	font-weight: 500;
}
.our-servises-inner .tag-line{
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: white;
}
.service-content {
	background: white;
	padding: 15px;
}
.service-title {
	font-family: roboto;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 25px;
	position: relative;
}
.service-desc p {
	margin: 0px;
	font-family: roboto;
	font-weight: 400;
	font-size: 15px;
}
.service-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #e78200;
    position: absolute;
    left: 0;
    bottom: -6px;
}
.service-item {
	box-shadow: 0px 0px 3px #1761a0;
}
.service-slider {
	margin: 70px 0px;
}
.service-slider .owl-carousel .owl-nav.disabled {
	display: block;
}
.service-slider .owl-carousel .owl-nav {
	position: absolute;
	top: 40%;
	width: 100%;
}
.service-slider .owl-carousel .owl-nav button.owl-prev {
	background: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	font-size: 35px;
	font-family: roboto;
	font-weight: 400;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	position: relative;
	left: -20px;
}
.service-slider .owl-carousel .owl-nav button.owl-next {
	background: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	font-size: 35px;
	font-family: roboto;
	font-weight: 400;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	float: right;
	position: relative;
	right: -20px;
}
.service-slider .owl-carousel .owl-nav button.owl-prev span,.service-slider .owl-carousel .owl-nav button.owl-next span {
	line-height: 30px;
	display: inline-block;
	top: -10px;
	position: relative;
}
.our-pro-sec {
	font-family: roboto;
	font-weight: 400;
	font-size: 14px;
	line-height: 25px;
}
.pro-slider {
	margin: 70px 0px;
}
.pro-slider .owl-carousel .owl-nav.disabled {
	display: block;
}
.pro-slider .owl-carousel .owl-nav {
	position: absolute;
	top: 40%;
	width: 100%;
}
.pro-slider .owl-carousel .owl-nav button.owl-prev {
	background: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	font-size: 35px;
	font-family: roboto;
	font-weight: 400;
	position: relative;
	left: -20px;
}
.pro-slider .owl-carousel .owl-nav button.owl-next {
	background: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	font-size: 35px;
	font-family: roboto;
	font-weight: 400;
	float: right;
	position: relative;
	right: -20px;
}
.pro-slider .owl-carousel .owl-nav button.owl-prev span,.pro-slider .owl-carousel .owl-nav button.owl-next span {
	line-height: 30px;
	display: inline-block;
	top: -10px;
	position: relative;
}
.our-pro-sec {
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 25px;
}
.pro-content {
	background: #f6f4f5;
	padding: 15px;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
}
.footer-wrapper {
	background: url(../images/footer-back.jpg) no-repeat;
	width: 100%;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
.footer-wrapper .footer-section{
	background: rgba(0, 37, 70, 0.8);
	width: 100%;
	padding-bottom: 70px;
}
.footer-wrapper .headings.center {
	color: white;
	margin-bottom: 40px;
	font-weight: 500;
}
.footer-wrapper input {
    width: 100%;
    border: none;
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(249, 249, 249, 1);
	color: white;
}
.footer-wrapper textarea {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(249, 249, 249, 1);
	color: white;
}
.footer-wrapper button {
	margin: 20px 0px;
	width: 100%;
	height: 50px;
	border: none;
	border-radius: 3px;
	background: #e78200;
	color: white;
	font-family: roboto;
	font-weight: 600;
	font-size: 18px;
}
.footer-wrapper button:hover {
	background: rgba(231, 130, 0,.9);
}
.footer-wrapper address {
	font-family: roboto;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 18px;
	color: white;
	display: inline-block;
}
.footer-wrapper .email {
	color: white;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
.footer-wrapper .email a{
	color: white;
	font-family: roboto;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 1px;
}
.footer-wrapper .contact {
	color: white;
	letter-spacing: 1px;
}
.footer-wrapper .contact a{
	color: white;
	font-family: roboto;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 1px;
}
.footer-wrapper .social_ico {
	width: 100%;
	padding: 0px 0px;
	margin-top: 20px;
}
.footer-wrapper .social_ico ul {
	list-style: none;
	margin: 0px;
}
.footer-wrapper .social_ico ul li {
	height: 30px;
	width: 30px;
	display: inline-block;
	margin: 0px 3px;
	background: rgba(255,255,255,1);
	border-radius: 50%;
	text-align: center;
}
.footer-wrapper .social_ico ul li a {
	color: #e78200;
}
.footer-wrapper .social_ico ul li a i {
	margin-top: 9px;
}
.footer-wrapper .social_ico ul li a:hover {
	text-decoration: none;
}
.footer-wrapper .social_ico ul li:hover {
	background: #1761a0;
	cursor: pointer;
	transition: ease-in-out 0.3s;
}
.footer-wrapper .social_ico ul li:hover a {
	color: white;
}
.footer-bottom-line .social_ico ul li a i {
    margin-top: 9px;
}
.footer-bottom-line {
    background: #1761a0;
    padding: 10px 0px;
    height: 50px;
}
.footer-bottom-line .copy-right {
    font-family: roboto;
    font-weight: 400;
    color: white;
    padding: 5px 0px;
	display: inline-block;
	width: 100%;
	letter-spacing: 1px;
}
.footer-menu {
	padding: 5px 0px;
	display: inline-block;
	width: 100%;
}
.footer-menu ul {
    list-style: none;
    float: right;
	margin: 0px;
}
.footer-menu ul li {
    display: inline-block;
    color: white;
	font-family: roboto;
    font-weight: 400;
}
.footer-menu ul li a {
	color: white;
	font-family: roboto;
    font-weight: 400;
    letter-spacing: 1px;
}
.lets-connect-form {
	padding-right: 30px;
}
.f-address-sc {
	display: inline-block;
	width: 100%;
}
.f-address-sc-back {
	display: inline-block;
	width: 100%;
}
.footer-wrapper input::placeholder {
    color: white;
    opacity: .8;
}
.footer-wrapper input:-ms-input-placeholder {
	color: white;
	opacity: .8;
}

.footer-wrapper input::-ms-input-placeholder {
	color: white;
	opacity: .8;
}

.footer-wrapper textarea::placeholder {
    color: white;
    opacity: .8;
}
.footer-wrapper textarea:-ms-input-placeholder {
	color: white;
	opacity: .8;
}

.footer-wrapper textarea::-ms-input-placeholder {
	color: white;
	opacity: .8;
}
#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #e78200;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
	height: 40px;
	width: 40px;
}
#myBtn i {
	position: relative;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    top: -7px;
}
#myBtn:hover {
 	background-color: #555;
}
.main_wrapper {
	overflow: hidden;
}
.overlay {
	display: none;
	background: rgba(0,0,0,.5);
	width: 100%;
	position: fixed;
	height: 100%;
	z-index: 9999999999999;
	left: 0;
	top: 0;
}
.nav-bar:hover {
	cursor: pointer;
}
.content-wrapper .page_title {
	width: 100%;
	text-align: center;
	padding: 100px 0px 60px 0px;
	background: rgba(0, 37, 70, 0.8);
}
.content-wrapper .page_title h1 {
	font-family: roboto;
	font-weight: 600;
	margin: 0px;
	font-size: 45px;
	color: #fff;
}
.page_title_back {
	background: url(../images/page-title-bg.jpg) no-repeat;
	height: 100%;
	width: 100%;
	background-attachment: fixed;
}
.content-middle {
	margin: 70px 0px;
}
.content-middle img {
	width: 100%;
	margin-bottom: 20px;
}
.content-middle p {
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 1px;
}
.contact-info p, .contact-info address {
	letter-spacing: 1px;
	font-family: roboto;
	font-weight: 400;
	font-size: 14px;
}
.why-pinemax .headings.center{
	color: white;
}
.why-pinemax {
    background: rgba(23, 97, 160, .95);
    margin-top: 70px;
    padding-bottom: 70px;
}
.why-pinemax h3 {
	font-family: roboto;
	font-weight: 400;
	margin: 40px 0px 20px 0px;
	font-size: 20px;
	color: white;
}
.why-pinemax p {
	padding-left: 25px;
	color: white;
}
.why-pinemax-back {
	background: url(../images/why-us-back.jpg) no-repeat;
	width: 100%;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
.page_title .breadcrumb {
	background-color: transparent;
	border-radius: 0px;
	color: white;
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	padding: 10px 0px;
}
.page_title .breadcrumb a {
	color: white;
}
.page_title .breadcrumb .active {
    color: #e78200;
}
.page_title .breadcrumb, .page_title  .breadcrumb p {
	margin: 0px;
}
.headings .colo-orange {
	color: #e78200;
}
.headings .colo-orange i {
	position: relative;
	top: 3px;
}
.contac-us-wrapper input {
    width: 100%;
    border: none;
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    background: rgba(238, 238, 238, 0.2);
	border: 1px solid rgb(162, 162, 162);
	color: #4f4f4f;
}
.contac-us-wrapper select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    width: 100%;
    border: none;
    padding: 10px 35px 10px 10px;
    height: 50px;
    margin-bottom: 20px;
    background: rgba(238, 238, 238, 0.2);
	border: 1px solid rgb(162, 162, 162);
	color: #4f4f4f;
	position: relative;
}
.contac-us-wrapper textarea {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(238, 238, 238, 0.2);
	border: 1px solid rgb(162, 162, 162);
	color: #4f4f4f;
}
.contac-us-wrapper button {
    margin: 20px 0px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 3px;
    background: #ffa025;
    color: white;
    font-family: roboto;
    font-weight: 600;
    font-size: 18px;
}
.select {
	position: relative;
}
.contac-us-wrapper .select::after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    z-index: 99;
    color: #737373;
    top: 16px;
    right: 20px;
}
.contac-us-wrapper .headings {
	margin: 0px 0px 40px 0px;
}
.heading-back {
	background: #e78200;
	padding: 10px 15px;
	border-radius: 5px 5px 0px 0px;
	color: white;
	font-family: roboto;
	font-size: 18px;
}
.contact-content {
	display: inline-block;
	background: #f7f7f7;
	width: 100%;
}
.contact-content .icon {
	font-size: 21px;
	text-align: center;
	display: block;
	color: #e78200;
}
.content-wrapper iframe {
	float: left;
}
.contact-content .col-md-3, .contact-content .col-md-9 {
	padding: 0px;
}
.product-list .content-prt h2 {
    background: #e78200;
	padding: 10px;
	color: white;
	font-size: 24px;
	text-transform: none;
	margin: 20px 0 20px 0;
	font-weight: 400;
	font-family: roboto;
	text-transform: uppercase;
}
.product-list{
    display: inline-block;
    width: 100%;
}
.product-list .content-prt {
    width: 100%;
    float: left;
}
.products-sec .content-prt ul {
	list-style: none;
	margin: 0px;
	padding-left: 10px;
	display: inline-block;
}
#gashobsandhoods2,#gashobsandhoods3{margin-top:25px;}
.products-sec .content-prt ul li h3 {
	color: #1761a0;
	font-family: roboto;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 30px;
}
.content-middle .products-sec p {
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 1px;
}
.world-map-foot-print {
	background: #1761a0;
	border-bottom: 1px dashed white;
}
.world-map-foot-print img{
	width: auto;
	object-fit: cover;
	transform: translate(-50%);
	left: 50%;
	position: relative;
}
.content-prt ul li ul li{
	padding-bottom: 10px;
    font-size: 16px;
	font-family: roboto;
	font-weight: 400;
	letter-spacing: 1px;
}
.products-sec .content-prt ul li ul {
    list-style: disc;
    list-style-position: inside;
    padding-left: 0px;
}
.content-prt h3 {
	font-weight: 400;
	font-family: roboto;
	font-size: 20px;
	padding-left: 15px;
}
#otherstationary .content-prt div h3 {
	color: #1761a0;
	font-family: roboto;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 30px;
	padding-left: 0px;
}
.content-prt table {
	border-collapse: collapse;
	width: 100%;
	font-family: roboto;
	font-size: 16px;
}

.content-prt td, .content-prt th {
	border: 1px solid #dddddd;
	text-align: center;
	padding: 8px;
}

.products-sec .content-prt ul li h3.pro-heading {
	padding: 0px;
	color: #333;
	line-height: 30px;
	font-size: 16px;
}
.our-services-sec p {
	font-size: 16px;
	color:white;
	text-align: center;
	font-family: roboto;
	letter-spacing: 1px;
	font-weight: 400;
}
.content-middle #coffee img {
	width: auto;
}
.content-middle .stationarys img {
	width: auto;
}
.pro-tp-heading-txt {
    text-align: center;
    font-size: 16px;
}
.pro-tp-heading-txt a {
	font-family: roboto;
	font-weight: 500;
}
/* for sticky header*/
header .header.sticky {
    position: fixed;
    top: 0px;
    transition: all 0.5s;
    z-index: 999999999999999999;
    animation: smoothScroll 1s forwards;
}
.header.sticky .header_logo img {
	width: 97px;
}
.header.sticky .header_logo {
	background: white;
}
.header.sticky .header_logo img {
	margin-top: 1px;
}
.footer-wrapper .footer-section .headings.center {
	margin-bottom: 0px;
}
.footer-section h3 {
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: center;
	color: white;
}
.header-top {
	background: #1761a0;
	padding: 5px 0px;
}
.header-top a {
	color: white;
}
.header-top ul.social_nav {
	list-style: none;
	margin: 1px 0px;
}
.header-top ul.social_nav li {
	display: inline-block;
	padding-right: 10px;
}
.header-top .contact, .header-top .email {
	color: white;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 1px 0px;
	font-weight: 400;
	font-family: roboto;
}
.header-top a:hover {
	color: white;
}
.header_logo::before {
    background: linear-gradient(to right,#e78200,#fff);
    content: "";
    height: 76px;
    left: 0;
    position: absolute;
    top: 0;
    width: 75px;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
/* end for sticky header*/

/* start for testimonials*/
.testimonial{
    border: 3px solid #1761a0;
    padding: 40px 0 25px 0;
    margin: 50px;
    text-align: center;
    min-height: 294px;
    position: relative;
}
.testimonial:before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    width: 80px;
    height: 80px;
    line-height: 100px;
    background: #fff;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 900;
    color: #e78200;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}
.testimonial .title{
    padding: 7px 0;
    margin: 0 -30px 20px;
    border: 7px solid #fff;
    background: #1761a0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}
.testimonial .title:before{
    content: "";
    border-top: 15px solid #1761a0;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -37px;
    left: 5px;
}
.testimonial .title:after{
    content: "";
    border-top: 15px solid #1761a0;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -37px;
    right: 5px;
}
.testimonial .post{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}
.testimonial .description{
    padding: 0 20px;
    margin: 0;
    font-size: 15px;
    color: #6f6f6f;
    letter-spacing: 1px;
    line-height: 30px;
}
.our-pro-sec {
	margin-top: 70px;
	margin-bottom: 70px;
}
.our-pro-sec .owl-nav,
.our-pro-sec .owl-dots{
    display: none;
}
/* end for testimonials*/

.top-pro-header ul {
	list-style: none;
}
.top-pro-header ul li {
	display: inline-block;
}
.top-pro-header ul li a {
	border-right: 1px solid white;
	color: white;
	padding: 10px 20px;
	display: inline-block;
	font-size: 18px;
	font-family: roboto;
	font-weight: 500;
	background: #1761a0;
	border-radius: 5px;
	margin-right: 5px;
}
.top-pro-header ul li:hover a {
	background: #e78200;
	text-decoration: none;
}
.dow_brocher_btn a {
	width: 100%;
	display: inline-block;
	text-align: center;
	background: #1761a0;
	padding: 10px 20px;
	font-size: 16px;
	font-family: roboto;
	font-weight: 500;
	color: white;
	border-radius: 50px;
}
.dow_brocher_btn:hover a {
	color: white;
	background: #e78200;
	text-decoration: none;
}
.contact .fa-whatsapp {
	color: #52c660;
}

.btnrow{padding:40px 0px 20px 0px;}

@media only screen and (min-width: 1200px) and (max-width: 1366px) {
	.why-us-men-back {
		background-position: bottom;
		background-size: contain;
	}
}
@media only screen and (min-width: 1200px) {
	.header-top {
		display: none;
	}
	.menu {
	    display: inline-block;
	    transform: none !important;
	}
	.hidden-xl {
		display: none;
	}
	.header.sticky .header_logo::after {
		display: none;
	}
	.header_logo::before, .header.sticky .header_logo::after {
		display: none;
	}
	.header_logo {
		height: 77px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header_logo::before, .header.sticky .header_logo::after {
		display: none;
	}
	.header_logo {
		height: 77px;
	}
	.header-top {
		display: none;
	}
	.top-pro-header ul li a {
		font-size: 15px;
		margin-right: 1px;
	}
	.social_ico ul li {
		margin: 0px 0px;
	}
	.menu ul li {
		padding-left: 12px;
	}
	.email_contact {
		font-size: 14px;
	}
	.social_ico ul {
		text-align: right;
	}
	.header_logo::after {
		left: -35px;
	}
	.banner-bottom-view-pro .bottomline {
		font-size: 20px;
	}
	.banner-bottom-view-pro .topline {
		font-size: 20px;
	}
	.view-all-pro-btn {
		margin: 5px 0px;
	}
	.why-us-men-back {
		background-size: 100%;
		background-position: bottom;
	}
	.service-slider .owl-carousel .owl-nav {
	    position: relative;
	    top: auto;
	    width: 10%;
	    transform: translate(-50%);
	    left: 50%;
	    margin-top: 20px;
	}
	.service-slider .owl-carousel .owl-nav button.owl-prev {
		left: 0;
	}
	.service-slider .owl-carousel .owl-nav button.owl-next {
		right: 0;
	}
	.pro-slider .owl-carousel .owl-nav {
		position: relative;
	    top: auto;
	    width: 10%;
	    transform: translate(-50%);
	    left: 50%;
	    margin-top: 20px;
	}
	.pro-slider .owl-carousel .owl-nav button.owl-prev {
		box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
		left: 0;
	}
	.pro-slider .owl-carousel .owl-nav button.owl-next {
		box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
		right: 0;
	}
	.menu {
	    display: inline-block;
	    transform: none !important;
	}
}
@media only screen and (max-width: 990px){
    .testimonial{ margin: 30px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-top {
		display: none;
	}
	header .header {
		position: relative;
	}
	section {
		margin-top: 0px;
	}
	.top-pro-header .col-md-9 {
		display: none;
	}
	.header_logo::after {
		background: linear-gradient(to left,#e78200,#fff);
	    content: "";
	    height: 76px;
	    right: 0;
	    position: absolute;
	    top: 0;
	    width: 75px;
	    left: auto;
	    border: none;
	}
	.menu > ul > li > ul > li > a {
		height: auto;
	}
	.header_logo {
		background: white;
	}
	.header_logo img {
		width: 86px;
		margin-top: 0px;
	}
	.banner-bottom-view-pro .topline {
		font-size: 16px;
	}
	.banner-bottom-view-pro .bottomline {
		font-size: 16px;
	}
	.banner-bottom-view-pro a {
		font-size: 16px;
	}
	.view-all-pro-btn {
		margin: 0px 0px;
	}
	.why-us-men-back {
		background: transparent;
	}
	.service-slider .owl-carousel .owl-nav {
	    position: relative;
	    top: auto;
	    width: 15%;
	    transform: translate(-50%);
	    left: 50%;
	    margin-top: 20px;
	}
	.service-slider .owl-carousel .owl-nav button.owl-prev {
		left: 0;
	}
	.service-slider .owl-carousel .owl-nav button.owl-next {
		right: 0;
	}
	.pro-slider .owl-carousel .owl-nav {
		position: relative;
	    top: auto;
	    width: 15%;
	    transform: translate(-50%);
	    left: 50%;
	    margin-top: 20px;
	}
	.pro-slider .owl-carousel .owl-nav button.owl-prev {
		box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
		left: 0;
	}
	.pro-slider .owl-carousel .owl-nav button.owl-next {
		box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
		right: 0;
	}
	.social_ico {
		padding: 25px 0px;
	}
	.social_ico ul li {
		margin: 0px 1px;
	}
	.menu {
	    display: none;
	}
	header .header {
		background: linear-gradient(to right, #e78200 40%, #1761a0);
	}
	.nav-bar {
		display: inline-block;
		font-size: 25px;
		color: white;
		padding: 20px 0px;
	}
	.nav-bar i {
		text-shadow: 0px 0px 3px rgba(0,0,0,0.4);
	}
	.menu {
		display: block;
	    position: fixed;
	    background: white;
	    left: 0;
	    height: 100%;
	    width: 300px;
	    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	    z-index: 9999999999999;
		top: 0;
		transform: translate(-105%);
		transition: ease-in-out .3s;
		padding: 10px;
	}
	.content-wrapper .page_title {
		padding: 60px 0px 30px 0px;
	}
	.content-wrapper .page_title h1 {
		font-size: 28px;
	}
	.content-middle img {
		margin-bottom: 20px;
	}
	.content-middle .products-sec img {
		width: 50%;
	}
	.menu ul li a {
		color: black;
		font-weight: 400;
		font-size: 18px;
	}
	.menu ul li {
	    display: block;
	    text-align: left;
		padding: 20px 20px;
	    position: relative;
	}
	.menu ul {
		margin: 30px 0px;
	}
	.menu ul li > ul.open {
		display: block;
	}
	.menu ul li ul {
	    position: relative;
		top: 0;
		width: 100%;
		opacity: 1;
		visibility: visible;
		z-index: 1;
	}
	.menu ul li > ul {
		margin: 10px 0px 0px 0px;
		box-shadow: none;
		display: none;
	}
	.menu ul li > ul li a {
		font-size: 16px;
	}
	.menu ul li a:hover {
		color: #e78200;
	}
	.menu ul li > ul li:hover .icon {
	    background: transparent;
	    color: #e78200;
	}
	.menu ul li ul {
		overflow: visible;
	}
}
@media only screen and (max-width: 767px) {
	.content-middle p {
		font-size: 12px;
	}
	.header_logo::after {
	    background: linear-gradient(to left,#e78200,#fff);
	    content: "";
	    height: 76px;
	    right: 0;
	    position: absolute;
	    top: 0;
	    width: 75px;
	    left: auto;
	    border: none;
	}
	header .header {
		position: relative;
	}
	section {
		margin-top: 0px;
	}
	.top-pro-header .col-md-9 {
		display: none;
	}
	.testimonial .title {
		font-size: 16px;
	}
	.testimonial .description {
	    padding: 0 10px;
	    font-size: 13px;
	    line-height: 18px;
	}
	.menu > ul > li > ul > li > a {
		height: auto;
	}
	.header_logo {
		background: white;
	}
	.header_logo img {
		width: 86px;
		margin-top: 0px;
	}
	.menu ul li > ul li:hover .icon {
	    background: transparent;
	    color: #e78200;
	}
	.menu ul li ul {
		overflow: visible;
		max-height: 100%;
	}
	header .header {
		background: #e78200;
	}
	.content-middle .products-sec img {
		width: 100%;
	}
	.content-middle #coffee img {
		width: 100%;
	}
	.nav-bar {
		display: inline-block;
		font-size: 25px;
		color: white;
		padding: 20px 0px;
	}
	.nav-bar i {
		text-shadow: 0px 0px 3px rgba(0,0,0,0.4);
	}
	.menu > ul > li:nth-child(2):hover {
		cursor: pointer;
	}
	.menu {
		max-height: 0;
	  	overflow-x: hidden;
	  	transition: max-height 0.5s ease-out;
	  	background-color: #37a4dd;
	  	width: 100%;
	  	position: absolute;
	  	z-index: 999999999999;
		top: 76px;
		left: 0;
		box-shadow: 0px 0px 10px 0px rgba(27, 56, 110, 0.6);
		overflow-y: auto;
	}
	.header .col-sm-2, .header .col-md-2 {
		position: inherit;
	}
	.banner-bottom-view-pro a {
		font-size: 12px;
	}
	.view-all-pro-btn {
		padding: 5px 5px;
	}
	.banner-bottom-view-pro .topline {
		font-size: 12px;
	}
	.banner-bottom-view-pro .bottomline {
		font-size: 12px;
	}
	.view-all-pro-btn {
		margin: 5px 0px;
	}
	.banner-bottom-view-pro {
		padding: 10px 0px;
	}
	.banner-bottom-view-pro::after {
	    border-left: 10px solid transparent;
	    border-right: 10px solid transparent;
	    border-top: 10px solid #e78200;
	    bottom: -10px;
	}
	.headings {
		margin: 40px 0px 20px 0px;
		font-size: 22px;
	}
	.why-us-home-sec p {
		font-size: 14px;
		margin: 0px;
	}
	.whyus-point {
		font-size: 14px;
	}
	.why-us-men-back {
		background: transparent;
		padding-bottom: 40px;
	}
	.headings.center {
		margin: 40px 0px 20px 0px;
	}
	.welcome-sec .row {
		margin: 0px 0px;
	}
	.welcome-sec p {
		font-size: 14px;
		margin: 0px;
	}
	.welcome-sec {
	    margin-bottom: 40px;
	}
	.service-slider {
		padding: 10px;
		margin: 40px 0px;
	}
	.service-slider .owl-carousel .owl-nav, .service-slider .owl-carousel .owl-dots {
		display: none;
	}
	.our-pro-sec {
		padding: 0px 10px;
	}
	.our-pro-sec .owl-carousel .owl-nav, .our-pro-sec .owl-carousel .owl-dots {
		display: none;
	}
	.pro-slider {
	    margin: 40px 0px;
	}
	.footer-wrapper .footer-section {
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
	}
	.footer-bottom-line {
		height: auto;
		text-align: center;
	}
	.footer-menu ul {
		float: none;
	}
	.content-wrapper .page_title {
		padding: 60px 0px 30px 0px;
	}
	.content-wrapper .page_title h1 {
		font-size: 28px;
	}
	.content-middle img {
		margin-bottom: 20px;
	}
	.content-middle {
		margin: 40px 0px;
	}
	.contact-content {
		margin-bottom: 30px;
	}
	.product-list .content-prt {
		padding: 0px;
	}
	.products-sec {
		padding: 0px;
	}
	.content-middle .products-sec p {
		font-size: 14px;
	}
	.product-list {
		margin: 30px 0 0px 0;
	}
	.menu ul li a {
		color: white;
		font-weight: 400;
		font-size: 15px;
		letter-spacing: 1px;
		padding: 10px 20px;
		display: inline-block;
		width: 100%;
	}
	.menu ul li {
	    display: block;
	    text-align: left;
		padding: 0px;
	    position: relative;
	    border-bottom: 1px solid white;
	}
	.menu ul li a i {
	    float: right;
	    position: relative;
	    top: 8px;
	}
	.menu ul li:last-child {
	    border-bottom: none;
	}
	.menu ul li:first-child {
	    border-top: 1px solid white;
	}
	.menu ul {
		margin: 0px 0px;
	}
	.menu ul li > ul.open {
		display: block;
	}
	.menu ul li ul {
	    position: relative;
		top: 0;
		width: 100%;
		opacity: 1;
		visibility: visible;
		z-index: 1;
	}
	.menu ul li > ul {
		margin: 10px 0px 0px 0px;
		box-shadow: none;
		display: none;
	}
	.menu ul li > ul li a {
		font-size: 14px;
	}
	.menu ul li:hover {
		background: #1761a0;
	}
	.menu ul li a:hover {
		color: white;
	}
	.menu ul li > ul.open > li:hover {
		background: #f5f5f6;
	}
	.menu ul li > ul.open > li:hover a {
		color: black;
	}
}
@media only screen and (max-width: 575px) {
	.dow_brocher_btn a {
		margin-bottom: 20px;
	}
	.world-map-foot-print img {
		width: 836px;
	}
	.headings.center {
		font-size: 26px;
	}
	.our-services-sec p {
		font-size: 12px;
	}
	.pro-slider {
		padding-left: 20px;
		padding-right: 20px;
	}
	.header_logo::after {
	    background: linear-gradient(to left,#e78200,#fff);
	    content: "";
	    height: 76px;
	    right: 0;
	    position: absolute;
	    top: 0;
	    width: 75px;
	    left: auto;
	    border: none;
	}
	.header_logo {
		background: white;
	}
	.header_logo img {
		margin-top: 3px;
		width: 80px;
	}
	.header .col-xs-8 {
		width: 40%;
	}
	.header .col-xs-4 {
		width: 60%;
	}
	.banner-bottom-view-pro {
		display: none;
	}
	.carousel-indicators {
		display: none;
	}
	.carousel-inner .item {
	    height: 150px;
	} 
	.carousel-inner .item img {
		object-fit: cover;
		height: 152px !important;
	}
	.headings {
	    margin: 20px 0px 10px 0px;
	    font-size: 18px;
	}
	.why-us-home-sec p {
		font-size: 12px;
	}
	.part1, .part2 {
		width: 100%;
		float: none;
	}
	.whyus-point {
	    font-size: 12px;
	}
	.read-more {
		margin-top: 10px;
		font-size: 12px;
	}
	.why-us-men-back {
		padding-bottom: 20px;
	}
	.welcome-sec p {
		font-size: 12px;
	}
	.headings.center {
	    margin: 20px 0px 10px 0px;
	}
	.welcome-sec {
	    margin-bottom: 20px;
	}
	.our-servises-inner .tag-line {
		font-size: 12px;
	}
	.service-desc p {
		font-size: 12px;
	}
	.service-title {
		font-size: 16px;
	}
	.service-slider {
		margin: 20px 0px;
	}
	.our-pro-sec {
		font-size: 12px;
		line-height: 20px;
	}
	.footer-wrapper address, .footer-wrapper .email a, .footer-wrapper .contact a {
		font-size: 14px;
	}
	.footer-wrapper button {
		margin: 0px 0px;
		font-size: 14px;
		height: 40px;
	}
	.footer-wrapper input {
		height: 40px;
		margin-bottom: 10px;
	}
	.footer-wrapper textarea {
		margin-bottom: 10px;
	}
	.footer-bottom-line .copy-right {
		font-size: 12px;
	}
	.footer-menu ul li a {
		font-size: 12px;
	}
	.footer-wrapper .headings.center {
		margin-bottom: 10px;
	}
	.footer-bottom-line {
		padding: 0px;
	}
	#myBtn {
		display: none !important;
	}
	.product-list {
		margin: 0px 0 0px 0;
	}
	.product-list .content-prt h2 {
		margin: 0px 0 20px 0;
		font-size: 20px;
	}
	.products-sec .content-prt ul {
		padding-left: 0px;
	}
	.content-prt ul li ul li {
		font-size: 14px;
	}
	.products-sec .content-prt ul li h3 {
		line-height: 20px;
		font-size: 16px;
	}
}