body {
	font-family: 'Lora';
    color: #232831;
}
a {
	text-decoration: none;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/* header ***************************************************************************************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 11;
}
header.scroll {
    background: #FFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
}
.header-iner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.header-logo img {
    height: 50px;
}
header.scroll .header-logo img {
    content: url("../img/logo-02.svg")
}
.header-menu a {
    color: #fff;
    padding-left: 40px;
}
header.scroll .header-menu a {
    color: #333; 
}
.header-menu a:hover, header.scroll .header-menu a:hover {
    color: #f5af00;
}
.mobile {
    display: none;
}

/* hero ***************************************************************************************************/
#hero {
    position: relative;
    height: 100vh;
    background: url(../img/hero.jpg) no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000007d;
}
.hero-inner {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    font-family: 'Montserrat';
    font-size: 46px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.hero-button {
    font-size: 16px;
    color: #fff;
    padding: 11px 46px;
    border-radius: 30px;
    background: #f5af00;
    border: 2px solid #f5af00;
    white-space: nowrap;
}
.hero-button:hover {
    color: #f5af00;
    background: #fff;
}

/* about ***************************************************************************************************/
#about {
    padding: 50px 0;
    background: url(../img/background-01.jpg) no-repeat left bottom;
    background-size: 200%;
}
.main-title {
    text-align: center;
    font-size: 36px;
    font-family: 'Montserrat';
    color: #222222;
    margin-bottom: 50px;
    font-weight: 500;
}
.about-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
.about-left {
    padding-right: 60px;
}
.about-text {
    color: #333;
    margin-bottom: 20px;
}
.about-image {
    width: 500px; 
    border-radius: 15px;
}
.about-text-row {
    display: flex;
}
.about-text-row-item:last-child {
    padding-left: 50px;
}

/* services ***************************************************************************************************/
#services {
    padding: 50px 0;
    background: #f3f3f3;
}
.services-inner {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.09);
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    height: 100%;
}
.services-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat';
    margin-bottom: 30px;
    height: 54px;
}
.services-image {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    margin-bottom: 30px;
    border: 1px solid #00000030;
    border-radius: 10px;
}
.services-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}
ul.services-text {
    padding-left: 17px;
}

/* equipment ***************************************************************************************************/
#equipment {
    padding: 50px 0;
    background: url(../img/background-02.jpg) no-repeat center bottom;
    background-size: cover;
}
.equipment-inner {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
.equipment-image {
    width: 500px;
    border-radius: 15px;
}
.equipment-right {
    padding-left: 60px;
}
.equipment-text {
    color: #333;
    margin-bottom: 20px;
}
.equipment-col img {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
}

/* gallery ***************************************************************************************************/
#gallery {
    padding: 50px 0;
    background: #f3f3f3;
}
.gallery-inner {
    padding: 15px;
    background: #fff;
    margin-bottom: 24px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.gallery-inner:hover {
    transform: rotate(-3deg);
    box-shadow: 0 5px 10px #0000003b;
}
.gallery-inner img {
    width: 100%;
    cursor: pointer;
}

/* license ***************************************************************************************************/
#license {
    padding: 50px 0;
}
.license-inner {
    position: relative;
    scale: 0.8;
}
.licenseSwiper {
    width: calc(100% - 160px);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 424px;
    cursor: pointer;
}
.swiper-slide img {
    width: 100%; 
    border: 1px solid;
}
.swiper-button-prev:after, .swiper-button-next:after {
    color: #f5af00;
}

/* action ***************************************************************************************************/
#action {
    padding: 50px 0;
    background: #f5af00;
}
.action-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.action-inner p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 0;
    padding-right: 60px;
    text-align: center;
}
.action-inner .hero-button {
    border: 2px solid #fff;
}

/* contact ***************************************************************************************************/
#contact {
    padding: 50px 0;
}
#contact .col-md-4.col-12 {
    display: flex;
    justify-content: center;
    text-align: center;
}
.contact-inner {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-image {
    width: 55px;
    margin-bottom: 20px;
}
.contact-text {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
}
.contact-link {
    color: #333;
    font-weight: 400;
    line-height: 24px;
}
.contact-link:hover {
    color: #F5AF00;
}

/* footer ***************************************************************************************************/
footer {
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer p {
    margin: 0;
    color: #999;
}
footer a {
    color: #999;
}
footer a:hover {
    color: #F5AF00;
}

/* modal ***************************************************************************************************/
#formModal .modal-dialog {
    width: 400px;
}
#formModal .modal-content {
    border-radius: 20px;
}
#formModal .modal-body {
    padding: 50px 30px;
    text-align: center;
}
#formModal button {
    position: absolute;
    top: 15px;
    right: 15px;
}
#formModal .modal-title {
    font-size: 20px;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}
#formModal form {
    display: flex;
    flex-direction: column;
}
#formModal input {
    height: 40px;
    border: 1px solid #a3a3a3;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 0 15px;
    font-size: 14px;
}
#formModal textarea {
    border: 1px solid #a3a3a3;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 8px 15px;
    font-size: 14px;
    color: #787878;
    height: 100px;
}
#formModal .form-submit {
    border: 1px solid #f5af00;
    background: #f5af00;
    color: #fff;
    margin: 0;
}
#formModal .form-submit.hide {
    display: none; 
}
#formModal #modal-form-sent {
    display: none;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    border: 1px solid #f5af00;
    background: #f5af00;
    color: #fff;
    text-align: center;
    margin: 0;
    border-radius: 10px;
}
#formModal #modal-form-sent.show {
    display: block;
}
#licenseModal .modal-dialog, #galleryModal .modal-dialog {
    max-width: 1000px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: center;
}
#galleryModal .modal-dialog {
    max-width: 1200px;
}
#licenseModal .modal-content, #galleryModal .modal-content {
    border: none;
    border-radius: 0;
    height: 80vh;
    background: transparent;
}
#licenseModal .modal-body, #galleryModal .modal-body {
    padding: 0;
    height: 80vh;
}
#licenseModal .modal-close, #galleryModal .modal-close {
    background: url(../img/slider-close.png);
    width: 24px;
    height: 24px;
    border: 0;
    position: absolute;
    top: -40px;
    right: -40px;
}
#galleryModal .modal-close {
    right: -70px;
}
#licenseModal #carouselLicenseControls, #galleryModal #carouselLicenseControls {
    height: 100%;
}
#licenseModal .carousel-inner.overflow-hidden, #galleryModal .carousel-inner.overflow-hidden {
    height: 100%;
}
#licenseModal .carousel-item, #galleryModal .carousel-item {
    height: 100%;
}
#licenseModal .carousel-item-inner, #galleryModal .carousel-item-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#licenseModal img, #galleryModal img {
    width: 100%;
    height: 80vh;
    object-fit: contain;
}
#galleryModal .carousel-control-prev {
    left: -150px;
}
#galleryModal .carousel-control-next {
    right: -150px;
}
#licenseModal .carousel-control-prev-icon, #galleryModal .carousel-control-prev-icon {
    background-image: url(../img/slider-prev.png);
    width: 15px;
    height: 25px;
}
#licenseModal .carousel-control-next-icon, #galleryModal .carousel-control-next-icon {
    background-image: url(../img/slider-next.png);
    width: 15px;
    height: 25px;
}

/* advantages ***************************************************************************************************/
#advantages {
    padding: 50px 0;
}
.advantages-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.advantages-image {
    width: 70px;
    margin-bottom: 30px;
}
.advantages-title {
    font-family: 'Montserrat';
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    margin: 0;
}
.advantages-text {
    color: #333;
    margin: 0;
    width: 90%;
}