@charset "UTF-8";

:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-zoomInUp{animation:.2s ease-out .1s both f-zoomInUp}.f-zoomOutDown{animation:.2s ease-out both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-throwOutUp{animation:.175s ease-out both f-throwOutUp}.f-throwOutDown{animation:.175s ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, -150px, 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, 150px, 0);opacity:0}}.f-fadeIn{animation:.2s ease both f-fadeIn;z-index:2}.f-fadeOut{animation:.2s ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeSlowIn{animation:.5s ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:.5s ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-fadeFastIn{animation:.2s ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:.2s ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-crossfadeIn{animation:.2s ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:.1s linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:1050;outline:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur(0px);will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:.25s ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:.35s ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:.15s ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:.35s ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:100%;height:100%}.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,.fancybox__container:not(.is-compact) .has-map .fancybox__content,.fancybox__container:not(.is-compact) .has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 20px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden}.f-thumbs__track{display:flex;will-change:transform}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);min-width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc(var(--left, 0)*1px);width:calc(100% - var(--width, 0)*1px);cursor:pointer}.is-modern .f-thumbs__slide{--clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern .f-thumbs__slide:focus-within:not(.is-selected){filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.is-modern .f-thumbs__slide>*{clip-path:var(--clip-path)}.is-modern.in-touch .f-thumbs__slide{filter:none}.is-modern.is-resting .f-thumbs__slide{transition:all .33s ease}.is-modern.is-resting .f-thumbs__slide>*{transition:all .33s ease}.f-thumbs__slide__button{appearance:none;width:100%;height:100%;margin:0;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{position:absolute;overflow:hidden;top:0;right:0;bottom:0;left:0;width:100%;height:100%;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover}.f-thumbs.is-horizontal .f-thumbs__track{margin:0 auto;padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;margin:auto 0;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 20px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-hidden{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}
html.has-scroll-smooth {
overflow: hidden;
}
html.has-scroll-dragging {
user-select: none;
}
.has-scroll-smooth body {
overflow: hidden;
}
.has-scroll-smooth [data-scroll-container] {
min-height: 100vh;
}
[data-scroll-direction=horizontal] [data-scroll-container] {
height: 100vh;
display: inline-block;
white-space: nowrap;
}
[data-scroll-direction=horizontal] [data-scroll-section] {
display: inline-block;
vertical-align: top;
white-space: nowrap;
height: 100%;
}
.c-scrollbar {
position: absolute;
right: 0;
top: 0;
width: 11px;
height: 100%;
transform-origin: center right;
transition: transform 0.3s, opacity 0.3s;
opacity: 0;
}
.c-scrollbar:hover {
transform: scaleX(1.45);
}
.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
opacity: 1;
}
[data-scroll-direction=horizontal] .c-scrollbar {
width: 100%;
height: 10px;
top: auto;
bottom: 0;
transform: scaleY(1);
}
[data-scroll-direction=horizontal] .c-scrollbar:hover {
transform: scaleY(1.3);
}
.c-scrollbar_thumb {
position: absolute;
top: 0;
right: 0;
background-color: black;
opacity: 0.5;
width: 7px;
border-radius: 10px;
margin: 2px;
cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
cursor: grabbing;
}
[data-scroll-direction=horizontal] .c-scrollbar_thumb {
right: auto;
bottom: 0;
} @font-face {
font-family: "swiper-icons";
src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
font-weight: 400;
font-style: normal;
}
:root {
--swiper-theme-color: #007aff; }
.swiper,
swiper-container {
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0; z-index: 1;
display: block;
}
.swiper-vertical > .swiper-wrapper {
flex-direction: column;
}
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
touch-action: pan-y;
}
.swiper-vertical {
touch-action: pan-x;
}
.swiper-slide,
swiper-slide {
flex-shrink: 0;
width: 100%;
height: 100%;
position: relative;
transition-property: transform;
display: block;
}
.swiper-slide-invisible-blank {
visibility: hidden;
} .swiper-autoheight,
.swiper-autoheight .swiper-slide {
height: auto;
}
.swiper-autoheight .swiper-wrapper {
align-items: flex-start;
transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
transform: translateZ(0);
backface-visibility: hidden;
} .swiper-3d.swiper-css-mode .swiper-wrapper {
perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
transform-style: preserve-3d;
}
.swiper-3d {
perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
} .swiper-css-mode > .swiper-wrapper {
overflow: auto;
scrollbar-width: none; -ms-overflow-style: none; }
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
content: "";
flex-shrink: 0;
order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
scroll-snap-align: center center;
scroll-snap-stop: always;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
height: 100%;
min-height: 1px;
width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
width: 100%;
min-width: 1px;
height: var(--swiper-centered-offset-after);
}
.swiper-lazy-preloader {
width: 42px;
height: 42px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -21px;
margin-top: -21px;
z-index: 10;
transform-origin: 50%;
box-sizing: border-box;
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
border-radius: 50%;
border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
--swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
:root {
--desktop-width: 1367px;
}
.text-gradient {
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent;
background: radial-gradient(circle at 100%, #E6B116 0%, #FFFFEF 48.96%, #E6B116 100%);
}
.border-gradient {
border-image-slice: 1;
background-image: linear-gradient(white, white), linear-gradient(to right, #9f8154, #d6bf90);
border-radius: 999999px;
background-origin: border-box;
background-clip: padding-box, border-box;
}
.gold-gradient {
position: relative;
z-index: 0;
border-radius: 999999px;
border: unset;
transition: all 0.3s ease-in-out;
}
.gold-gradient:before {
transition: all 0.3s ease-in-out;
content: "";
position: absolute;
z-index: -1;
inset: 0;
padding: 2px;
border-radius: 999999px;
background: linear-gradient(to right, #9f8154, #d6bf90, #9f8154);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
}
.gold-gradient.gold-gradient-thick:before {
padding: 1px;
}
.gold-gradient .gold-gradient {
opacity: 0.85;
}
.gold-gradient:hover {
background-color: #dbcbaa;
}
.btn {
padding: 7px;
min-width: 185px;
text-transform: uppercase;
color: #000;
}
.btn-outline-primary {
position: relative;
padding: 16px 15px !important;
transition: all 0.3s ease-in-out;
border-radius: 99999px;
background-color: #f9f6f0;
}
.btn-outline-primary:after {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
content: "";
border: 1px solid #967b56;
width: calc(100% - 15px);
height: calc(100% - 15px);
border-radius: 99999px;
transition: all 0.3s ease-in-out;
z-index: 2;
}
.btn-outline-primary:before {
transition: all 0.3s ease-in-out;
content: "";
position: absolute;
z-index: -1;
inset: 0;
padding: 3px;
pointer-events: none;
border-radius: 999999px;
background: linear-gradient(to right, #9f8154, #d6bf90, #9f8154);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
z-index: 2;
}
.btn-outline-primary:hover {
color: #fff !important;
background-color: #967b56;
}
.btn-outline-primary:hover::after, .btn-outline-primary:hover::before {
opacity: 0;
}
small {
font-size: 0.6em;
}
* {
word-break: break-word;
white-space: initial;
}
h3 {
line-height: 1.25;
}
.clear::after, .clear::before {
content: "";
clear: both;
display: table;
}
.font-alyamore, .section-title {
font-family: "SVN-Rosellinda Alyamore";
font-size: 4em;
}
@media screen and (max-width: 575px) {
.font-alyamore, .section-title {
font-size: 3.5em;
}
}
.font-text, .services .service .name, .post-summary .post-date .date, .triet-ly .items, .swiper-years .swiper-slide .year, .utility {
font-family: "iCiel Domaine Text";
font-size: 4em;
text-transform: uppercase;
text-align: left;
}
@media screen and (max-width: 1750px) {
.font-text, .services .service .name, .post-summary .post-date .date, .triet-ly .items, .swiper-years .swiper-slide .year, .utility {
font-size: 3em;
}
}
@media screen and (max-width: 1024px) {
.font-text, .services .service .name, .post-summary .post-date .date, .triet-ly .items, .swiper-years .swiper-slide .year, .utility {
font-size: 4em;
}
}
@media screen and (max-width: 575px) {
.font-text, .services .service .name, .post-summary .post-date .date, .triet-ly .items, .swiper-years .swiper-slide .year, .utility {
font-size: 2em;
}
}
.text-red, .section-title {
color: #be1e2d;
}
.font-myriad {
font-size: 4em;
font-family: "Myriad Pro";
}
@media screen and (max-width: 1750px) {
.font-myriad {
font-size: 2.5em;
}
}
@media screen and (max-width: 1023px) {
.font-myriad {
font-size: 2em;
}
}
.btn {
padding: 7px;
text-align: center;
cursor: pointer;
position: relative;
text-transform: uppercase;
font-weight: 500;
display: inline-block;
}
.btn .wpcf7-spinner {
position: absolute;
margin: 0;
right: 5px;
top: 50%;
transform: translateY(-50%);
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.load-more-news.loading svg {
animation: rotate 1s infinite linear;
}
.load-more-news.disabled {
cursor: not-allowed;
opacity: 0.5;
}
.text-primary, .services .service .name, .locations .location .key {
color: #967b56;
}
.content p {
margin-bottom: 15px;
}
.text-red, .section-title {
color: #be1e2d;
}
img {
width: 100%;
height: auto;
}
input:not([type=submit]),
textarea,
select {
border-bottom: 1px solid #b3b0a9;
width: 100%;
display: block;
padding: 5px 0;
background-color: transparent;
}
input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
color: #000;
}
input:not([type=submit]):hover, input:not([type=submit]):focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
outline: none;
}
input[type=submit] {
display: block;
width: 100%;
height: 100%;
text-align: center;
text-transform: uppercase;
font-weight: 500;
cursor: pointer;
outline: none;
border: none;
}
.site-logo {
position: fixed;
top: 2em;
left: 2.25em;
z-index: 101;
width: 135px;
}
@media screen and (max-width: 1023px) {
.site-logo {
width: 80px;
top: 1em;
left: 1em;
}
}
.site-360 {
transition: all 0.3s ease-in-out;
}
.site-360:hover {
transform: scale(1.15);
}
a br {
display: none;
}
.menu-primary {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
background-color: #f2f2f2;
font-family: "iCiel Domaine Text";
font-size: 3rem;
color: #967b56;
text-transform: uppercase;
display: flex;
justify-content: center;
align-items: center;
height: 0;
overflow: hidden;
visibility: hidden;
pointer-events: none;
transition: all 0.3s ease-in-out;
}
.menu-primary::before {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/cổng chào copy 4.png);
background-size: contain;
background-position: center center;
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
content: "";
background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
.menu-primary::before {
background-size: auto 100%;
}
}
.menu-primary ul.menu {
padding-top: 27%;
column-count: 2;
}
.menu-primary ul.menu li {
text-align: center;
padding: 15px 5px;
}
.menu-primary ul.menu li a {
transition: all 0.3s ease-in-out;
font-weight: 500;
display: block;
transform: translateY(15px);
opacity: 0;
}
.menu-primary ul.menu li a small {
font-size: 1.5rem;
display: block;
text-decoration: underline;
margin-bottom: -0.75rem;
}
.menu-primary ul.menu li:hover a, .menu-primary ul.menu li.current-menu-item a, .menu-primary ul.menu li.current-menu-parent a {
color: #be1e2d;
}
.menu-primary.active {
height: 100vh;
visibility: visible;
pointer-events: unset;
}
.menu-primary.active ul.menu li[data-id="1"] a {
transition-delay: 300ms;
}
.menu-primary.active ul.menu li[data-id="2"] a {
transition-delay: 400ms;
}
.menu-primary.active ul.menu li[data-id="3"] a {
transition-delay: 500ms;
}
.menu-primary.active ul.menu li[data-id="4"] a {
transition-delay: 600ms;
}
.menu-primary.active ul.menu li[data-id="5"] a {
transition-delay: 700ms;
}
.menu-primary.active ul.menu li[data-id="6"] a {
transition-delay: 800ms;
}
.menu-primary.active ul.menu li[data-id="7"] a {
transition-delay: 900ms;
}
.menu-primary.active ul.menu li[data-id="8"] a {
transition-delay: 1000ms;
}
.menu-primary.active ul.menu li[data-id="9"] a {
transition-delay: 1100ms;
}
.menu-primary.active ul.menu li[data-id="10"] a {
transition-delay: 1200ms;
}
.menu-primary.active ul.menu li[data-id="11"] a {
transition-delay: 1300ms;
}
.menu-primary.active ul.menu li[data-id="12"] a {
transition-delay: 1400ms;
}
.menu-primary.active ul.menu li[data-id="13"] a {
transition-delay: 1500ms;
}
.menu-primary.active ul.menu li[data-id="14"] a {
transition-delay: 1600ms;
}
.menu-primary.active ul.menu li[data-id="15"] a {
transition-delay: 1700ms;
}
.menu-primary.active ul.menu li[data-id="16"] a {
transition-delay: 1800ms;
}
.menu-primary.active ul.menu li[data-id="17"] a {
transition-delay: 1900ms;
}
.menu-primary.active ul.menu li[data-id="18"] a {
transition-delay: 2000ms;
}
.menu-primary.active ul.menu li[data-id="19"] a {
transition-delay: 2100ms;
}
.menu-primary.active ul.menu li[data-id="20"] a {
transition-delay: 2200ms;
}
.menu-primary.active ul.menu li a {
transform: translateY(0);
opacity: 1;
}
@media screen and (max-width: 1750px) {
.menu-primary {
font-size: 2.5em;
}
}
@media screen and (max-width: 1023px) {
.menu-primary {
display: block;
}
.menu-primary ul.menu {
font-size: 1.5rem;
column-count: 1;
}
.menu-primary ul.menu li {
padding: 10px;
width: 100%;
}
.menu-primary ul.menu li a small {
margin-bottom: 0;
}
}
@media screen and (max-width: 768px) {
.menu-primary {
display: block;
}
.menu-primary ul.menu {
font-size: 1.25rem;
column-count: 1;
display: flex;
flex-wrap: wrap;
}
.menu-primary ul.menu li a small {
font-size: 1em;
display: inline-block;
margin-right: 10px;
text-decoration: none;
}
}
.header-bars {
position: fixed;
top: 15px;
right: 15px;
z-index: 101;
}
.languages {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5em;
}
.languages a {
text-transform: uppercase;
display: flex;
align-items: center;
font-size: 1.1em;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.languages a:not(:first-child):before {
content: "";
width: 5px;
height: 5px;
background-color: #967b56;
border-radius: 50%;
margin-right: 10px;
}
.languages a.active {
color: #fff;
}
.hotline-wrapper {
position: relative;
}
.hotline-wrapper .phones {
position: absolute;
top: 100%;
right: -60px;
padding-top: 10px;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: all 0.3s ease-in-out;
z-index: 1;
}
.hotline-wrapper .phones ul {
border: 1px solid #967b56;
background-color: #fff;
border-radius: 6px;
overflow: hidden;
}
.hotline-wrapper .phones ul li a {
display: flex;
align-items: center;
padding: 0.5rem 1.5rem;
text-align: left;
color: #967b56;
font-weight: 600;
gap: 0.5rem;
white-space: nowrap;
}
.hotline-wrapper .phones ul li:not(:last-child) a {
border-bottom: 1px solid #967b56;
}
.hotline-wrapper .phones ul li:hover a {
color: #be1e2d;
}
.hotline-wrapper .phones ul li:hover a svg path {
fill: currentColor;
}
@media screen and (max-width: 768px) {
.hotline-wrapper .phones {
width: 275px;
}
}
@media screen and (min-width: 1200px) {
.hotline-wrapper:hover .phones {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
}
@media screen and (max-width: 1199px) {
.hotline-wrapper.show .phones {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
}
.hotline {
font-size: 1em;
border-radius: 999999px;
background-color: #f9f6f0;
border: 4px solid #967b56;
width: 55px;
height: 55px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
color: #967b56;
transition: all 0.3s ease-in-out;
}
.hotline svg * {
transition: all 0.3s ease-in-out;
}
.hotline:hover {
background-color: #967b56;
color: #fff;
}
.hotline:hover svg * {
fill: #fff;
}
@media screen and (max-width: 1750px) {
.hotline {
height: 45px;
width: 45px;
font-size: 0.85rem;
border-width: 2px;
}
}
@media screen and (max-width: 1023px) {
.hotline {
width: 55px;
height: 55px;
border: 2px solid #967b56;
background-image: unset;
}
.hotline span {
display: none;
}
}
@media screen and (max-width: 768px) {
.hotline {
height: 40px;
width: 40px;
}
}
body.menu-opened .hotline,
body.menu-opened .search {
display: none;
}
.toggle-menu {
font-size: 0.85em;
border-radius: 999999px;
border: 4px solid #967b56;
position: relative;
width: 110px;
height: 50px;
padding-left: 32px;
background-color: #f9f6f0;
font-weight: 500;
display: block;
transition: all 0.3s ease-in-out;
}
.toggle-menu .close {
display: none;
}
.toggle-menu::before, .toggle-menu::after {
width: 32px;
height: 2px;
background-color: #967b56;
content: "";
position: absolute;
right: 60px;
top: 42%;
transform-origin: center;
transition: all 0.3s ease-in-out;
}
.toggle-menu::after {
width: 26px;
top: 55%;
}
.toggle-menu.active::after {
width: 26px;
transform: rotate(-45deg) translate(2px, -3px);
}
.toggle-menu.active::before {
width: 26px;
transform: rotate(45deg) translate(1px, 1px);
}
.toggle-menu.active .close {
display: block;
}
.toggle-menu.active .open {
display: none;
}
.toggle-menu:hover {
background-color: #967b56;
color: #fff;
}
.toggle-menu:hover::before, .toggle-menu:hover::after {
background-color: #fff;
}
@media screen and (max-width: 1750px) {
.toggle-menu {
height: 45px;
width: 100px;
font-size: 0.85rem;
border-width: 2px;
}
}
@media screen and (max-width: 768px) {
.toggle-menu {
height: 40px;
border-width: 2px;
}
}
@media screen and (max-width: 575px) {
.toggle-menu {
width: 40px;
height: auto;
aspect-ratio: 1;
}
.toggle-menu span {
display: none !important;
}
.toggle-menu::before, .toggle-menu::after {
width: 15px;
right: 10px;
}
.toggle-menu.active::after {
transform: rotate(45deg) translate(1px, -5px);
}
.toggle-menu.active::before {
transform: rotate(-45deg) translate(2px, 5px);
}
}
.list-circle:before {
content: "";
width: 15px;
height: 15px;
border-radius: 50%;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/Ellipse 1617.png);
display: inline-block;
flex: 0 0 auto;
margin-right: 15px;
margin-top: 3px;
}
hr {
margin: 5px 0;
}
hr.double {
height: 3px;
background-color: #d5d3ce;
}
.socials {
display: flex;
align-items: center;
}
.socials::before {
flex: 1;
content: "";
height: 1px;
background-color: #d5d3ce;
}
.socials .items {
display: flex;
align-items: center;
}
.socials .items .social {
width: 55px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 4px solid #d5d3ce;
position: relative;
transition: all 0.3s ease-in-out;
}
.socials .items .social::before {
transition: all 0.3s ease-in-out;
border-radius: 50%;
width: calc(100% - 5px);
height: calc(100% - 5px);
content: "";
border: 1px solid #d5d3ce;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.socials .items .social:hover.zalo {
border: 4px solid #2196f3;
}
.socials .items .social:hover.zalo::before {
border: 1px solid #2196f3;
}
.socials .items .social:hover.zalo svg * {
fill: #2196f3;
}
.socials .items .social:hover.facebook {
border: 4px solid #4267B2;
}
.socials .items .social:hover.facebook::before {
border: 1px solid #4267B2;
}
.socials .items .social:hover.facebook svg * {
fill: #4267B2;
}
@media screen and (max-width: 1366px) {
.socials .items .social {
width: 45px;
height: 45px;
}
.socials .items .social svg {
transform: scale(0.8);
}
}
.socials-sidebar a {
display: flex;
width: 60px;
height: 45px;
justify-content: center;
align-items: center;
}
.socials-sidebar a svg * {
fill: #fff;
transition: all 0.3s ease-in-out;
opacity: 0.8;
}
@media screen and (max-width: 1024px) {
.socials-sidebar a svg * {
fill: #967b56;
}
}
.socials-sidebar a:hover.zalo svg * {
fill: #2196f3;
}
.socials-sidebar a:hover.youtube svg * {
fill: #FF0000;
}
.socials-sidebar a:hover.facebook svg * {
fill: #4267B2;
}
body.dark .socials-sidebar a svg * {
fill: #5f5f5d;
}
.btn-more {
display: flex;
align-items: center;
padding-right: 15px;
}
.btn-more .gold-gradient {
flex: 1 1 auto;
width: auto;
margin-right: 10px;
}
.toolbars .item {
color: #fff;
position: relative;
cursor: pointer;
fill: #fff;
}
.toolbars .item .index,
.toolbars .item .name,
.toolbars .item .line {
transition: all 0.3s ease-in-out;
}
.toolbars .item .index {
text-align: center;
}
.toolbars .item .name {
text-transform: uppercase;
font-size: 0.85em;
min-height: 24px;
gap: 0.5em;
}
.toolbars .item .name svg {
opacity: 0;
display: none;
}
.toolbars .item .line {
position: relative;
opacity: 0.5;
display: flex;
gap: 5px;
align-items: center;
}
.toolbars .item .line .circle {
height: 6px;
width: 6px;
background-color: #fff;
border-radius: 50%;
}
.toolbars .item .line:before, .toolbars .item .line:after {
flex: 1 1 auto;
content: "";
height: 3px;
width: 60px;
display: block;
background-color: #fff;
}
.toolbars .item:hover .name, .toolbars .item.active .name {
font-weight: 600;
}
.toolbars .item.active .name svg {
opacity: 1;
display: block;
}
.toolbars.dark .item {
color: #967b56;
fill: #967b56;
}
.toolbars.dark .item .line .circle, .toolbars.dark .item .line:before, .toolbars.dark .item .line:after {
background-color: #967b56;
}
.utility {
border-radius: 10px;
background-color: #fff;
padding: 5px;
position: absolute;
width: 350px;
font-weight: 500;
}
.utility .index {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -1em);
border: 2px solid #be1e2d;
width: 50px;
height: 50px;
font-size: 1.5rem;
color: #be1e2d;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
}
.utility .index::after {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
content: "";
border: 1px solid #967b56;
border-radius: 50%;
width: calc(100% - 5px);
height: calc(100% - 5px);
}
.utility .name {
text-align: center;
text-transform: uppercase;
font-size: 1.15rem;
padding: 15px 5px 10px 5px;
font-weight: bold;
color: #967b56;
}
.utility.no-image .index {
transform: translate(-50%, -100%);
}
.utilities .number {
width: 20px;
height: 20px;
font-size: 10px;
color: #fff;
cursor: pointer;
}
.utilities .number span {
display: flex;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 50%;
background: #be1e2d;
box-shadow: 0 0 15px 0 #fff;
transition: all 0.3s ease-in-out;
align-items: center;
justify-content: center;
border: solid 1px transparent;
}
.utilities .number:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0);
border-radius: 50%;
}
.utilities .number:hover span, .utilities .number.over span {
box-shadow: 0 0 15px 0 #be1e2d;
background: #fff;
border: solid 1px #be1e2d;
color: #be1e2d;
}
.utilities .number:hover:before, .utilities .number.over:before {
animation: MakerCircle 2s infinite;
background: rgba(255, 255, 255, 0);
}
@media screen and (min-width: 1200px) {
.utilities .number {
width: 1.38vw;
height: 1.38vw;
font-size: 10px;
}
}
.utilities .utility-item {
position: absolute;
top: calc(var(--top) * 1%);
left: calc(var(--left) * 1%);
}
.utilities .utility-item .relative {
margin-left: -10px;
margin-top: -10px;
}
@media screen and (min-width: 1200px) {
.utilities .utility-item .relative {
margin-left: -0.69vw;
margin-top: -0.69vw;
}
}
.utilities .utility-item .utility {
opacity: 0;
transform: translateY(-100px);
transition: all 0.3s ease-in-out;
pointer-events: none;
transition-duration: 0s;
}
.utilities .utility-item.active {
z-index: 2;
}
.utilities .utility-item.active .utility {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
transition-duration: 0.3s;
}
.utilities .utility-item.right .utility {
position: absolute;
top: -20px;
left: 40px;
}
.utilities .utility-item.left .utility {
position: absolute;
top: -20px;
right: 40px;
}
.view-video {
border-radius: 50%;
position: relative;
padding: 5px;
cursor: pointer;
transition: all 0.3s ease-in-out;
border: 1px solid #f2f2f2;
}
.view-video:hover {
transform: scale(1.15);
}
.view-video .video {
width: 100%;
height: 100%;
border-radius: 50%;
overflow: hidden;
position: relative;
z-index: 0;
box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
}
.view-video .video img {
width: 100%;
height: 100%;
object-fit: cover;
}
.view-video .video::before {
position: absolute;
top: 50%;
left: 50%;
z-index: 2;
content: "";
width: 100%;
height: 100%;
transform: translate(-50%, -50%);
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/video.png);
background-position: center center;
background-repeat: no-repeat;
background-size: 50%;
z-index: 1;
}
.btn-red {
min-width: 150px;
padding: 10px 15px;
position: relative;
display: flex;
align-items: center;
gap: 10px;
color: #FFF;
font-size: 1.15em;
font-weight: 500;
transition: all 0.3s ease-in-out;
}
.btn-red::before {
position: absolute;
top: 0;
left: 0;
z-index: -1;
content: "";
width: 100%;
height: 100%;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/REG.png);
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}
.btn-red:hover {
transform: scale(1.15);
}
@media screen and (max-width: 575px) {
.register {
min-width: unset;
width: 50px;
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
background: #be1e2d;
border-radius: 50%;
padding: 10px;
}
.register span {
display: none;
}
}
.wpcf7 .is-close-btn {
right: 0 !important;
top: -55px !important;
}
.wpcf7.fancybox__content {
border-radius: 99999px;
background-color: transparent;
}
.wpcf7-response-output {
padding: 2rem !important;
text-align: center;
font-weight: 400;
border-color: #967b56 !important;
border-radius: 99999px;
background-color: #f9f6f0;
}
.wpcf7-form-control-wrap {
position: relative;
display: block;
width: 100%;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
position: absolute;
bottom: -1.5em;
left: 0;
display: block;
}
.wpcf7-form-control-wrap .placeholder {
position: absolute;
top: 0.5em;
left: 0;
z-index: 1;
transition: all 0.3s ease-in-out;
pointer-events: none;
width: 100%;
display: block;
}
.wpcf7-form-control-wrap input:focus ~ .placeholder, .wpcf7-form-control-wrap input:hover ~ .placeholder, .wpcf7-form-control-wrap input.actived ~ .placeholder,
.wpcf7-form-control-wrap textarea:focus ~ .placeholder,
.wpcf7-form-control-wrap textarea:hover ~ .placeholder,
.wpcf7-form-control-wrap textarea.actived ~ .placeholder,
.wpcf7-form-control-wrap select:focus ~ .placeholder,
.wpcf7-form-control-wrap select:hover ~ .placeholder,
.wpcf7-form-control-wrap select.actived ~ .placeholder {
top: -0.5em;
font-size: 0.75em;
}
.wpcf7-form {
position: relative;
}
.page-loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/cổng chào copy 4.png);
background-size: cover;
background-position: center center;
}
.page-loading svg {
max-width: 40%;
}
.page-loading svg path {
opacity: 0;
}
@media screen and (max-width: 768px) {
.page-loading svg {
max-width: 70%;
}
}
.fancybox__container {
--fancybox-bg: rgba(0, 0, 0, .4);
align-items: center;
display: flex;
height: 100vh;
justify-content: center;
}
.fancybox__container .f-thumbs {
display: none;
}
.fancybox__container .fancybox__carousel {
width: 100%;
}
.fancybox__container .fancybox__carousel .fancybox__track {
align-items: center;
}
.fancybox__container .fancybox__carousel .fancybox__nav {
display: none;
}
.fancybox__container .fancybox__content {
position: relative;
z-index: 1;
}
.fancybox__container .fancybox__caption {
position: relative;
z-index: 2;
transform: translateY(-50%);
animation: fadeInDown animated 0.3s ease-in-out forwards;
}
@keyframes fadeInDown animated {
0% {
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1) translateY(-50%);
}
}
.custom-navs {
display: flex;
justify-content: center;
flex-direction: row-reverse;
min-width: 200px;
border-radius: 9999px;
margin: auto;
animation: unset;
align-items: center;
}
.custom-navs div.name {
background-color: #fff;
padding: 0 75px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 80vw;
color: #000;
text-transform: uppercase;
display: flex;
height: 52px;
border-radius: 9999px;
justify-content: center;
align-items: center;
font-weight: 500;
font-size: 1.15em;
border: 3px solid #967b56;
min-width: 470px;
flex: 0 0 auto;
}
.custom-navs .f-button {
position: relative;
transform: scale(1.05);
background-color: #967b56;
width: 50px;
flex: 0 0 50px;
height: 50px;
border-radius: 9999px;
border: 2px solid transparent;
border-radius: 50%;
position: relative;
}
.custom-navs .f-button.is-next {
right: -52px;
}
.custom-navs .f-button.is-prev {
left: -52px;
}
.custom-navs .f-button svg {
stroke: #fff;
}
.custom-navs .f-button:hover {
background-color: #fff;
border-color: #967b56;
}
.custom-navs .f-button:hover svg {
stroke: #967b56;
}
@media screen and (max-width: 768px) {
.custom-navs {
width: 100%;
}
.custom-navs div.name {
min-width: unset;
width: 100%;
}
}
.min-w-full {
min-width: 100vw !important;
}
@media screen and (max-width: 1023px) {
.fancybox__slide {
padding: 6rem 1rem 0rem 1rem !important;
top: -4rem;
}
.fancybox__footer {
position: relative !important;
opacity: 1 !important;
background: transparent !important;
margin-top: -3.5rem;
}
.fancybox__container .fancybox__caption {
animation: unset !important;
padding: 0 !important;
}
.fancybox__carousel {
flex: unset !important;
}
}
.is-close-btn {
width: 50px;
height: 50px;
background: #fff;
opacity: 1;
border-radius: 99999px;
border: 3px solid #967b56;
color: #967b56;
opacity: 1 !important;
display: flex;
align-items: center;
font-size: 0.75em;
padding: 10px 15px;
font-weight: 500;
gap: 5px;
right: -60px !important;
top: -30px !important;
}
.is-close-btn svg {
stroke: #967b56;
transform: scale(1.25);
}
.is-close-btn:hover {
background-color: #967b56 !important;
color: #fff;
}
.is-close-btn:hover svg {
stroke: #fff;
}
@media screen and (max-width: 1023px) {
.is-close-btn {
right: 0 !important;
top: -60px !important;
}
}
.lib-images {
width: 350px;
}
.lib-images .swiper,
.lib-images .swiper-container {
overflow: unset !important;
}
@media screen and (max-width: 1750px) {
.lib-images {
width: 250px;
}
}
@media screen and (max-width: 1024px) {
.lib-images {
width: 100%;
}
}
@media screen and (max-width: 1024px) {
.lib-images .swiper-slide {
height: 350px;
}
.lib-images .swiper-slide .lib-image {
height: 100%;
}
.lib-images .swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
@media screen and (max-width: 575px) {
.lib-images .swiper-slide {
height: 280px;
}
}
.lib-image {
position: relative;
display: block;
width: 100%;
}
.lib-image .title {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
z-index: 1;
margin: 0;
padding: 10px;
text-align: center;
background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3568627451));
text-transform: uppercase;
color: #f9f6f0;
transition: all 0.3s ease-in-out;
}
.lib-image:hover .title {
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3568627451), rgba(0, 0, 0, 0.3568627451));
padding: 10px 10px 30px 10px;
}
@media screen and (max-width: 1024px) {
.lib-image {
width: auto;
}
}
.asl_w_container {
min-width: 160px;
margin-left: -2px;
}
#ajaxsearchlite1 .probox,
div.asl_w .probox {
padding: 10px !important;
height: 30px !important;
background-color: #f9f6f0 !important;
}
@media screen and (max-width: 1750px) {
#ajaxsearchlite1 .probox,
div.asl_w .probox {
padding: 4px !important;
height: 29px !important;
}
}
.search div.asl_w .probox .promagnifier {
border: unset;
}
.search div.asl_m.asl_w {
border: unset !important;
}
.search .asl_w_container {
border: 4px solid rgb(150, 123, 86) !important;
border-radius: 9999px;
min-width: 230px;
}
.search .search-btn {
border: 4px solid #967b56;
width: 55px;
height: 55px;
border-radius: 50%;
color: #967b56;
display: flex;
align-items: center;
justify-content: center;
background-color: #f9f6f0;
position: relative;
z-index: 2;
}
.search .search-btn svg path {
fill: #967b56;
}
.search .search-form:not(.active) .search-btn:hover {
background-color: #967b56;
color: #fff;
}
.search .search-form:not(.active) .search-btn:hover svg * {
fill: #fff;
}
.search .backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
opacity: 0;
pointer-events: none;
transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1750px) {
.search .search-btn {
border-width: 2px;
}
}
@media screen and (max-width: 1023px) {
.search .asl_w_container {
border: unset;
}
.search .search-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 2rem;
background-color: rgba(0, 0, 0, 0.8);
transition: all 0.3s ease-in-out;
z-index: -1;
opacity: 0;
height: 0;
overflow: hidden;
pointer-events: none;
}
.search .search-wrapper.active {
pointer-events: auto;
opacity: 1;
z-index: 1;
height: 100%;
overflow: auto;
}
}
.search-form {
position: relative;
}
.search-form .search-field {
z-index: 2;
position: absolute;
top: 0;
right: 0;
border: 4px solid #967b56;
height: 55px;
width: 0;
border-radius: 9999px;
background-color: #f9f6f0;
padding: 0;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.search-form.active .search-field {
padding: 5px 20px;
width: 355px;
opacity: 1;
}
.search-form.active .search-btn {
border-color: transparent !important;
background-color: transparent !important;
}
.search-form.active ~ .backdrop {
opacity: 1;
pointer-events: auto;
}
@media screen and (max-width: 1750px) {
.search-form .search-btn {
width: 45px;
height: 45px;
}
.search-form .search-field {
height: 55px;
}
}
@media screen and (max-width: 1023px) {
.search-form .search-btn,
.search-form .search-field {
border-width: 2px !important;
}
}
@media screen and (max-width: 768px) {
.search-form .search-btn {
width: 40px;
height: 40px;
}
.search-form.active .search-field {
width: 310px;
height: 40px;
}
}
@media screen and (max-width: 475px) {
.search-form.active .search-field {
width: 260px;
}
}
.content,
.content * {
max-width: 100%;
}
.swiper-button-prev,
.swiper-button-next {
cursor: pointer;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
opacity: 0.5;
}
.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
color: #967b56;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
.swiper-controls .swiper-button-prev {
left: 0;
}
.swiper-controls .swiper-button-next {
right: 0;
}
.swiper-wrapper {
position: relative;
}
@keyframes zoom {
40% {
transform-origin: center;
transform: translateY(-10px);
opacity: 0.5;
}
100% {
transform-origin: center center;
transform: translateY(0);
opacity: 1;
}
}
@keyframes StrokeLine {
0% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: -200;
}
}
@keyframes MakerCircle {
0% {
filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
border: 1px solid rgba(255, 255, 255, 0);
transform: scale(0);
background: rgba(255, 255, 255, 0);
}
70% {
filter: drop-shadow(0 0 50px rgb(255, 255, 255));
border: 1px solid rgb(255, 255, 255);
transform: scale(1);
background: rgba(255, 255, 255, 0.8);
}
100% {
filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0));
border: 1px solid rgba(255, 255, 255, 0);
transform: scale(2);
}
}
.parallax-mirror {
z-index: 0 !important;
}
.swiper-pagination-controls {
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
position: absolute;
bottom: -3rem;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
}
.swiper-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
width: 100% !important;
}
.swiper-pagination .swiper-pagination-bullet {
width: 15px;
aspect-ratio: 1;
display: inline-block;
border: 1px solid #967b56;
transition: all 0.3s ease-in-out;
border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: #967b56;
}
.sfe-locomotive-scroll-wrapper-scroller {
position: fixed;
left: 50%;
transform: translateX(-1px);
width: 1px;
top: 0;
pointer-events: none;
height: 100%;
z-index: 10;
}
.btn-sm {
font-size: 0.8em;
white-space: nowrap;
padding: 12px 20px !important;
}
.list-award li {
padding-left: 25px;
position: relative;
margin-bottom: 0.5rem;
}
.list-award li:before {
content: "";
position: absolute;
left: 0;
top: 5px;
width: 18px;
height: 20px;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/award-ico.svg);
background-size: contain;
background-repeat: no-repeat;
}
.pagination {
margin-top: 60px;
display: flex;
justify-content: center;
}
.page-numbers {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background-color: #f9f6f0;
color: #967b56;
border: solid 1px #967b56;
font-size: 18px;
line-height: 1;
-webkit-transition: 0.25s all ease;
transition: 0.25s all ease;
}
.page-numbers + .page-numbers {
margin-left: 10px;
}
.page-numbers:hover {
background-color: #967b56;
color: #f9f6f0;
}
.page-numbers.current {
background-color: #967b56;
color: #f9f6f0;
}
.map-tien-ich p.absolute {
left: 15%;
bottom: 19%;
}
.award-items .item-thumb {
width: 80px;
flex: 0 0 80px;
}
.award-items .item-thumb img {
border-radius: 50%;
}
@media screen and (min-width: 1200px) {
.award-items {
max-height: 65vh;
overflow: auto;
}
}
.utility-list {
display: flex;
flex-wrap: wrap;
padding: 0.5rem 0.5rem 1rem;
min-width: 100%;
gap: 0.5rem 0.5rem;
}
.utility-list .item {
flex: 0 0 calc(50% - 0.5rem);
max-width: calc(50% - 0.5rem);
display: flex;
align-items: center;
gap: 0.5em;
font-size: 0.9em;
}
.utility-list .item span {
width: 1.5rem;
height: 1.5rem;
flex: 0 0 1.5rem;
display: inline-flex;
border-radius: 50%;
background: #be1e2d;
color: #fff;
box-shadow: 0 0 15px 0 #fff;
transition: all 0.3s ease-in-out;
align-items: center;
justify-content: center;
border: solid 1px transparent;
}
@media (max-width: 767px) {
.map-tien-ich {
transform: scale(1.3);
margin: 10% 0 15%;
margin-left: 10%;
margin-right: -10%;
}
.map-tien-ich p.absolute {
transform: translateX(-10%) !important;
font-size: 0.7em;
bottom: 0.4em !important;
}
.utilities .number {
width: 11px;
height: 11px;
font-size: 6px;
}
.utilities .utility-item .relative {
margin-left: -5.5px;
margin-top: -5.5px;
}
.award-items .item-thumb {
width: 60px;
flex: 0 0 60px;
}
}
html[lang=vi] .phankhu-wrapper .header h4 {
display: flex;
align-items: flex-end;
gap: 0.25rem;
}
html[lang=vi] .phankhu-wrapper .header h4 small {
order: -1;
transform: translateY(-0.2em);
}
.section {
z-index: 1;
}
.sfe-locomotive-scroll-wrapper > section {
position: relative;
}
.sfe-locomotive-scroll-wrapper > section .trigger-toolbar {
position: absolute;
right: 0;
width: 1px;
height: 100%;
top: 0;
z-index: 100;
pointer-events: none;
}
.sfe-locomotive-scroll-wrapper > section:last-child .trigger-toolbar {
right: 50%;
}
.khu-do-thi .wrapper {
position: relative;
}
.khu-do-thi .wrapper::before {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/khu-do-thi-bg.png);
background-size: contain;
background-position: 35% center;
background-repeat: no-repeat;
content: "";
pointer-events: none;
z-index: 0;
position: absolute;
top: 0;
left: 0;
width: 165%;
height: 160%;
}
.khu-do-thi .items ul li .item-wrapper {
display: flex;
justify-content: flex-end;
flex-direction: row-reverse;
width: 385px;
gap: 1em;
max-width: 100%;
}
.khu-do-thi .items ul li .icon {
flex: 0 0 95px;
width: 95px;
height: 95px;
border-radius: 50%;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/Ellipse 1324 copy 2.png);
display: flex;
align-items: center;
justify-content: center;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.khu-do-thi .items ul li .key {
color: #000;
text-transform: uppercase;
font-size: 0.95em;
font-weight: 500;
padding-top: 10px;
}
.khu-do-thi .items ul li .value {
font-size: 1.2em;
color: #967b56;
font-weight: 500;
}
.khu-do-thi .items ul li .value.big {
font-size: 2.5em;
font-weight: bold;
}
@media screen and (min-width: 1024px) {
.khu-do-thi .items ul li {
--size: 2em;
}
.khu-do-thi .items ul li .value.big {
font-size: 2.75em;
}
.khu-do-thi .items ul li .item-wrapper {
text-align: right;
flex-direction: row;
}
.khu-do-thi .items ul li:nth-child(2), .khu-do-thi .items ul li:nth-child(5) {
transform: translateX(calc(var(--size) * 1.5 * -1));
}
.khu-do-thi .items ul li:nth-child(3), .khu-do-thi .items ul li:nth-child(4) {
transform: translateX(calc(var(--size) * 2 * -1));
}
}
@media screen and (max-width: 1367px) {
.khu-do-thi .items ul li {
--size: 1.25em;
}
.khu-do-thi .items ul li .icon {
flex: 0 0 75px;
width: 75px;
height: 75px;
}
.khu-do-thi .items ul li .value {
font-size: 1em;
}
.khu-do-thi .items ul li .value.big {
font-size: 1.75em;
}
}
@media screen and (min-width: 1921px) {
.khu-do-thi .items ul li {
--size: 1.25em;
}
}
@media screen and (max-width: 575px) {
.khu-do-thi .items ul li .icon {
width: 75px;
height: 75px;
}
}
.khu-do-thi .phankhu-bg {
position: relative;
}
.khu-do-thi .phankhu-bg .container {
position: relative;
z-index: 2;
transform: translateY(0) scale(1.25);
transform-origin: left center;
}
.khu-do-thi .phankhu-bg .container .wrapper {
position: relative;
box-shadow: 0 0 0 20px rgba(220, 212, 202, 0.35), 0 0 0 40px rgba(220, 212, 202, 0.5);
border-radius: 9999px 0 0 9999px;
overflow: hidden;
}
.khu-do-thi .phankhu-bg .container .wrapper img {
height: 100vh;
object-fit: cover;
object-position: left center;
aspect-ratio: 16/9;
}
@media screen and (max-width: 1024px) {
.khu-do-thi .phankhu-bg .container {
padding-top: 35px;
transform-origin: center top;
overflow: hidden;
transform: translateY(0) scale(1.75);
margin-bottom: 40vw;
}
.khu-do-thi .phankhu-bg .container .wrapper {
height: auto;
width: 100%;
box-shadow: 0 0 0 15px rgba(220, 212, 202, 0.35), 0 0 0 30px rgba(220, 212, 202, 0.5);
border-radius: 9999px 9999px 0 0;
}
.khu-do-thi .phankhu-bg .container .wrapper img {
height: auto;
}
}
@media screen and (max-width: 1024px) {
.khu-do-thi {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/khu-do-thi-bg.png);
background-size: 45% top;
background-position: top center;
background-repeat: no-repeat;
}
.khu-do-thi .wrapper::before {
display: none;
}
}
.tien-ich {
flex-direction: row;
align-items: center;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/utitlities-bg.jpg);
background-size: contain;
background-position: left center;
background-repeat: no-repeat;
}
.tin-tuc {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/news2-bg.jpg);
background-size: contain;
background-position: right bottom;
background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
.tin-tuc {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/tin-tuc-mobile.jpg);
background-position: center bottom;
background-size: 100% auto;
}
}
.chu-dau-tu {
min-width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/chu-dau-tu.jpg);
background-size: contain;
background-position: left bottom;
background-repeat: no-repeat;
margin-left: -5px;
}
.chu-dau-tu .thumbnail {
margin-bottom: 30px;
}
.chu-dau-tu .thumbnail img {
width: auto;
object-fit: contain;
}
.chu-dau-tu .section-title {
padding-left: 0.1em;
}
@media screen and (max-width: 1024px) {
.chu-dau-tu {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/chu-dau-tu-mobile.jpg);
background-position: center top;
background-size: 100% auto;
}
}
.chu-dau-tu-items .item {
display: flex;
align-items: center;
gap: 1em;
font-weight: 500;
}
.chu-dau-tu-items .item .name {
font-weight: bold;
font-size: 3em;
white-space: nowrap;
color: #967b56;
}
.chu-dau-tu-items .item .desc {
text-transform: uppercase;
}
body:not(.home) .chu-dau-tu {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/chu-dau-tu-2-bg.jpg);
}
.doi-tac h4 {
font-size: 1.2em;
}
@media screen and (max-width: 768px) {
.doi-tac h4 {
font-size: 1.25em;
}
}
@media screen and (max-width: 575px) {
.doi-tac h4 {
font-size: 1em;
}
}
body:not(.home) .doi-tac {
background-color: #f9f6f0;
}
.vi-tri {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/hát quan họ copy 2.jpg);
background-size: 100% auto;
background-position: right bottom;
background-repeat: no-repeat;
}
.vi-tri .map {
border-radius: 0 9999px 9999px 0;
width: 176.9387755102vh;
height: 176.9387755102vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(to right, transparent, #fff);
}
.vi-tri .map img {
height: 100%;
width: 100%;
object-fit: contain;
object-position: left center;
background: linear-gradient(to right, transparent 0%, white 20%);
}
.vi-tri .map svg {
width: 100%;
height: 100%;
}
.vi-tri .map svg path {
stroke-miterlimit: 20;
stroke-dasharray: 10;
stroke-dashoffset: 0;
animation: StrokeLine 3s infinite linear;
}
.vi-tri .map svg .point {
animation: zoom 2s infinite;
transform-origin: center center;
}
.vi-tri .map-container .btn {
bottom: 48vh !important;
}
@media screen and (max-width: 1024px) {
.vi-tri .map-container {
width: 100%;
height: auto;
margin-left: 0;
top: 0;
}
.vi-tri .map-container .btn {
bottom: 1.25rem !important;
}
.vi-tri .map {
height: auto;
width: 100%;
border-radius: unset;
}
.vi-tri .map-wrapper {
height: 100%;
}
}
.thu-vien {
background-color: #f3efef;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/thu-vien-bg.jpg);
background-size: cover;
background-position: center;
}
.thu-vien .tabs {
border: 4px solid #967b56;
border-radius: 99999px;
}
.thu-vien .tabs .tab {
position: relative;
cursor: pointer;
}
.thu-vien .tabs .tab .icon {
width: 50px;
height: 70px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 99999px;
transition: all 0.3s ease-in-out;
}
.thu-vien .tabs .tab .icon svg * {
transition: all 0.3s ease-in-out;
fill: rgb(158, 128, 83);
}
.thu-vien .tabs .tab .name {
position: absolute;
white-space: nowrap;
top: 50%;
left: 0%;
pointer-events: none;
transform: translateY(-50%);
padding-left: 50px;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.thu-vien .tabs .tab:hover .name, .thu-vien .tabs .tab.active .name {
opacity: 1;
transform: translate(15px, -50%);
}
.thu-vien .tabs .tab:hover .icon, .thu-vien .tabs .tab.active .icon {
background-color: rgb(158, 128, 83);
}
.thu-vien .tabs .tab:hover .icon svg *, .thu-vien .tabs .tab.active .icon svg * {
fill: #FFF;
}
@media screen and (max-width: 1024px) {
.thu-vien .tabs {
border: 2px solid #967b56;
display: flex;
}
.thu-vien .tabs .tab .icon {
height: 45px;
width: 70px;
}
.thu-vien .tabs .tab .name {
display: none;
}
}
.thu-vien .tab-contents .swiper-slide {
overflow: hidden;
}
.thu-vien .videos .video {
width: 100%;
padding: 5px;
background-color: #fff;
border-radius: 15px;
}
.thu-vien .videos .video .thumbnail {
border-radius: 15px 15px 0 0;
overflow: hidden;
position: relative;
}
.thu-vien .videos .video .thumbnail:before {
position: absolute;
top: 50%;
left: 50%;
z-index: 1;
content: "";
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/video.png);
width: 80px;
height: 80px;
background-size: cover;
background-position: center center;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
.thu-vien .videos .video .thumbnail:before {
width: 60px;
height: 60px;
}
}
.thu-vien .videos .video .thumbnail img {
width: 100%;
height: auto;
transition: all 0.3s ease-in-out;
}
.thu-vien .videos .video .name {
font-family: "iCiel Domaine Text";
color: #967b56;
text-transform: uppercase;
font-size: 1.15em;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.thu-vien .videos .video:hover .thumbnail img {
transform: scale(1.15);
}
.thu-vien .documents .document {
width: 100%;
padding: 5px;
background-color: #fff;
border-radius: 15px;
}
.thu-vien .documents .document .thumbnail {
border-radius: 15px 15px 0 0;
overflow: hidden;
position: relative;
}
.thu-vien .documents .document .thumbnail img {
width: 100%;
height: auto;
}
.thu-vien .documents .document .name {
position: relative;
font-weight: bold;
font-family: "iCiel Domaine Text";
color: #967b56;
text-transform: uppercase;
font-size: 1.15em;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
}
.thu-vien .documents .document .name:before {
position: absolute;
top: -15px;
left: 15px;
z-index: 1;
content: "";
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/PDF.png);
width: 40px;
height: 55px;
background-size: cover;
background-position: center center;
}
.locations {
z-index: 2;
--size: 2em;
width: 100%;
height: 100%;
}
.locations .location-item {
position: absolute;
top: 50%;
left: calc(100% - 5px);
pointer-events: none;
}
.locations .location {
width: 300px;
display: flex;
align-items: center;
position: relative;
cursor: pointer;
position: absolute;
top: 50%;
left: 50%;
transform: translate(0%, -50%);
pointer-events: visible;
}
.locations .location:before {
content: "";
flex: 0 0 10px;
width: 10px;
height: 10px;
background-color: #d1d0cf;
border-radius: 50%;
margin-right: 25px;
}
.locations .location .hover {
position: absolute;
width: 145px;
height: 145px;
border-radius: 50%;
background: #fff;
border: 2px solid #be1e2d;
font-size: 3em;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
opacity: 0;
transform: translateX(-50%) scale(0);
color: #be1e2d;
transition: all 0.3s ease-in-out;
}
.locations .location .hover small {
font-size: 0.5em;
margin-left: 5px;
position: relative;
top: 7px;
}
.locations .location .key {
font-size: 2em;
font-weight: bold;
margin-right: 25px;
line-height: 1;
transition: all 0.3s ease-in-out;
white-space: nowrap;
flex: 1;
min-width: 2.5em;
}
.locations .location .key small {
font-weight: 500;
white-space: nowrap;
}
.locations .location .value {
transition: all 0.3s ease-in-out;
font-weight: 500;
position: relative;
top: 3px;
flex-grow: 1;
}
@media screen and (min-width: 1024px) and (max-width: --var(--desktop-width)) {
.locations .location .hover {
width: 100px;
height: 100px;
font-size: 2em;
}
.locations .location .hover small {
top: 3px;
}
}
.locations li.active .location .key,
.locations .location:hover .key {
transform: scale(0);
opacity: 0;
margin-left: -20px;
width: 0;
}
.locations li.active .location .hover,
.locations .location:hover .hover {
transform: translateX(-50%) scale(1);
opacity: 1;
}
.locations li.active .location .value,
.locations .location:hover .value {
transform: translateX(-1em);
}
.locations li:hover {
z-index: 2;
}
@media screen and (max-width: 1367px) {
.locations .location .hover {
width: 120px;
height: 120px;
}
}
@media screen and (max-width: 1023px) {
.locations {
top: 8px;
}
.locations::before {
border-bottom: 1px solid #d1d0cf;
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.locations .location-item {
left: 100%;
}
.locations .location {
display: flex;
width: 110px;
transform: translate(-5px, -5px) !important;
transition: 0.1s linear;
justify-content: end;
align-items: flex-start;
flex-direction: column;
height: unset;
padding-top: 40px;
}
.locations .location::before {
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 1;
transition: all 0.3s linear;
}
.locations .location .value {
margin-top: 1em;
top: 0;
transition: all 0.3s linear;
}
.locations .location .hover {
width: 115px;
height: 115px;
font-size: 2.5em;
top: -50px;
left: 50%;
}
.locations li {
width: 33.3333333333%;
flex: 0 0 33.3333333333%;
}
.locations li.active .location::before {
opacity: 0;
}
.locations li.active .location .value {
color: #967b56;
text-align: center;
transform: unset;
}
}
@media screen and (max-width: 768px) {
.locations::before {
display: none;
}
.locations ul {
display: flex;
flex-wrap: wrap;
margin-top: 1rem;
}
.locations .location-item {
position: relative;
left: unset;
top: unset;
padding: 0.75rem 0.5rem;
}
.locations .location {
padding-top: 0;
width: 100%;
position: relative;
transform: unset;
top: unset;
left: unset;
}
.locations .location::before {
display: none;
}
.locations .location .hover {
display: none;
}
.locations .location .value {
margin-top: 0;
}
.locations li {
width: 50%;
flex: 0 0 50%;
}
.locations li.active .location::before,
.locations li .location:hover::before {
opacity: 0;
}
.locations li.active .location .value,
.locations li .location:hover .value {
color: #967b56;
text-align: left;
transform: unset;
}
.locations li.active .location .key,
.locations li .location:hover .key {
transform: scale(1);
opacity: 1;
margin-left: 0px;
width: auto;
}
}
.p-3-quan {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/cổng chào copy 4.png);
background-repeat: no-repeat;
background-position: 50% 65%;
background-size: 115% auto;
}
.swiper-years {
--size: 120px;
display: flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
}
.swiper-years .swiper {
height: 180px;
width: 165px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.swiper-years .swiper-slide {
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-years .swiper-slide .year {
width: var(--size);
height: var(--size);
border-radius: 50%;
box-shadow: inset 0 0 0 1px #d0cec8, 0 0 0 2px #d0cec8;
font-size: 1.75em;
color: #967b56;
font-weight: 500;
padding: 5px;
}
.swiper-years .swiper-slide .year div {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #fff;
border: 1px solid #d0cec8;
}
.swiper-years .swiper-wrapper {
position: relative;
z-index: 1;
}
.swiper-years .swiper-button-prev,
.swiper-years .swiper-button-next {
position: relative;
z-index: 2;
}
@media screen and (max-width: 768px) {
.swiper-years {
--size: 100px;
}
}
.swiper-years-container .line {
width: 1px;
height: calc(50% - 100px);
background-color: #d0cec8;
display: flex;
flex-direction: column;
flex: 1 1 auto;
transform: translateX(0.5px);
}
.swiper-years-container .line::before {
width: 5px;
height: 5px;
content: "";
background-color: #d0cec8;
border-radius: 50%;
display: block;
transform: translate(-2px, 0);
flex: 0 0 5px;
}
.swiper-years-container .line.down {
flex-direction: column-reverse;
}
@media screen and (max-width: 1024px) {
.swiper-years-container .line {
width: calc(50% - 100px);
height: 1px;
}
.swiper-years-container .line::before {
transform: translate(0, -2px);
}
.swiper-years-container .line.down {
flex-direction: row-reverse;
}
}
.swiper-months {
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-months .swiper-slide {
display: flex;
justify-content: center;
align-items: center;
height: 50px;
width: 115px;
}
.swiper-months .swiper-slide button {
padding: 5px 12px;
border-radius: 99999px;
background-color: transparent;
transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 575px) {
.swiper-months .swiper-slide {
width: 70px;
}
}
.swiper-months .swiper-slide.active button, .swiper-months .swiper-slide:hover button {
background-color: #9e8053;
color: #fff;
}
.dang-ky {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/contact-bg.jpg);
background-size: cover;
background-position: 10% center;
background-repeat: no-repeat;
min-width: 100vw;
}
@media screen and (max-width: 1024px) {
.dang-ky {
background-position: center center;
}
}
.p-3-tin-tuc {
position: relative; }
.p-3-tin-tuc .group-btns {
top: 0;
left: 0;
height: 100%;
pointer-events: none;
}
.p-3-tin-tuc .btn-group-wrapper {
pointer-events: auto; z-index: 2;
display: flex;
justify-content: center;
align-items: center;
margin-top: 7rem;
}
.p-3-tin-tuc.progress .btn-group-wrapper {
left: 50%;
}
@media screen and (max-width: 1367px) {
.p-3-tin-tuc .btn-group-wrapper { }
}
@media screen and (max-width: 1023px) {
.p-3-tin-tuc .btn-group-wrapper {
position: relative;
bottom: 0;
left: 0 !important;
transform: unset;
margin-top: 8rem;
font-size: 0.85em;
}
}
.p-3-tin-tuc .btn-group {
border: 3px solid #967b56;
border-radius: 99999px;
display: flex;
}
.p-3-tin-tuc .btn-group a {
padding: 10px 30px;
display: block;
text-transform: uppercase;
transition: all 0.3s ease-in-out;
font-weight: 500;
text-align: center;
flex: 1 1 auto;
}
.p-3-tin-tuc .btn-group a:hover, .p-3-tin-tuc .btn-group a.active {
border-radius: 99999px;
background-color: #967b56;
color: #fff;
}
.p-3-tin-tuc .btn-group a:hover + a, .p-3-tin-tuc .btn-group a.active + a {
border-left: unset !important;
}
.p-3-tin-tuc .btn-group a:not(:first-child) {
border-left: 1px solid #967b56;
}
@media screen and (max-width: 1023px) {
.p-3-tin-tuc .btn-group a {
padding: 10px 30px;
max-width: 200px;
}
}
@media screen and (max-width: 575px) {
.p-3-tin-tuc .btn-group a {
padding: 10px 15px;
max-width: 200px;
}
}
@media screen and (max-width: 768px) {
.p-3-tin-tuc {
background-image: unset;
}
}
.banner {
width: 100vw;
}
.banner img {
width: 100%;
height: auto;
}
@media screen and (min-width: 1023px) {
.banner .swiper-slide {
width: 100vw;
height: 100vh;
position: relative;
}
.banner .swiper-slide .thum-desktop {
transform: translate(-50%, -50%) scale(1.15);
}
.banner img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
width: 100%;
height: 100%;
}
.banner .swiper-slide-active .thum-desktop {
animation: fadeBigger 3s ease-in-out;
}
}
@keyframes fadeBigger {
0% {
transform: translate(-50%, -50%) scale(1.15);
}
100% {
transform: translate(-50%, -50%) scale(1);
}
}
.triet-ly {
background: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/triet-ly-bg.jpg);
background-size: cover;
background-position: right center;
background-repeat: no-repeat;
}
.triet-ly .left {
display: flex;
align-items: center;
position: relative;
z-index: 1;
}
.triet-ly .left .img-wrapper {
overflow: hidden;
border-radius: 1.5625rem;
}
.triet-ly .left .container-wrapper {
border-radius: 0 9999px 9999px 0;
padding-right: 5px;
background-color: #f9f6f0;
}
@media screen and (max-width: 1023px) {
.triet-ly .left .container-wrapper {
border-radius: unset;
max-width: 100vw;
}
}
.triet-ly .left .bordered {
--width: 130vh;
width: calc(var(--width) / 2);
height: var(--width);
overflow: hidden;
position: absolute;
top: 50%;
right: 0;
transform: translate(0%, -50%);
z-index: 2;
pointer-events: none;
}
.triet-ly .left .bordered::before {
border: 35px solid #e9e8e2;
content: "";
width: var(--width);
height: var(--width);
border-radius: 50%;
display: block;
transform: translateX(-50%);
z-index: 2;
position: relative;
}
.triet-ly .left .bordered::after {
overflow: hidden;
position: absolute;
top: 50%;
left: 0;
transform: translate(-50%, -50%);
border: 60px solid #e4dcd6;
content: "";
width: var(--width);
height: var(--width);
border-radius: 50%;
display: block;
z-index: 1;
}
@media screen and (max-width: 1023px) {
.triet-ly .left .img-wrapper {
margin-bottom: 30px;
}
.triet-ly .left .bordered {
--width: 100vw;
height: calc(var(--width) / 2);
width: var(--width);
top: 80%;
transform: translate(0%, -50%) scale(1.25);
display: none;
}
.triet-ly .left .bordered::before {
border: 35px solid #e9e8e2;
display: block;
transform: translateY(-50%);
}
.triet-ly .left .bordered::after {
top: 0%;
transform: translate(0%, -50%);
}
}
.triet-ly .right {
position: relative;
z-index: 2;
}
.triet-ly .items {
color: #967b56;
}
.triet-ly .items .item {
display: flex;
font-weight: bold;
align-items: center;
gap: 1.5rem;
cursor: pointer;
}
.triet-ly .items .item .index {
font-size: 3.65rem;
width: 6.5rem;
aspect-ratio: 1;
border-radius: 50%;
position: relative;
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
flex: 0 0 auto;
}
.triet-ly .items .item .index small {
line-height: 1;
position: relative;
top: -0.5em;
font-size: 0.4em;
}
.triet-ly .items .item .index:after {
transition: all 0.3s ease-in-out;
content: "";
position: absolute;
z-index: -1;
inset: 0;
padding: 3px;
border-radius: 999999px;
background: linear-gradient(to right, #9f8154, #d6bf90, #9f8154);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
}
.triet-ly .items .item .index::before {
content: "";
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;
border: 1px solid #967b56;
pointer-events: none;
width: calc(100% - 13.5px);
height: calc(100% - 13.5px);
border-radius: 50%;
}
.triet-ly .items .item .content .vi {
font-size: 1.3rem;
}
.triet-ly .items .item .content .en {
font-size: 1.6rem;
}
.triet-ly .items .item:hover, .triet-ly .items .item.active {
border-color: #be1e2d;
}
.triet-ly .items .item:hover .index, .triet-ly .items .item.active .index {
color: #be1e2d;
}
.triet-ly .items .item:hover .index:after, .triet-ly .items .item.active .index:after {
background: linear-gradient(to right, #be1e2d, #be1e2d, #be1e2d);
}
@media screen and (max-width: 1024px) {
.triet-ly .items .item {
gap: 1.5rem;
}
.triet-ly .items .item .index {
font-size: 2rem;
width: 5rem;
height: 5rem;
}
.triet-ly .items .item .content .vi {
font-size: 1rem;
}
.triet-ly .items .item .content .en {
font-size: 1.3rem;
}
}
@media screen and (max-width: 575px) {
.triet-ly .items .item {
gap: 0.5em;
}
.triet-ly .items .item .index {
font-size: 1.5rem;
width: 50px;
height: 50px;
}
.triet-ly .items .item .index::before {
width: 75%;
height: 75%;
}
.triet-ly .items .item .content {
width: 100%;
}
.triet-ly .items .item .content .vi {
font-size: 0.85rem;
}
.triet-ly .items .item .content .en {
font-size: 1rem;
}
}
.triet-ly .items .swiper-slide-active .item {
border-color: #be1e2d;
}
.triet-ly .items .swiper-slide-active .item .index {
color: #be1e2d;
}
.triet-ly .items .swiper-slide-active .item .index:after {
background: linear-gradient(to right, #be1e2d, #be1e2d, #be1e2d);
}
@media screen and (max-width: 575px) {
.triet-ly .items ul {
display: flex;
justify-content: flex-start;
align-items: center;
}
}
@media screen and (max-width: --var(--desktop-width)) {
.triet-ly .items .item .index {
width: 85px;
height: 85px;
font-size: 2.5rem;
}
}
@media screen and (min-width: 1024px) {
.triet-ly .items ul li {
--size: 0.75em;
}
.triet-ly .items ul li:nth-child(2), .triet-ly .items ul li:nth-child(6) {
transform: translateX(calc(var(--size) * 1));
}
.triet-ly .items ul li:nth-child(3), .triet-ly .items ul li:nth-child(5) {
transform: translateX(calc(var(--size) * 2));
}
.triet-ly .items ul li:nth-child(4) {
transform: translateX(calc(var(--size) * 2.25));
}
}
@media screen and (min-width: 1921px) {
.triet-ly .items ul li {
--size: 0.5em;
}
}
@media screen and (max-width: 768px) {
.triet-ly {
background: #f9f6f0;
}
}
.van-hanh {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/van-hanh.jpg);
background-size: cover;
background-position: left center;
background-repeat: no-repeat;
}
.phankhu-hover {
margin: 2rem auto;
width: calc(100% - 2rem);
background: transparent !important;
}
.phankhu-hover .phankhu-wrapper {
background: #f9f6f0;
border-radius: 9999px;
overflow: hidden;
}
.phankhu-hover .content {
padding: 1rem 2rem 4rem 2rem;
}
.phankhu-hover .content h2 {
color: #be1e2d;
font-size: 3rem;
}
.phankhu-hover .content h3 {
font-size: 2rem;
color: #967b56;
}
.phankhu-hover .content .status {
position: relative;
min-width: 200px;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
margin: auto;
font-size: 0.95rem;
font-weight: 500;
transition: all 0.3s ease-in-out;
}
.phankhu-hover .content .status::before, .phankhu-hover .content .status::after {
transition: all 0.3s ease-in-out;
position: absolute;
top: 50%;
left: 50%;
content: "";
transform: translate(-50%, -50%);
border-radius: 9999px;
border-color: #b0aca6;
border-style: solid;
}
.phankhu-hover .content .status::after {
border-width: 3px;
width: 100%;
height: 100%;
}
.phankhu-hover .content .status::before {
border-width: 1px;
width: calc(100% - 0.85rem);
height: calc(100% - 0.85rem);
}
.phankhu-hover:hover {
opacity: 1;
transform: translateY(0px);
pointer-events: auto;
}
@media screen and (min-width: 475px) {
.phankhu-hover {
width: 300px;
position: absolute;
z-index: 2;
}
.phankhu-hover .content {
padding: 1rem 4rem 4rem 4rem;
}
}
@media screen and (min-width: 1440px) {
.phankhu-hover {
width: 460px;
}
.phankhu-hover .content {
padding: 50px 50px 100px 50px;
}
}
.phan-khu .section-header {
position: relative;
}
.phan-khu .section-header::before, .phan-khu .section-header:after {
content: "";
bottom: 0;
left: 0;
width: 100%;
z-index: 1;
position: absolute;
}
.phan-khu .section-header::after {
height: 60px;
background-color: #ece8e3;
}
.phan-khu .section-header::before {
z-index: 2;
height: 25px;
background-color: #e5ddd7;
}
.phan-khu .phankhu-hover {
transition: all 0.3s ease-in-out;
pointer-events: none;
opacity: 0;
transform: translateY(-100px);
display: none;
}
@media screen and (min-width: 769px) {
.phan-khu .phankhu-hover {
display: block;
}
}
.phan-khu .bg-active {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0;
pointer-events: none;
background-color: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease-in-out;
}
.phan-khu .bg-active img {
width: 100%;
height: auto;
}
.phan-khu .active .phankhu-hover {
opacity: 1;
transform: translateY(0px);
pointer-events: auto;
}
.phan-khu .active .bg-active {
opacity: 1;
}
.phan-khu .phankhu-title-mb {
color: #be1e2d;
font-size: 0.75rem;
padding-inline: 2rem;
}
.phan-khu .phankhu-title-mb h3 {
display: flex;
gap: 1rem;
margin-top: 1rem;
align-items: center;
}
.phan-khu .phankhu-title-mb strong {
font-size: 1.5rem;
width: 55px;
height: 55px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border: 1px solid #967b56;
color: #be1e2d;
border-radius: 50%;
}
@media screen and (min-width: 769px) {
.phan-khu .phan-khu-f .phankhu-hover {
top: 3%;
left: 65%;
}
}
@media screen and (min-width: 1440px) {
.phan-khu .phan-khu-f .phankhu-hover {
top: 14%;
left: 68%;
}
}
@media screen and (min-width: 769px) {
.phan-khu .phan-khu-g .phankhu-hover {
top: 15%;
left: 40%;
}
}
@media screen and (min-width: 1440px) {
.phan-khu .phan-khu-g .phankhu-hover {
top: 6%;
left: 45%;
}
}
@media screen and (min-width: 769px) {
.phan-khu .phan-khu-h .phankhu-hover {
top: 7%;
left: 45%;
}
}
@media screen and (min-width: 1440px) {
.phan-khu .phan-khu-h .phankhu-hover {
top: 15%;
left: 21.5%;
}
}
.phankhu-hover.fancybox__content {
margin: 0;
padding: 0;
}
.section-10-ly-do {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/10-reasons.jpg);
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}
.section-10-ly-do .circular-wrapper {
position: relative;
}
.section-10-ly-do .items-10-reasons {
position: absolute;
z-index: 1;
pointer-events: none;
}
.section-10-ly-do .items-10-reasons .item-wrapper {
width: 1px;
height: 50%;
position: absolute;
top: 0%;
left: 50%;
transform: translateX(-50%);
}
.section-10-ly-do .items-10-reasons .item-container {
position: absolute;
bottom: 50%;
left: 50%;
transform: translate(-50%, -10%);
z-index: 10;
}
.section-10-ly-do .items-10-reasons .slider-item {
width: 170px;
display: flex;
align-items: center;
justify-content: center;
}
.section-10-ly-do .items-10-reasons .item {
text-transform: uppercase;
display: flex;
flex-direction: column;
pointer-events: auto;
transition: all 0.5s ease-in-out;
position: relative;
}
.section-10-ly-do .items-10-reasons .item .index {
font-family: "iCiel Domaine Text";
font-size: 3em;
font-weight: bold;
line-height: 1;
margin-bottom: 0.25em;
color: #d6c092;
}
.section-10-ly-do .items-10-reasons .item .content {
font-family: "iCiel Domaine Text";
font-weight: 500;
font-size: 0.7em;
}
.section-10-ly-do .items-10-reasons .item:hover {
transform: scale(1.1);
}
.section-10-ly-do .items-10-reasons li:first-child .item {
min-height: 134px;
width: 125px;
}
.section-10-ly-do .items-10-reasons li:nth-child(2) .index {
color: #c5ab7d !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(3) .index {
color: #bca175 !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(4) .index {
color: #a98d5f !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(5) .item-container {
transform: translate(-60%, -5%);
}
.section-10-ly-do .items-10-reasons li:nth-child(5) .index {
color: #967a55 !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(6) .item-container {
transform: translate(-45%, 0%);
}
.section-10-ly-do .items-10-reasons li:nth-child(6) .index {
color: #a66748 !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(7) .item-container {
transform: translate(-40%, -25%);
}
.section-10-ly-do .items-10-reasons li:nth-child(7) .index {
color: #ac5342 !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(8) .index {
color: #af473c !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(9) .index {
color: #b73536 !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(10) .index {
color: #bd1e2c !important;
}
.section-10-ly-do .items-10-reasons li:nth-child(6) {
text-align: right;
}
.section-10-ly-do .items-10-reasons li:nth-child(7) {
text-align: right;
}
.section-10-ly-do .items-10-reasons li:nth-child(8) {
text-align: right;
}
.section-10-ly-do .items-10-reasons li:nth-child(9) {
text-align: right;
}
.section-10-ly-do .items-10-reasons li:nth-child(10) {
text-align: right;
}
@media screen and (min-width: 1024px) and (max-width: --var(--desktop-width)) {
.section-10-ly-do .items-10-reasons .item .index {
margin-bottom: 5px;
}
.section-10-ly-do .items-10-reasons .item .content {
font-size: 0.5em;
}
.section-10-ly-do .items-10-reasons li:first-child .item-container {
transform: translate(-50%, 0);
}
.section-10-ly-do .items-10-reasons li:first-child .item {
min-height: 90px;
padding-left: 1em;
}
.section-10-ly-do .items-10-reasons li:last-child .item {
top: 1.5em;
left: 0.5em;
}
.section-10-ly-do .items-10-reasons li:nth-child(5) .item-container {
transform: translate(-56%, 8%);
}
.section-10-ly-do .items-10-reasons li:nth-child(6) .item-container {
transform: translate(-50%, 15%);
}
}
@media screen and (min-width: 1024px) {
body.home .doi-tac {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/moutain.jpg);
background-position: left center;
background-repeat: no-repeat;
margin-right: -15rem;
}
}
body.page-id-186 .vi-tri {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/vi-tri-inside.jpg);
background-position: right center;
}
@media screen and (max-width: 768px) {
body.page-id-186 .vi-tri {
background-position: 75% -10%;
}
}
body.page-id-186 .dang-ky {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/contact-bg-inside.jpg);
margin-left: -5px;
background-position: left center;
}
@media screen and (max-width: 1024px) {
body.page-template-design .sfe-locomotive-scroll-wrapper > section:not([data-layout=banner]):first-child > .section {
padding-top: 125px !important;
}
}
@media screen and (max-width: 768px) {
body.page-template-design .sfe-locomotive-scroll-wrapper > section:not([data-layout=banner]):first-child > .section {
padding-top: 85px !important;
}
.section-10-ly-do {
background: #fff;
margin-bottom: 2rem;
}
.section-10-ly-do #map_10_ly_do div {
width: 100%;
}
}
.post-summary {
text-decoration: none;
}
.post-summary .post-title {
color: #000;
margin-bottom: 0;
margin-top: 10px;
}
.post-summary .post-thumbnail {
position: relative;
}
.post-summary .post-thumbnail img {
aspect-ratio: 350/230;
object-fit: cover;
}
.post-summary .post-thumbnail::before {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/zoom.png);
background-position: center;
content: "";
left: 0;
width: 100%;
top: 0;
height: 100%;
z-index: 1;
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
background-repeat: no-repeat;
transition: all 0.3s ease-in-out;
opacity: 0;
}
.post-summary .post-date {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: -10px;
}
.post-summary .post-date .date {
width: 40px;
height: 40px;
color: #f9f6f0;
background-color: #967b56;
display: flex;
align-items: center;
font-size: 1.5em;
justify-content: center;
line-height: 22px;
}
.post-summary .post-date .mm-yyyy {
color: #000;
}
.post-summary:hover .post-thumbnail::before {
opacity: 1;
}
.services .service {
position: relative;
}
.services .service .name {
text-transform: uppercase;
font-weight: bold;
}
.services .service img {
aspect-ratio: 4/3;
object-fit: cover;
object-position: center center;
}
.post-content ul {
list-style-type: disc;
padding-left: 2rem;
margin-bottom: 1rem;
}
body.single-post #main.post .post-date {
color: #202020;
}
body.single-post #main.post .bg-news {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/nui-2.jpg);
background-position: 7% -5%;
background-repeat: no-repeat;
background-size: auto;
}
body.single-post #main.post .bg-footer {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/contact-bg.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: 115% auto;
}
body.single-post #main.post .bg-header {
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/moutain.jpg);
background-position: 12% -15%;
background-repeat: no-repeat;
background-size: auto;
}
@media screen and (max-width: 768px) {
body.single-post #main.post .bg-footer {
background-size: 270% auto;
}
}
@media screen and (max-width: 575px) {
body.single-post #main.post .post-title {
font-size: 1.5em;
}
body.single-post #main.post .news-more .post-title {
font-size: 1rem;
}
} .circular-slider {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
border-radius: 100%;
transform: translate(-46%, -50%);
}
.circular-slider ul li {
pointer-events: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
border-radius: 100%;
transform-origin: center center;
}
.circular-slider .bordered {
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
width: 150px;
overflow: hidden;
height: 50%;
}
.circular-slider .bordered::before {
border: 1px solid #d1d0cf;
width: var(--width);
height: var(--height);
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translate(0, -50%);
border-radius: 100%;
}
html,
body {
font-family: "Work Sans";
font-size: 16px;
background-color: #f6f2ed;
background-image: url(//www.honghacphumyhung.vn/wp-content/themes/atsoftware/images/home-bg.jpg);
background-repeat: repeat;
background-size: 200px 200px;
overflow-x: hidden;
color: #202020;
}
@media screen and (max-width: 1575px) {
html,
body {
font-size: 12px;
}
}
@media screen and (max-width: 768px) {
html,
body {
font-size: 15px;
}
}
.animated.revealText {
opacity: 0;
transform: translateX(0%);
animation-duration: 1.5s;
animation-fill-mode: forwards;
}
.animated.revealText.go {
animation-name: revealText;
}
.animated.revealText2 {
opacity: 0;
animation-duration: 2s;
animation-fill-mode: forwards;
}
.animated.revealText2.go {
animation-name: revealText2;
}
@keyframes revealText {
0% {
transform: translateX(17%);
clip-path: inset(0px 50% 0px 50%);
-webkit-clip-path: inset(0px 50% 0px 50%);
}
100% {
clip-path: inset(0px 0px 0px 0px);
-webkit-clip-path: inset(0px 0px 0px 0px);
transform: translateX(0%);
opacity: 1;
}
}
@keyframes revealLine {
0% {
clip-path: inset(0px 50% 0px 50%);
-webkit-clip-path: inset(0px 50% 0px 50%);
opacity: 0;
}
100% {
clip-path: inset(0px 0px 0px 0px);
-webkit-clip-path: inset(0px 0px 0px 0px);
opacity: 1;
}
}
@keyframes revealText2 {
0% {
clip-path: inset(0px 100% 0px 0%);
-webkit-clip-path: inset(0px 100% 0px 0%);
}
20% {
clip-path: inset(0px 100% 0px 0%);
-webkit-clip-path: inset(0px 100% 0px 0%);
}
40% {
opacity: 1;
}
100% {
clip-path: inset(0px 0px 0px 0px);
-webkit-clip-path: inset(0px 0px 0px 0px);
opacity: 1;
}
}
.animated.scaleOutPic {
transform: scale(1.4);
animation-duration: 2s;
}
.animated.scaleOutPic.go {
animation-name: scaleOutPic;
}
@keyframes scaleOutPic {
0% {
transform: scale(1.4);
}
to {
transform: scale(1);
}
}
@keyframes scrollLine {
0% {
top: 30%;
}
50% {
top: 100%;
}
99% {
top: 100%;
}
to {
top: 30%;
}
}
@keyframes iconbounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
10% {
transform: translateY(-30px);
}
30% {
transform: translateY(-15px);
}
}
@keyframes circleText {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
.fadeInUp animatedShort.is-inview {
-webkit-animation-name: fadeInUp animatedShort;
animation-name: fadeInUp animatedShort;
}
.fadeIn.is-inview {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.lineIn {
transform: translateY(110%);
}
.lineIn.is-inview {
-webkit-animation-name: lineIn;
animation-name: lineIn;
}
@keyframes lineIn {
0% {
transform: translateY(110%);
}
100% {
transform: translateY(0%);
}
}