@import url(basic.css);




/* BOOTSTRAP NAVBAR CUSTOMIZATION */

.navbar.bg-light {
	background: var(--yellow) !important  ;
	border-bottom: 1px solid #bbb ;
	padding: 0;
	box-shadow: 0 2px  14px 0 rgba(0,0,0,0.4);
}
.navbar-nav {
	justify-content: center !important;
	width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
	color:  #fff;;
	font-size: 20px;
	font-weight: 400;
	padding-left: 20px;
	padding-right: 20px  ;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
	background: var(--orange)    ;
}
.dropdown-toggle::after {
	display: none;
}

.navbar-toggler {
	border: none;
}
.dropdown-menu {
	margin-top: -10px;
	font-size: 16px;
	padding: 0;
	border: none;
	border-radius: 0;
    background: var(--orange) !important  ;
	color:#fff;
	min-width: 300px;
}

.nav-link.dropdown-toggle.show {
    background: var(--orange) !important  ;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: -3px;
}


.dropdown-item {
	color: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.dropdown-item:hover {
	color: #fff;
	background: rgba(0,0,0,0.1);
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    /* padding-right: calc(var(--bs-gutter-x) * .5); */
    /* padding-left: calc(var(--bs-gutter-x) * .5); */
    margin-right: auto;
    margin-left: auto;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none; 
}

/* END NAVBAR */

/* HEADER */


header {
		margin: 70px auto 10px;
}

a.logo {
	width: 80%;
	max-width: 250px;
	height: 100px;
	background: url(../images/logo.png) center center no-repeat;
	background-size: contain;
	display: block;
	margin: 0 auto;
}

header .phones {
	margin: 25px auto 25px;
}

header .phone-link {
	display: block;
	text-align: center;
	font-size: 20px;
	color: var(--brown);
	font-weight: 700;
	font-family: 'Open Sans';
}
header .phone-link span { 
	color: #848484; 
}


header .open-request {
	display: block;
	text-align: center;
	font-size: 20px;
	background: var(--orange);
	font-weight: 400;
	color: #fff;
	max-width: 260px;
	margin: 5px auto;
	padding: 5px 15px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}




header .open-request:hover {
	background: var(--brown);
}

.home-banner {
	width: 100%;
	margin: 0 auto;
	position: relative;
}


h1.home-banner-text {
	position: absolute;
	display: block;
	width: 100%;
	padding: 30px 20%;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	color:#fff;
	text-align: center;
	margin: 0;
		font-size: 24px;
}

@media (max-width: 992px) {
	h1.home-banner-text {
		position: relative;
		display: block;
		width: 100%;
		padding: 20px 15px;
		bottom: none;
		left: none;
		background: rgba(0,0,0,0.7);
		font-size: 20px;
	}

}


h1.home-banner-text span{
	display: block;
	font-size: 30px;
}


h2.home {
	font-weight: 700;
	font-size: 34px;
	margin: 40px auto 20px;
	text-align: center;
	color: #ddd;
	text-transform: uppercase;  
	font-family: 'Open Sans';
}

.home-service-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}


.home-service {
	margin: 0px auto;
	position: relative;
	overflow: hidden
	  &:before 
		content: ''
		position: absolute
		top: 0
		left: 0
		width: 1.5em
		height: 100%
		background-color: rgba(#fff, 0.6)
		transform: translateX(-4em) skewX(-45deg)
	  &:hover 
		&:before 
		  animation: lareAnimation 0.5s 
		  
		  @keyframes lareAnimation
		  from 
			transform: translateX(-4em) skewX(-45deg)
		  to 
			transform: translateX(10em) skewX(-45deg)


}

 

@keyframes flareAnimation {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}


.home-service1 {
	background: var(--orange);
	padding: 0 !important;
}

.home-service2 {
	background: var(--green);
	padding: 0 !important;
}

.home-service3 {
	background: var(--blue);
	padding: 0 !important;
}

.home-service .dark  {
	display: block;
	padding: 15px 15px;
	background: rgba(0,0,0,0.3);
}

.home-service .dark img {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}


.home-service .dark span {
	display: block; 
	margin: 0 auto;
	color:#fff;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
}

.home-service .links {
	display: block; 
	margin: 0 auto;
	padding: 15px 25px;;
}


.home-service .links a{
	display: block; 
	margin: 10px auto;
	color: #fff;
	font-size: 16px;
	font-family: 'Open Sans';
	font-weight: 700;
}

.home-service .links a:hover{
	text-decoration: underline;
}


.home-about {
	min-height: 200px;
	margin: 0px;
	background: #ddd;
}

.home-about-text {
	padding: 20px 25px;
}

.home-about-text p {
	margin: 10px auto;
	font-family: 'Open Sans';
}

.home-about-text p.position {
	margin: 0px auto;
	font-family: 'Oswald';
	font-size: 15px;
	text-align: right;
}


.home-about-text p.director-name {
	margin: 0px auto;
	font-family: 'Oswald';
	font-size: 25px;
	text-align: right;
}


.home-testimonial {
    background:#f2f2f2;
    padding: 20px 15px;
}


.home-testimonial p {
    margin: 10px auto;
    color:#666;
    text-align: center;
    font-family: 'Open Sans';
}


.home-testimonial p.name {
    margin: 10px auto;
    color:var(--brown);
    
    font-family: 'Oswald';
    font-size: 14px;
}

.home-testimonial-link {
    display: block;
    font-size: 17px;
    max-width: 300px;
    padding: 10px 15px;
    color:#fff;
    margin: 20px auto;
    text-align: center;
    background: var(--orange);
}

.home-testimonial-link:hover { 
    background: var(--brown);
}




.form-request-wrapper {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#995b10+0,995b10+50,e38716+50,ff7f04+100 */
background: #995b10; /* Old browsers */
background: -moz-linear-gradient(left,  #995b10 0%, #995b10 50%, #e38716 50%, #ff7f04 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #995b10 0%,#995b10 50%,#e38716 50%,#ff7f04 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #995b10 0%,#995b10 50%,#e38716 50%,#ff7f04 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#995b10', endColorstr='#ff7f04',GradientType=1 ); /* IE6-9 */
min-height: 200px;
margin: 30px auto;
padding: 20px 15px;
}

.form-request-wrapper-text {
	color: #fff;
	text-align: center;
	font-size: 30px;
	margin: 20px auto;
	line-height: 30px
}


.form-request-wrapper .operator {
	display: block;
	margin: 20px auto;
}

.form-request-wrapper form {
	padding: 0 10px;
}

.form-request-wrapper form input[type="text"] {
	display: block;
	margin: 5px auto;
	border: 1px solid rgba(0,0,0,0.3);
	outline: none;
	background: rgba(0,0,0,0.3);
	width: 100%;
	font-size: 20px;
	padding: 6px 10px;
	text-align: center;
	color: #fff;
}

.form-request-wrapper form input[type="text"]:focus {
	border: 1px solid #fff;
}

.form-request-wrapper form  input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc;
}
.form-request-wrapper form  input::-moz-placeholder { /* Firefox 19+ */
  color: #ccc;
}
.form-request-wrapper form  input:-ms-input-placeholder { /* IE 10+ */
  color: #ccc;
}
.form-request-wrapper form input:-moz-placeholder { /* Firefox 18- */
  color: #ccc;
}


.form-request-wrapper form input[type="submit"] {
	display: block;
	margin: 5px auto;
	border: 1px solid #DDD;
	outline: none; 
	width: 100%;
	font-size: 25px;
	padding: 12px 10px;
	text-align: center;
	color: #fff;
	background: var(--orange);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
}

.form-request-wrapper form input[type="submit"]:hover{
		background: var(--yellow);
}

.home-certificates {
	width: 80%;
	margin: 20px auto;
}
.home-certificates .item img {
	display: block;
	width: 100%;
}

.owl-theme .owl-controls .owl-buttons div {
	   width: 31px;
    height: 50px;
	color: transparent;
    position: absolute; 
}


.home-certificates .owl-buttons div.owl-prev {
	
    left: -50px; 
    background: url(../images/arrow-left.png);

}


.home-certificates .owl-buttons div.owl-next { 
    right: -50px; 
    background: url(../images/arrow-right.png);

}












footer {
	margin: 50px auto 30px;
	padding: 0 15px;
	max-width: 960px;
}

footer .logo {
	margin: 10px 0 30px; 
}
 
footer .phone-link {
	display: block; 
	font-size: 20px;
	color: var(--brown);
	font-weight: 700;
	font-family: 'Open Sans';
}
footer .phone-link span { 
	color: #848484; 
}

footer p {
	text-align: right;
		font-size: 20px;
		color: var(--brown);
		font-family: 'Open Sans';
		font-weight: 700;
		line-height: 20px;
		margin: 14px auto;
}

footer p.copyright{
	font-size: 11px;
	margin: 5px auto;
	text-align: center;
	color: #999;
	font-family: 'Open Sans';
}




.breadcrumbs {
	margin: 20px auto 20px;
	font-size: 15px;
	text-align: center;
	color: #fff;
	font-family: 'Open Sans';
}


.breadcrumbs a {
	color: #fff;
}



.page-wrapper {
	margin: 50px auto;
	min-height: 400px;
	font-family: 'Open Sans';
}

.page-head{
	margin: 10px auto;
	padding: 30px 15px;
	background: url(../images/page-head.jpg) center center no-repeat;
	background-size: cover;
}

 .page-head h1{
	text-align: center;
	margin: 10px auto 30px;;
	color: #fff;
	max-width: 960px;
}


.page-wrapper h1{
	margin: 20px auto;
	color: var(--orange);
	font-weight: 100;
	font-size: 36px;
	text-align: center;
}


.page-wrapper h2{
	margin: 20px auto;
	color: var(--orange);
	font-weight: 700;
	font-size: 32px;
	text-align: center;
}



.page-wrapper h3{
	margin: 20px auto;
	color: var(--orange);
	font-weight: 400;
	font-size: 28px;
	text-align: center;
}


.page-wrapper h4{
	margin: 20px auto;
	color: var(--orange);
	font-weight: 700;
	font-size: 24px; 
}


.page-wrapper p{
	margin: 10px auto; 
	font-weight: 400;
	font-size: 16px;  
	text-align: justify;
	color:#666;
}

.page-wrapper a {
        color: var(--orange);
        font-weight: 900;
}
.page-wrapper a:hover {
    text-decoration: underline;    
}


.page-wrapper img.aligncenter, .page-wrapper  img.alignnone {
	display: block;
	margin: 15px auto;
	max-width: 100%;
}



.page-wrapper img.alignright {
	display: block;
	margin: 0px 0 15px 15px;
	max-width: 30%;
	float: right;
}

.page-wrapper img.alignleft {
	display: block;
	margin: 0 15px 15px 15px;
	max-width: 30%;
	float: left;
}



.page-wrapper ul, .page-wrapper ol{
	margin: 20px auto; 
	font-weight: 400;
	font-size: 15px;   
	text-align: left;
}



/* MODAL */


#overlay {
	display: none;
	position: fixed;
	z-index: 5000;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	top: 0;
	left: 0;
}

#modal-window {
	display: none;
	position: fixed;
	background: var(--orange);
	left: 50%;
	top: 50%;
	width: 320px;
	margin-left: -160px;
	/*height: 200px;*/
	z-index: 6000;
	padding: 40px 25px;
	box-sizing: border-box;
}


#modal-window .close{
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0px;
	top: 0px;
	background: url(../images/close.png) center center no-repeat;
	background-size: 24px 24px;
	opacity: 0.6;
}
	
#modal-window .close:hover{
	opacity: 1;
}

#modal-window .modal-window-title {
	font-size: 24px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	text-align: center;
	text-transform: uppercase;
}

#modal-window  p{
	font-size: 18px;
	line-height: 18px;
	margin: 10px auto;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	text-align: center; 
}

#modal-window  form input[type="text"]{
	display: block;
	width: 100%; 
	background: rgba(255,255,255,0.8);
	padding: 5px 10px;
	font-size: 18px;
	line-height: 18px;
	margin: 5px auto;
	font-family: 'Open Sans';
}

#modal-window  form textarea{
	display: block;
	width: 100%; 
	background: rgba(255,255,255,0.8);
	padding: 5px 10px;
	font-size: 18px;
	line-height: 18px;
	margin: 5px auto;
	max-width: 100%;
	height: 100px;
	font-family: 'Open Sans';
}


#modal-window  form input[type="submit"]{
	display: block;
	width: 100%; 
	background: var(--orange3);
	padding: 15px 10px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	font-size: 24px;
	line-height: 18px;
	margin: 5px auto;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.6);
	color: #fff;
	font-weight: 700;
}

#modal-window  form input[type="submit"]:hover{
 
	background: var(--brown);
	 
}


#modal-thanx {
	display: none;
	position: fixed;
	background: var(--orange);
	left: 50%;
	top: 50%;
	width: 300px;
	margin-left: -150px;
	/*height: 200px;*/
	z-index: 6000;
	padding: 20px 15px 20px;
	box-sizing: border-box;
	margin-top: -156px;
}

#modal-thanx  .modal-window-title {
	font-size: 24px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	text-align: center;
	text-transform: uppercase;
}

#modal-thanx    p{
	font-size: 18px;
	line-height: 18px;
	margin: 10px auto;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	text-align: center; 
}


#modal-thanx img{
	display: block;
	margin: 10px auto 0;
}



/* END MODAL */




.sidebar-links {
    
}

.sidebar-links a.title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 30px auto 0;
}




.sidebar-links a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin: 10px auto 10px;
    color: #666;
}


.sidebar-links a.active { 
    color: var(--orange);
    font-weight: 700;
}




.page-button-link {
    display: block;
    font-size: 17px;
    max-width: 300px;
    padding: 10px 15px;
    color:#fff !important;
    text-decoration: none !important;
    margin: 20px auto;
    text-align: center;
    background: var(--orange);
}

.page-button-link:hover { 
    background: var(--brown);
}





.page-testimonial {
    background:#f2f2f2;
    padding: 20px 15px;
    margin: 10px auto;
}


.page-testimonial p {
    margin: 10px auto;
    color:#666;
    text-align: center;
    font-family: 'Open Sans';
}


.page-testimonial p.name {
    margin: 10px auto;
    color: var(--brown);
    
    font-family: 'Oswald';
    font-size: 14px;
}

.sublibks-title {
    
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid #eee;
}
.sublibks a {
    display: block;
    padding: 10px auto;;
        display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    color: #fff;
    white-space: normal  !important;
}















@media (max-width: 576px) {  
 
	
	.sidebar-links {
       /* display: none;*/
    }
	
	.page-wrapper {
        margin: 20px auto;
        min-height: 400px;
        font-family: 'Open Sans';
    }
    
	.form-request-wrapper {
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e38716+0,ff7b0d+100 */
		background: #e38716; /* Old browsers */
		background: -moz-linear-gradient(left,  #e38716 0%, #ff7b0d 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(left,  #e38716 0%,#ff7b0d 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right,  #e38716 0%,#ff7b0d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e38716', endColorstr='#ff7b0d',GradientType=1 ); /* IE6-9 */
	}
	
	
	h1.home-banner-text span{ 
		font-size: 20px;
	}
	
	
	

	.page-wrapper h1{ 
		font-size: 30px; 
	} 

	.page-wrapper h2{ 
		font-size: 27px; 
	}
 
	.page-wrapper h3{ 
		font-size: 24px; 
	}


	.page-wrapper h4{ 
		font-size: 22px; 
	}


	.page-wrapper p{ 
		text-align: left;
	}

footer .logo {
    margin: 10px  auto 30px;
}

	.page-wrapper img.aligncenter, .page-wrapper  img.alignnone {
		display: block;
		margin: 15px auto;
		max-width: 100%;
	}



	.page-wrapper img.alignright, 	.page-wrapper img.alignleft {
		display: block;
		margin: 15px auto;
		max-width: 100%;
		float: none;
	}
 

footer p {
	text-align: center;
}


	
}

