diff --git a/www-about/.idea/copyright/profiles_settings.xml b/www-about/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/www-about/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/www-about/.idea/misc.xml b/www-about/.idea/misc.xml new file mode 100644 index 0000000..8662aa9 --- /dev/null +++ b/www-about/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/www-about/.idea/modules.xml b/www-about/.idea/modules.xml new file mode 100644 index 0000000..329150f --- /dev/null +++ b/www-about/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/www-about/.idea/ubcp.iml b/www-about/.idea/ubcp.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/www-about/.idea/ubcp.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/www-about/.idea/vcs.xml b/www-about/.idea/vcs.xml new file mode 100644 index 0000000..6564d52 --- /dev/null +++ b/www-about/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/www-about/.idea/watcherTasks.xml b/www-about/.idea/watcherTasks.xml new file mode 100644 index 0000000..5509a32 --- /dev/null +++ b/www-about/.idea/watcherTasks.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/www-about/.idea/workspace.xml b/www-about/.idea/workspace.xml new file mode 100644 index 0000000..503a9e4 --- /dev/null +++ b/www-about/.idea/workspace.xml @@ -0,0 +1,641 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + 1474715897191 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/www-about/css/_animate.scss b/www-about/css/_animate.scss new file mode 100644 index 0000000..696d93c --- /dev/null +++ b/www-about/css/_animate.scss @@ -0,0 +1,28 @@ +/* + * Owl Carousel - Animate Plugin + */ +.owl-carousel{ + .animated { + animation-duration: 1000ms; + animation-fill-mode: both; + } + .owl-animated-in { + z-index: 0; + } + .owl-animated-out { + z-index: 1; + } + .fadeOut { + animation-name: fadeOut; + } +} + +@keyframes fadeOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} diff --git a/www-about/css/_autoheight.scss b/www-about/css/_autoheight.scss new file mode 100644 index 0000000..7852c3f --- /dev/null +++ b/www-about/css/_autoheight.scss @@ -0,0 +1,7 @@ +/* + * Owl Carousel - Auto Height Plugin + */ + +.owl-height { + transition: height 500ms ease-in-out; +} diff --git a/www-about/css/_core.scss b/www-about/css/_core.scss new file mode 100644 index 0000000..37c9161 --- /dev/null +++ b/www-about/css/_core.scss @@ -0,0 +1,105 @@ +/* + * Owl Carousel - Core + */ +.owl-carousel { + display: none; + width: 100%; + -webkit-tap-highlight-color: transparent; + /* position relative and z-index fix webkit rendering fonts issue */ + position: relative; + z-index: 1; + + .owl-stage { + position: relative; + -ms-touch-action: pan-Y; + } + + .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; + } + + .owl-stage-outer { + position: relative; + overflow: hidden; + /* fix for flashing background */ + -webkit-transform: translate3d(0px, 0px, 0px); + } + + .owl-item { + position: relative; + min-height: 1px; + float: left; + -webkit-backface-visibility: hidden; + -webkit-tap-highlight-color: transparent; + -webkit-touch-callout: none; + } + .owl-item img { + display: block; + width: 100%; + -webkit-transform-style: preserve-3d; + } + + .owl-nav.disabled, + .owl-dots.disabled { + display: none; + } + + .owl-nav .owl-prev, + .owl-nav .owl-next, + .owl-dot { + cursor: pointer; + cursor: hand; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + &.owl-loaded { + display: block; + } + + &.owl-loading { + opacity: 0; + display: block; + } + + &.owl-hidden { + opacity: 0; + } + + &.owl-refresh .owl-item { + display: none; + } + + &.owl-drag .owl-item { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + &.owl-grab { + cursor: move; + cursor: grab; + } + + &.owl-rtl { + direction: rtl; + } + + &.owl-rtl .owl-item { + float: right; + } +} + +/* No Js */ +.no-js .owl-carousel { + display: block; +} diff --git a/www-about/css/_lazyload.scss b/www-about/css/_lazyload.scss new file mode 100644 index 0000000..4f19e07 --- /dev/null +++ b/www-about/css/_lazyload.scss @@ -0,0 +1,17 @@ +/* + * Owl Carousel - Lazy Load Plugin + */ + +.owl-carousel { + .owl-item { + .owl-lazy { + opacity: 0; + transition: opacity 400ms ease; + } + + img.owl-lazy { + transform-style: preserve-3d; + } + } +} + diff --git a/www-about/css/_theme.default.scss b/www-about/css/_theme.default.scss new file mode 100644 index 0000000..8d8d62b --- /dev/null +++ b/www-about/css/_theme.default.scss @@ -0,0 +1,31 @@ +/* + * Default theme - Owl Carousel CSS File + */ + +$color-base: #869791 !default; +$color-white: #FFF !default; +$color-gray: #D6D6D6 !default; + +//nav + +$nav-color: $color-white !default; +$nav-color-hover: $color-white !default; +$nav-font-size: 14px !default; +$nav-rounded: 3px !default; +$nav-margin: 5px !default; +$nav-padding: 4px 7px !default; +$nav-background: $color-gray !default; +$nav-background-hover: $color-base !default; +$nav-disabled-opacity: 0.5 !default; + +//dots + +$dot-width: 12px !default; +$dot-height: 12px !default; +$dot-rounded: 30px !default; +$dot-margin: 5px 7px !default; +$dot-border: 2px solid white; +$dot-background: rgba(256,256,256,0); +$dot-background-active: rgba(256,256,256,1); + +@import 'theme'; diff --git a/www-about/css/_theme.scss b/www-about/css/_theme.scss new file mode 100644 index 0000000..a721200 --- /dev/null +++ b/www-about/css/_theme.scss @@ -0,0 +1,65 @@ + +.owl-theme { + // Styling Next and Prev buttons + .owl-nav { + margin-top: 10px; + text-align: center; + -webkit-tap-highlight-color: transparent; + + [class*='owl-'] { + color: $nav-color; + font-size: $nav-font-size; + margin: $nav-margin; + padding: $nav-padding; + background: $nav-background; + display: inline-block; + cursor: pointer; + border-radius: 3px; + + &:hover { + background: $nav-background-hover; + color:$nav-color-hover; + text-decoration: none; + } + } + .disabled { + opacity: $nav-disabled-opacity; + cursor: default; + } + } + + // Styling dots + .owl-nav.disabled + .owl-dots { + margin-top: 10px; + } + + .owl-dots { + text-align: center; + -webkit-tap-highlight-color: transparent; + + .owl-dot { + display: inline-block; + zoom: 1; + *display: inline; + + span { + width: $dot-width; + height: $dot-height; + margin: $dot-margin; + background: $dot-background; + display: block; + -webkit-backface-visibility: visible; + transition: opacity 200ms ease; + border-radius: 30px; + border: $dot-border; + } + + &.active, + &:hover { + span { + background: $dot-background-active; + } + } + } + } +} diff --git a/www-about/css/_video.scss b/www-about/css/_video.scss new file mode 100644 index 0000000..29b6717 --- /dev/null +++ b/www-about/css/_video.scss @@ -0,0 +1,51 @@ +/* + * Owl Carousel - Video Plugin + */ + +.owl-carousel{ + .owl-video-wrapper { + position: relative; + height: 100%; + background: #000; + } + + .owl-video-play-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + top: 50%; + margin-left: -40px; + margin-top: -40px; + background: url("owl.video.play.png") no-repeat; + cursor: pointer; + z-index: 1; + -webkit-backface-visibility: hidden; + transition: transform 100ms ease; + } + + .owl-video-play-icon:hover { + transform: scale(1.3, 1.3); + } + + .owl-video-playing .owl-video-tn, + .owl-video-playing .owl-video-play-icon { + display: none; + } + + .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + background-size: contain; + transition: opacity 400ms ease; + } + + .owl-video-frame { + position: relative; + z-index: 1; + height: 100%; + width: 100%; + } +} diff --git a/www-about/css/owl.carousel.scss b/www-about/css/owl.carousel.scss new file mode 100644 index 0000000..f93c308 --- /dev/null +++ b/www-about/css/owl.carousel.scss @@ -0,0 +1,6 @@ +@import 'core'; +@import 'animate'; +@import 'autoheight'; +@import 'lazyload'; +@import 'video'; +@import 'theme.default'; diff --git a/www-about/css/theme-style.css b/www-about/css/theme-style.css new file mode 100644 index 0000000..1286ce1 --- /dev/null +++ b/www-about/css/theme-style.css @@ -0,0 +1,916 @@ +body { + background-position: top center; + background-repeat: no-repeat; + font-family: 'Ubuntu', sans-serif; + background-color: #f5f5f5; + color: #464646; + min-width: 320px; } + +h1, h2, h3, p, .btn { + font-family: 'Ubuntu', sans-serif; } + +h1, h2 { + text-align: center; } + +.m-b-2 { + margin-bottom: 32px; } + +.text-inverse { + color: white; } + +a, a:focus, button, button:focus { + outline: none; } + +.modal { + text-align: center; + padding: 0 !important; } + .modal:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; + margin-right: -4px; } + +.modal-dialog { + display: inline-block; + text-align: left; + vertical-align: middle; } + +.modal-header { + border-bottom: none; } + +.modal-content { + -webkit-box-shadow: none; + box-shadow: none; } + +.modal-dark { + background-color: rgba(0, 0, 0, 0.8); } + .modal-dark .modal-footer { + text-align: center; + border: none; } + .modal-dark .modal-footer .btn { + margin: 0 15px; } + +.btn-success { + color: #fff; + background-color: #67b73e; + border-color: #67b73e; + border-radius: 0; } + .btn-success .btn-success.active.focus, + .btn-success .btn-success.active:focus, + .btn-success .btn-success.active:hover, + .btn-success .btn-success:active.focus, + .btn-success .btn-success:active:focus, + .btn-success .btn-success:active:hover, + .btn-success .open > .dropdown-toggle.btn-success.focus, + .btn-success .open > .dropdown-toggle.btn-success:focus, + .btn-success .open > .dropdown-toggle.btn-success:hover { + background-color: #55a727; + border-color: #55a727; } + +.btn-outline-success { + color: #67b73e; + background-color: transparent; + border-color: #67b73e; + border-radius: 0; } + .btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active { + color: #55a727; + background-color: transparent; + border-color: #55a727; } + +section { + background-position: top center; + background-repeat: no-repeat; + background-size: cover; + -webkit-background-size: cover; } + +.b-1 { + border: 1px solid #ababab; } + +h2 { + font-size: 28px; + margin-bottom: 20px; } + +@media (min-width: 768px) { + h2 { + font-weight: 500; + text-transform: uppercase; + margin-bottom: 50px; + display: block; + text-align: center; + overflow: hidden; + white-space: nowrap; + font-size: 38px; } + h2 > span { + position: relative; + display: inline-block; } + h2 > span:before, h2 > span:after { + content: ""; + position: absolute; + top: 50%; + width: 9999px; + height: 1px; + background: #ababab; } + h2 > span:before { + right: 100%; + margin-right: 15px; } + h2 > span:after { + left: 100%; + margin-left: 15px; } } +p { + font-size: 15px; } + +.navbar { + position: relative; + margin-bottom: 0; + font: normal 12px/14px Calibri, Candara, Segoe, sans-serif; } + .navbar a { + color: #4a4a4a; + text-decoration: underline; + display: inline-block; } + .navbar .contact_phones { + background: url(../images/tel.png) no-repeat 0 50%; } + .navbar .contact_mob_phones { + background: url(../images/mob.png) no-repeat 1% 50%; } + .navbar span.small_digits { + font-size: 15px !important; } + .navbar .contact_phones, .navbar .contact_mob_phones { + font: normal 17px/20px Arial, Tahoma, sans-serif !important; + padding: 2px 0 2px 20px !important; } + .navbar .contact_phones a, .navbar .contact_mob_phones a { + display: inline; } + .navbar .callback { + font-style: italic; + margin: 5px 0 0 0; } + .navbar .switch_lang { + margin: 5px 0 10px 0; + font-size: 12px; } + .navbar .switch_lang li { + color: #55a727; + padding: 0 10px 0 20px; } + .navbar #header .columns3 .menu_cabinet { + background: url(../images/cabinet.png) no-repeat 0 50%; } + .navbar .basket_number a, .navbar .basket_number a:hover { + text-decoration: none; + color: #ffffff; + background: #67b73e; + padding: 2px 5px; + border-radius: 100%; + -moz-border-radius: 100%; + -webkit-border-radius: 100%; + webkit-box-shadow: inset 2px 1px 10px 0 #417e24; + -moz-box-shadow: inset 2px 1px 10px 0 #417e24; + box-shadow: inset 2px 1px 10px 0 #417e24; } + .navbar .logo img { + max-height: 46px; } + .navbar .menu_cabinet { + background: url(../images/cabinet.png) no-repeat 0 50%; } + .navbar .basket { + background: url(../images/basket.png) no-repeat 0 50%; } + .navbar .faq a { + padding: 10px 10px 10px 22px; + background: url(../images/icon_faq_18x18_01.png) no-repeat 0 50%; } + .navbar .menu_cabinet a, .navbar .basket a, .navbar .compare a, .navbar .faq a, .navbar .file_download_link_ a { + font-style: italic; } + .navbar .file_download_link_ a { + padding: 10px 10px 10px 22px; + background: url(../images/icon_catalog_18x18_01.png) no-repeat 0 50%; } + .navbar .menu_cabinet { + padding: 10px 10px 10px 20px; } + .navbar .basket { + padding: 10px 10px 10px 23px; } + .navbar .basket_number { + padding: 7px 0 10px 0; } + .navbar .site_search { + position: relative; } + .navbar input { + width: 250px; + margin: 0; + padding: 7px 5px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border: 0; + -moz-box-shadow: inset 1px 1px 1px 0 #d0d0d0; + -webkit-box-shadow: inset 1px 1px 1px 0 #d0d0d0; + box-shadow: inset 1px 1px 1px 0 #d0d0d0; } + .navbar .site_search label { + position: absolute; + top: 7px; + right: 7px; } + .navbar .site_search.active .search_result_wrapper, .navbar .site_search:active .search_result_wrapper, .navbar .cat_center .site_search.active .search_result_wrapper, .navbar header .site_search.nav-search .search_result_wrapper { + position: absolute; + z-index: 9999; + background: #ececec; + width: 260px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border: 2px solid #4fa32c; + -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); + -moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); + box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); + float: right; } + .navbar .search_result_wrapper { + float: right; } + .navbar .compare_wrapper { + min-height: 35px; + position: relative; } + .navbar .navbar-toggle { + border-color: white; + background-color: #67b73e; } + .navbar .navbar-toggle:hover, .navbar .navbar-toggle:focus { + background-color: #55a727; } + .navbar .navbar-toggle .icon-bar { + background-color: white; } + .navbar .navbar-nav { + background: #67b73e; + border: 3px solid #ececec; + border-radius: 5px; + margin-top: 0; + margin-bottom: 0; } + .navbar .navbar-nav li { + border-top: 1px solid #55a727; } + .navbar .navbar-nav li a { + text-transform: uppercase; + text-decoration: none; + color: #ffffff; + font: bold 12px/15px Arial, Tahoma, sans-serif; + text-align: center; + padding: 10px 5px; + white-space: nowrap; } + .navbar .navbar-nav li a:hover, .navbar .navbar-nav li a:focus, .navbar .navbar-nav li a.active { + color: #ffffff; + text-decoration: none; + background: #55a727; } + .navbar .navbar-nav li:first-child { + border-radius: 5px 0px 0px 5px; + -moz-border-radius: 5px 0px 0px 5px; + -webkit-border-radius: 5px 0px 0px 5px; } + .navbar .navbar-nav li:last-child { + border-radius: 0px 5px 5px 0px; + -moz-border-radius: 0px 5px 5px 0px; + -webkit-border-radius: 0px 5px 5px 0px; } + +@media (min-width: 768px) { + .navbar { + margin-bottom: -20px; + z-index: 2; } + .navbar .navbar-header-body { + margin: auto -15px; } + .navbar .navbar-header { + float: none; } + .navbar .logo { + padding: 10px 0; + text-align: center; } + .navbar .logo img { + max-height: none; } + .navbar .navbar-brand { + text-align: center; } + .navbar .navbar-nav { + float: none; + width: 100%; + display: table; } + .navbar .navbar-nav li { + border-top: none; + border-left: 1px solid #55a727; + display: table-cell; + float: none; } } +@media (min-width: 992px) { + .navbar .navbar-nav li a { + padding: 10px 20px; } } +@media (min-width: 1200px) { + .navbar-nav li a { + padding: 10px 30px; } } +/* + * Owl Carousel - Core + */ +.owl-carousel { + display: none; + width: 100%; + -webkit-tap-highlight-color: transparent; + /* position relative and z-index fix webkit rendering fonts issue */ + position: relative; + z-index: 1; } + .owl-carousel .owl-stage { + position: relative; + -ms-touch-action: pan-Y; } + .owl-carousel .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; } + .owl-carousel .owl-stage-outer { + position: relative; + overflow: hidden; + /* fix for flashing background */ + -webkit-transform: translate3d(0px, 0px, 0px); } + .owl-carousel .owl-item { + position: relative; + min-height: 1px; + float: left; + -webkit-backface-visibility: hidden; + -webkit-tap-highlight-color: transparent; + -webkit-touch-callout: none; } + .owl-carousel .owl-item img { + display: block; + width: 100%; + -webkit-transform-style: preserve-3d; } + .owl-carousel .owl-nav.disabled, + .owl-carousel .owl-dots.disabled { + display: none; } + .owl-carousel .owl-nav .owl-prev, + .owl-carousel .owl-nav .owl-next, + .owl-carousel .owl-dot { + cursor: pointer; + cursor: hand; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .owl-carousel.owl-loaded { + display: block; } + .owl-carousel.owl-loading { + opacity: 0; + display: block; } + .owl-carousel.owl-hidden { + opacity: 0; } + .owl-carousel.owl-refresh .owl-item { + display: none; } + .owl-carousel.owl-drag .owl-item { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .owl-carousel.owl-grab { + cursor: move; + cursor: grab; } + .owl-carousel.owl-rtl { + direction: rtl; } + .owl-carousel.owl-rtl .owl-item { + float: right; } + +/* No Js */ +.no-js .owl-carousel { + display: block; } + +/* + * Owl Carousel - Animate Plugin + */ +.owl-carousel .animated { + animation-duration: 1000ms; + animation-fill-mode: both; } +.owl-carousel .owl-animated-in { + z-index: 0; } +.owl-carousel .owl-animated-out { + z-index: 1; } +.owl-carousel .fadeOut { + animation-name: fadeOut; } + +@keyframes fadeOut { + 0% { + opacity: 1; } + 100% { + opacity: 0; } } +/* + * Owl Carousel - Auto Height Plugin + */ +.owl-height { + transition: height 500ms ease-in-out; } + +/* + * Owl Carousel - Lazy Load Plugin + */ +.owl-carousel .owl-item .owl-lazy { + opacity: 0; + transition: opacity 400ms ease; } +.owl-carousel .owl-item img.owl-lazy { + transform-style: preserve-3d; } + +/* + * Owl Carousel - Video Plugin + */ +.owl-carousel .owl-video-wrapper { + position: relative; + height: 100%; + background: #000; } +.owl-carousel .owl-video-play-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + top: 50%; + margin-left: -40px; + margin-top: -40px; + background: url("owl.video.play.png") no-repeat; + cursor: pointer; + z-index: 1; + -webkit-backface-visibility: hidden; + transition: transform 100ms ease; } +.owl-carousel .owl-video-play-icon:hover { + transform: scale(1.3, 1.3); } +.owl-carousel .owl-video-playing .owl-video-tn, +.owl-carousel .owl-video-playing .owl-video-play-icon { + display: none; } +.owl-carousel .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + background-size: contain; + transition: opacity 400ms ease; } +.owl-carousel .owl-video-frame { + position: relative; + z-index: 1; + height: 100%; + width: 100%; } + +/* + * Default theme - Owl Carousel CSS File + */ +.owl-theme .owl-nav { + margin-top: 10px; + text-align: center; + -webkit-tap-highlight-color: transparent; } + .owl-theme .owl-nav [class*='owl-'] { + color: #FFF; + font-size: 14px; + margin: 5px; + padding: 4px 7px; + background: #D6D6D6; + display: inline-block; + cursor: pointer; + border-radius: 3px; } + .owl-theme .owl-nav [class*='owl-']:hover { + background: #869791; + color: #FFF; + text-decoration: none; } + .owl-theme .owl-nav .disabled { + opacity: 0.5; + cursor: default; } +.owl-theme .owl-nav.disabled + .owl-dots { + margin-top: 10px; } +.owl-theme .owl-dots { + text-align: center; + -webkit-tap-highlight-color: transparent; } + .owl-theme .owl-dots .owl-dot { + display: inline-block; + zoom: 1; + *display: inline; } + .owl-theme .owl-dots .owl-dot span { + width: 12px; + height: 12px; + margin: 5px 7px; + background: rgba(255, 255, 255, 0); + display: block; + -webkit-backface-visibility: visible; + transition: opacity 200ms ease; + border-radius: 30px; + border: 2px solid white; } + .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { + background: white; } + +.owl-theme .owl-controls .owl-page span { + background: transparent; + opacity: 1; + border-radius: 50%; + border: 2px solid white; + margin: 5px; } +.owl-theme .owl-controls .owl-page.active span { + background: white; } + +h1 { + font-size: 27px; } + +@media (min-width: 768px) { + h1 { + font-size: 48px; } } +.for_section1 { + background: rgba(0, 0, 0, 0.2); } + +.section1 { + color: white; + position: relative; + overflow: hidden; + background-image: url("../images/1/bg.jpg"); } + .section1 .for_section1 { + background: rgba(0, 0, 0, 0.3); + padding-bottom: 50px; } + .section1 video#bgvid { + position: absolute; + top: 50%; + left: 50%; + min-width: 100%; + min-height: 100%; + width: auto; + height: auto; + z-index: -100; + -ms-transform: translateX(-50%) translateY(-50%); + -moz-transform: translateX(-50%) translateY(-50%); + -webkit-transform: translateX(-50%) translateY(-50%); + transform: translateX(-50%) translateY(-50%); + background: url(../images/1/bg.jpg) no-repeat; + background-size: cover; } + .section1 h1 { + font-size: 27px; + text-transform: uppercase; + font-weight: bold; } + .section1 .outer:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; } + .section1 .inner { + display: inline-block; + vertical-align: middle; + width: calc(100% - 30px); + padding: 10px; } + .section1 .outer { + text-align: center; + height: calc(100vh - 50px); + min-height: 400px; + width: 100%; } + +@media (min-width: 768px) { + .section1 h1 { + margin-bottom: 50px; } + .section1 p { + font-size: 22px; + line-height: 28px; } + .section1 .outer { + height: calc(100vh - 124px); } } +.logo-card { + display: inline-block; + height: 90px; + width: 100%; + max-width: 280px; + background: white; + margin-bottom: 20px; + text-align: center; + vertical-align: middle; + line-height: 88px; } + .logo-card img { + max-width: 100%; + max-height: 100%; } + +.section2 { + padding-top: 70px; + padding-bottom: 70px; } + .section2 p { + font-size: 16px; + font-weight: 500; + text-decoration: underline; + color: #444444; } + .section2 .logo-card { + margin-bottom: 14px; } + .section2 a:hover { + cursor: pointer; } + .section2 a:hover .logo-card { + -webkit-box-shadow: 0px 2px 5px 0px rgba(161, 161, 161, 0.75); + -moz-box-shadow: 0px 2px 5px 0px rgba(161, 161, 161, 0.75); + box-shadow: 0px 2px 5px 0px rgba(161, 161, 161, 0.75); } + .section2 a:hover p { + color: #67b73e; } + +.modal-content-company { + background: transparent; + border-radius: 0; } + .modal-content-company .modal-header .close { + color: #ffc73b; + font-size: 44px; + font-weight: 400; + text-shadow: none; + opacity: 1; } + .modal-content-company .modal-body { + background-color: white; } + +.foto { + width: 140px; + height: 140px; + display: inline-block; } + +.section3 { + background-image: url("../images/3/bg.jpg"); + color: white; + padding-top: 50px; + padding-bottom: 50px; } + .section3 h2 > span:before, .section3 h2 > span:after { + background: white; } + .section3 blockquote { + border-left: 0; + padding: 0 0 40px; + margin: 0; + position: relative; } + .section3 blockquote:before { + content: "\201D"; + font-family: Georgia, serif; + font-size: 60px; + font-weight: bold; + color: #f6c342; + position: absolute; + bottom: -40px; + left: calc( 50% - 15px); } + +.section4 { + background-image: url("../images/4/bg.jpg"); + color: white; + padding-top: 50px; + padding-bottom: 70px; } + .section4 h2 > span:before, .section4 h2 > span:after { + background: white; } + .section4 p { + font-size: 13px; } + .section4 .timeline { + list-style: none; + padding: 20px 0 20px; + position: relative; } + .section4 .timeline:before { + top: 0; + bottom: 0; + position: absolute; + content: " "; + width: 3px; + background-color: rgba(0, 0, 0, 0.2); + left: 50%; + margin-left: -1.5px; } + .section4 .timeline > li { + margin-bottom: 30px; + position: relative; } + .section4 .timeline > li > .timeline-panel { + width: 46%; + float: left; + border-top: 2px solid #67b73e; + padding: 0 20px; + height: 1px; } + .section4 .timeline > li > .timeline-badge { + width: 14px; + height: 14px; + border: 3px solid #67b73e; + position: absolute; + top: -6px; + left: 50%; + margin-left: -7px; + background-color: transparent; + z-index: 100; + border-radius: 50%; + box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.2); } + .section4 .timeline > li > .timeline-badge.sm { + height: 10px; + width: 10px; + margin: 2px -5px; } + .section4 .timeline > li.timeline-inverted > .timeline-panel { + float: right; } + .section4 .timeline > li.timeline-inverted > .timeline-panel:before { + border-left-width: 0; + border-right-width: 15px; + left: -15px; + right: auto; } + .section4 .timeline > li.timeline-inverted > .timeline-panel:after { + border-left-width: 0; + border-right-width: 14px; + left: -14px; + right: auto; } + .section4 .timeline-title { + margin-top: 0; + color: inherit; } + .section4 .timeline-body > p, + .section4 .timeline-body > ul { + margin-bottom: 0; } + .section4 .timeline-body > p { + margin-top: 5px; } + +@media (max-width: 1199px) { + .section4 .timeline > li:before, + .section4 .timeline > li:after { + content: " "; + display: table; } + .section4 .timeline > li:after { + clear: both; } + .section4 .timeline > li:before, + .section4 .timeline > li:after { + content: " "; + display: table; } + .section4 .timeline > li:after { + clear: both; } } +@media (max-width: 767px) { + .section4 ul.timeline:before { + left: 40px; } + .section4 ul.timeline > li { + margin-bottom: 40px; } + .section4 ul.timeline > li:nth-child(1), .section4 ul.timeline > li:nth-child(2) { + margin-bottom: 40px; } + .section4 ul.timeline > li:nth-child(4), .section4 ul.timeline > li:nth-child(5), .section4 ul.timeline > li:nth-child(6), .section4 ul.timeline > li:nth-child(7), .section4 ul.timeline > li:nth-child(8), .section4 ul.timeline > li:nth-child(9), .section4 ul.timeline > li:nth-child(10), .section4 ul.timeline > li:nth-child(11) { + margin-bottom: 18px; } + .section4 ul.timeline > li:nth-child(14), .section4 ul.timeline > li:nth-child(15), .section4 ul.timeline > li:nth-child(16) { + margin-bottom: 28px; } + .section4 ul.timeline > li:nth-child(17) { + margin-bottom: 100px; } + .section4 ul.timeline > li:nth-child(18), .section4 ul.timeline > li:nth-child(19) { + margin-bottom: 40px; } + .section4 ul.timeline > li:nth-child(20) { + margin-bottom: 80px; } + .section4 ul.timeline > li:nth-child(21) { + margin-bottom: 80px; } + .section4 ul.timeline > li > .timeline-panel { + width: calc(100% - 60px); } + .section4 ul.timeline > li > .timeline-badge { + left: 33px; + margin-left: 0; + top: -5px; } + .section4 ul.timeline > li > .timeline-badge.sm { + margin: 2px; } + .section4 ul.timeline > li > .timeline-panel { + float: right; } } +@media (min-width: 1200px) { + .section4 .timeline { + position: relative; + height: 400px; } + .section4 .timeline:before { + bottom: auto; + position: absolute; + content: " "; + width: 100%; + height: 3px; + background-color: rgba(0, 0, 0, 0.2); + left: 0; + top: 50%; + margin-left: -1.5px; } + .section4 .timeline > li { + position: absolute; + left: 0; + top: 50%; + width: 190px; } + .section4 .timeline > li .timeline-panel { + border-top: none; + border-left: 2px solid #67b73e; + width: 100%; + margin-top: 20px; + padding: 5px 20px; + height: auto; } + .section4 .timeline > li.timeline-inverted { + bottom: 50%; + top: auto; + margin-bottom: -7px; + padding-bottom: 20px; } + .section4 .timeline > li.timeline-inverted .timeline-badge { + bottom: 0; + top: auto; } + .section4 .timeline > li.timeline-inverted .timeline-panel { + float: none; + padding-top: 0; } + .section4 .timeline > li .timeline-badge { + left: 0; } + .section4 .timeline > li .timeline-badge.sm { + margin-left: -4px; } + .section4 .timeline > li:nth-child(1) { + left: 30px; } + .section4 .timeline > li:nth-child(2) { + left: 72px; } + .section4 .timeline > li:nth-child(3) { + left: 114px; } + .section4 .timeline > li:nth-child(4) { + left: 156px; } + .section4 .timeline > li:nth-child(5) { + left: 198px; } + .section4 .timeline > li:nth-child(6) { + left: 240px; } + .section4 .timeline > li:nth-child(7) { + left: 282px; } + .section4 .timeline > li:nth-child(8) { + left: 324px; } + .section4 .timeline > li:nth-child(9) { + left: 366px; } + .section4 .timeline > li:nth-child(10) { + left: 408px; } + .section4 .timeline > li:nth-child(11) { + left: 450px; } + .section4 .timeline > li:nth-child(12) { + left: 492px; } + .section4 .timeline > li:nth-child(13) { + left: 534px; } + .section4 .timeline > li:nth-child(14) { + left: 576px; } + .section4 .timeline > li:nth-child(15) { + left: 618px; } + .section4 .timeline > li:nth-child(16) { + left: 660px; } + .section4 .timeline > li:nth-child(17) { + left: 702px; + width: 300px; } + .section4 .timeline > li:nth-child(17) .timeline-panel { + padding-top: 164px; } + .section4 .timeline > li:nth-child(18) { + left: 744px; + width: 300px; } + .section4 .timeline > li:nth-child(18) .timeline-panel { + padding-bottom: 100px; } + .section4 .timeline > li:nth-child(19) { + left: 786px; } + .section4 .timeline > li:nth-child(20) { + left: 828px; + width: 300px; } + .section4 .timeline > li:nth-child(20) .timeline-panel { + padding-top: 100px; } + .section4 .timeline > li:nth-child(21) { + left: 870px; } + .section4 .timeline > li:nth-child(22) { + left: 912px; } + .section4 .timeline > li:nth-child(23) { + left: 954px; } } +.section5 { + padding-top: 50px; + padding-bottom: 40px; } + .section5 h2 { + margin-bottom: 42px; } + .section5 img { + border: 5px solid transparent; + transition: 1s linear; } + .section5 img:hover { + border-radius: 50%; + -webkit-box-shadow: 0 10px 6px -6px #777; + -moz-box-shadow: 0 10px 6px -6px #777; + box-shadow: 0 10px 6px -6px #777; } + .section5 h6 { + font-size: 16px; + margin-top: 15px; + margin-bottom: 40px; + font-weight: normal; } + +.section6 { + background-image: url("../images/6/bg.jpg"); + color: white; + padding-top: 50px; + padding-bottom: 60px; } + .section6 h2 > span:before, .section6 h2 > span:after { + background: white; } + .section6 .img-responsive { + display: inline-block; } + +.section7 { + padding-top: 50px; + padding-bottom: 60px; } + +.section8 { + background-image: url("../images/8/map.png"); + background-position: top center; + background-repeat: no-repeat; + background-size: cover; + -webkit-background-size: cover; + height: 540px; } + .theme-eng .section8 { + background-image: url("../images/8/map_eng.png"); } + +footer { + padding-bottom: 20px; + border-top: 1px solid #ababab; } + footer a { + color: #4a4a4a; } + footer a:hover { + color: #4a4a4a; } + footer label { + font-weight: 400; } + footer .footer-top { + padding-top: 50px; + font-size: 16px; } + footer .phone { + padding-left: 30px; + background: url("../images/9/phone.png"); + background-repeat: no-repeat; + background-position: top left; } + footer .mail { + padding-left: 30px; + background: url("../images/9/mail.png"); + background-repeat: no-repeat; + background-position: top left; } + footer address { + font-size: 18px; + padding-left: 30px; + margin-bottom: 0; } + footer address a { + display: block; } + footer address span { + font-size: 22px; } + footer .w_youtube, footer .w_facebook, footer .w_vk { + background-color: #dadada; + border-radius: 5px; + width: 97px; + height: 43px; + margin-right: 4px; + background-image: url("../images/9/f.png"); + background-repeat: no-repeat; + background-position: center center; + display: inline-block; } + footer .w_youtube { + background-image: url("../images/9/y.png"); } + footer .w_vk { + background-image: url("../images/9/vk.png"); } + footer .w_facebook:hover, footer .w_youtube:hover, footer .w_vk:hover { + background-color: grey; } + footer .a_footer-bottom { + color: white; + font-size: 12px; } + +/*# sourceMappingURL=theme-style.css.map */ diff --git a/www-about/css/theme-style.css.map b/www-about/css/theme-style.css.map new file mode 100644 index 0000000..1d1fd6b --- /dev/null +++ b/www-about/css/theme-style.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "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", +"sources": ["theme-style.scss","_core.scss","_animate.scss","_autoheight.scss","_lazyload.scss","_video.scss","_theme.default.scss","_theme.scss"], +"names": [], +"file": "theme-style.css" +} \ No newline at end of file diff --git a/www-about/css/theme-style.scss b/www-about/css/theme-style.scss new file mode 100644 index 0000000..ab0a7ed --- /dev/null +++ b/www-about/css/theme-style.scss @@ -0,0 +1,986 @@ +$color-primary: #67b73e; +$color-primary-dark: #55a727; + +body{ + background-position:top center; + background-repeat:no-repeat; + font-family: 'Ubuntu', sans-serif; + background-color: #f5f5f5; + color: #464646; + min-width: 320px; +} + +h1, h2, h3, p, .btn{ + font-family: 'Ubuntu', sans-serif; +} + +h1, h2{ text-align: center;} +.m-b-2{ + margin-bottom: 32px; +} +.text-inverse{ + color: white; +} + +a, a:focus, button, button:focus { + outline:none; +} +.modal { + text-align: center; + padding: 0!important; + &:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; + margin-right: -4px; + } +} +.modal-dialog { + display: inline-block; + text-align: left; + vertical-align: middle; +} +.modal-header{ + border-bottom: none; +} +.modal-content { + -webkit-box-shadow: none; + box-shadow: none; +} +.modal-dark{ + background-color: rgba(0,0,0,0.8); + .modal-footer{ + text-align: center; + border: none; + .btn{ + margin: 0 15px; + } + } +} + +.btn-success { + color: #fff; + background-color: $color-primary; + border-color: $color-primary; + border-radius: 0; + + .btn-success.active.focus, + .btn-success.active:focus, + .btn-success.active:hover, + .btn-success:active.focus, + .btn-success:active:focus, + .btn-success:active:hover, + .open>.dropdown-toggle.btn-success.focus, + .open>.dropdown-toggle.btn-success:focus, + .open>.dropdown-toggle.btn-success:hover{ + background-color: $color-primary-dark; + border-color: $color-primary-dark; + } +} +.btn-outline-success{ + color: $color-primary; + background-color: transparent; + border-color: $color-primary; + border-radius: 0; + &:hover, &:focus, &:active{ + color: $color-primary-dark; + background-color: transparent; + border-color: $color-primary-dark; + } +} +section{ + background-position:top center; + background-repeat:no-repeat; + background-size:cover; + -webkit-background-size:cover; +} + +$color-blue: #0084da; + +.b-1{ + border: 1px solid #ababab; +} +h2{ + font-size: 28px; + margin-bottom: 20px; + +} +@media (min-width: 768px){ + h2 { + font-weight: 500; + text-transform: uppercase; + margin-bottom: 50px; + display: block; + text-align: center; + overflow: hidden; + white-space: nowrap; + font-size: 38px; + &>span { + position: relative; + display: inline-block; + &:before, &:after{ + content: ""; + position: absolute; + top: 50%; + width: 9999px; + height: 1px; + background: #ababab; + } + &:before { + right: 100%; + margin-right: 15px; + } + &:after { + left: 100%; + margin-left: 15px; + } + } + } +} + +p{ + font-size: 15px; +} + +.navbar { + position: relative; + margin-bottom: 0; + font: normal 12px/14px Calibri, Candara, Segoe, sans-serif; + + a { + color: #4a4a4a; + text-decoration: underline; + display: inline-block; + } + + .contact_phones { + background: url(../images/tel.png) no-repeat 0 50%; + } + .contact_mob_phones { + background: url(../images/mob.png) no-repeat 1% 50%; + } + span.small_digits { + font-size: 15px !important; + } + .contact_phones, .contact_mob_phones { + font: normal 17px/20px Arial, Tahoma, sans-serif !important; + padding: 2px 0 2px 20px !important; + } + .contact_phones a, .contact_mob_phones a { + display: inline; + + } + .callback { + font-style: italic; + margin: 5px 0 0 0; + } + + .switch_lang { + margin: 5px 0 10px 0; + font-size: 12px; + } + .switch_lang li { + color: #55a727; + padding: 0 10px 0 20px; + } + + #header .columns3 .menu_cabinet { + background: url(../images/cabinet.png) no-repeat 0 50%; + } + + .basket_number a, .basket_number a:hover { + text-decoration: none; + color: #ffffff; + background: #67b73e; + padding: 2px 5px; + border-radius: 100%; + -moz-border-radius: 100%; + -webkit-border-radius: 100%; + webkit-box-shadow: inset 2px 1px 10px 0 #417e24; + -moz-box-shadow: inset 2px 1px 10px 0 #417e24; + box-shadow: inset 2px 1px 10px 0 #417e24; + } + + .logo{ + img{ + max-height: 46px; + } + } + + .menu_cabinet { + background: url(../images/cabinet.png) no-repeat 0 50%; + } + + .basket { + background: url(../images/basket.png) no-repeat 0 50%; + } + .faq a { + padding: 10px 10px 10px 22px; + background: url(../images/icon_faq_18x18_01.png) no-repeat 0 50%; + } + .menu_cabinet a, .basket a, .compare a, .faq a, .file_download_link_ a { + font-style: italic; + + } + .file_download_link_ a { + padding: 10px 10px 10px 22px; + background: url(../images/icon_catalog_18x18_01.png) no-repeat 0 50%; + } + .menu_cabinet { + padding: 10px 10px 10px 20px; + } + .basket { + padding: 10px 10px 10px 23px; + } + .basket_number { + padding: 7px 0 10px 0; + } + + .site_search { + position: relative; + } + input { + width: 250px; + margin: 0; + padding: 7px 5px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border: 0; + -moz-box-shadow: inset 1px 1px 1px 0 #d0d0d0; + -webkit-box-shadow: inset 1px 1px 1px 0 #d0d0d0; + box-shadow: inset 1px 1px 1px 0 #d0d0d0; + } + .site_search label { + position: absolute; + top: 7px; + right: 7px; + } + + .site_search.active .search_result_wrapper, .site_search:active .search_result_wrapper, .cat_center .site_search.active .search_result_wrapper, header .site_search.nav-search .search_result_wrapper { + position: absolute; + z-index: 9999; + background: #ececec; + width: 260px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border: 2px solid #4fa32c; + -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); + -moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); + box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75); + float: right; + } + + + .search_result_wrapper{ + float: right; + } + + .compare_wrapper { + min-height: 35px; + position: relative; + } + + .navbar-toggle { + border-color: white; + background-color: $color-primary; + &:hover, &:focus { + background-color: $color-primary-dark; + } + .icon-bar { + background-color: white; + } + } + .navbar-nav{ + background: $color-primary; + border: 3px solid #ececec; + border-radius: 5px; + margin-top: 0; + margin-bottom: 0; + li { + border-top: 1px solid $color-primary-dark; + a { + text-transform: uppercase; + text-decoration: none; + color: #ffffff; + font: bold 12px/15px Arial, Tahoma, sans-serif; + text-align: center; + padding: 10px 5px; + white-space: nowrap; + &:hover, &:focus, &.active { + color: #ffffff; + text-decoration: none; + background: #55a727; + } + } + &:first-child { + border-radius: 5px 0px 0px 5px; + -moz-border-radius: 5px 0px 0px 5px; + -webkit-border-radius: 5px 0px 0px 5px; + } + &:last-child { + border-radius: 0px 5px 5px 0px; + -moz-border-radius: 0px 5px 5px 0px; + -webkit-border-radius: 0px 5px 5px 0px; + } + } + } +} +@media (min-width: 768px){ + .navbar{ + margin-bottom: -20px; + z-index: 2; + .navbar-header-body{ + margin: auto -15px; + } + .navbar-header { + float: none; + } + .logo{ + padding: 10px 0; + text-align: center; + img{ + max-height: none; + } + } + .navbar-brand{ + text-align: center; + } + .navbar-nav{ + float: none; + width: 100%; + display: table; + li { + border-top: none; + border-left: 1px solid $color-primary-dark; + display: table-cell; + float: none; + } + } +} +} +@media (min-width: 992px){ + .navbar .navbar-nav li a{ + padding: 10px 20px; + } +} +@media (min-width: 1200px){ + .navbar-nav { + li { + a { + padding: 10px 30px; + } + } + } +} + + +@import "owl.carousel"; + +.owl-theme .owl-controls .owl-page{ + span{ + background: transparent; + opacity: 1; + border-radius: 50%; + border: 2px solid white; + margin: 5px; + } + &.active{ + span{ + background: white; + } + } +} +h1{ +font-size: 27px; +} +@media (min-width: 768px) { + h1{ + font-size: 48px; + } +} +.for_section1{ + background: rgba(0,0,0,0.2); + +} +.section1{ + color: white; + position: relative; + overflow: hidden; + background-image: url("../images/1/bg.jpg"); + + .for_section1{ + background: rgba(0,0,0,0.3); + padding-bottom: 50px; + } + video#bgvid { + position: absolute; + top: 50%; + left: 50%; + min-width: 100%; + min-height: 100%; + width: auto; + height: auto; + z-index: -100; + -ms-transform: translateX(-50%) translateY(-50%); + -moz-transform: translateX(-50%) translateY(-50%); + -webkit-transform: translateX(-50%) translateY(-50%); + transform: translateX(-50%) translateY(-50%); + background: url(../images/1/bg.jpg) no-repeat; + background-size: cover; + } + h1{ + font-size: 27px; + text-transform: uppercase; + font-weight: bold; + } + .outer:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; + } + .inner { + display: inline-block; + vertical-align: middle; + width: calc(100% - 30px); + padding: 10px; + } + .outer { + text-align: center; + height: calc(100vh - 50px); + min-height: 400px; + width: 100%; + } +} + +@media (min-width: 768px) { + .section1 { + h1 { + margin-bottom: 50px; + } + p { + font-size: 22px; + line-height: 28px; + } + .outer { + height: calc(100vh - 124px); + } + } +} + +.logo-card{ + display: inline-block; + height: 90px; + width: 100%; + max-width: 280px; + background: white; + margin-bottom: 20px; + text-align: center; + vertical-align: middle; + line-height: 88px; + img{ + max-width: 100%; + max-height: 100%; + } +} + +.section2{ + padding-top: 70px; + padding-bottom: 70px; + p{ + font-size: 16px; + font-weight: 500; + text-decoration: underline; + color: #444444; + } + .logo-card { + margin-bottom: 14px; + } + a:hover{ + cursor: pointer; + .logo-card{ + -webkit-box-shadow: 0px 2px 5px 0px rgba(161,161,161,0.75); + -moz-box-shadow: 0px 2px 5px 0px rgba(161,161,161,0.75); + box-shadow: 0px 2px 5px 0px rgba(161,161,161,0.75); + } + p{ + color: $color-primary; + } + } +} +.modal-content-company{ + background: transparent; + border-radius: 0; + .modal-header{ + .close{ + color: #ffc73b; + font-size: 44px; + font-weight: 400; + text-shadow: none; + opacity: 1; + } + } + .modal-body{ + background-color: white; + } +} + +.foto{ +width: 140px; +height: 140px; +display: inline-block; +} + +.section3{ +background-image: url("../images/3/bg.jpg"); + color: white; + padding-top: 50px; + padding-bottom: 50px; + h2{ + &>span { + &:before, &:after { + background: white; + } + } + } + blockquote{ + border-left: 0; + padding: 0 0 40px; + margin: 0; + position: relative; + &:before { + content: "\201D"; + font-family: Georgia, serif; + font-size: 60px; + font-weight: bold; + color: #f6c342; + position: absolute; + bottom: -40px; + left: calc( 50% - 15px); + } + } +} + +.section4{ + background-image: url("../images/4/bg.jpg"); + color: white; + padding-top: 50px; + padding-bottom: 70px; + h2{ + &>span { + &:before, &:after { + background: white; + } + } + } + p{ + font-size: 13px; + } + .timeline { + list-style: none; + padding: 20px 0 20px; + position: relative; + &:before { + top: 0; + bottom: 0; + position: absolute; + content: " "; + width: 3px; + background-color: rgba(0,0,0,0.2); + left: 50%; + margin-left: -1.5px; + } + } + + + .timeline > li { + margin-bottom: 30px; + position: relative; + & > .timeline-panel { + width: 46%; + float: left; + border-top: 2px solid $color-primary; + padding: 0 20px; + height: 1px; + } + & > .timeline-badge { + width: 14px; + height: 14px; + border: 3px solid $color-primary; + position: absolute; + top: -6px; + left: 50%; + margin-left: -7px; + background-color: transparent; + z-index: 100; + border-radius: 50%; + box-shadow: 0px 0px 0px 3px rgba(0,0,0,0.2); + &.sm { + height: 10px; + width: 10px; + margin: 2px -5px; + } + } + &.timeline-inverted > .timeline-panel { + float: right; + &:before { + border-left-width: 0; + border-right-width: 15px; + left: -15px; + right: auto; + } + &:after { + border-left-width: 0; + border-right-width: 14px; + left: -14px; + right: auto; + } + } + } + .timeline-title { + margin-top: 0; + color: inherit; + } + .timeline-body > p, + .timeline-body > ul { + margin-bottom: 0; + } + .timeline-body > p { + margin-top: 5px; + } +} +@media (max-width: 1199px){ + .section4 { + .timeline > li:before, + .timeline > li:after { + content: " "; + display: table; + } + + .timeline > li:after { + clear: both; + } + + .timeline > li:before, + .timeline > li:after { + content: " "; + display: table; + } + + .timeline > li:after { + clear: both; + } + } +} + +@media (max-width: 767px) { + .section4{ + + ul.timeline:before { + left: 40px; + } + ul.timeline > li{ + margin-bottom: 40px; + &:nth-child(1), &:nth-child(2){ + margin-bottom: 40px; + } + &:nth-child(4), &:nth-child(5), &:nth-child(6), &:nth-child(7), &:nth-child(8), &:nth-child(9), &:nth-child(10), &:nth-child(11) { + margin-bottom: 18px; + } + &:nth-child(14),&:nth-child(15), &:nth-child(16){ + margin-bottom: 28px; + } + &:nth-child(17){ + margin-bottom: 100px; + } + &:nth-child(18), &:nth-child(19){ + margin-bottom: 40px; + } + &:nth-child(20){ + margin-bottom: 80px; + } + &:nth-child(21){ + margin-bottom: 80px; + } + } + ul.timeline > li > .timeline-panel { + width: calc(100% - 60px); + } + + ul.timeline > li > .timeline-badge { + left: 33px; + margin-left: 0; + top: -5px; + &.sm { + margin: 2px; + } + } + + ul.timeline > li > .timeline-panel { + float: right; + } + } +} +@media (min-width: 1200px){ + .section4 { + .timeline{ + position: relative; + height: 400px; + + &:before { + bottom: auto; + position: absolute; + content: " "; + width: 100%; + height: 3px; + background-color: rgba(0,0,0,0.2); + left: 0; + top: 50%; + margin-left: -1.5px; + } + + & > li{ + position: absolute; + left: 0; + top: 50%; + width: 190px; + // background: rgba(256, 256, 256, 0.3); + + .timeline-panel{ + border-top: none; + border-left: 2px solid $color-primary; + width: 100%; + margin-top: 20px; + padding: 5px 20px; + height: auto; + } + &.timeline-inverted{ + bottom: 50%; + top: auto; + margin-bottom: -7px; + padding-bottom: 20px; + & .timeline-badge{ + bottom: 0; + top: auto; + } + & .timeline-panel{ + float: none; + padding-top: 0; + } + } + + .timeline-badge{ + left: 0; + &.sm{ + margin-left: -4px; + } + } + + &:nth-child(1){ + left: 30px; + } + &:nth-child(2){ + left: 72px; + } + &:nth-child(3){ + left: 114px; + } + &:nth-child(4){ + left: 156px; + } + &:nth-child(5){ + left: 198px; + } + &:nth-child(6){ + left: 240px; + } + &:nth-child(7){ + left: 282px; + } + &:nth-child(8){ + left: 324px; + } + &:nth-child(9){ + left: 366px; + } + &:nth-child(10){ + left: 408px; + } + &:nth-child(11){ + left: 450px; + } + &:nth-child(12){ + left: 492px; + } + &:nth-child(13){ + left: 534px; + } + &:nth-child(14){ + left: 576px; + } + &:nth-child(15){ + left: 618px; + } + &:nth-child(16){ + left: 660px; + } + &:nth-child(17){ + left: 702px; + width: 300px; + .timeline-panel{ + padding-top: 164px; + } + } + &:nth-child(18){ + left: 744px; + width: 300px; + .timeline-panel{ + padding-bottom: 100px; + } + } + &:nth-child(19){ + left: 786px; + } + &:nth-child(20){ + left: 828px; + width: 300px; + .timeline-panel{ + padding-top: 100px; + } + } + &:nth-child(21){ + left: 870px; + } + &:nth-child(22){ + left: 912px; + } + &:nth-child(23){ + left: 954px; + } + } + } + } +} + +.section5{ + padding-top: 50px; + padding-bottom: 40px; + h2{ + margin-bottom: 42px; + } + img { + border: 5px solid transparent; + transition: 1s linear; + &:hover { + border-radius: 50%; + -webkit-box-shadow: 0 10px 6px -6px #777; + -moz-box-shadow: 0 10px 6px -6px #777; + box-shadow: 0 10px 6px -6px #777; + } + } + h6{ + font-size: 16px; + margin-top: 15px; + margin-bottom: 40px; + font-weight: normal; + } +} +.section6{ + background-image:url("../images/6/bg.jpg"); + color: white; + padding-top: 50px; + padding-bottom: 60px; + h2{ + &>span { + &:before, &:after { + background: white; + } + } + } + .img-responsive{ + display: inline-block; + } +} +.section7{ + padding-top: 50px; + padding-bottom: 60px; +} +.section8{ + background-image:url("../images/8/map.png"); + .theme-eng &{ + background-image:url("../images/8/map_eng.png"); + } + background-position:top center; + background-repeat:no-repeat; + background-size:cover; + -webkit-background-size:cover; + height: 540px; +} + +footer{ + padding-bottom: 20px; + border-top: 1px solid #ababab; + a{ + color: #4a4a4a; + } + a:hover{ + color: #4a4a4a; + } + label{ + font-weight: 400; + } + .footer-top{ + padding-top: 50px; + font-size: 16px; + } + .phone{ + padding-left: 30px; + background: url("../images/9/phone.png"); + background-repeat: no-repeat; + background-position: top left; + } + .mail{ + padding-left: 30px; + background: url("../images/9/mail.png"); + background-repeat: no-repeat; + background-position: top left; + } + address{ + font-size: 18px; + padding-left: 30px; + margin-bottom: 0; + } + address a{ + display: block; + } + address span{ + font-size: 22px; + } + .w_youtube, .w_facebook, .w_vk{ + background-color: #dadada; + border-radius: 5px; + width: 97px; + height: 43px; + margin-right: 4px; + background-image: url("../images/9/f.png"); + background-repeat: no-repeat; + background-position: center center; + display: inline-block; + } + .w_youtube{ + background-image: url("../images/9/y.png"); + } + .w_vk{ + background-image: url("../images/9/vk.png"); + } + .w_facebook:hover, .w_youtube:hover, .w_vk:hover{ + background-color: grey; + } + .a_footer-bottom{ + color: white; + font-size: 12px; + } +} \ No newline at end of file diff --git a/www-about/images/1/bg.jpg b/www-about/images/1/bg.jpg new file mode 100644 index 0000000..8f9d3fe Binary files /dev/null and b/www-about/images/1/bg.jpg differ diff --git a/www-about/images/2/dlf_trifolium.png b/www-about/images/2/dlf_trifolium.png new file mode 100644 index 0000000..79b4446 Binary files /dev/null and b/www-about/images/2/dlf_trifolium.png differ diff --git a/www-about/images/2/nongwoo_bio.png b/www-about/images/2/nongwoo_bio.png new file mode 100644 index 0000000..db77ae6 Binary files /dev/null and b/www-about/images/2/nongwoo_bio.png differ diff --git a/www-about/images/2/united_genetics.png b/www-about/images/2/united_genetics.png new file mode 100644 index 0000000..c44761e Binary files /dev/null and b/www-about/images/2/united_genetics.png differ diff --git a/www-about/images/2/wing_seed.png b/www-about/images/2/wing_seed.png new file mode 100644 index 0000000..8a28b3e Binary files /dev/null and b/www-about/images/2/wing_seed.png differ diff --git a/www-about/images/3/bg.jpg b/www-about/images/3/bg.jpg new file mode 100644 index 0000000..981d9f5 Binary files /dev/null and b/www-about/images/3/bg.jpg differ diff --git a/www-about/images/4/bg.jpg b/www-about/images/4/bg.jpg new file mode 100644 index 0000000..a174c71 Binary files /dev/null and b/www-about/images/4/bg.jpg differ diff --git a/www-about/images/5/icon1.png b/www-about/images/5/icon1.png new file mode 100644 index 0000000..c55b38c Binary files /dev/null and b/www-about/images/5/icon1.png differ diff --git a/www-about/images/5/icon2.png b/www-about/images/5/icon2.png new file mode 100644 index 0000000..fd6c896 Binary files /dev/null and b/www-about/images/5/icon2.png differ diff --git a/www-about/images/5/icon3.png b/www-about/images/5/icon3.png new file mode 100644 index 0000000..96554ff Binary files /dev/null and b/www-about/images/5/icon3.png differ diff --git a/www-about/images/5/icon4.png b/www-about/images/5/icon4.png new file mode 100644 index 0000000..61e869a Binary files /dev/null and b/www-about/images/5/icon4.png differ diff --git a/www-about/images/5/icon5.png b/www-about/images/5/icon5.png new file mode 100644 index 0000000..59a584a Binary files /dev/null and b/www-about/images/5/icon5.png differ diff --git a/www-about/images/5/icon6.png b/www-about/images/5/icon6.png new file mode 100644 index 0000000..b6a1aed Binary files /dev/null and b/www-about/images/5/icon6.png differ diff --git a/www-about/images/5/icon7.png b/www-about/images/5/icon7.png new file mode 100644 index 0000000..848f007 Binary files /dev/null and b/www-about/images/5/icon7.png differ diff --git a/www-about/images/5/icon8.png b/www-about/images/5/icon8.png new file mode 100644 index 0000000..bf0fdc2 Binary files /dev/null and b/www-about/images/5/icon8.png differ diff --git a/www-about/images/6/beluak.jpg b/www-about/images/6/beluak.jpg new file mode 100644 index 0000000..58b8ed4 Binary files /dev/null and b/www-about/images/6/beluak.jpg differ diff --git a/www-about/images/6/bg.jpg b/www-about/images/6/bg.jpg new file mode 100644 index 0000000..ee8ce59 Binary files /dev/null and b/www-about/images/6/bg.jpg differ diff --git a/www-about/images/6/chizh.jpg b/www-about/images/6/chizh.jpg new file mode 100644 index 0000000..3c2ed5c Binary files /dev/null and b/www-about/images/6/chizh.jpg differ diff --git a/www-about/images/6/gavris.jpg b/www-about/images/6/gavris.jpg new file mode 100644 index 0000000..7e6611a Binary files /dev/null and b/www-about/images/6/gavris.jpg differ diff --git a/www-about/images/6/ivashchenko.jpg b/www-about/images/6/ivashchenko.jpg new file mode 100644 index 0000000..847274d Binary files /dev/null and b/www-about/images/6/ivashchenko.jpg differ diff --git a/www-about/images/6/podluzhnyy.jpg b/www-about/images/6/podluzhnyy.jpg new file mode 100644 index 0000000..7540ebc Binary files /dev/null and b/www-about/images/6/podluzhnyy.jpg differ diff --git a/www-about/images/6/radivilov.jpg b/www-about/images/6/radivilov.jpg new file mode 100644 index 0000000..fc5618a Binary files /dev/null and b/www-about/images/6/radivilov.jpg differ diff --git a/www-about/images/6/valeria.jpg b/www-about/images/6/valeria.jpg new file mode 100644 index 0000000..c897527 Binary files /dev/null and b/www-about/images/6/valeria.jpg differ diff --git a/www-about/images/7/agrisol.png b/www-about/images/7/agrisol.png new file mode 100644 index 0000000..d5dad52 Binary files /dev/null and b/www-about/images/7/agrisol.png differ diff --git a/www-about/images/7/alfa_group.png b/www-about/images/7/alfa_group.png new file mode 100644 index 0000000..f10d1ae Binary files /dev/null and b/www-about/images/7/alfa_group.png differ diff --git a/www-about/images/7/bayer.png b/www-about/images/7/bayer.png new file mode 100644 index 0000000..152a42f Binary files /dev/null and b/www-about/images/7/bayer.png differ diff --git a/www-about/images/7/beyo.png b/www-about/images/7/beyo.png new file mode 100644 index 0000000..bd483d9 Binary files /dev/null and b/www-about/images/7/beyo.png differ diff --git a/www-about/images/7/clause.png b/www-about/images/7/clause.png new file mode 100644 index 0000000..cae86e5 Binary files /dev/null and b/www-about/images/7/clause.png differ diff --git a/www-about/images/7/dorsind_seeds_inc.png b/www-about/images/7/dorsind_seeds_inc.png new file mode 100644 index 0000000..a11741e Binary files /dev/null and b/www-about/images/7/dorsind_seeds_inc.png differ diff --git a/www-about/images/7/euro_grass.png b/www-about/images/7/euro_grass.png new file mode 100644 index 0000000..d631c72 Binary files /dev/null and b/www-about/images/7/euro_grass.png differ diff --git a/www-about/images/7/hem_zaden_by.png b/www-about/images/7/hem_zaden_by.png new file mode 100644 index 0000000..51b2cb0 Binary files /dev/null and b/www-about/images/7/hem_zaden_by.png differ diff --git a/www-about/images/7/novalon.png b/www-about/images/7/novalon.png new file mode 100644 index 0000000..3706848 Binary files /dev/null and b/www-about/images/7/novalon.png differ diff --git a/www-about/images/7/nuhems.png b/www-about/images/7/nuhems.png new file mode 100644 index 0000000..05a90f6 Binary files /dev/null and b/www-about/images/7/nuhems.png differ diff --git a/www-about/images/7/pan_american_seed.png b/www-about/images/7/pan_american_seed.png new file mode 100644 index 0000000..f37980e Binary files /dev/null and b/www-about/images/7/pan_american_seed.png differ diff --git a/www-about/images/7/ruk_zwaan.png b/www-about/images/7/ruk_zwaan.png new file mode 100644 index 0000000..9efe6a8 Binary files /dev/null and b/www-about/images/7/ruk_zwaan.png differ diff --git a/www-about/images/7/seminis.png b/www-about/images/7/seminis.png new file mode 100644 index 0000000..b43ef4e Binary files /dev/null and b/www-about/images/7/seminis.png differ diff --git a/www-about/images/7/syngenta.png b/www-about/images/7/syngenta.png new file mode 100644 index 0000000..eebe665 Binary files /dev/null and b/www-about/images/7/syngenta.png differ diff --git a/www-about/images/7/syngenta_flowers.png b/www-about/images/7/syngenta_flowers.png new file mode 100644 index 0000000..47eb127 Binary files /dev/null and b/www-about/images/7/syngenta_flowers.png differ diff --git a/www-about/images/7/ukravit.png b/www-about/images/7/ukravit.png new file mode 100644 index 0000000..c95c49a Binary files /dev/null and b/www-about/images/7/ukravit.png differ diff --git a/www-about/images/8/map.png b/www-about/images/8/map.png new file mode 100644 index 0000000..236f0ff Binary files /dev/null and b/www-about/images/8/map.png differ diff --git a/www-about/images/8/map_eng.png b/www-about/images/8/map_eng.png new file mode 100644 index 0000000..595a4a1 Binary files /dev/null and b/www-about/images/8/map_eng.png differ diff --git a/www-about/images/9/artweb.png b/www-about/images/9/artweb.png new file mode 100644 index 0000000..f4c1155 Binary files /dev/null and b/www-about/images/9/artweb.png differ diff --git a/www-about/images/9/artweb_gray.png b/www-about/images/9/artweb_gray.png new file mode 100644 index 0000000..55be771 Binary files /dev/null and b/www-about/images/9/artweb_gray.png differ diff --git a/www-about/images/9/f.png b/www-about/images/9/f.png new file mode 100644 index 0000000..2e4c59c Binary files /dev/null and b/www-about/images/9/f.png differ diff --git a/www-about/images/9/icon_soc_all.png b/www-about/images/9/icon_soc_all.png new file mode 100644 index 0000000..01b19a7 Binary files /dev/null and b/www-about/images/9/icon_soc_all.png differ diff --git a/www-about/images/9/icon_soc_vk.png b/www-about/images/9/icon_soc_vk.png new file mode 100644 index 0000000..27d3e70 Binary files /dev/null and b/www-about/images/9/icon_soc_vk.png differ diff --git a/www-about/images/9/mail.png b/www-about/images/9/mail.png new file mode 100644 index 0000000..f0bad7c Binary files /dev/null and b/www-about/images/9/mail.png differ diff --git a/www-about/images/9/phone.png b/www-about/images/9/phone.png new file mode 100644 index 0000000..8a67e5c Binary files /dev/null and b/www-about/images/9/phone.png differ diff --git a/www-about/images/9/vk.png b/www-about/images/9/vk.png new file mode 100644 index 0000000..6d87438 Binary files /dev/null and b/www-about/images/9/vk.png differ diff --git a/www-about/images/9/y.png b/www-about/images/9/y.png new file mode 100644 index 0000000..7b2f271 Binary files /dev/null and b/www-about/images/9/y.png differ diff --git a/www-about/images/basket.png b/www-about/images/basket.png new file mode 100644 index 0000000..f1fffab Binary files /dev/null and b/www-about/images/basket.png differ diff --git a/www-about/images/cabinet.png b/www-about/images/cabinet.png new file mode 100644 index 0000000..3336ee7 Binary files /dev/null and b/www-about/images/cabinet.png differ diff --git a/www-about/images/ico_home.png b/www-about/images/ico_home.png new file mode 100644 index 0000000..9b67782 Binary files /dev/null and b/www-about/images/ico_home.png differ diff --git a/www-about/images/icon_catalog_18x18_01.png b/www-about/images/icon_catalog_18x18_01.png new file mode 100644 index 0000000..4dccd66 Binary files /dev/null and b/www-about/images/icon_catalog_18x18_01.png differ diff --git a/www-about/images/icon_faq_18x18_01.png b/www-about/images/icon_faq_18x18_01.png new file mode 100644 index 0000000..1e70963 Binary files /dev/null and b/www-about/images/icon_faq_18x18_01.png differ diff --git a/www-about/images/logo.png b/www-about/images/logo.png new file mode 100644 index 0000000..d028ebc Binary files /dev/null and b/www-about/images/logo.png differ diff --git a/www-about/images/mob.png b/www-about/images/mob.png new file mode 100644 index 0000000..b1ba591 Binary files /dev/null and b/www-about/images/mob.png differ diff --git a/www-about/images/search.png b/www-about/images/search.png new file mode 100644 index 0000000..c2d9410 Binary files /dev/null and b/www-about/images/search.png differ diff --git a/www-about/images/tel.png b/www-about/images/tel.png new file mode 100644 index 0000000..76e3759 Binary files /dev/null and b/www-about/images/tel.png differ diff --git a/www-about/index.html b/www-about/index.html new file mode 100644 index 0000000..1bc3f67 --- /dev/null +++ b/www-about/index.html @@ -0,0 +1,824 @@ + + + + + + + + Контакти, адреса, телефон ТМ «Професійне насіння» | Інтернет магазин насіння Semena.in.ua + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+

Про компанію

+ +
+
+
+
+
+ + +
+
+

Екслюзивні представництва

+ +
+
+ + + + + + + + +
+
+

Досягнення і нагороди

+ +
+
+ +
+
+

Переваги компанії

+
+
+ +
Оригінальна продукція від виробника
+
+
+ +
Надзвичайно широкий асортимент +
+
+
+
+ +
Щосезонне поповнення асортименту новими позиціями +
+
+
+ +
Швидка логістика +
+
+
+
+ +
Кваліфікована консультація +
+
+
+ +
Тисячі задоволених клієнтів +
+
+
+
+ +
Клієнтоорієнтованість +
+
+
+ +
Працюємо по всій території України +
+
+
+
+
+ +
+
+

Команда професіоналів

+ +
+
+ +
+
+

DISTRIBUTION

+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/www-about/index_eng.html b/www-about/index_eng.html new file mode 100644 index 0000000..cc87be9 --- /dev/null +++ b/www-about/index_eng.html @@ -0,0 +1,760 @@ + + + + + + + + Контакти, адреса, телефон ТМ «Професійне насіння» | Інтернет магазин насіння Semena.in.ua + + + + + + + + + + + + + + + + + +
+
+
+
+
+

About Company

+ +
+
+
+
+
+ + +
+
+

Exclusive Distribution

+ +
+
+ + + + + +
+
+

ACHIEVEMENTS AND AWARDS

+ +
+
+ +
+
+

Advantages of the Company

+
+
+ +
Original products, supplied directly from the manufacturer
+
+
+ +
Extremely wide range of products provided +
+
+
+
+ +
Annual updating of the variety of products +
+
+
+ +
Fast logistics +
+
+
+
+ +
Expert counseling +
+
+
+ +
Thousands of satisfied clients +
+
+
+
+ +
Client-oriented corporate policy +
+
+
+ +
Company's operating all over Ukraine +
+
+
+
+
+ +
+
+

Professional Team

+ +
+
+ +
+
+

DISTRIBUTION

+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/www-about/js/owl.carousel.min.js b/www-about/js/owl.carousel.min.js new file mode 100644 index 0000000..f2a15f6 --- /dev/null +++ b/www-about/js/owl.carousel.min.js @@ -0,0 +1,2 @@ +!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this.drag=a.extend({},m),this.state=a.extend({},n),this.e=a.extend({},o),this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._invalidated={},this._pipe=[],a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a[0].toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Pipe,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}function f(a){if(a.touches!==d)return{x:a.touches[0].pageX,y:a.touches[0].pageY};if(a.touches===d){if(a.pageX!==d)return{x:a.pageX,y:a.pageY};if(a.pageX===d)return{x:a.clientX,y:a.clientY}}}function g(a){var b,d,e=c.createElement("div"),f=a;for(b in f)if(d=f[b],"undefined"!=typeof e.style[d])return e=null,[d,b];return[!1]}function h(){return g(["transition","WebkitTransition","MozTransition","OTransition"])[1]}function i(){return g(["transform","WebkitTransform","MozTransform","OTransform","msTransform"])[0]}function j(){return g(["perspective","webkitPerspective","MozPerspective","OPerspective","MsPerspective"])[0]}function k(){return"ontouchstart"in b||!!navigator.msMaxTouchPoints}function l(){return b.navigator.msPointerEnabled}var m,n,o;m={start:0,startX:0,startY:0,current:0,currentX:0,currentY:0,offsetX:0,offsetY:0,distance:null,startTime:0,endTime:0,updatedX:0,targetEl:null},n={isTouch:!1,isScrolling:!1,isSwiping:!1,direction:!1,inMotion:!1},o={_onDragStart:null,_onDragMove:null,_onDragEnd:null,_transitionEnd:null,_resizer:null,_responsiveCall:null,_goToLoop:null,_checkVisibile:null},e.Defaults={items:3,loop:!1,center:!1,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,responsiveClass:!1,fallbackEasing:"swing",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",themeClass:"owl-theme",baseClass:"owl-carousel",itemClass:"owl-item",centerClass:"center",activeClass:"active"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Plugins={},e.Pipe=[{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){var a=this._clones,b=this.$stage.children(".cloned");(b.length!==a.length||!this.settings.loop&&a.length>0)&&(this.$stage.children(".cloned").remove(),this._clones=[])}},{filter:["items","settings"],run:function(){var a,b,c=this._clones,d=this._items,e=this.settings.loop?c.length-Math.max(2*this.settings.items,4):0;for(a=0,b=Math.abs(e/2);b>a;a++)e>0?(this.$stage.children().eq(d.length+c.length-1).remove(),c.pop(),this.$stage.children().eq(0).remove(),c.pop()):(c.push(c.length/2),this.$stage.append(d[c[c.length-1]].clone().addClass("cloned")),c.push(d.length-1-(c.length-1)/2),this.$stage.prepend(d[c[c.length-1]].clone().addClass("cloned")))}},{filter:["width","items","settings"],run:function(){var a,b,c,d=this.settings.rtl?1:-1,e=(this.width()/this.settings.items).toFixed(3),f=0;for(this._coordinates=[],b=0,c=this._clones.length+this._items.length;c>b;b++)a=this._mergers[this.relative(b)],a=this.settings.mergeFit&&Math.min(a,this.settings.items)||a,f+=(this.settings.autoWidth?this._items[this.relative(b)].width()+this.settings.margin:e*a)*d,this._coordinates.push(f)}},{filter:["width","items","settings"],run:function(){var b,c,d=(this.width()/this.settings.items).toFixed(3),e={width:Math.abs(this._coordinates[this._coordinates.length-1])+2*this.settings.stagePadding,"padding-left":this.settings.stagePadding||"","padding-right":this.settings.stagePadding||""};if(this.$stage.css(e),e={width:this.settings.autoWidth?"auto":d-this.settings.margin},e[this.settings.rtl?"margin-left":"margin-right"]=this.settings.margin,!this.settings.autoWidth&&a.grep(this._mergers,function(a){return a>1}).length>0)for(b=0,c=this._coordinates.length;c>b;b++)e.width=Math.abs(this._coordinates[b])-Math.abs(this._coordinates[b-1]||0)-this.settings.margin,this.$stage.children().eq(b).css(e);else this.$stage.children().css(e)}},{filter:["width","items","settings"],run:function(a){a.current&&this.reset(this.$stage.children().index(a.current))}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var a,b,c,d,e=this.settings.rtl?1:-1,f=2*this.settings.stagePadding,g=this.coordinates(this.current())+f,h=g+this.width()*e,i=[];for(c=0,d=this._coordinates.length;d>c;c++)a=this._coordinates[c-1]||0,b=Math.abs(this._coordinates[c])+f*e,(this.op(a,"<=",g)&&this.op(a,">",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children("."+this.settings.activeClass).removeClass(this.settings.activeClass),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass(this.settings.activeClass),this.settings.center&&(this.$stage.children("."+this.settings.centerClass).removeClass(this.settings.centerClass),this.$stage.children().eq(this.current()).addClass(this.settings.centerClass))}}],e.prototype.initialize=function(){if(this.trigger("initialize"),this.$element.addClass(this.settings.baseClass).addClass(this.settings.themeClass).toggleClass("owl-rtl",this.settings.rtl),this.browserSupport(),this.settings.autoWidth&&this.state.imagesLoaded!==!0){var b,c,e;if(b=this.$element.find("img"),c=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,e=this.$element.children(c).width(),b.length&&0>=e)return this.preloadAutoWidthImages(b),!1}this.$element.addClass("owl-loading"),this.$stage=a("<"+this.settings.stageElement+' class="owl-stage"/>').wrap('
'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this._width=this.$element.width(),this.refresh(),this.$element.removeClass("owl-loading").addClass("owl-loaded"),this.eventsCall(),this.internalEvents(),this.addTriggerableEvents(),this.trigger("initialized")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){b>=a&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),delete e.responsive,e.responsiveClass&&this.$element.attr("class",function(a,b){return b.replace(/\b owl-responsive-\S+/g,"")}).addClass("owl-responsive-"+d)):e=a.extend({},this.options),(null===this.settings||this._breakpoint!==d)&&(this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}}))},e.prototype.optionsLogic=function(){this.$element.toggleClass("owl-center",this.settings.center),this.settings.loop&&this._items.length").addClass(this.settings.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};c>b;)(this._invalidated.all||a.grep(this._pipe[b].filter,d).length>0)&&this._pipe[b].run(e),b++;this._invalidated={}},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){if(0===this._items.length)return!1;(new Date).getTime();this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$stage.addClass("owl-refresh"),this.update(),this.$stage.removeClass("owl-refresh"),this.state.orientation=b.orientation,this.watchVisibility(),this.trigger("refreshed")},e.prototype.eventsCall=function(){this.e._onDragStart=a.proxy(function(a){this.onDragStart(a)},this),this.e._onDragMove=a.proxy(function(a){this.onDragMove(a)},this),this.e._onDragEnd=a.proxy(function(a){this.onDragEnd(a)},this),this.e._onResize=a.proxy(function(a){this.onResize(a)},this),this.e._transitionEnd=a.proxy(function(a){this.transitionEnd(a)},this),this.e._preventClick=a.proxy(function(a){this.preventClick(a)},this)},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this.e._onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return this._items.length?this._width===this.$element.width()?!1:this.trigger("resize").isDefaultPrevented()?!1:(this._width=this.$element.width(),this.invalidate("width"),this.refresh(),void this.trigger("resized")):!1},e.prototype.eventsRouter=function(a){var b=a.type;"mousedown"===b||"touchstart"===b?this.onDragStart(a):"mousemove"===b||"touchmove"===b?this.onDragMove(a):"mouseup"===b||"touchend"===b?this.onDragEnd(a):"touchcancel"===b&&this.onDragEnd(a)},e.prototype.internalEvents=function(){var c=(k(),l());this.settings.mouseDrag?(this.$stage.on("mousedown",a.proxy(function(a){this.eventsRouter(a)},this)),this.$stage.on("dragstart",function(){return!1}),this.$stage.get(0).onselectstart=function(){return!1}):this.$element.addClass("owl-text-select-on"),this.settings.touchDrag&&!c&&this.$stage.on("touchstart touchcancel",a.proxy(function(a){this.eventsRouter(a)},this)),this.transitionEndVendor&&this.on(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd,!1),this.settings.responsive!==!1&&this.on(b,"resize",a.proxy(this.onThrottledResize,this))},e.prototype.onDragStart=function(d){var e,g,h,i;if(e=d.originalEvent||d||b.event,3===e.which||this.state.isTouch)return!1;if("mousedown"===e.type&&this.$stage.addClass("owl-grab"),this.trigger("drag"),this.drag.startTime=(new Date).getTime(),this.speed(0),this.state.isTouch=!0,this.state.isScrolling=!1,this.state.isSwiping=!1,this.drag.distance=0,g=f(e).x,h=f(e).y,this.drag.offsetX=this.$stage.position().left,this.drag.offsetY=this.$stage.position().top,this.settings.rtl&&(this.drag.offsetX=this.$stage.position().left+this.$stage.width()-this.width()+this.settings.margin),this.state.inMotion&&this.support3d)i=this.getTransformProperty(),this.drag.offsetX=i,this.animate(i),this.state.inMotion=!0;else if(this.state.inMotion&&!this.support3d)return this.state.inMotion=!1,!1;this.drag.startX=g-this.drag.offsetX,this.drag.startY=h-this.drag.offsetY,this.drag.start=g-this.drag.startX,this.drag.targetEl=e.target||e.srcElement,this.drag.updatedX=this.drag.start,("IMG"===this.drag.targetEl.tagName||"A"===this.drag.targetEl.tagName)&&(this.drag.targetEl.draggable=!1),a(c).on("mousemove.owl.dragEvents mouseup.owl.dragEvents touchmove.owl.dragEvents touchend.owl.dragEvents",a.proxy(function(a){this.eventsRouter(a)},this))},e.prototype.onDragMove=function(a){var c,e,g,h,i,j;this.state.isTouch&&(this.state.isScrolling||(c=a.originalEvent||a||b.event,e=f(c).x,g=f(c).y,this.drag.currentX=e-this.drag.startX,this.drag.currentY=g-this.drag.startY,this.drag.distance=this.drag.currentX-this.drag.offsetX,this.drag.distance<0?this.state.direction=this.settings.rtl?"right":"left":this.drag.distance>0&&(this.state.direction=this.settings.rtl?"left":"right"),this.settings.loop?this.op(this.drag.currentX,">",this.coordinates(this.minimum()))&&"right"===this.state.direction?this.drag.currentX-=(this.settings.center&&this.coordinates(0))-this.coordinates(this._items.length):this.op(this.drag.currentX,"<",this.coordinates(this.maximum()))&&"left"===this.state.direction&&(this.drag.currentX+=(this.settings.center&&this.coordinates(0))-this.coordinates(this._items.length)):(h=this.coordinates(this.settings.rtl?this.maximum():this.minimum()),i=this.coordinates(this.settings.rtl?this.minimum():this.maximum()),j=this.settings.pullDrag?this.drag.distance/5:0,this.drag.currentX=Math.max(Math.min(this.drag.currentX,h+j),i+j)),(this.drag.distance>8||this.drag.distance<-8)&&(c.preventDefault!==d?c.preventDefault():c.returnValue=!1,this.state.isSwiping=!0),this.drag.updatedX=this.drag.currentX,(this.drag.currentY>16||this.drag.currentY<-16)&&this.state.isSwiping===!1&&(this.state.isScrolling=!0,this.drag.updatedX=this.drag.start),this.animate(this.drag.updatedX)))},e.prototype.onDragEnd=function(b){var d,e,f;if(this.state.isTouch){if("mouseup"===b.type&&this.$stage.removeClass("owl-grab"),this.trigger("dragged"),this.drag.targetEl.removeAttribute("draggable"),this.state.isTouch=!1,this.state.isScrolling=!1,this.state.isSwiping=!1,0===this.drag.distance&&this.state.inMotion!==!0)return this.state.inMotion=!1,!1;this.drag.endTime=(new Date).getTime(),d=this.drag.endTime-this.drag.startTime,e=Math.abs(this.drag.distance),(e>3||d>300)&&this.removeClick(this.drag.targetEl),f=this.closest(this.drag.updatedX),this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(f),this.invalidate("position"),this.update(),this.settings.pullDrag||this.drag.updatedX!==this.coordinates(f)||this.transitionEnd(),this.drag.distance=0,a(c).off(".owl.dragEvents")}},e.prototype.removeClick=function(c){this.drag.targetEl=c,a(c).on("click.preventClick",this.e._preventClick),b.setTimeout(function(){a(c).off("click.preventClick")},300)},e.prototype.preventClick=function(b){b.preventDefault?b.preventDefault():b.returnValue=!1,b.stopPropagation&&b.stopPropagation(),a(b.target).off("click.preventClick")},e.prototype.getTransformProperty=function(){var a,c;return a=b.getComputedStyle(this.$stage.get(0),null).getPropertyValue(this.vendorName+"transform"),a=a.replace(/matrix(3d)?\(|\)/g,"").split(","),c=16===a.length,c!==!0?a[4]:a[12]},e.prototype.closest=function(b){var c=-1,d=30,e=this.width(),f=this.coordinates();return this.settings.freeDrag||a.each(f,a.proxy(function(a,g){return b>g-d&&g+d>b?c=a:this.op(b,"<",g)&&this.op(b,">",f[a+1]||g-e)&&(c="left"===this.state.direction?a+1:a),-1===c},this)),this.settings.loop||(this.op(b,">",f[this.minimum()])?c=b=this.minimum():this.op(b,"<",f[this.maximum()])&&(c=b=this.maximum())),c},e.prototype.animate=function(b){this.trigger("translate"),this.state.inMotion=this.speed()>0,this.support3d?this.$stage.css({transform:"translate3d("+b+"px,0px, 0px)",transition:this.speed()/1e3+"s"}):this.state.isTouch?this.$stage.css({left:b+"px"}):this.$stage.animate({left:b},this.speed()/1e3,this.settings.fallbackEasing,a.proxy(function(){this.state.inMotion&&this.transitionEnd()},this))},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(a){this._invalidated[a]=!0},e.prototype.reset=function(a){a=this.normalize(a),a!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(b,c){var e=c?this._items.length:this._items.length+this._clones.length;return!a.isNumeric(b)||1>e?d:b=this._clones.length?(b%e+e)%e:Math.max(this.minimum(c),Math.min(this.maximum(c),b))},e.prototype.relative=function(a){return a=this.normalize(a),a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=0,f=this.settings;if(a)return this._items.length-1;if(!f.loop&&f.center)b=this._items.length-1;else if(f.loop||f.center)if(f.loop||f.center)b=this._items.length+f.items;else{if(!f.autoWidth&&!f.merge)throw"Can not detect maximum absolute position.";for(revert=f.rtl?1:-1,c=this.$stage.width()-this.$element.width();(d=this.coordinates(e))&&!(d*revert>=c);)b=++e}else b=this._items.length-f.items;return b},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2===0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c=null;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[b-1]||0))/2*(this.settings.rtl?-1:1)):c=this._coordinates[b-1]||0,c)},e.prototype.duration=function(a,b,c){return Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(c,d){if(this.settings.loop){var e=c-this.relative(this.current()),f=this.current(),g=this.current(),h=this.current()+e,i=0>g-h?!0:!1,j=this._clones.length+this._items.length;h=j-this.settings.items&&i===!0&&(f=g-this._items.length,this.reset(f)),b.clearTimeout(this.e._goToLoop),this.e._goToLoop=b.setTimeout(a.proxy(function(){this.speed(this.duration(this.current(),f+e,d)),this.current(f+e),this.update()},this),30)}else this.speed(this.duration(this.current(),c,d)),this.current(c),this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.transitionEnd=function(a){return a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0))?!1:(this.state.inMotion=!1,void this.trigger("translated"))},e.prototype.viewport=function(){var d;if(this.options.responsiveBaseElement!==b)d=a(this.options.responsiveBaseElement).width();else if(b.innerWidth)d=b.innerWidth;else{if(!c.documentElement||!c.documentElement.clientWidth)throw"Can not detect viewport width.";d=c.documentElement.clientWidth}return d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)},this)),this.reset(a.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(a,b){b=b===d?this._items.length:this.normalize(b,!0),this.trigger("add",{content:a,position:b}),0===this._items.length||b===this._items.length?(this.$stage.append(a),this._items.push(a),this._mergers.push(1*a.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)):(this._items[b].before(a),this._items.splice(b,0,a),this._mergers.splice(b,0,1*a.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)),this.invalidate("items"),this.trigger("added",{content:a,position:b})},e.prototype.remove=function(a){a=this.normalize(a,!0),a!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.addTriggerableEvents=function(){var b=a.proxy(function(b,c){return a.proxy(function(a){a.relatedTarget!==this&&(this.suppress([c]),b.apply(this,[].slice.call(arguments,1)),this.release([c]))},this)},this);a.each({next:this.next,prev:this.prev,to:this.to,destroy:this.destroy,refresh:this.refresh,replace:this.replace,add:this.add,remove:this.remove},a.proxy(function(a,c){this.$element.on(a+".owl.carousel",b(c,a+".owl.carousel"))},this))},e.prototype.watchVisibility=function(){function c(a){return a.offsetWidth>0&&a.offsetHeight>0}function d(){c(this.$element.get(0))&&(this.$element.removeClass("owl-hidden"),this.refresh(),b.clearInterval(this.e._checkVisibile))}c(this.$element.get(0))||(this.$element.addClass("owl-hidden"),b.clearInterval(this.e._checkVisibile),this.e._checkVisibile=b.setInterval(a.proxy(d,this),500))},e.prototype.preloadAutoWidthImages=function(b){var c,d,e,f;c=0,d=this,b.each(function(g,h){e=a(h),f=new Image,f.onload=function(){c++,e.attr("src",f.src),e.css("opacity",1),c>=b.length&&(d.state.imagesLoaded=!0,d.initialize())},f.src=e.attr("src")||e.attr("data-src")||e.attr("data-src-retina")})},e.prototype.destroy=function(){this.$element.hasClass(this.settings.themeClass)&&this.$element.removeClass(this.settings.themeClass),this.settings.responsive!==!1&&a(b).off("resize.owl.carousel"),this.transitionEndVendor&&this.off(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd);for(var d in this._plugins)this._plugins[d].destroy();(this.settings.mouseDrag||this.settings.touchDrag)&&(this.$stage.off("mousedown touchstart touchcancel"),a(c).off(".owl.dragEvents"),this.$stage.get(0).onselectstart=function(){},this.$stage.off("dragstart",function(){return!1})),this.$element.off(".owl"),this.$stage.children(".cloned").remove(),this.e=null,this.$element.removeData("owlCarousel"),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$stage.unwrap()},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:c>a;case">":return d?c>a:a>c;case">=":return d?c>=a:a>=c;case"<=":return d?a>=c:c>=a}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d){var e={item:{count:this._items.length,index:this.current()}},f=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),g=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},e,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(g)}),this.$element.trigger(g),this.settings&&"function"==typeof this.settings[f]&&this.settings[f].apply(this,g)),g},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.browserSupport=function(){if(this.support3d=j(),this.support3d){this.transformVendor=i();var a=["transitionend","webkitTransitionEnd","transitionend","oTransitionEnd"];this.transitionEndVendor=a[h()],this.vendorName=this.transformVendor.replace(/Transform/i,""),this.vendorName=""!==this.vendorName?"-"+this.vendorName.toLowerCase()+"-":""}this.state.orientation=b.orientation},a.fn.owlCarousel=function(b){return this.each(function(){a(this).data("owlCarousel")||a(this).data("owlCarousel",new e(this,b))})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b){var c=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type))for(var c=this._core.settings,d=c.center&&Math.ceil(c.items/2)||c.items,e=c.center&&-1*d||0,f=(b.property&&b.property.value||this._core.current())+e,g=this._core.clones().length,h=a.proxy(function(a,b){this.load(b)},this);e++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":"url("+g+")",opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},c.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=c}(window.Zepto||window.jQuery,window,document),function(a){var b=function(c){this._core=c,this._handlers={"initialized.owl.carousel":a.proxy(function(){this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){this._core.settings.autoHeight&&"position"==a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass)===this._core.$stage.children().eq(this._core.current())&&this.update()},this)},this._core.options=a.extend({},b.Defaults,this._core.options),this._core.$element.on(this._handlers)};b.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},b.prototype.update=function(){this._core.$stage.parent().height(this._core.$stage.children().eq(this._core.current()).height()).addClass(this._core.settings.autoHeightClass)},b.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=b}(window.Zepto||window.jQuery,window,document),function(a,b,c){var d=function(b){this._core=b,this._videos={},this._playing=null,this._fullscreen=!1,this._handlers={"resize.owl.carousel":a.proxy(function(a){this._core.settings.video&&!this.isInFullScreen()&&a.preventDefault()},this),"refresh.owl.carousel changed.owl.carousel":a.proxy(function(){this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))},this)},this._core.options=a.extend({},d.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};d.Defaults={video:!1,videoHeight:!1,videoWidth:!1},d.prototype.fetch=function(a,b){var c=a.attr("data-vimeo-id")?"vimeo":"youtube",d=a.attr("data-vimeo-id")||a.attr("data-youtube-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else{if(!(d[3].indexOf("vimeo")>-1))throw new Error("Video URL not supported.");c="vimeo"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},d.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?'style="width:'+c.width+"px;height:"+c.height+'px;"':"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(a){e='
',d=k.lazyLoad?'
':'
',b.after(d),b.after(e)};return b.wrap('
"),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length?(l(h.attr(i)),h.remove(),!1):void("youtube"===c.type?(f="http://img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type&&a.ajax({type:"GET",url:"http://vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}))},d.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null},d.prototype.play=function(b){this._core.trigger("play",null,"video"),this._playing&&this.stop();var c,d,e=a(b.target||b.srcElement),f=e.closest("."+this._core.settings.itemClass),g=this._videos[f.attr("data-video")],h=g.width||"100%",i=g.height||this._core.$stage.height();"youtube"===g.type?c='':"vimeo"===g.type&&(c=''),f.addClass("owl-video-playing"),this._playing=f,d=a('
'+c+"
"),e.after(d)},d.prototype.isInFullScreen=function(){var d=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return d&&a(d).parent().hasClass("owl-video-frame")&&(this._core.speed(0),this._fullscreen=!0),d&&this._fullscreen&&this._playing?!1:this._fullscreen?(this._fullscreen=!1,!1):this._playing&&this._core.state.orientation!==b.orientation?(this._core.state.orientation=b.orientation,!1):!0},d.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=d}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){this.swapping="translated"==a.type},this),"translate.owl.carousel":a.proxy(function(){this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&this.core.support3d){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",c)),f&&e.addClass("animated owl-animated-in").addClass(f).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",c))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.transitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c){var d=function(b){this.core=b,this.core.options=a.extend({},d.Defaults,this.core.options),this.handlers={"translated.owl.carousel refreshed.owl.carousel":a.proxy(function(){this.autoplay() +},this),"play.owl.autoplay":a.proxy(function(a,b,c){this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(){this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this.core.settings.autoplayHoverPause&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this.core.settings.autoplayHoverPause&&this.autoplay()},this)},this.core.$element.on(this.handlers)};d.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},d.prototype.autoplay=function(){this.core.settings.autoplay&&!this.core.state.videoPlay?(b.clearInterval(this.interval),this.interval=b.setInterval(a.proxy(function(){this.play()},this),this.core.settings.autoplayTimeout)):b.clearInterval(this.interval)},d.prototype.play=function(){return c.hidden===!0||this.core.state.isTouch||this.core.state.isScrolling||this.core.state.isSwiping||this.core.state.inMotion?void 0:this.core.settings.autoplay===!1?void b.clearInterval(this.interval):void this.core.next(this.core.settings.autoplaySpeed)},d.prototype.stop=function(){b.clearInterval(this.interval)},d.prototype.pause=function(){b.clearInterval(this.interval)},d.prototype.destroy=function(){var a,c;b.clearInterval(this.interval);for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=d}(window.Zepto||window.jQuery,window,document),function(a){"use strict";var b=function(c){this._core=c,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){this._core.settings.dotsData&&this._templates.push(a(b.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"add.owl.carousel":a.proxy(function(b){this._core.settings.dotsData&&this._templates.splice(b.position,0,a(b.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"remove.owl.carousel prepared.owl.carousel":a.proxy(function(a){this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"change.owl.carousel":a.proxy(function(a){if("position"==a.property.name&&!this._core.state.revert&&!this._core.settings.loop&&this._core.settings.navRewind){var b=this._core.current(),c=this._core.maximum(),d=this._core.minimum();a.data=a.property.value>c?b>=c?d:c:a.property.value").addClass(d.dotClass).append(a("")).prop("outerHTML")]),d.navContainer&&d.dotsContainer||(this._controls.$container=a("
").addClass(d.controlsClass).appendTo(this.$element)),this._controls.$indicators=d.dotsContainer?a(d.dotsContainer):a("
").hide().addClass(d.dotsClass).appendTo(this._controls.$container),this._controls.$indicators.on("click","div",a.proxy(function(b){var c=a(b.target).parent().is(this._controls.$indicators)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(c,d.dotsSpeed)},this)),b=d.navContainer?a(d.navContainer):a("
").addClass(d.navContainerClass).prependTo(this._controls.$container),this._controls.$next=a("<"+d.navElement+">"),this._controls.$previous=this._controls.$next.clone(),this._controls.$previous.addClass(d.navClass[0]).html(d.navText[0]).hide().prependTo(b).on("click",a.proxy(function(){this.prev(d.navSpeed)},this)),this._controls.$next.addClass(d.navClass[1]).html(d.navText[1]).hide().appendTo(b).on("click",a.proxy(function(){this.next(d.navSpeed)},this));for(c in this._overrides)this._core[c]=a.proxy(this[c],this)},b.prototype.destroy=function(){var a,b,c,d;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},b.prototype.update=function(){var a,b,c,d=this._core.settings,e=this._core.clones().length/2,f=e+this._core.items().length,g=d.center||d.autoWidth||d.dotData?1:d.dotsEach||d.items;if("page"!==d.slideBy&&(d.slideBy=Math.min(d.slideBy,d.items)),d.dots||"page"==d.slideBy)for(this._pages=[],a=e,b=0,c=0;f>a;a++)(b>=g||0===b)&&(this._pages.push({start:a-e,end:a-e+g-1}),b=0,++c),b+=this._core.mergers(this._core.relative(a))},b.prototype.draw=function(){var b,c,d="",e=this._core.settings,f=(this._core.$stage.children(),this._core.relative(this._core.current()));if(!e.nav||e.loop||e.navRewind||(this._controls.$previous.toggleClass("disabled",0>=f),this._controls.$next.toggleClass("disabled",f>=this._core.maximum())),this._controls.$previous.toggle(e.nav),this._controls.$next.toggle(e.nav),e.dots){if(b=this._pages.length-this._controls.$indicators.children().length,e.dotData&&0!==b){for(c=0;c0?(d=new Array(b+1).join(this._templates[0]),this._controls.$indicators.append(d)):0>b&&this._controls.$indicators.children().slice(b).remove();this._controls.$indicators.find(".active").removeClass("active"),this._controls.$indicators.children().eq(a.inArray(this.current(),this._pages)).addClass("active")}this._controls.$indicators.toggle(e.dots)},b.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotData?1:c.dotsEach||c.items)}},b.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,function(a){return a.start<=b&&a.end>=b}).pop()},b.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},b.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},b.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},b.prototype.to=function(b,c,d){var e;d?a.proxy(this._overrides.to,this._core)(b,c):(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c))},a.fn.owlCarousel.Constructor.Plugins.Navigation=b}(window.Zepto||window.jQuery,window,document),function(a,b){"use strict";var c=function(d){this._core=d,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(){"URLHash"==this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){var c=a(b.content).find("[data-hash]").andSelf("[data-hash]").attr("data-hash");this._hashes[c]=b.content},this)},this._core.options=a.extend({},c.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(){var a=b.location.hash.substring(1),c=this._core.$stage.children(),d=this._hashes[a]&&c.index(this._hashes[a])||0;return a?void this._core.to(d,!1,!0):!1},this))};c.Defaults={URLhashListener:!1},c.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=c}(window.Zepto||window.jQuery,window,document); \ No newline at end of file diff --git a/www-about/js/script.js b/www-about/js/script.js new file mode 100644 index 0000000..a022d25 --- /dev/null +++ b/www-about/js/script.js @@ -0,0 +1,15 @@ +$(document).ready(function() { + $("#owl1").owlCarousel({ + autoPlay: 5000, + slideSpeed : 40000, + paginationSpeed : 400, + singleItem:true, + rewindSpeed : 10 + }); + + $("#owl6").owlCarousel({ + slideSpeed : 1000, + paginationSpeed : 400, + singleItem:true + }); +}); \ No newline at end of file -- libgit2 0.21.4