/*    FONTS    */
@font-face {
    font-family: Open Sans;
    font-weight: normal;
    src: url(fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: Open Sans;
    font-weight: 600;
    src: url(fonts/OpenSans-SemiBold.ttf);
}

@font-face {
    font-family: Roboto Slab;
    font-weight: normal;
    src: url(fonts/RobotoSlab-Regular.ttf);
}

@font-face {
    font-family: Cormorant;
    font-weight: 500;
    src: url(fonts/Cormorant/Cormorant-Medium.ttf);
}

@font-face {
    font-family: Cormorant;
    font-weight: 600;
    src: url(fonts/Cormorant/Cormorant-SemiBold.ttf);
}

@font-face {
    font-family: Cormorant;
    font-weight: 700;
    src: url(fonts/Cormorant/Cormorant-Bold.ttf);
}

@font-face {
    font-family: Nunito;
    font-weight: 300;
    src: url(fonts/Nunito/Nunito-Light.ttf);
}

@font-face {
    font-family: Nunito;
    font-weight: 400;
    src: url(fonts/Nunito/Nunito-Regular.ttf);
}

@font-face {
    font-family: Nunito;
    font-weight: 500;
    src: url(fonts/Nunito/Nunito-Medium.ttf);
}


@keyframes content {
    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }
}

*{
    outline: none !important;
}

body, html{
    animation: content 1s ease;
}
html{
    scroll-behavior: smooth;
}

body{
    position: relative;
    overflow-x: hidden;
    padding-top: 60px;
}

section{
    position: relative;
    margin:50px 0px;
    z-index: 1;
}

section .container{
    position: relative;
    z-index: 2;
}

.d-grid{
    display: grid;
    align-content: center;
}



a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input:focus ,
.button,
.button-o,
[role="button"],
textarea:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  user-select: none !important;
}

.big-h1{
     font-family: Cormorant;
    font-weight: 700;
    font-size: 80px;
    line-height: 120%;
    color: #FFFFFF;
}

h1{
    font-family: Cormorant;
    font-weight: 700;
    font-size: 41px;
    line-height: 120%;
    color: #2b2020;
}

h2{
    font-family: Cormorant;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #2b2020;
    padding: 10px 0px;
}

h3{
    font-family: Cormorant;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #2b2020;
    padding: 10px 0px;
}

p{
    font-family: Nunito;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: #2b2020;
}


.button{
    background: #275b3f;
    border: 2px solid #275b3f;
    box-sizing: border-box;
    padding: 10px 25px;
    box-shadow: 0px 9px 15px rgba(0, 0, 0, 0.17);
    border-radius: 2px;
    font-family: Nunito;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    outline: none;
    text-decoration: none !important;
    cursor: pointer;
    width: max-content;
    margin:0px;
    display: block;
    outline: none !important;
    transition: all 0.2s ease;
    text-align: center;
}

.button:hover{
    transform: scale(1.03);
    color: #fff;
}

.button-o{
    background:transparent;
    border: 1px solid #FFF;
    box-sizing: border-box;
    padding: 10px 25px;
    box-shadow: 0px 9px 15px rgba(0, 0, 0, 0.17);
    border-radius: 8px;
    font-family: Gotham Pro;
    font-size: 18px;
    line-height: 149.8%;
    font-weight: 600;
    color: #FFF !important;
    outline: none;
    text-decoration: none !important;
    cursor: pointer;
    width: max-content;
    margin:0px;
    display: block;
    outline: none !important;
    transition: all 0.2s ease;
    text-align: center;
}

.button-o:hover{
    transform: scale(1.03);
}



/*   Header   */
.top-nav {
    background: #141414;
    padding: 8px 0px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 10px;
    line-height: 120.69%;
    color: #FFFFFF;
}
.top-nav-two{
    display: grid;
    padding: 0px 5% 0px;
    max-width: 1140px;
    margin: auto;
    padding: 0px 15px;
    grid-template-columns: 2fr 2fr 2fr;
}

header{
    position: absolute;
    z-index: 110;
    display: block;
    width: 100%;
    transition: all 0.4s ease;
    top: 0px;
}

#navbar.nonactive{
    background: #FFF;
}

#navbar.active{
    background: #FFF;
    top: 0px;
}


.nav-div{
    padding: 40px 0px;
    display: grid;
    grid-template-columns: 1fr 210px;
}
.logo-div{
    display: grid;
    justify-content: start;
}
.logo-div img{
    width: 100%;
    height: auto;
    pointer-events: all;
    cursor: pointer;
}

.cont-div{
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    grid-gap: 50px;
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
}

.cont-div a{
    pointer-events: all;
    font-family: Nunito;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #fff;
    transition: all 0.5s ease;
}

/*.cont-div a:hover{
    color: #275b3f;
}*/

.phone-div a{
	pointer-events: all;
    font-family: Nunito;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #fff;
    transition: all 0.5s ease;
}


/* map */
.map.container-fluid {
    position: relative;
    width: 100%;
    height: 550px;
    padding: 0;
    background-image: url("../img/map.png");
    background-position: center center;
    background-size: cover;
    margin-top: -309px;
    background-repeat: no-repeat;
    z-index: 0;
}

.map.container-fluid::after{
    content: "Кликните для просмотра";
    width: max-content;
    height: auto;
    font-family: Open Sans;
    font-size: 24px;
    line-height: 159.69%;
    color: #000000;
    padding: 5px 30px;
    background: rgba(255, 255, 255, 0.651);
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.active.map.container-fluid::after{
    display: none;
}

.main-div p{
    color: #fff;
}
.main-div .p-it{
    font-family: Cormorant;
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
}
.main{
    background: url(../img/main.png) center no-repeat;
    background-size: cover;
    margin-top: -60px;
    min-height: 700px;
}
.main::before{
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    margin-top: 0px;
    min-height: 700px;
}
.main-div{
    padding-top: 200px;
    width: 55%;
}
.main-div .button{
    margin-top: 40px;
}
.advan-item{
    display: grid;
    justify-items: center;
}
.advan-item p{
    text-align: center;
}
.advan-item h3{
    color: #275b3f;
}
.advan-item img{
    width: 75px;
    height: 75px;
}
.advan-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: 30px;
    align-items: baseline;
}
.advantages h1{
    text-align: center;
}
.about-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about{
    background: url(../img/about.png) right no-repeat;
    background-size: 620px;
}
.about-icons-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
}
.about-icons-inner .advan-item{
    justify-items: unset;
}
.about-icons-inner .advan-item img{
    margin-left: 80px;
}
.about-item{
    display: grid;
    grid-gap: 30px;
}
.services{
    background: url(../img/serv.png) center top no-repeat;
    background-size: contain;
    padding: 80px 0px;
    margin-bottom: 0px;
    padding-bottom: 220px;
}
.services h1{
    text-align: center;
}
.serv-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 30px;
}
.serv-item{
    /*background: #fff;*/
    padding: 20px;
    transition: all 0.5s ease;
}
.serv-item{
    background: #275b3f;
}
.serv-item h3{
    transition: all 0.5s ease;
}
.serv-item h3{
    color: #fff;
}
.serv-item p{
    transition: all 0.5s ease;
}
.serv-item p{
    color: #fff;
}
.contacts-inner{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 2%);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    margin: 0px 40px;
}
.contacts{
     margin-top: -100px;
}
.contacts-item p{
    color: #282020;
    font-size: 20px;
    margin-bottom: 0px;
}
.contacts-item a{
    color: #282020;
    font-size: 20px;
	font-family: Nunito;
	font-weight: 300;
}
input{
    background: #fbfbfb;
    border-radius: 2px;
    border: 1px solid #fbfbfb;
    padding: 10px 15px;
    width: 100%;
}
form div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 15px;
}
footer{
    background: #211e1d;
    padding: 50px 0px 20px;
}
.foot-div{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
}
.foot-info{
    display: flex;
    grid-gap: 15px;
    flex-direction: column;
}
.foot-info a{
    pointer-events: all;
    font-family: Nunito;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
    transition: all 0.5s ease;
}

/*.foot-info a:hover{
    color: #275b3f;
}*/
.foot-info a svg{
    margin-right: 10px;
    fill: #fff;
}
.foot-info a svg path{
    fill: #fff;
}
.madein a{
    pointer-events: all;
    font-family: Nunito;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
    transition: all 0.5s ease;
}
.madein{
    display: flex;
    justify-content: center;
}
#button.show {
    opacity: 1;
    visibility: visible;
    right: 30px;
}
#button {
    display: inline-block;
    background-color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 30px;
    right: -70px;
    transition: right 0.8s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
    transform: rotate(180deg);
}
#button svg {
    margin-top: 10px;
    height: 18px;
    width: 18px;
    fill: #275b3f;
    transition: all 0.3s ease;
    animation: bounce 0.6s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
#button:hover {
  cursor: pointer;

}
#button:hover svg{
    margin-top: 0px;
}
#button:active {
  background-color: #275b3f;
}
#button:active svg{
    fill: #fff;
}
#button.show {
  opacity: 1;
  visibility: visible;
  right: 30px;
}
@keyframes bounce {
  from { transform: translate3d(0, 0, 0);     }
  to   { transform: translate3d(0, 7px, 0); }
}
#call .modal-body h1{
    text-align: center;
}
#call .modal-header{
    padding-bottom: 0px;
    border-bottom: none;
}
#call .form{
    display: grid;
    grid-gap: 20px;
    padding: 0px 30px;
    margin-top: 30px;
	grid-template-columns: 1fr;
	margin-bottom: 0px;
}
#call .modal-dialog{
    max-width: 600px;
}
#call .form .button{
    justify-self: center;
}
#call .modal-body{
    padding-bottom: 40px;
}
#call .modal-content{
    background: url(../img/form-back.png) right no-repeat;
    background-size: contain;
    background-color: #fff;
}
.main.th{
    margin-bottom: 37px;
}
.main-div.th{
    width: 56%;
}
.m-tog-menu{
    width: 0px;
    height: 0px;
    background: #275b3f;
    box-shadow: 0px 4.6875px 29.2969px rgba(225, 225, 225, 0.16);
    position: absolute;
    top: 20px;
    z-index: 10;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
    padding: 20px;
    padding-bottom: 45px;
}
.m-tog-ul{
    list-style: none;
    margin-top: 60px;
    padding-left: 0px;
    margin-bottom: 40px;
	margin-left: 0px;
}
.m-tog-ul li{
    padding: 15px 0px;
    border-bottom: 1px solid #fff;
}
.m-tog-ul li a{
    pointer-events: all;
    font-family: Nunito;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #fff;
    transition: all 0.5s ease;
}
.m-tog-menu.active{
	width: 100%;
    height: auto;
    opacity: 1;
    top: 0px;
    pointer-events: all;
}
.m-tog {
    display: none;
    justify-self: flex-start;
    align-items: center;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 20;
}
.m-tog:before{
    content: "";
    width: 15px;
    height: 4px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.m-tog.active::before {
    opacity: 0;
}
.m-tog span {
    width: 30px;
    height: 4px;
    position: relative;
    margin: 0px 0px 0px auto;
    background: #fff;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.m-tog.active span {
    transform: rotate(45deg);
    background: #fff;
}
.m-tog::after {
    content: "";
    width: 30px;
    height: 4px;
    position: absolute;
    right: 0px;
    top: 0px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.m-tog.active::after {
    width: 30px;
    transform: rotate(-45deg) translateY(7px) translateX(-7px);
    background: #fff;
}
.phone-mob{
    display: none;
    justify-content: flex-end;
}
.phone-mob a svg{
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: all 0.5s ease;
}
.phone-mob a:hover svg{
    fill: #0C64C5;
    transform: scale(1.1);
}
.whatsapp__ico{
	position: fixed;
    width: 80px;
    height: 80px;
    bottom: 20px;
    border-radius: 100%;
    background: #43d854;
    text-align: center;
    padding-top: 15px;
    left: 15px;
	box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 20%);
	z-index: 1000;
	transition: all 0.5s ease;
}
.whatsapp__ico:hover{
	background: #fff;
	transform: scale(1.1);
}
.whatsapp__ico:hover svg{
	fill: #43d854;
}
.whatsapp__ico svg{
	width: 50px;
    height: 50px;
    fill: #fff;
}
.p-an{
    transform: translate(0px, 20px);
    opacity: 0;
    transition: all 1.5s ease 0s;
}
.p-an.active{
    opacity: 1;
    transform: translate(0px, 0px);
}
@keyframes fadeIn {
    from{opacity: 0;}
    to{opacity: 1;}
}
.wow{
    animation: fadeIn 1.8s;
}
.pll-parent-menu-item .sub-menu{
	opacity: 0;
    height: 0px;
	list-style: none;
    margin-left: 0px;
    background: #275b3f;
    padding: 10px;
	transition: all 0.5s ease;
}
.pll-parent-menu-item:hover .sub-menu{
	opacity: 1;
	height: auto;
}