/*//////////// IMG /////////////////*/
.teaser_icon_wrap:hover {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.5s;

    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

* {
    box-sizing: border-box;
}

/*h1 {*/
/*    color: brown;*/
/*}*/

.content {
    display: none;
}

/* LINKS "A" */
a {
    color: #ff0000;
}

a:link {
    text-decoration: none;
    color: #ff0000;
}

/* a:active {
    text-decoration: none;
    color: #ff0000 ;
} */
/* a:visited {
    text-decoration: none;
    color: #1575f3;
} */
a:hover {
    text-decoration: underline; /* Делает ссылку подчеркнутой при наведении на нее курсора */
    color: black; /* Цвет ссылки */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    line-height: 1.6;
    background-color: ghostwhite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

html {
    font-size: 16px;
}

html,
body {
    /*overflow: hidden;*/
    height: 100vh;
}

p {
    margin: 0 0 10px;
    display: inline-block;
}

.container {
    width: 100%;
    max-width: 2048px;
    margin: 0 auto;
    padding: 0 1rem;
    display: inline-block;
    cursor: pointer;
}


/* Page
=================*/

.page {
    width: 100%;
    height: 50px;
    min-width: 770px;
    /*Зона видимости  1 экран */
    position: relative;
    /* overflow: hidden; */
    background: url(../img/img_1.jpg) center,
    no-repeat;
    background-size: cover;
}


/* Header
=================*/

.header {
    background-color: #1f2732;
    opacity: 90%;
    position: fixed;
    /* top: -80pt; */
    width: 100%;
    display: block;
    /* transition: top 0.5s; */
    z-index: 2;
    height: 70pt;
}

.company_logo {
    margin-left: 1%;
    float: left;
    padding-top: .5%;
    position: fixed;
    z-index: 3;
}

.company_name {
    float: left;
    padding-top: 0.7%;
    padding-left: 5%;
    position: fixed;
    z-index: 3;
    color: red;
}

.menu_button {
    margin-left: 92%;
    top: -20px;
    padding-top: 1%;
    color: white;
    position: fixed;
    z-index: 2;
}

/*///////////////////// BTN ////////////////////////////////*/

.mybutton {
    position: relative;
    margin-right: 20px;
    padding: 4px 14px;
    /* border: 1px solid lightgreen; */
    background: none;
    color: #286aab;
    overflow: visible;
    cursor: pointer;
}

.mybutton::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -35px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    content: '';
    opacity: 0;
}

.mybutton--animate-click-three::after {
    background: lightgreen;
}

.mybutton--animate-click-three.mybutton--click::after {
    animation: anim-nimate-click-three 0.5s forwards;
}

@keyframes anim-nimate-click-three {
    0% {
        opacity: 1;
        transform: scale3d(0.1, 0.1, 1);
    }
    100% {
        opacity: 0;
        transform: scale3d(8, 8, 1);
    }
}


/*///////////////////// HUM ////////////////////////////////*/

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 5;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: red;
    stroke-width: 5.5;
    stroke-linecap: round;
    z-index: 5;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}


/* Right-Sided Navigation
=================*/

/* Clearfix (clear floats) */
.header::after {
    content: "";
    clear: both;
    display: table;
}

.sidenav {
    height: 100%;
    position: fixed;
    padding-top: 80px;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    font-size: 16pt;
}

.sidenav a {
    padding: 8px 100px 8px 50px;
    text-decoration: none;
    font-size: 22px;
    /* color: #818181; */
    color: ghostwhite;
    display: block;
    transition: 0.5s;
}

.sidenav a:hover {
    color: #ff0000;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    display: block;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.phone_navbar {
    color: ghostwhite;
    font-weight: 500;
    padding-left: 40px;
    padding-top: 100px;
    line-height: 8;
    font-size: 14pt;
}

.phone_highlight {
    color: #ff497c !important;
}


/* Breadcrumbs
=================*/

.breadcrumbs_container {
    display: flex;
    padding-top: 80pt;
    align-content: center;
    position: relative;
    background: url(../img/breadcrumbs.jpg) no-repeat center / cover;
    clip-path: polygon(0% 0%, 0% 75%, 50% 100%, 100% 75%, 100% 0%);
}

.breadcrumbs_row {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding-top: 2%;
    margin: auto;
    min-height: 150px;
    justify-content: space-around;
    font-size: 36pt;
}

.breadcrumbs-title {
    display: flex;
    width: 100%;
    align-content: center;
    text-align: center;
    margin: auto;
    text-transform: none;
    word-wrap: break-word;
    line-height: 1;
}

.breadcrumb {
    display: flex;
    width: 100%;
    margin: auto;
    text-align: center;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin: 5px 0 10px 0;
    padding: 0;
    background-color: transparent;
    color: #1f2732;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
}

.first-item {
    display: flex;
    font-size: 14px;
}

.last-item {
    display: flex;
}


/* Block_1
=================*/

* {
    box-sizing: border-box;
}

.block_1_row {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
}

.block_1_row::after {
    content: "";
    clear: both;
    display: table;
}

.block_1_icon {
    float: left;
    width: 33.33%;
    padding: 50px;
}

.box_header {
    font-weight: 700;
    line-height: 2;
    font-size: 14pt;
    color: #1f2732;
}

.box_text {
    font-weight: 300;
    line-height: 2;
    font-size: 12pt;
    font-style: inherit;
}

.teaser_icon_wrap {
    color: ghostwhite;
    margin: auto;
}


/* Block_2
=================*/

/* .block_2_header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: 100%;
    background-color: ghostwhite;
    min-height: 100px;
    float: center;
    padding-top: 3%;
} */


/* .block_2_wrapper {
    width: 100%;
    height: 600px;
    background-color: ghostwhite;
    padding-top: 2%;
}

.block_2_container {
    display: flex;
    box-sizing: border-box;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    font: normal 18px/1.5 "Fira Sans", "Helvetica Neue", sans-serif;
    background: #3AAFAB;
    color: ghostwhite;
    padding: 50px 0;
    padding-top: 3%;
}

.flex-outer,
.flex-inner {
    list-style-type: none;
    padding: 0;
}

.flex-outer {
    max-width: 800px;
    margin: 0 auto;
}

.flex-outer li,
.flex-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-inner {
    padding: 0 8px;
}

.flex-outer>li:not(:last-child) {
    margin-bottom: 20px;
}

.flex-outer li label,
.flex-outer li p {
    padding: 8px;
    font-weight: 300;
    letter-spacing: .09em;
}

.flex-outer>li>label,
.flex-outer li p {
    flex: 1 0 120px;
    max-width: 220px;
}

.flex-outer>li>label+*,
.flex-inner {
    flex: 1 0 220px;
}

.flex-outer li p {
    margin: 0;
}

.flex-outer li button {
    margin-left: auto;
    padding: 8px 16px;
    border: none;
    background: #333;
    color: ghostwhite;
    text-transform: uppercase;
    letter-spacing: .09em;
    border-radius: 2px;
}

.flex-inner li {
    width: 100px;
} */


/* Footer
=================*/

* {
    box-sizing: border-box;
}

.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: url(../img/img_99.jpg) center;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    /*background-position: center;*/
    background-repeat: no-repeat;
    background-size: cover;
    color: ghostwhite;
    text-align: center;
}

.footerRow {
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
}

.footerRow::after {
    content: "";
    clear: both;
    display: table;
}

.footerColumn {
    float: left;
    width: 33.33%;
    padding: 50px;
    padding-top: 10vh;
}

.footer_icon_wrap {
    padding-bottom: 20px;
}

.footerColumn p {
    color: #666666;
    font-size: 14pt;
    font-weight: 400;
}

.email-text {
    font-size: 14pt;
    font-weight: 400;
    color: #666666 !important;
}

.phoneFoot a {
    font-size: 14pt;
    color: #666666;
}

@supports (-webkit-overflow-scrolling: touch) {
    .footer {
        background-attachment: scroll;
    }
}


/* Copyrights & Social Links
=================*/

.socialWrapper {
    background: url(../img/img_1.jpg) center;
    height: 120px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}

.socialColumn {
    float: left;
    width: 50%;
    padding: 5px;
    padding-top: 10px;
}

.socialText {
    color: #8d8787;
    padding-top: 5%;
    font-size: 10pt;
}

.socialText a:link {
    text-decoration: underline;
}

.socialText a:hover {
    text-decoration: underline; /* Делает ссылку подчеркнутой при наведении на нее курсора */
    color: red; /* Цвет ссылки */
}


/* Style the Un-order list by setting its list-style to none */
.socialColumn ul {
    list-style: none;
    float: right;
    padding-top: 2%;
}

/* Style the list items inside the UL list, by setting its width, height and line-height
  and float them to left and set its border and border-radius.
 */
.socialColumn ul li {
    width: 55px;
    height: 55px;
    line-height: 55px;
    margin: 0 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 5px solid #c5d1dd;
    float: left;
    transition: all 0.5s ease;
}

/* Style the icons by setting its color and margin-top value to 20px
to align it properly */
.socialColumn ul li .fa {
    color: #c5d1dd;
    /*margin-top: 20px;*/
    transition: all 0.5s ease;
}

/* Now target the specific li classes for styling and use box-shadow effect to border and text-shadow effect
  to icons for glowing effect and use transition property for smooth transition effect. */
/*facebook*/
.socialColumn ul li:hover.facebook {
    border: 5px solid #3b5998;
    box-shadow: 0 0 15px #3b5998;
    transition: all 0.5s ease;
}

.socialColumn ul li:hover .fa-facebook {
    color: #3b5998;
    text-shadow: 0 0 15px #3b5998;
    transition: all 0.5s ease;
}

/*linkedin*/
.socialColumn ul li:hover.linkedin {
    border: 5px solid #00aced;
    box-shadow: 0 0 15px #00aced;
    transition: all 0.5s ease;
}

.socialColumn ul li:hover .fa-linkedin {
    color: #00aced;
    text-shadow: 0 0 15px #00aced;
    transition: all 0.5s ease;
}

/* instagram */
.socialColumn ul li:hover.instagram {
    border: 5px solid #bc2a8d;
    box-shadow: 0 0 15px #bc2a8d;
    transition: all 0.5s ease;
}

.socialColumn ul li:hover .fa-instagram {
    color: #bc2a8d;
    text-shadow: 0 0 15px #bc2a8d;
    transition: all 0.5s ease;
}


/* Scroll Up Button
=================*/

.topNubex {
    position: fixed;
    right: 45px;
    bottom: 45px;
    color: orange;
    animation: pulse 1.2s ease infinite;
}




/* Media
=======================================================*/

/* Responsive layout - iPad Fucking Pro*/
@media screen and (max-width: 1366px) {
    .page {
        min-width: 1280px;
    }

    .breadcrumbs_row {
        height: 150px;
    }

    .breadcrumbs_title {
        font-size: 46pt;
        line-height: 0.3;
        text-align: center;
    }

    .block_1_row {
        width: 100%;
        text-align: center;
        padding: 2%;
    }

    .block_1_icon {
        width: 33.333%;
    }

    .footer {
        height: 100%;
    }

    .footerRow {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .socialWrapper {
        height: 130px;
        width: 100%;
        padding-top: 1%;
    }

    .menu_button {
        margin-left: 93%;
        padding-top: 25px;
    }
}


/* Responsive layout - Tablets (big landscape tablets, laptops, and desktops)*/
@media screen and (min-width: 962px)and (max-width: 1024px) {

    .page {
        min-width: 1024px;
    }

    .breadcrumbs_row {
        height: 150px;
    }

    .breadcrumbs_title {
        font-size: 46pt;
        line-height: 0.3;
        text-align: center;
    }

    .block_1_row {
        width: 100%;
        text-align: center;
        padding: 0.1%;
    }

    .block_1_icon {
        width: 33.3333%;
    }

    .footer {
        height: 100%;
    }

    .footerRow {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .socialWrapper {
        height: 130px;
        width: 100%;
        padding-top: 1%;
    }

    .menu_button {
        margin-left: 93%;
        padding-top: 25px;
    }
}


/* Responsive layout - Tablets (tablet, landscape iPad, lo-res laptops and desktops)*/
@media screen  and (min-width: 721px)and (max-width: 961px) {
    .page {
        min-width: 961px;
    }

    .breadcrumbs_row {
        height: 150px;
    }

    .breadcrumbs_title {
        font-size: 36pt;
        line-height: 0.3;
        text-align: center;
    }

    .block_1_row {
        width: 100%;
        text-align: center;
        padding: 2%;
    }

    .block_1_icon {
        width: 50%;
    }

    .footer {
        height: 100%;
    }

    .footerRow {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .socialWrapper {
        height: 130px;
        width: 100%;
        padding-top: 1%;
    }

    .menu_button {
        margin-left: 93%;
        padding-top: 25px;
    }
}


/* Responsive layout - Tablets (portrait tablets, portrait iPad, landscape e-readers, landscape phones)*/
@media screen  and (min-width: 601px)and (max-width: 720px) {
    
.page {
        min-width: 720px;
    }

    .breadcrumbs_row {
        height: 150px;
    }

    .breadcrumbs_title {
        font-size: 36pt;
        line-height: 0.3;
        text-align: center;
    }

    .block_1_row {
        width: 100%;
        text-align: center;
        padding: 2%;
    }

    .block_1_icon {
        width: 50%;
    }

    .footer {
        height: 100%;
    }

    .footerRow {
        width: 100%;
        display: block;
    }

    .footerColumn {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .socialWrapper {
        height: 200px;
        width: 100%;
        padding-top: 1%;
    }

    .socialColumn {
        width: 100%;
        /*padding: 0;*/
    }

    .socialColumn ul {
        padding-top: 0;
        padding-left: 20%;
        padding-right: 22%;
    }

    .menu_button {
        margin-left: 90%;
        padding-top: 25px;
    }
}



/* Responsive layout - Phones*/
@media screen and (max-width: 600px) {
    
.page {
        min-width: 780px;
    }

    .breadcrumbs_row {
        height: 150px;
    }

    .breadcrumbs_title {
        font-size: 36pt;
        line-height: 0.3;
        text-align: center;
    }

    .block_1_row {
        width: 100%;
        text-align: center;
        padding: 2%;
    }

    .block_1_icon {
        width: 50%;
    }

    .footer {
        height: 100%;
    }

    .footerRow {
        width: 100%;
        display: block;
    }

    .footerColumn {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .socialWrapper {
        height: 200px;
        width: 100%;
        padding-top: 1%;
    }

    .socialColumn {
        width: 100%;
        /*padding: 0;*/
    }

    .socialColumn ul {
        padding-top: 0;
        padding-left: 20%;
        padding-right: 25%;
    }

    .menu_button {
        margin-left: 700px;
        padding-top: 30px;
    }
}
