@import url(fonts.css);
html {
    position: relative;
    min-height: 100%;
}

body {
    /* margin-bottom: 50px; */
}
::-webkit-scrollbar{
    width: 6px;
    background-color: #F8F9FB;
}

::-webkit-scrollbar-thumb {
    background-color: #5E8DB7;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;
}

html,
body {
    font-family: 'SegoeUI';
    -webkit-font-smoothing: antialiased;
    background: #E6EEF0;
}


/*==========================================*/


/* header */

/*#header {
    height: 90px;
    padding: 30px 0px 30px 0px;
}*/
#header {
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    background-color: rgb(94, 141, 183);
    background-color: rgba(94, 141, 183, 0.9);
    height: 60px;
    padding: 15px 0px 15px 0px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}
#header.with-bg {
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    background-color: rgb(94, 141, 183);
    background-color: rgba(94, 141, 183, 0.9);
    height: 60px;
    padding: 15px 0px 15px 0px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

#header .logo {
    float: left;
    text-decoration: none;
}

#header .logo .t1 {
    font-family: 'SegoeUI-SemiBold';
    font-size: 15px;
    text-transform: uppercase;
    color: #21638A;
    display: block;
}

#header .logo .t2 {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    display: block;
}


/*==========================================*/


/* navbar-toggle */

#header .navbar-toggle {
    color: #E3ECF2;
    border-color: #E3ECF2;
    margin-top: -3px;
    border-radius: 5px;
}

#header .navbar-toggle:hover {
    border-color: #fff;
    background: none;
}

#header .navbar-toggle:focus {
    border-color: #fff;
    background: none;
}

#header .navbar-toggle .icon-bar {
    background-color: #E3ECF2;
}

#header .navbar-toggle .icons {
    float: right;
    margin-top: 1px;
}

#header .navbar-toggle .text {
    float: left;
    margin: 0;
    padding: 0;
    margin-right: 10px;
    font-size: 15px;
    color: #f4f4f4;
}


/*==========================================*/


/* menu */

#header .menu {
    display: inline-block;
}
.container>.navbar-collapse {
    float: right !important;
}

#header .menu li {
    float: left;
    margin-top: 5px;
}

#header .menu li+li {
    margin-left: 25px;
}

#header .menu li a {
    float: left;
    color: #D1EAF8;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
    position: relative;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

#header .menu li a:hover, #lang_sel ul li a:hover {
    color: #fff;
}
#lang_sel a.lang_sel_sel {
    background-color: transparent;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

#header .menu li a:hover:after {
    position: absolute;
    bottom: 0;
    width: 12px;
    content: '';
    height: 1px;
    background: #fff;
    left: 50%;
    margin-left: -7.5px;
}

#header .menu li.active a {
    color: #fff;
}

#header .menu li.active a:after {
    position: absolute;
    bottom: 0;
    width: 12px;
    content: '';
    height: 1px;
    background: #fff;
    left: 50%;
    margin-left: -7.5px;
}
#lang_sel ul ul {
    max-height: 0;
    -webkit-transform: perspective(600px) rotate3d(1,0,0,-90deg);
    -webkit-transform-origin: 50% 0;
    -webkit-transition: 250ms;
    -moz-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
}
#lang_sel ul li:hover ul, #lang_sel ul a:hover ul {
    visibility: visible;
    max-height: 1000px;
    -webkit-transform: perspective(600px) rotate3d(0,0,0,0);
}


/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
#header .menu li a, #lang_sel a {
    font-size: 13px;
}
}

/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #header .container {
        width: 100%;
    }
    #header .menu li a, #lang_sel a {
        font-size: 12px;
    }

    #header .menu li+li {
        margin-left: 15px;
    }
    #header .logo .t2 {
        font-size: 15px;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #header {
        height: 60px;
        padding: 15px 0px 15px 0px;
    }
    #header .navbar-collapse {
        padding: 0;
        margin: 0;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        border-bottom: 3px solid #fff;
        border-top: 3px solid #fff;
        background-color: rgb(99, 183, 230);
        background-color: rgba(99, 183, 230, 0.9);
        overflow-y: inherit;
    }
    #header .menu {
        float: left;
        width: 100%;
    }
    #header .menu li {
        margin: 0;
        width: 100%;
    }
    #header .menu li+li {
        margin: 0;
        border-top: 1px solid #fff;
    }
    #header .menu li a {
        text-align: center;
        width: 100%;
        padding: 0;
        padding: 10px 0px 10px 0px;
        font-size: 15px;
    }
    #header .menu li a:hover, #lang_sel ul li a:hover {
        border: 0;
        background: rgb(99, 183, 230);
        border: 0;
    }
    #lang_sel ul li a {
        background-color: transparent !important;
        border: none;
    }
    #header .menu li a:hover:after {
        content: '';
        border: 0;
        background: none;
        padding: 0;
        margin: 0;
        width: 0;
        height: 0;
    }
    #header .menu li.active a:after {
        content: '';
        border: 0;
        background: none;
        padding: 0;
        margin: 0;
        width: 0;
        height: 0;
    }
    /*lang*/
    #lang_sel {
        height: auto!important;
        width: 100%;
        position: relative;
        font-family: verdana, arial, sans-serif;
        display: inline-block;
        padding: 0;
        border-top: 1px solid #fff;
        text-align: center;
    }
    
    #lang_sel a {
        padding-left: 9px!important;
    }
    #lang_sel ul ul {
        width: 100%!important;
        top: 36px!important;
    }
    #lang_sel li {
        width: 100%!important;
        padding: 0 19px!important;
    }
    #lang_sel ul ul li {
        background-color: rgb(113, 188, 231)!important;
        width: 100%!important;
        border-top: 1px solid #fff;
    }
    #lang_sel ul ul li a {
        padding-left: 16px!important;
    }
    #lang_sel ul li a {
        line-height: 34px!important;
        color: rgba(255, 255, 255, 0.8)!important;
    }

    #lang_sel a.lang_sel_sel, #lang_sel ul ul a {
        font-size: 15px!important;
    }
    #lang_sel ul ul a {
        padding: 0!important;
    }
    /*lang*/
}


/*==========================================*/


/* #block-1 */

#block-1 {
    /* float: left; */
    width: 100%;
    height: 100%;
    /*background: url(../images/block-1-bg_new.jpg)no-repeat top center, url(../images/Polygon.png)repeat-x #5E8DB7 bottom left; */
    background: url(../images/bg-top.jpg)no-repeat top center;
    background-size: cover;
    padding-top: 110px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
#block-1 .block-1-fon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.74);
    z-index: -1;
}

#block-1 h1 {
    color: #4a4a4a;
    text-align: center;
    font-size: 36px;
    font-family: 'SegoeUI';
    padding-bottom: 30px;
    position: relative;
    padding-top: 15px;
}

#block-1 h1:after {
    position: absolute;
    bottom: 0;
    width: 30%;
    content: '';
    height: 1px;
    background: #93b6d6;
    left: 35%;
}

#block-1 h1 span {
    background: #93B6D6;
    padding: 0px 7px 3px 7px;
    border-radius: 3px;
}

#block-1 h1 em {
    background: #4C6A92;
    padding: 0px 7px 3px 7px;
    border-radius: 3px;
    color: #fff;
    font-family: 'SegoeUI-Bold';
}

#block-1 h2 {
    font-size: 22px;
    font-family: 'SegoeUI';
    color: #4a4a4a;
    text-align: center;
    padding-top: 25px;
    line-height: 28px;
}

#block-1 .buttons {
    text-align: center;
    padding-top: 35px;
}

#block-1 .buttons a {
    display: inline-block;
}

#block-1 .slider {
    /*height: 271px;*/
    height: 491px;
    width: 100%;
    margin-top: 36px;
}

.dg-container {
    width: 100%;
    /*height: 271px;*/
    height: 100%;
    position: relative;
}

.dg-wrapper {
    /*width: 411px;
    height: 271px;*/
    width: 650px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.dg-wrapper a {
    /*width: 411px;
    height: 271px;*/
    width: 650px;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.dg-wrapper a.dg-transition {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.dg-wrapper a img {
    display: block;
    width: 100%;
    /*box-shadow: 0px 4px 20px 2px #23436678;*/
}

#block-1 .screenshots {
    float: left;
    width: 100%;
    text-align: center;
    display: none;
    margin-top: 50px;
}

#block-1 .screenshots img {
    display: inline-block;
    position: relative;
    margin-left: 0px;
}

#block-1 .screenshots .item-1 {
    width: 220px;
    z-index: 1;
}

#block-1 .screenshots .item-2 {
    width: 330px;
    z-index: 2;
    margin-left: -50px;
}

#block-1 .screenshots .item-3 {
    width: 220px;
    z-index: 1;
    margin-left: -50px;
}


/* tablet2 | md */
@media (min-width: 992px) and (max-width: 1280px) {
    .dg-wrapper {
        width: 400px;
        height: 265px;
    }
    .dg-wrapper a {
        width: 400px;
        height: 265px;
    }
    .dg-wrapper a img {
        width: 100%;
        height: 265px;
    }
    #block-1 .slider {
        margin-top: 17px;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    #block-1 {
        padding-top: 110px;
    }
    #block-1 h1 {
        font-size: 32px;
        padding-bottom: 20px;
    }
    #block-1 h2 {
        font-size: 18px;
        padding-top: 20px;
        line-height: 24px;
    }
    #block-1 .buttons {
        padding-top: 20px;
    }
    #block-1 .slider {
        height: 230px;
    }
    .dg-container {
        width: 100%;
        height: 230px;
        position: relative;
    }
    
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-1 {
        padding-top: 100px;
    }
    #block-1 h1 {
        font-size: 28px;
        padding-bottom: 20px;
    }
    #block-1 h2 {
        font-size: 16px;
        padding-top: 10px;
        line-height: 22px;
    }
    #block-1 .buttons {
        padding-top: 20px;
    }
    #block-1 .slider {
        display: none;
    }
    #block-1 .screenshots {
        display: block;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-1 {
        padding-top: 70px;
    }
    #block-1 h1 {
        font-size: 24px;
        padding-bottom: 20px;
        line-height: 1.7;
    }
    #block-1 h1 strong {
        background: none;
        padding: 0;
        border: 0;
    }
    #block-1 h1 em {
        padding: 0;
        border: 0;
    }
    #block-1 h2 {
        font-size: 15px;
        padding-top: 10px;
        line-height: 20px;
    }
    #block-1 .buttons {
        padding-top: 20px;
    }
    #block-1 .slider {
        display: none;
    }
    #block-1 .screenshots {
        display: block;
        position: relative;
        margin-top: 40px;
    }
    #block-1 .screenshots .item-1 {
        width: 30%;
    }
    #block-1 .screenshots .item-2 {
        width: 40%;
    }
    #block-1 .screenshots .item-3 {
        width: 30%;
    }
}


/*==========================================*/


/* #block-2 */

#block-2 {
    background: #fff;
    /* float: left; */
    width: 100%;
    padding: 70px 0px 100px 0px;
    position: relative;
    z-index: 12;
    /*margin-top: 872px;*/
    /* margin-top: 652px; */
    margin-top: 1030px;
}

#block-2 ul {
    float: left;
    width: 100%;
}

#block-2 ul li {
    float: left;
    width: 25%;
    text-align: center;
    padding: 0px 25px 0px 25px;
}

#block-2 ul li .icon {
    float: left;
    width: 100%;
    height: 47px;
}

#block-2 ul li .icon i {
    background: url('../images/icons.png') no-repeat bottom center;
    display: block;
    margin: auto;
}

#block-2 ul li h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #636363;
    font-family: 'SegoeUI-SemiBold';
    margin-top: 15px;
    float: left;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
}

#block-2 ul li h3:after {
    position: absolute;
    bottom: 0;
    width: 30%;
    content: '';
    height: 1px;
    background: #636363;
    left: 35%;
}

#block-2 ul li p {
    font-size: 14px;
    color: #636363;
    font-family: 'SegoeUI-Light';
    line-height: 24px;
    margin-top: 15px;
    float: left;
    width: 100%;
}

#block-2 ul li.item-1 .icon i {
    background-position: -2px -2px;
    width: 48px;
    height: 47px;
}

#block-2 ul li.item-2 .icon i {
    background-position: -55px -2px;
    width: 21px;
    height: 35px;
    margin-top: 12px;
}

#block-2 ul li.item-3 .icon i {
    background-position: -81px -2px;
    width: 30px;
    height: 37px;
    margin-top: 10px;
}

#block-2 ul li.item-4 .icon i {
    background-position: -115px -2px;
    width: 28px;
    height: 36px;
    margin-top: 11px;
}


/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
    #block-2 {
        padding: 50px 0px 50px 0px;
        margin-top: 726px;
    }
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-2 {
        padding: 40px 0px 40px 0px;
        margin-top: 644px;
    }
    #block-2 ul li {
        padding: 0px 10px 0px 10px;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-2 {
        padding: 30px 0px 30px 0px;
        margin-top: 400px;
    }
    #block-2 ul li {
        padding: 0px;
        width: 100%;
    }
    #block-2 ul li+li {
        margin-top: 10px;
    }
}


/*==========================================*/


/*new*/
#block-3_1 {
    background-color: #F8F9FB;
    width: 100%;
    height: auto;
    padding: 70px 0px;
    position: relative;
    text-align: center;
    z-index: 12;
    background-image: url(../images/kos_tile.png);
    margin-top: 1030px;
}
.block-3_1-title {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}
.block-3_1-title svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.block-3_1-title h6 {
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'SegoeUI-SemiBold';
    text-align: center;
    padding: 2px 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.b-3_1-item {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
    margin: 50px 0 20px;
    font-family: "SegoeUI", sans-serif;
}
.b-3_1-item>img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 4px;
    left: -1px;
}
#block-3_1 ul {
    width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
    text-align: center;
    padding: 60px 0;
}
#block-3_1 ul li {
    text-decoration: none;
    display: inline-block;
    margin: 0;
        /*width: 233px;*/
    height: 255px;
    position: relative;
}
#block-3_1 ul li img {
    width: auto;
    height: 100%;
}
#block-3_1 .container>p {
    font-size: 27px;
    color: #4a4a4a;
}
.item-text-1 {
    display: inline-block;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 57px 41px 0;
    position: absolute;
    top: 0;
    left: 0;
}
.item-text-2 {
    display: inline-block;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 52px 19px 0;
    position: absolute;
    top: 0;
    left: 0;
}
.item-smal-t {
    color: #999;
    font-size: 13px;
    margin: 10px 0 12px;
    display: inline-block;
    line-height: 1.3;
}
.num-underl {
    color: #6184aa;
    font-size: 21px;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    padding: 0 5px;
}
.num-underl:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #6184aa;
    left: 0px;
    z-index: 1;
    bottom: -5px;
}
.item-big-t {
    color: #6184aa;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
    width: 100%;
}
.padd{
    padding: 59px 46px 0!important;
}
.padd-2{
    padding: 77px 20px 0!important;
}
.mp-e {
    margin-bottom: 9px;
}
.bt-a {
    position: relative;
    margin-bottom: 15px;
}
.bt-a:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #6184aa;
    left: 0px;
    margin-left: 42px;
    z-index: 1;
    bottom: -10px;
}

@-webkit-keyframes swing {
  30% {
    -webkit-transform: rotateZ(15deg);
    transform: rotateZ(15deg);
  }
  
  65% {
    -webkit-transform: rotateZ(-15deg);
    transform: rotateZ(-15deg);
  }
  100% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
 
@keyframes swing {

30% {
    -webkit-transform: rotateZ(15deg);
    transform: rotateZ(15deg);
}

65% {
    -webkit-transform: rotateZ(-15deg);
    transform: rotateZ(-15deg);
}
100% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
}
}
 
#swing:hover {
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
   -webkit-animation-iteration-count: 1;
   animation-iteration-count: 1;
   transform-origin: center 30px;
} 


/* tablet2 | md */

@media (min-width: 991px) and (max-width: 1199px) {
    #block-3_1 {
        margin-top: 726px;
    }
    .b-3_1-item>img {
        top: 14px;
    }
    #block-3_1 ul li {
        height: 209px;
    }
    .item-text-1 {
    padding: 47px 21px 0;
}
.item-text-2 {
    padding: 36px 10px 0;
}
.num-underl {
    font-size: 19px;
    margin-bottom: 11px;
    padding: 0 5px;
}
.item-smal-t {
    margin: 0px 0 12px;
}
.padd {
    padding: 37px 26px 0!important;
}
.padd-2 {
    padding: 53px 5px 0!important;
}
.block-3_1-title h6 {
    font-size: 22px;
}
}



/* tablet | sm */

@media (max-width: 991px) {
    #block-3_1 {
        margin-top: 644px;
    }
    .b-3_1-item>img {
        display: none;
    }
    .b-3_1-item {
        margin: 5px 0 0px;
    }
    #block-3_1 ul li {
        margin: 10px 3px;
    }
    .block-3_1-title h6 {
        font-size: 22px;
        background-color: #f27d76;
        border-radius: 5px;
    }
    .block-3_1-title svg {
        display: none;
    }

}
@media (max-width: 767px) {
    #block-3_1 {
        margin-top: 0;
    }
}


/* mobile */

@media (max-width: 480px) {
    #block-3_1 h6 {
        font-size: 19px;
    }
    #block-3_1 {
        padding: 50px 0px;
    }
    #block-3_1 ul {
        padding: 32px 0;
    }
}


/*==========================================*/


/* #block-4 */

#block-4 {
    /* float: left; */
    width: 100%;
    padding: 80px 0px 60px 0px;
    background: rgb(251, 86, 102);
    background: -moz-linear-gradient(0deg, rgb(251, 86, 102) 50%, rgb(3, 60, 92) 50%);
    background: -webkit-linear-gradient(0deg, rgb(251, 86, 102) 50%, rgb(3, 60, 92) 50%);
    background: -o-linear-gradient(0deg, rgb(251, 86, 102) 50%, rgb(3, 60, 92) 50%);
    background: -ms-linear-gradient(0deg, rgb(251, 86, 102) 50%, rgb(3, 60, 92) 50%);
    background: linear-gradient(90deg, rgb(251, 86, 102) 50%, rgb(3, 60, 92) 50%);
    position: relative;
    z-index: 12;
}

#block-4 .left {
    float: left;
    width: 50%;
    padding: 0px 60px 0px 20px;
}

#block-4 .right {
    float: right;
    width: 50%;
    padding: 0px 95px 0px 100px;
    text-align: center;
}

#block-4 .left .t1 {
    float: left;
    width: 100%;
}

#block-4 .left .t1 h5 {
    float: left;
    width: 50%;
    color: #043D5D;
    font-size: 34px;
    font-family: 'SegoeUI-SemiBold';
}

#block-4 .left .t1 h5 strong {
    font-size: 60px;
    font-family: 'SegoeUI-Bold';
}

#block-4 .left .t1 h6 {
    float: right;
    width: 50%;
    color: #fff;
    font-size: 90px;
    font-family: 'SegoeUI-Bold';
}

#block-4 .left p {
    color: #FEEDEE;
    font-size: 16px;
    line-height: 20px;
    font-family: 'SegoeUI-Light';
    margin-top: 10px;
    float: left;
    width: 100%;
}



#block-4 .time_circles {
    position: relative;
    width: 100%;
    height: 100%;
}

#block-4 .time_circles>div {
    position: absolute;
    text-align: center;
    top: 25px!important;
}

#block-4 .time_circles>div>span {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'SegoeUI-SemiBold';
    color: #fff;
    font-size: 25px!important;
}

#block-4 .time_circles>div>h4 {
    margin: 0px;
    padding: 0px;
    margin-top: 5px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'SegoeUI-Light';
    color: #FFFFFF;
    font-size: 11px!important;
    text-transform: none!important;
}

#block-4 .right>p {
    color: #869FAF;
    font-size: 14px;
    line-height: 18px;
    font-family: 'SegoeUI-Light';
    margin-top: 10px;
    float: left;
    width: 100%;
    text-align: center;
}

#block-4 .right>a {
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #BE5064;
    color: #fff;
    font-size: 16px;
    font-family: 'SegoeUI-Light';
    padding: 10px 15px 10px 15px;
    width: 50%;
    display: inline-block;
    text-align: center;
    margin-top: 15px;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

#block-4 .right>a:hover {
    border: 1px solid #fff;
}


/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
    #block-4 {
        padding: 50px 0px 50px 0px;
    }
    #block-4 .left {
        float: left;
        width: 50%;
        padding: 0px 0px 0px 20px;
    }
    #block-4 .right {
        float: right;
        width: 50%;
        padding: 0px 50px 0px 20px;
    }
    #block-4 .left .t1 h5 {
        font-size: 30px;
    }
    #block-4 .left .t1 h5 strong {
        font-size: 54px;
    }
    #block-4 .left .t1 h6 {
        font-size: 80px;
    }
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-4 {
        padding: 40px 0px 40px 0px;
    }
    #block-4 .left {
        float: left;
        width: 50%;
        padding: 0px 30px 0px 0px;
    }
    #block-4 .right {
        float: right;
        width: 50%;
        padding: 0px 0px 0px 30px;
    }
    #block-4 .left .t1 h5 {
        font-size: 21px;
    }
    #block-4 .left .t1 h5 strong {
        font-size: 40px;
    }
    #block-4 .left .t1 h6 {
        font-size: 64px;
    }
    #block-4 .time_circles>div {
        top: 23px!important;
    }
    #block-4 .time_circles>div>span {
        font-size: 20px!important;
    }
    #block-4 .time_circles>div>h4 {
        font-size: 10px!important;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-4 {
        padding: 30px 0px 30px 0px;
        background: #033C5C;
    }
    #block-4 .left {
        float: left;
        width: 100%;
        padding: 0;
    }
    #block-4 .right {
        float: left;
        width: 100%;
        padding: 0px;
        padding-top: 10px;
    }
    #block-4 .left .t1 h5 {
        font-size: 21px;
        color: #fff;
        float: left;
        width: 100%;
        text-align: center;
    }
    #block-4 .left .t1 h5 strong {
        font-size: 40px;
        color: #fff;
        text-align: center;
    }
    #block-4 .left .t1 h6 {
        font-size: 64px;
        float: left;
        width: 100%;
        text-align: center;
    }
    #block-4 .left p {
        text-align: center;
    }
    #block-4 .right>a {
        float: none;
        width: 80%;
    }
    #block-4 .time_circles>div {
        top: 24px!important;
    }
    #block-4 .time_circles>div>span {
        font-size: 22px!important;
    }
    #block-4 .time_circles>div>h4 {
        font-size: 10px!important;
    }
}


/*==========================================*/


/* #block-5 */

#block-5 {
    background: #5E8DB7;
    /* float: left; */
    width: 100%;
    padding: 100px 0px 120px 0px;
    position: relative;
    z-index: 12;
}

#block-5 .carousel-container {
    position: relative;
    display: block;
    margin: auto;
    width: 210px;
    margin-top: 30px;
}

#block-5 #carousel {
    display: none;
    margin: auto;
    width: 210px;
    height: 70px;
    position: relative;
}

#block-5 .carousel-image {
    border: 0;
    display: block;
}

#block-5 .carousel-feature {
    position: absolute;
    top: -1000px;
    left: -1000px;
    cursor: pointer;
}

#block-5 .carousel-feature img {
    border: 5px solid #fff;
    border-radius: 50%;
}

#block-5 .tracker-summation-container {
    display: none;
}

#block-5 .tracker-individual-container {
    display: none;
}

#block-5 .tracker-individual-container li {
    display: none;
}

#block-5 .tracker-individual-container .tracker-individual-blip {
    display: none;
}

#block-5 .tracker-individual-container .tracker-individual-blip-selected {
    display: none;
}

#block-5 #carousel-left {
    position: absolute;
    left: -20px;
    top: 50%;
    /*margin-top: -41.5px;*/
    margin-top: -5.5px;
    cursor: pointer;
    background: url('../images/icons.png') no-repeat -260px -15px;
    width: 12px;
    height: 11px;
}

#block-5 #carousel-right {
    position: absolute;
    top: 50%;
    margin-top: -5.5px;
    /*margin-top: -41.5px;*/
    right: -20px;
    cursor: pointer;
    background: url('../images/icons.png') no-repeat -259px -2px;
    width: 12px;
    height: 11px;
}

#block-5 #carousel-left:hover,
#block-5 #carousel-right:hover {
    background-color: #2F6A8C;
    border-radius: 50%;
}

#block-5 .review-text {
    display: none;
    width: 764px;
    margin: auto;
    text-align: center;
}

#block-5 .review-text.item-1 {
    display: block;
}

#block-5 .review-text p {
    color: #fff;
    background: url(../images/block-5-title-separator.png)no-repeat bottom center;
    padding: 0px 70px 33px 70px;
    font-size: 15px;
    font-family: 'SegoeUI-Italic';
    line-height: 20px;
}

#block-5 .review-text h6 {
    color: #fff;
    margin-top: 16px;
    font-size: 14px;
    font-family: 'SegoeUI-Light';
    color: #ACD9F2;
}


/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
    #block-5 {
        padding: 50px 0px 50px 0px;
    }
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-5 {
        padding: 40px 0px 40px 0px;
    }
    #block-5 .review-text {
        display: none;
        width: 100%;
        text-align: center;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-5 {
        padding: 30px 0px 30px 0px;
    }
    #block-5 .review-text {
        display: none;
        width: 100%;
        text-align: center;
    }
    #block-5 .review-text p {
        padding: 0px 0px 33px 0px;
    }
    #block-5 .carousel-container {
        margin-top: 20px;
    }
}

/*==========================================*/


/* #block-7 */

#block-7 {
    background: #FDFDFD;
    width: 100%;
    padding: 95px 0px;
    position: relative;
    z-index: 12;
}

#block-7 .container>h6 {
    text-align: center;
    font-size: 20px;
    color: #636363;
    text-transform: uppercase;
    font-family: 'SegoeUI-Bold';
}

#block-7 ul {
    float: left;
    width: 100%;
    margin-top: 60px;
    text-align: center;
}

#block-7 ul li {
    display: inline-block;
    margin: 0px 15px 0px 15px;
}

#block-7 ul li img {
    max-width: 100%;
    border: 1px solid #919191;
}

#block-7 ul li p {
    font-size: 15px;
    font-family: 'SegoeUI-Light';
    color: #BBBBBB;
    margin-top: 25px;
}
.block-7-bottom {
    text-align: center;
    margin-top: 60px;
}
.block-7-bottom p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 38px;
}
.block-7-bottom .butt-pc {
    width: 267px;
    position: relative;
    height: auto;
    border-radius: 10px;
    background-color: #02aca6;
    border: solid 1px #979797;
    font-size: 18px;
    margin: auto;
    color: #fff;
    padding: 20px 10px 20px 10px;
    font-family: 'SegoeUI-SemiBold';
    transition: all 300ms ease;
    /*box-shadow: 0px 4px 10px 2px rgba(0,0,0, 0.2);*/
    overflow: hidden;
}
.block-7-bottom .butt-pc:active {
    transform: scale(0.95);
}

.block-7-bottom .butt-pc:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    background: #06726f;
    top: 50%;
    left: 50%;
    z-index: 0;
    border-radius: 50%;
    transition: all 300ms ease;
}
.block-7-bottom .butt-pc:hover {
    box-shadow:none;
}
.block-7-bottom .butt-pc:hover:before {
    position: absolute;
    content: '';
    width: 500px;
    height: 500px;
    background: #0c8884;
    top: -208px;
    left: -45%;
    z-index: 0;
    transition: all 800ms ease;
    border-radius: 50%;
}
.block-7-bottom .butt-pc a {
    text-decoration: none;
    color: #fff;
    position: relative;
    padding: 17px 0px;
    width: 100%;
    height: auto;
}


/*new*/
#block-7 .container h2 {
    font-size: 32px;
    color: #000;
    margin: 0;
    padding: 0 0 40px;
    text-align: center;
    text-transform: uppercase;
}
.block-7-img, .block-7-info {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}
.block-7-img {
    padding-top: 40px;
}
.block-7-item {
    position: relative;
    width: 100%;
    height: auto;
    display: none;
}
.block-7-item img {
    width: 100%;
    height: auto;
    display: inline-block;
}

.block-7-item .desc {
    width: 100%;
    display: inline-block;
    padding-left: 175px;
    padding-top: 30px;
}
.block-7-item .desc p {
    color: #939d9f;
    font-size: 16px;
}
.block-7-item-active {
    display: block!important;
}
.block-7-info {
    margin-left: 30px;
}
.block-7-info .block-7-text {
    position: relative;
    margin: 50px 0 10px 42px;
    display: flex;
    height: 46px;
}

.block-7-info .block-7-text h4 {
    font-size: 14px;
    color: #4a4a4a;
    font-style: normal;
    padding: 12px 0 12px 12px;
    margin: 0;
    font-family: "SegoeUI-Light", sans-serif;
}
body {
  counter-reset: p;
}

.block-7-info .block-7-text h4:before {
    font-size: 31px;
    font-weight: 100;
    left: -45px;
    counter-increment: p;
    content: counter(p);
    position: absolute;
    top: 1px;
    color: #000;
    box-sizing: border-box;
    padding-left: 14px;
    padding-right: 15px;
    padding-top: 4px;
    padding-bottom: 6px;
    /*background-color: #4c6a92;*/
    background-color: transparent;
    border-radius: 60%;
    z-index: 1;
    font-family: "SegoeUI", sans-serif;
}
.block-7-text-mobile {
    display: inline-block;
    width: 25px;
    height: 25px;
    position: relative;
}
.block-7-text-mobile:before {
    font-size: 31px;
    font-weight: 100;
    left: -45px;
    counter-increment: p;
    content: counter(p);
    position: absolute;
    top: 1px;
    color: #000;
    box-sizing: border-box;
    padding-left: 14px;
    padding-right: 15px;
    padding-top: 4px;
    padding-bottom: 6px;
    border: 1px solid #000;
    /*background-color: #4c6a92;*/
    background-color: transparent;
    border-radius: 60%;
    z-index: 1;
}

.block-7-text-active {
    background-color: #EDF3F7;
    cursor: pointer;
    color: #023C5C;
}
.block-7-info .block-7-text-active h4:before {
    background-color: #4c6a92;
    color: #fff;
}
.block-7-text-active .block-7-text-mobile:before {
    background-color: #4c6a92;
    color: #fff;
    border: none;
}

.block-7-text-active h4 {
    color: #023C5C!important;
}
.block-7-text-active h4:before {
    color: #fff!important;
}
.gef {
    padding: 0px 0 0 12px!important;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.bl-ar {
    position: absolute;
    left: -56px;
    top: 0;
    width: 95px;
    height: 100%;
    background-color: transparent;
    transition: left 500ms ease;
    z-index: -1;
}
.errow-l {
    height: 100%;
    overflow: hidden;
}
.errow-l:before {
    content: "";
    display: block;
    border-top: 0;
    border-right: 50px solid transparent;
    border-bottom: 50px solid transparent;
    /*border-left: 50px solid #4c6a92;*/
    border-left: 50px solid transparent;
    position: relative;
    bottom: 19px;
    left: 5px;
    transform: rotate(-45deg);
}
.errow-l:after {
    content: "";
    display: block;
    border-top: 0;
    border-right: 50px solid transparent;
    border-bottom: 76px solid transparent;
    border-left: 50px solid transparent;
    position: relative;
    bottom: 73px;
    left: 27px;
    transform: rotate(-45deg);
    z-index: 0;
}
.block-7-text-active .bl-ar {
    left: -95px;
}
.block-7-text-active .errow-l:before {
    border-left: 50px solid #4c6a92;
}
.block-7-text-active .errow-l:after {
    border-left: 50px solid #edf3f7;
    background-color: #edf3f7;
} 


/* tablet2 | md */

@media (max-width: 1199px) {
    .block-7-info .block-7-text h4 {
        font-size: 16px;
    }
}


/*tablet | sm*/

@media (max-width: 991px) {
    .block-7-text-active {
        background: none;
    }
    .block-7-info .block-7-text {
        display: inline-block;
        position: initial;
        margin: 28px 0 10px 42px;
    }
    .block-7-info {
        margin-left: 0;
        text-align: center;
    }
    .bl-ar {
        display: none;
    }
    .block-7-info .block-7-text h4 {
        display: none;
        position: absolute;
        width: 100%;
        padding: 0;
        left: 0;
        height: auto;
        top: 100px;
        font-size: 21px;
        color: #4a4a4a!important;
    }
    .block-7-info .block-7-text-active h4 {
        display: inline-block!important;
    }
    .block-7-info .block-7-text h4:before {
        display: none;
    }
    .block-7-bottom {
        margin-top: 97px;
    }
    .gef {
        padding: 0;
    }
    .block-7-item .desc {
        text-align: center;
        padding-left: 0;
    }
}


/*mobile*/

@media (max-width: 767px) {
    #block-7 {
        padding: 65px 0px;
    }
    .block-7-text-mobile:before {
        padding-top: 6px;
        padding-bottom: 8px;
    }
}


/*==========================================*/


/* #block-8 */

#block-8 {
    background: #032E46;
    /* float: left; */
    width: 100%;
    padding: 100px 0px 120px 0px;
    position: relative;
    z-index: 12;
}

#block-8 .container>h6 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'SegoeUI-Bold';
}
.carousel-block {
    color: #fff;
    overflow: hidden;
}
.owl-item {
    position: relative;
    display: inline-block;
}
.item-text {
    padding-left: 90px;
    
}
.item-text h6 {
    font-size: 64px;
    font-weight: normal;
    margin: 50px 0 20px;
    
}
.item-text p {
    font-family: "OpenSans-Light", sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.5;
  margin: 40px 0 0;
  
}
.blue_l {
    width: 188px;
    height: 3px;
    background-color: #93B6D6;
}
.qw-img {
    width: 100%;
}
#block-8 .block-img {
    position: relative;
    width: 100%;
    height: auto;
    margin-right: 40px;
}
#block-8 .block-item a {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    
}
#block-8 .block-item {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 9;

}
.owl-dots {
    text-align: center;
    position: relative;
}
#block-8 .owl-dot {
    width: 11px;
    height: 11px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    opacity: 0.7;
    padding: 0;
}
#block-8 .owl-dot.active {
    opacity: 1;
    background-color: #6e98bd;
}
#block-8 .owl-nav>button:hover {
    opacity: 1;
    transform: scale(1.1);
}

#block-8 .owl-nav {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    height: auto;
    top: -178px;
}
#block-8 .owl-nav>button {
    border-bottom-color: transparent;
    background-color: transparent;
    border: none;
    font-size: 55px;
    line-height: 38px;
    color: #fff;
    opacity: 0.7;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    font-family:"OpenSans-Light", sans-serif;
}
#block-8 .owl-nav>button:active, #block-8 .owl-nav>button:focus {
  outline: none !important;
}
button::-moz-focus-inner {
  border: 0 !important;
}
.s-wide .owl-carousel .owl-controls {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
#block-8 .block-img {
    padding-right: 90px;

}
#block-8 .block-item a {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute !important;
    bottom: 24px;
    height: 20px;
    width: 150px;
    right: 42px;
}
#block-8 .block-img:before {
    content: '';
    position: absolute;
    width: 36px;
    height: 115px;
    background-image: url(../images/AM-SideTag_Big.png);
    background-size: cover;
    z-index: 0;
    right: 54px;
    top: 22px;
    box-shadow: 0 2px 13px 6px rgba(0, 0, 0, 0.14);
}
.widht_100 {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
}
.Q_A {
    color: #000;
    box-shadow: 0 2px 13px 6px rgba(0, 0, 0, 0.14);
    border-radius: 19px;
    overflow: hidden;
}
.Q_block {
    padding: 40px 60px 20px;
    background-color: #fff;
    border-radius: 14px 14px 0 0;
}
.Q-title {
    text-align: right;
    width: 100%;
    font-family: "Helvetica", sans-serif;
    font-size: 50px;
    margin-bottom: 18px;
}
.Q-descr {
    font-family: "Helvetica", sans-serif;
    font-size: 19px; 
    margin-bottom: 30px; 
    line-height: 1.3;
}
.Q_block .blue_l {
    width: 100% !important;
}
.A_block {
    padding: 40px 48px 46px 46px;
    background-color: #EFEFEE;
    border-radius: 0 0 14px 14px;
    position: relative;
    top: -2px;
    height: 218px;
}
.A-descr {
    font-family: "Helvetica", sans-serif;
    font-size: 15px; 
    margin-bottom: 11px;
    line-height: 1.4;
    text-align: justify;
}
.A-read-more{
    text-align: right;
    color: #5cb3e7;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.A-read-more:hover {
    color: #5cb3e7;
}



/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
    #block-8 {
        padding: 50px 0px 50px 0px;
    }
    #block-8 .list-wrapper {
        margin-top: 50px;
    }
    #block-8 .text {
        padding: 0px 20px 0px 20px;
    }
    #block-8 .owl-nav {
        top: -187px;
    }
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-8 {
        padding: 40px 0px 40px 0px;
    }
    #block-8 .list-wrapper {
        margin-top: 40px;
    }
    #block-8 .text {
        padding: 0px 20px 0px 20px;
    }
    #block-8 .container {
        width: 100%;
    }
    .item-text h6 {
        font-size: 48px;
        margin: 38px 0 20px;
    }
    .item-text {
        padding-left: 38px;
    }
    .blue_l {
        width: 87%;
    }
    .item-text p {
        font-size: 22px;
        margin: 22px 0 0;
    }
    #block-8 .block-item {
        padding: 0 20px;
    }
    #block-8 .owl-nav {
        top: -146px;
    }
    .Q-descr {
        font-size: 18px;
    }
    .A-descr {
        font-size: 14px;
    }
    .Q_block {
        padding: 35px 26px 20px;
    }
    .Q-title {
        font-size: 35px;
    }
    .A_block {
        padding: 30px 11px 46px 7px;;
        height: 200px;
    }
    #block-8 .block-item a {
        bottom: 19px;
        right: 21px;
    }

}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-8 {
        padding: 0px 0px 54px 0px;
    }
    .item-text {
        text-align: center;
        padding: 0;
    }
    .blue_l {
        margin: auto;
    }
    #block-8 .block-img {
        width: 88%;
        margin: auto;
        padding-right: 36px;
    }
    #block-8 .block-img:before {
        right: 0px !important;
    }
    .item-text p {
        margin: 20px 0px;
        font-size: 22px;
    }
    .item-text h6 {
        font-size: 40px;
    }
    #block-8 .owl-nav {
        top: -214px;
    }
    .Q_block {
        padding: 40px 20px 20px;
    }
    .A_block {
        padding: 28px 11px 11px;
    }
    .Q-title {
        font-size: 38px;
    }
    .Q-descr {
        font-size: 17px;
    }
    .A-descr {
        font-size: 14px;
    }
    #block-8 .owl-dot {
        margin: 10px;
    }
}
@media (max-width: 480px) {
    .Q-title {
        font-size: 25px;
    }
    .Q-descr {
        font-size: 15px;
    }
    .A-descr {
        font-size: 12px;
    }
    .A_block {
        padding: 15px 11px 11px;
        height: 194px;
    }
    .Q_block {
        padding: 19px 20px 20px;
    }
    .Q-descr {
        margin-bottom: 9px;
    }
    #block-8 .block-img {
        padding-right: 28px;
    }
    #block-8 .block-img:before {
        width: 28px;
        height: 92px;
    }
    #block-8 .block-item a {
        bottom: 15px;
        right: 18px;
    }
    .Q_A .col-xs-2, .Q_A .col-xs-10 {
        padding-left: 0 !important;
    }


}
@media (max-width: 375px) {
    .A_block {
        height: 211px;
    }
    #block-8 .owl-dot {
        margin: 7px;
    }
}


/*==========================================*/


/* #block-9 */

/*new*/
#block-9 {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
#block-9 .col-sm-5 {
    padding: 0 !important;
}
.blue-block {
    background-color: #B8D7EC;
    position: absolute;
    width: 55%;
    left: -80px;
    top: 0;
    height: 100%;
    -webkit-transform: skew(-13deg);
    -ms-transform: skew(-13deg);
    -o-transform: skew(-13deg);
    transform: skew(-13deg);
    background-image: linear-gradient(to top, #b5cad9, #d3e6ed);
    background-image: url(../images/l-n-back.png);
}
.block-9-box {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 92px 0px;
    z-index: 1;
}
.block-9-box img {
    width: 96%;
    height: auto;
}
.block-9-text-butt {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 126px 0 40px 212px;
    z-index: 1;
}
.block-9-text-butt h4 {
    font-size: 28px;
    color: #617782;
    line-height: 1.64;
    margin-bottom: 43px;
}
.block-9-text-butt h4 span {
    border-radius: 3px;
    color: #fff;
    padding: 0 5px;
    white-space: nowrap;
}
.block-9-text-butt h4 span:nth-of-type(1) {
  background-color: #93b6d6;
}
.block-9-text-butt h4 span:nth-of-type(2) {
  background-color: #a8cdc2;
}
.block-9-text-butt p {
    color: #33392d;
    font-size: 15px;
    line-height: 1.4;
    text-indent: 15px;
    margin: 0;
    text-align: justify;
}
.block-9-butt {
    display: flex;
    width: 100%;
    height: auto;
    padding: 45px 0 0;
    justify-content: space-between;
}
.block-9-butt .butt {
    width: 188px;
    height: 56px;
    border-radius: 5px; 
    font-size: 18px;
    text-align: center;
    position: relative;
    transition: all 300ms ease;
    overflow: hidden;
    /*box-shadow: 0px 4px 10px 2px rgba(0,0,0, 0.2);*/
}
.block-9-butt .butt:active {
    transform: scale(0.95);
}
.block-9-butt .butt:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    background: transparent;
    top: 50%;
    left: 50%;
    z-index: 0;
    border-radius: 50%;
    transition: all 300ms ease;
}
.block-9-butt .butt:hover {
    box-shadow: none;
}
.block-9-down a:hover, .block-9-butt .butt .fa:hover {
    color: #fff;
}
.block-9-butt .block-9-down a {
    transition: all 300ms ease;
}

.block-9-butt .block-9-down:hover:before {
    position: absolute;
    content: '';
    width: 250px;
    height: 250px;
    background: #74a57f;
    top: -92px;
    left: -16%;
    z-index: 0;
    transition: all 800ms ease;
    border-radius: 50%;
}
.block-9-down .fa {
    color: #536b60!important;
    right: 30px!important;
    transition: all 300ms ease;
}
.block-9-butt .block-9-down:hover .fa {
    color: #fff!important;
}
.block-9-butt .block-9-cart:hover:before {
    position: absolute;
    content: '';
    width: 250px;
    height: 250px;
    background: #7d9faf;
    top: -92px;
    left: -16%;
    z-index: 0;
    transition: all 800ms ease;
    border-radius: 50%;
}

.block-9-butt .butt a {
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.block-9-down {
    background-color: #ffffff;
    border: solid 2px #73a68b;
}
.block-9-down a {
    color: #536b60;
}
.block-9-cart {
    background-color: #617782;
    border: none;
}
.block-9-cart a {
    color: #fff;
}
.leaves_left {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
}
.leaves_right_top {
    position: absolute;
    top: 0;
    right: 75px;
    height: auto;
}
.leaves_right_foot {
    position: absolute;
    bottom: 0;
    right: 150px;
    height: auto;
}
.butt .fa {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 19px;
}
.block-9-butt .butt a {
    padding-right: 16px;
}

/* tablet2 | md */

@media (max-width: 1199px) {
    .block-9-text-butt {
        padding: 74px 0 40px 120px;
    }
}
/* tablet | sm */

@media (max-width: 991px) {
    #block-9 .container {
        width: 100%;
    }
    .block-9-text-butt {
        padding: 74px 14px 40px 46px;
    }
    .blue-block {
        width: 48%;
    }
    .block-9-box img {
        width: 78%;
        height: auto;
    }
    .block-9-text-butt h4 {
        font-size: 25px;
    }
    .leaves_left {
        display: none;
    }
}
/* mobile */
@media (max-width: 767px) {
    #block-9 {
        padding: 50px 0;
    }
  .block-9-box {
    text-align: center;
    padding: 50px 0px;
  }
  .block-9-box img {
    width: 350px;
  }
  .block-9-text-butt {
    padding: 0px 25px;
}
.blue-block {
    width: 100%;
    height: 55%;
    transform: skew(0);
    left: 0;
}
.leaves_right_top, .leaves_right_foot {
    right: 0;
}
.block-9-text-butt h4 {
    text-align: center;
}
}
@media (max-width: 480px) {
    .block-9-box img {
        width: 271px;
    }
    .block-9-butt {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.block-9-butt .butt {
    margin-bottom: 20px;
}
.blue-block {
    height: 456px;
}
.block-9-text-butt {
    padding: 0px 5px;
}
}

/*==========================================*/
#block-9-1 {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #f4f5f9;
    background-image: url(../images/kos_tile.png);
    padding: 70px 0;
}
#block-9-1 .col-sm-8 {
    padding: 0 !important;
}
#block-9-1 .block-9-1-title {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    padding-bottom: 40px;
}
#block-9-1 .block-9-1-title h5 {
    font-family: 'Helvetica', sans-serif;
    font-size: 24px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 5px 0; 
}
.block-9-1-left-block {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 45px 20px 102px;
    font-family: 'SegoeUI', sans-serif;
}
.block-9-1-left-block h6 {
    font-size: 26px;
    color: #032e46;
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 19px;
    text-transform: uppercase;
}
.block-9-1-left-block h6:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background-color: #5e8db7;
}
.block-9-1-left-block p {
    font-size: 18px;
    color: #33392d;
    margin: 50px 0;
    line-height: 1.3;
    text-align: justify;
}
.block-9-1-left-block .left-block-b {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    text-align: right;
}
.block-9-1-left-block .left-block-b .butt-9-1{
    width: 188px;
    height: 56px;
    border-radius: 5px;
    font-size: 18px;
    position: relative;
    transition: all 300ms ease;
    overflow: hidden;
    background-color: #f57476;
    border: none;
    margin: 0 0 0 auto;
}
.block-9-1-left-block .left-block-b .butt-9-1:active {
    transform: scale(0.95);
}
.block-9-1-left-block .left-block-b .butt-9-1:before{
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    background-color: #FF4955;
    top: 50%;
    left: 50%;
    z-index: 0;
    border-radius: 50%;
    transition: all 300ms ease;
}
.block-9-1-left-block .left-block-b .butt-9-1:hover:before{
    position: absolute;
    content: '';
    width: 250px;
    height: 250px;
    background-color: #FF4955;
    top: -92px;
    left: -16%;
    z-index: 0;
    transition: all 800ms ease;
    border-radius: 50%;
}
.block-9-1-left-block .left-block-b .butt-9-1 a {
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}
.block-9-1-right-block {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 671px;
    overflow: hidden;
    padding: 0 90px 0 0;
}
.block-9-1-right-block .right-block-img {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/pres.png);
    padding: 0 35px;
    box-shadow: inset 0 1px 12px 0 rgba(0, 0, 0, 0.15);
    border: solid 1px #E7E7E7;
    overflow-x: hidden;
    overflow-y: scroll;
}
.mosaicflow__column {
  float: left;
}
.mosaicflow-item img {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
}
.block-9-1-right-block a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
}
.block-9-1-title svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
@media (max-width: 1199px) {
    #block-9-1 .block-9-1-title h5 {
        font-size: 21px;
    }
}
@media (max-width: 991px) {
    #block-9-1 .block-9-1-title h5 {
        font-size: 22px;
        background-color: #f27d76;
        border-radius: 5px;
        padding: 7px 0;
        line-height: 28px;
    }
    .block-9-1-title svg {
        display: none;
    }
    .block-9-1-left-block {
        padding: 100px 20px 20px 30px;
    }
    .block-9-1-right-block {
        padding: 0 30px 0 0;
    }
}
@media (max-width: 768px) {
    
    .block-9-1-left-block {
        padding: 0px 20px 20px 20px;
    }
    .block-9-1-right-block {
        padding: 0 20px;
    }
    
}
@media (max-width: 480px) {
    
    .block-9-1-left-block {
        padding: 0px 10px 20px 10px;
    }
    .block-9-1-right-block {
        padding: 0 10px;
    }
    #block-9-1 {
        padding: 55px 0;
    }
    
}


/*==========================================*/
/* #block-10 */

#block-10 {
    background: #F4F5F9;
    /* float: left; */
    width: 100%;
    padding: 45px 0px 30px 0px;
    position: relative;
    z-index: 12;
}

#block-10 .left {
    float: left;
    width: 45%;
    padding-left: 110px;
}

#block-10 .right {
    float: right;
    width: 50%;
    padding-left: 165px;
}

#block-10 .left h6,
#block-10 .right h6 {
    font-size: 24px;
    color: #333;
    position: relative;
    font-family: 'SegoeUI-Light';
    padding-bottom: 10px;
    margin-bottom: 12px;
    text-align: center;
    float: left;
    width: 100%;
}

#block-10 .left h6:after,
#block-10 .right h6:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 1px;
    background: #333;
    left: 50%;
    margin-left: -10px;
}

#block-10 .left .item {
    float: left;
    width: 100%;
}

#block-10 .left .item input[type='email'] {
    font-family: 'SegoeUI-Light';
    border: 1px solid #333;
    float: left;
    width: 70%;
    height: 42px;
    background: none;
    outline: none;
    font-size: 15px;
    padding: 0px 15px 0px 15px;
    line-height: 20px;
}

#block-10 .left .item input[type='email']:focus {
    border: 1px solid #111;
}

#block-10 .left .item input[type='submit'] {
    border: 1px solid #333;
    float: left;
    width: 30%;
    height: 42px;
    background: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
}

#block-10 .left .item input[type='submit']:hover {
    background: #033C5C;
    color: #fff;
    border: 1px solid #111;
}

#block-10 .left p {
    float: left;
    width: 100%;
    text-align: center;
    color: #636363;
    margin-top: 12px;
    font-size: 13px;
    font-family: 'SegoeUI-Light';
}

#block-10 .right ul {
    float: right;
    width: 100%;
    text-align: center;
    padding: 0;
}

#block-10 .right ul li {
    display: inline-block;
    margin: 0px 10px 0px 10px;
}

#block-10 .right ul li a {
    float: left;
    width: 42px;
    height: 42px;
    background: url('../images/icons2.png') no-repeat;
    transition: all .5s;
}

#block-10 .right ul li a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

#block-10 .right ul li.tw a {
    background-position: -2px -2px;
}

#block-10 .right ul li.fb a {
    background-position: -47px -2px;
}

#block-10 .right ul li.gp a {
    background-position: -92px -2px;
}


/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
    #block-10 {
        padding: 40px 0px 30px 0px;
    }
    #block-10 .left {
        padding-left: 55px;
    }
    #block-10 .right {
        padding-left: 190px;
    }
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-10 {
        padding: 30px 0px 20px 0px;
    }
    #block-10 .left {
        width: 48%;
        padding-left: 0px;
    }
    #block-10 .right {
        width: 48%;
        padding-left: 0px;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-10 {
        padding: 20px 0px 10px 0px;
    }
    #block-10 .left {
        float: left;
        width: 100%;
        padding-left: 0px;
    }
    #block-10 .right {
        float: left;
        width: 100%;
        margin-top: 20px;
        padding-left: 0px;
    }
}


/*==========================================*/


/* #block-11 */

#block-11 {
    background: #19222B;
    /* float: left; */
    width: 100%;
    padding: 105px 0px 20px 0px;
    position: relative;
    z-index: 12;
}

#block-11 .contacts {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0;
}

#block-11 .contacts li {
    line-height: 20px;
    display: inline-block;
    font-size: 15px;
    color: #D1D3D5;
    font-family: 'SegoeUI-Light';
    margin: 0px 30px 0px 30px;
}

#block-11 .contacts li:before {
    content: '';
    display: inline-block;
    margin-right: 15px;
    background: url('../images/icons2.png') no-repeat;
}

#block-11 .contacts li.item-1:before {
    background-position: -138px -3px;
    width: 14px;
    height: 24px;
}

#block-11 .contacts li.item-2:before {
    background-position: -157px -4px;
    width: 19px;
    height: 19px;
}

#block-11 .contacts li.item-3:before {
    background-position: -181px -4px;
    width: 24px;
    height: 17px;
}

#block-11 .cop {
    float: left;
    width: 100%;
    margin-top: 120px;
    text-align: center;
}

#block-11 .cop p {
    font-size: 14px;
    font-family: 'SegoeUI-Light';
    color: #D1D3D5;
}

#block-11 .cop p a {
    color: #5499C1;
}

#block-11 .menu {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 7px;
}

#block-11 .menu li {
    display: inline-block;
    margin-right: 5px;
    padding-bottom: 2px;
}

#block-11 .menu li+li {
    border-left: 1px solid #6B7177;
    padding-left: 7px;
}

#block-11 .menu li a {
    font-size: 14px;
    color: #797E83;
    font-family: 'SegoeUI-Light';
}


/* tablet2 | md */

@media (min-width: 992px) and (max-width: 1199px) {
    #block-11 {
        padding: 85px 0px 20px 0px;
    }
    #block-11 .cop {
        margin-top: 100px;
    }
    #block-11 .contacts li {
        margin: 0px 10px 0px 10px;
    }
}


/* tablet | sm */

@media (min-width: 768px) and (max-width: 991px) {
    #block-11 {
        padding: 65px 0px 20px 0px;
    }
    #block-11 .cop {
        margin-top: 80px;
    }
    #block-11 .contacts li {
        margin: 0px 10px 0px 10px;
    }
}


/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
    #block-11 {
        padding: 45px 0px 20px 0px;
    }
    #block-11 .contacts li {
        float: left!important;
        width: 100%!important;
        margin: 0;
    }
    #block-11 .contacts li+li {
        margin-top: 5px;
    }
    #block-11 .cop {
        margin-top: 50px;
    }
}


/*==========================================*/


/* btns style */

.btn-type-1 {
    text-decoration: none;
    background: #F2F9FD;
    cursor: pointer;
    color: #2F6A8C;
    border-radius: 3px;
    padding: 15px 15px 15px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'SegoeUI-SemiBold';
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.btn-type-1:hover {
    text-decoration: none;
    background: #2F6A8C;
    color: #F2F9FD;
}

.btn-type-1:focus {
    text-decoration: none;
    background: #2F6A8C;
    color: #F2F9FD;
}
.butt-top {
    position: relative;
    /* background-color: #02ACA6; */
    margin: auto;
    transition: all 300ms ease;
    overflow: hidden;
    width: 280px;
    height: 54px;
    border-radius: 4px;
    background-color: #ffffff;
}
/* .butt-top {
    height: 47px;
    width: 182px;
    position: relative;
    border: 1px solid #008985;
    border-radius: 6px;
    background-color: #02ACA6;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    margin: auto;
    transition: all 300ms ease;
    overflow: hidden;

} */
.butt-top:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    background-color: #E3F1FF;
    top: 50%;
    left: 50%;
    z-index: 0;
    border-radius: 50%;
    transition: all 400ms ease;
    z-index: 0;
}

.butt-top:hover:before {
    width: 300px;
    height: 300px;
    top: -120px;
    left: -3%;
    z-index: 0;
    transition: all 800ms ease;
}
.butt-top:hover {
    color: #fff;
    box-shadow: none;
    text-decoration: none;
}
.butt-top:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
}


.btn-type-2 {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
}

.btn-type-2:focus, .btn-type-2:hover {
    color: #fff;
    text-decoration: none;
}
.btn-type-2:active {
    text-decoration: none;
    color: #fff;
}


/*
 * Index [Front] Page Neewsfeed Subscribes Form Styles
 */

#block-10 .left .item input[type='submit'] {
    float: none;
    width: 25%
}

#newsfeed-form-subscribe {
    margin-bottom: 5px;
}

#newsfeed-form-subscribe .wpcf7-not-valid-tip {
    display: inline-block;
    float: left;
}

#newsfeed-form-subscribe .ajax-loader {
    vertical-align: initial;
}

#wpcf7-f243-o1 .wpcf7-response-output {
    text-align: left;
    margin: 0;
    padding: 0;
}

#wpcf7-f243-o1 .wpcf7-mail-sent-ok {
    margin-left: 1px;
    color: #398f14;
    border: none;
}

#wpcf7-f243-o1 .wpcf7-validation-errors {
    border: none;
}


/*
 * End Index [Front] Page Neewsfeed Subscribes Form Styles
 */


/* NEW YEAR STYLES 2017 */


/* #block-1 .container {
    position: relative;
}
#block-1 h1 {
    position: relative;
    z-index: 2;
}
#block-1 h2 {
    position: relative;
    z-index: 2;
}
#block-1 .buttons {
    position: relative;
    z-index: 2;
}
#block-1 .btn-type-2 {
    display: none!important;
} */

#ny-snow {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('https://anti-malware.gridinsoft.com/wp-content/uploads/2016/12/snow.png') center top no-repeat;
    background-size: contain;
    z-index: 1;
}

.btn-type-ny {
    display: inline-block;
    width: 285px;
    height: 114px;
    background: url(https://anti-malware.gridinsoft.com/wp-content/uploads/2016/12/download-btn-ny-spray.png) 0 0 no-repeat;
}

.btn-type-ny:hover {
    background: url(https://anti-malware.gridinsoft.com/wp-content/uploads/2016/12/download-btn-ny-spray.png) 0 -114px no-repeat;
}

.aligncenter a img {
    width: 100%;
}
/* NEW YEAR STYLES 2017 */

/* Media Pack */


/* Media Pack */