:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
}
@-webkit-keyframes fadeOut {
 0% {
opacity: 1;
}
 100% {
opacity: 0;
}
}
@keyframes fadeOut {
 0% {
opacity: 1;
}
 100% {
opacity: 0;
}
}

.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
animation-delay: 0s;
-webkit-animation-delay: 0s;
}
@-webkit-keyframes fadeInUp {
 0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
 100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
 0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
 100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}



    
    

 
.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}
    

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
          animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
}

.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}    

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);  
  }
  100% {
    opacity: 1;
    transform: scale(1);   
  }
} 
    
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
    
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}    
    
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: var(--animation-timing-function);
          animation-timing-function: var(--animation-timing-function);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: var(--animation-duration);
          animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}
   





:root {
--swiper-theme-color: #007aff
}
:host {
display:block;
margin-left:auto;
margin-right:auto;
z-index:1
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: clip;
    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-ios .swiper-slide, .swiper-wrapper {
    transform: translate(0)
}
.swiper-horizontal {
    touch-action: pan-y
}
.swiper-vertical {
    touch-action: pan-x
}
.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-cube-shadow {
    transform-style: preserve-3d
}
.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-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}
.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}
.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}
.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}
.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-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,.15)
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(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,.5), rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(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,.5), rgba(0,0,0,0))
}
.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-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(0)
}
to {
transform:rotate(360deg)
}
}
:root {

--fashion-slider-button-side-offset: 32px;
--fashion-slider-button-mobile-side-offset: 24px;
--fashion-slider-button-mobile-bottom-offset: 16px;
--fashion-slider-title-font-size: 80px;
--fashion-slider-title-line-height: 1.2
}
.fashion-slider {
    width: 100%;
    height: 72vh;
}
.fashion-slider-no-transition {
    transition-duration: 0ms!important;
    transition-delay: 0ms!important;
    transition-property: none!important
}
.fashion-slider-no-transition *:not(.swiper-wrapper) {
    transition-duration: 0ms!important;
    transition-delay: 0ms!important;
    transition-property: none!important
}
.fashion-slider-no-transition .swiper-wrapper {
    transition-delay: 0ms!important
}
.fashion-slider .swiper {
    width: 100%;
    height: 100%;
    transition: 1s background-color 1.3s
}
.fashion-slider .swiper-wrapper {
    transition-delay: 1s;
    transition-timing-function: cubic-bezier(.5, 0, 0, 1)
}
.fashion-slider .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: start;
    align-items: end;
}


.fashion-slider-scale {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(.6);
    transition-duration: 1s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    opacity: .9;
    overflow: hidden
}
.fashion-slider-scale img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2) translate(50%);
    transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    transition-property: transform
}
.fashion-slider-button {
    transition: .5s;
    outline: none;
    position: absolute;
    width: 140px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}
.fashion-slider-button svg {
    display: block;
    transition: .5s
}
.fashion-slider-button .fashion-slider-svg-circle-wrap {
    transition: .5s;
    transform-origin: -20px 40px;
    opacity: 1
}
.fashion-slider-button circle {
    transition: .5s;
    stroke-width: 2px;
    stroke : #fff;
    fill: none;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 1;
    transform-origin: 0px 0px 0px
}
.fashion-slider-button .fashion-slider-svg-arrow {
    transition: .5s;
    fill: #fff;
    transform: rotateY(180deg) translate(-55px, 36.1px) scale(1.75)
}
.fashion-slider-button-prev {
    left: var(--fashion-slider-button-side-offset)
}
.fashion-slider-button-next {
    right: var(--fashion-slider-button-side-offset)
}

@media (max-width: 640px) {
.fashion-slider-button {
    top: 50%;
    bottom: var(--fashion-slider-button-mobile-bottom-offset);
    transform: translateY(-15%)
}
.fashion-slider-button-prev {
    left: var(--fashion-slider-button-mobile-side-offset)
}
.fashion-slider-button-next {
    right: var(--fashion-slider-button-mobile-side-offset)
}
}
.fashion-slider-button-disabled {
    opacity: .2;
    cursor: default
}
.fashion-slider-button .fashion-slider-svg-wrap {
    transform: translateY(353px)
}
.fashion-slider-button-next .fashion-slider-svg-wrap {
    transform: translateY(353px) rotateY(180deg);
    transform-origin: 80px 0px 0px
}
.fashion-slider-button .fashion-slider-svg-line {
    transition: .5s;
    stroke: #fff;
    stroke-width: 2;
    transform: translate(50px, 42px)
}
.fashion-slider-button-prev:not(.fashion-slider-button-disabled):hover svg {
    transform: translate(-16px)
}
.fashion-slider-button-next:not(.fashion-slider-button-disabled):hover svg {
    transform: translate(16px)
}
.fashion-slider-button:not(.fashion-slider-button-disabled):hover .fashion-slider-svg-circle-wrap {
    transform: scale(1.1)
}
.fashion-slider-button:not(.fashion-slider-button-disabled):hover circle {
    stroke-dasharray: 4px;
    stroke-dashoffset: 4px;
    opacity: 1
}
.fashion-slider-button:not(.fashion-slider-button-disabled):hover .fashion-slider-svg-arrow {
    transform: rotateY(180deg) translate(-40px, 36.1px) scale(1.75)
}
.fashion-slider-button:not(.fashion-slider-button-disabled):hover .fashion-slider-svg-line {
    transform: translate(35px, 42px) scaleX(.5)
}
html, body {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0
}
body {
    color: #fff;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
#app {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}
.fashion-slider {
--fashion-slider-title-font-size: 88px
}

@media (max-width: 480px) {
.fashion-slider {
--fashion-slider-title-font-size: 60px
}
}




/* width */
::-webkit-scrollbar {
 width: 2px;
}
  
  /* Track */
  ::-webkit-scrollbar-track {
 background-color: #00000000;
}
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
 background: #555;
}
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
 background: #f59e0c;
}




.sec2 {
    width: 100%;
    background-image: url(../images/Color\ Fill\ 1.png);
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.imageSec2 {
    width: 100%;
    height: 70%;
    background-image: url(../images/Welcome.webp);
    background-position: center center;
    background-size: cover;
}
.imageasdSec2 {
    height: 60%;
    position: relative;
    width: 100%;
}

.sec3 {
    width: 90%;
    display: flex;
    margin: auto;
    justify-content: space-between;
}
.items1Sec3 {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.items2Sec3 {
    width: 58%;
}
.textImgSec3 {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 45%);
    padding: 0;
    margin: 0;
}

.sec4 {
    width: 100%;
    display: flex;
}
.ItemSec4 {
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: start;
    position: relative;
}
.Item2Sec4 {
    width: 65%;
}
.ImageSec4 {
    width: 400px;
    height: 300px;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 2;
}
.textImgSec4 {
    position: absolute;
    transform: translate(-50%, -52%);
    left: 50%;
}
.textImg2Sec4 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-position: center center;
    background-size: cover;
    left: 60%;
    top: 60%;
    z-index: 1;
}
.sec5 {
    width: 100%;
    display: flex;
}
.ItemSec5 {
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: end;
    position: relative;
}
.Item2Sec5 {
    width: 65%;
}
.ImageSec5 {
    width: 400px;
    height: 300px;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 2;
}
.textImgSec5 {
    position: absolute;
    transform: translate(-50%, -52%);
    left: 50%;
}
.textImg2Sec5 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-position: center center;
    background-size: cover;
    right: 60%;
    top: 60%;
    z-index: 1;
}
.sec6 {
    width: 100%;
    margin: auto;
    min-height: 100vh;
    position: relative;
}
.item2Sec6 {
    position: absolute;
    top: 100%;
    right: 0%;
    width: 300px;
    height: 400px;
    background-image: url(../images/ASG\ WebsiteBack.png);
    background-position: center center;
    background-size: cover;
    z-index: -1;
}
.imgSec6 {
    width: 100%;
    min-height: 100vh;
    background-image: url(../images/ASG-Website.webp);
    background-position: center center;
    background-size: cover;
    position: relative;
    padding-top: 40vh;
    padding-left: 6rem;
    padding-right: 6rem;
    padding-bottom: 6rem;
}











.imgSec8 {
    display: flex;
    width: 90%;
    margin: auto;
}

.img2Sec8 {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}
.imgs2Sec8 {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgs2Sec8 img {
    width: 25%;
}
.item2Sec8 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.sec9 {
    width: 90%;
    margin: auto;
    position: relative;
}
.cover2Sec9 {
    width: 700px;
    height: 500px;
    position: absolute;
/*    background-image: url(../images/ASG\ WebsiteCover3.png);*/
    background-position: center center;
    background-size: cover;
    right: 70%;
    top: 8%;
    z-index: -1;
    display: none;
}
.coverSec9 {
    width: 1000px;
    height: 500px;
/*    background-image: url(../images/ASG\ WebsiteCover2.png);*/
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 60%;
    z-index: -1;
    display: none;
}
.ImgSec9 {
    width: 60%;
    display: flex;
    justify-content: space-between;
}
.sec10 {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.imgSec10 {
    margin-right: 36px;
}
.imgSec10 img {
    width: 100%;
}
.textFlexSec10 {
    width: 100%;
}
.item1sec10 {
    line-height: 1;
    display: inline-block;
}
.item1sec10 h2 {
    font-size: 58px;
    color: #f59e0c;
    margin: 0px;
}
.item1sec10 p {
    margin: 0px;
    text-transform: uppercase;
    font-size: 18px;
}
.item1sec10 .People {
    font-size: 28px;
}
.item1sec10:nth-child(1) {
    font-size: 40px;
}
.TextSec10 p {
    font-size: 14px;
    color: #aaaaaa;/* width: 85%; */
 
}
.TextSec10 h2 {
    font-size: 20px;
}
.sec11 {
    width: 90%;
    margin: auto;
}

.itemsSec11 p:nth-child(1),.PageHeadLine {
    font-size: 40px;
    color: #f59e0c;
    font-weight: 500;
}
.itemsSec11 p:nth-child(2) {
    font-size: 20px;
    color: #aaaaaa;
}
.items2Sec11 p {
    font-size: 40px;
    margin-bottom: 10px;
}
.textSec11 {
    line-height: 10px;
}
.items3 {
    display: flex;
    justify-content: space-between;
}
.items3prag {
    width: 100%;
    font-size: 20px;
}
.items3prag p {
    line-height: 1.8;
    text-align: justify;
    color: #aaaaaa;
    font-size: 14px;
}
.items3Img {
    margin-left: 36px;
    float: right;
}
.items3Img img {
    margin: 10px;
    width: auto;
    max-width: calc(320px);
    height: auto;
    display: inline-block;
    min-width: 320px;
}
.sec11 h2 {
    font-size: 30px;
}












































.footer {
    width: 90%;
    margin: auto;
    font-size: 12px;
    padding-bottom: 36px;
}
.footerItem1 {
    display: flex;
    justify-content: space-between;
}
.footer1 {
    width: 25%;
}
.pragFooter p {
    line-height: 10px;
    margin-left: 0px;
}
.prag2Footer {
    line-height: 10px;
}
.footerFlex2 {
    display: flex;
    align-items: end;
    justify-content: center;
}
.prag3Footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.prag3Footer p:nth-child(2) {
    font-size: 10px;
}
.footerFlex3 {
    display: flex;
    align-items: end;
    font-size: 10px;
}
.iconFooter {
    display: flex;
}
.iconsFooter img {
    filter: invert(1);
}
.iconsFooter {
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerFlex4 {
    display: flex;
    align-items: end;
    margin-bottom: 8px;
    justify-content: center;
}
.footerLine {
    width: 100%;
    height: 1px;
    background-color: white;
    border-radius: 13px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.copy {
    line-height: 5px;
    font-size: 10px;
}

.displayNone {
    display: none;
}







.Contact {
    width: 100%;
    margin: auto;
    position: relative;
    background-image: url(../images/Location.png);
    background-position: center center;
    background-size: cover;
    padding-top: 4rem;
    padding-bottom: 8rem;
    display: block;
}
.RequestForm {
    position: absolute;
    top: -15%;
    color: black;
    background-color: white;
    width: 36%;
    height: auto;
    right: 6rem;
    float: right;
    padding-bottom: 6rem;
    padding-top: 4rem;
    -webkit-box-shadow: -2px 2px 8px rgba(0,0,0,0.09);
    border-radius: 2px;
    box-shadow: -2px 2px 8px rgba(0,0,0,0.09);
    transition-duration: 200ms;
}
.contLab {
    width: 80%;
    margin: auto;
}
input,textarea {
    width: 100%;
    padding: 5px;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.83);
    margin-top: 25px;
    height: 40px;
}
textarea {
    resize: vertical;
    padding: 5px;
    height: 200px !important;
}
.SendButton {
    background-color: rgba(255,255,255,1.00);
    color: rgba(0,0,0,1.00);
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    cursor: pointer;
    border: thin solid rgba(0,0,0,1.00);
    padding-top: 5px;
    transition-duration: 200ms;
}
.SendButton:hover,.SendButton.Sent {
    background-color: rgba(0,0,0,1.00);
    color: rgba(255,255,255,1.00);
}
.SendButton.Sent {
    pointer-events: none
}
.items2Contact{
    width: calc(64% - 6rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ContactBigDiv {
    width: 100%;
    position: relative;
    height: 50vh;
    min-height: 500px;
}

    #GoogleMap {
    width: 100%;
    display: block;
    height: 100%;
    margin-top: 0px;
    border-style: none;
    background-repeat: no-repeat;
    background-position: center center;
    }  
.pragContact {
    width: calc(64% - 0rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 200;
    font-size: 13px;
    line-height: 10px;
    padding-left: 6rem;
    padding-right: 0rem;
    margin-top: 20px;
    text-align: left;
}
.pragContact a{
    margin-top: 5px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 5px;
    color: rgba(255,255,255,1.00);
}
.pragContact a:hover{
    color: rgba(0,140,255,1.00);    
}
.item1Cont {
    width: 50%;
    text-align: center;
}
.item1Cont p {
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: left;
    padding-left: 6rem;
}
.item2Cont {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin-top: 0px;
    padding-right: 2rem;
}










.imgsSec8 {
    cursor: pointer;
}
.imgs2Sec8 {
    cursor: pointer;
}


.Imgblancoo {
    position: relative;
    transition: 1s;
}


.hoverAnimateBlanco {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 25px;
}
.pargGroup  {
    padding-right: 25px;
}
.BlancooImg {
    opacity: 1;
    cursor: pointer;
    max-width: 250px;
    width: 100%;
    transform: translateY(0);
    transition: 0.4s;
}
.hoverAnimateBlanco:hover .BlancooImg {
    opacity: 0;
    transform: translateY(-50%);
}



.blancoSoc {
    overflow: hidden;
    filter: invert(1);
    display: flex;
    width: 50%;
    margin: auto;
    justify-content: center;
    justify-content: space-around;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition-duration: 1s;
    pointer-events: none;
    transform: translate(100%, -50%);
}
.hoverAnimateBlanco:hover .blancoSoc {
    opacity: 1;
    transition: 0.2s;
    transition-delay: 0.2s;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}
.blancoSoc a {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.hoverAnimateBlanco:hover .blancoSoc a {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    
}
.hoverAnimateBlanco:hover .SocialLink1 {
    transition-delay: 0.1s;
}
.hoverAnimateBlanco:hover .SocialLink2 {
    transition: 0.5s;
    transition-delay: 0.3s;
}
.hoverAnimateBlanco:hover .SocialLink3 {
    transition: 0.5s;
    transition-delay: 0.6s;
}
.hoverAnimateBlanco:hover .SocialLink4 {
    transition: 0.5s;
    transition-delay: 0.9s;
}


.FaceBookBG {
background-image: url(../images/logo/facebook1.png)
}
.InstagramBG {
background-image: url(../images/logo/instagram.png)
}
.WebBG {
background-image: url(../images/logo/world-wide-web.png) 
}
.LinkedinBG {
background-image: url(../images/logo/linkedin1.png)
}


.SocialLink {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    filter: invert(1);
    background-size: 25px auto;
    margin-right: 10px;
    transition-duration: 100ms;
}





.FooterLinks {
    cursor: pointer;
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    color: rgba(255,255,255,1.00);
}

.OurPartnersHead {
font-size: 40px;
color: #f59e0c;
margin-top: 0px;
font-weight: 200;    


}







@media screen and (max-width:1300px) {
.items2Sec3 p {
    margin-bottom: 0px !important;
    font-size: 15px !important;
}
}
@media screen and (max-width:1286px) {
.items2Sec3 p {
    margin-bottom: 5px !important;
}
}

@media screen  and (max-width:1200px) {
    .item2Cont {
        padding-right: 0rem;
    }
    .boxVal {
     right: 3rem;   
    }
.items2Contact {
    width: calc(64% - 3rem);
}
    .pragContact {
        padding-left: 4rem;
        width: calc(50% - 0rem);
    }  
    .item1Cont a {
    padding-left: 4rem;
    }    
}
@media screen  and (max-width:1150px) {
.items2Sec3 p {
    margin-bottom: 0px !important;
    font-size: 13px !important;
}
    .contLab {
    width: 80%;
}
    .textImgSec3 h2 {
    font-size: 55px !important;
}
}

@media screen  and (max-width:1050px) {
.pragFooter p {
    font-size: 13px;
}
.FooterLinks {
    font-size: 13px !important;
}
.prag3Footer p:nth-child(2) {
    font-size: 10px;
}
    .items3prag p {
    font-size: 15px;
    line-height: 20px;
}
    .sec10 {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start !important;
    align-items: start;
}
.imgSec10 {
    display: flex;
    justify-content: start !important;
    width: 100% !important;
    margin-bottom: 50px;
}
.item1sec10 h2 {
    font-size: 50px;
}
.item1sec10 p {
    font-size: 30px;
}
.TextSec10 p {
    font-size: 15px !important;
}
.textFlexSec10 {
    width: 100% !important;
}
    
    .item1sec10 h2 {
    font-size: 50px;
}

.TextSec10 p {
    font-size: 15px !important;
}
    
    .chairman {
    font-size: 70px !important;
}

    
    .textImgSec3 h2 {
    font-size: 55px !important;
}
.sec3 {
    flex-direction: column;
}
.items1Sec3 {
    width: 70%;
}
.items2Sec3 {
    width: 70%;
}
.items2Sec3 p {
    width: 100% !important;
}
.dotsImgSec3 {
    display: none;
}
.sec3rev {
    display: flex;
    flex-direction: column-reverse;
}
.sec3rev p {
    text-align: left !important;
}
.itemSec6 p {
    width: 96% !important;
}

}
@media screen  and (max-width:995px) {
.navLinks {
    font-size: 15px;
}
    .navLinks {
    font-size: 15px;
}
}
@media screen  and (max-width:950px) {
.contLab {
    width: 80%;
}

.item1Cont p {
    font-size: 30px !important;
}
}


@media screen and (max-width:900px) {

    .ImagesSec9 {
    width: 80% !important;
}
    .itemSec7 img {
    width: 100% !important;
}
.itemSec7down img {
    width: 52% !important;
}
.itemSec7down1 img {
    width: 63% !important;
}
.ImgSec9 {
    width: 100% !important;
}
.hoverAnimateBlanco {
    width: 40%;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 25px;
    padding-right: 25px;
 
}    
    
    
}

@media screen and  (max-width:864px) {
.ContactBigDiv {
    height: auto;
    min-height: 500px;
    padding-top: 70vh;
}    
#GoogleMap {
    height: 72vh;
    margin-top: -70vh;
    margin-bottom: 50px;
}
.contLab {
    width: 80%;
}
.Contact {
    overflow: scroll;
}
.items2Contact {
    width: calc(100% - 0rem);
    padding:1rem  3rem;
}
.pragContact {
        padding: 0px;
    font-size: 13px;
}
.item1Cont p {
    font-size: 30px !important;
    text-align: start;
    padding-left: 1rem;
}
.item1Cont {
    display: flex;
    align-items: end;
}

.secCont {
    display: flex;
    flex-direction: column-reverse;
}
.boxVal {
    width: 100%;
    top: 105%;
    position: static;
}

.contLab label {
    font-size: 16px;
}


.contactMap {
    display: flex;
    flex-direction: column-reverse;
}
    .contLab {
    width: 80%;
}

.item1Cont p {
    font-size: 30px !important;
}

    .items3prag p {
    font-size: 15px;
    line-height: 20px;
}
.items3prag {
    width: 100%;
}
.textSec11 p:nth-child(2) {
    line-height: 25px !important;
    font-size: 18px !important;
}
.textSec11 p:nth-child(1) {
    line-height: 25px !important;
    font-size: 30px !important;
}
.items2Sec11 p {
    font-size: 20px !important;
}
.items3 {
    flex-direction: column-reverse;
}
.items3Img {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.items3Img div {
    width: 49% !important;
    display: flex;
    justify-content: center;
    align-items: end;
}
    .imgSec8 img {
    width: 90%;
}
.img2Sec8 img {
    width: 50%;
}
.item2Sec8Img img {
    width: 50% !important;
}
    .chairman {
    font-size: 60px !important;
}

}

@media screen and  (max-width:800px) {
.blancoSoc {
    width: 80%;
}
    .pragFooter p {
    font-size: 13px;
}
.FooterLinks {
    font-size: 13px !important;
}
.prag3Footer p:nth-child(2) {
    font-size: 10px;
}
.footerItem1 {
    flex-wrap: wrap;
}
.footer1 {
    width: 50%;
}
.footer {
    margin-top: 50px;
}
    
.pragAbout p {
    font-size: 13px !important;
    line-height: 20px;
}
    .navLinks {
    font-size: 13px;
}
.nav1 img {
    width: 80% !important;
}
.gro {
    font-size: 70px !important;
}
.abu {
    font-size: 30px !important;
}
.imgSec3 {
    width: 400px !important;
    height: 100px !important;
}
.imgSec2 {
    width: 400px !important;
    height: 100px !important;
}
.imgSec4 {
    width: 400px !important;
    height: 100px !important;
}
.imgSec5 {
    width: 400px !important;
    height: 100px !important;
}
.imgHeroSec6 {
    width: 400px !important;
    height: 100px !important;
}
.imgHeroSec7 {
    width: 400px !important;
    height: 100px !important;
}
.imgHeroSec8 {
    width: 400px !important;
    height: 100px !important;
}
.imgHeroSec9 {
    width: 400px !important;
    height: 100px !important;
}

.items3Img img {
    max-width: calc(49% - 25px);
    min-width: 0px;
}    
    
}

@media screen and (max-width:700px) {
/* .pargGroup p:nth-child(1) {
    font-size: 18px !important;
} */
/* .pargGroup p:nth-child(2) {
    font-size: 14px !important;
} */
.pargGroup p:nth-child(3) {
    font-size: 14px !important;
}
/* .pargGroupCh p {
    font-size: 14px !important;
} */
    .imgSec8 img {
    width: 100%;
}
.img2Sec8 img {
    width: 60%;
}
.item2Sec8Img img {
    width: 50% !important;
}
    .flexColumn {
    width: 47% !important;
    justify-content: center;
}
.itemSec7 img {
    width: 60% !important;
}
.itemSec7down img {
    width: 52% !important;
}
.itemSec7down1 img {
    width: 63% !important;
}
.itemSec7down, .itemSec7down1 {
    width: 47% !important;
    justify-content: center !important;
}
.blanco, .bosch {
    justify-content: center;
}
.ImgSec9 {
    width: 100% !important;
}
}
    @media screen  and (max-width:650px) {
.contLab {
    width: 80%;
}

.item1Cont p {
    font-size: 30px !important;
    text-align: start;
}
.item1Cont {
    display: flex;
    align-items: end;
}

.secCont {
    height: 200vh !important;
}
.boxVal {
    width: 100%;
    top: 105%;
    position: static;
}
.pragContact {
    font-size: 13px;
}
.contLab label {
    font-size: 16px;
}
.contLab input {
    padding: 5px;
    font-size: 15px;
}
textarea {
    padding: 5px;
    font-size: 15px;
}
.contactMap {
    display: flex;
    flex-direction: column-reverse;
}
        .imgSec8 {
    display: flex;
    flex-wrap: wrap;
}
.imgsSec8 {
    width: 50%;
}
.imgsSec8 img {
    width: 50%;
}
.imgs2Sec8 {
    width: 50% !important;
}
.chgratot img {
    width: 50% !important;
}
        
        .textImgSec3 h2 {
    font-size: 55px !important;
}
.sec3 {
    flex-direction: column;
}
.items1Sec3 {
    width: 100%;
}
.items2Sec3 {
    width: 100%;
}
.items2Sec3 p {
    width: 100% !important;
}
.dotsImgSec3 {
    display: none;
}
.sec3rev {
    display: flex;
    flex-direction: column-reverse;
}
.sec3rev p {
    text-align: left !important;
}
.itemSec6 p {
    width: 96% !important;
}
}

@media screen and  (max-width:600px) {
    
.items2Contact {
    flex-direction: column;
        align-items: center;
    padding: 1rem 2rem;
}    
.pragContact {
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.item1Cont p {
    text-align: center;
    width: 100%;
    padding: 0px;
}    
.navLinks {
    font-size: 11px;
}
.nav1 img {
    width: 65% !important;
}
.gro {
    font-size: 60px !important;
}
.abu {
    font-size: 25px !important;
}
.contabu {
    line-height: 25px !important;
}
.fashion-slider-button {
    width: 100px;
}
.imgSec3 {
    width: 300px !important;
    height: 70px !important;
}
.imgSec2 {
    width: 300px !important;
    height: 70px !important;
}
.imgSec4 {
    width: 300px !important;
    height: 70px !important;
}
.imgSec5 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec6 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec7 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec8 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec9 {
    width: 300px !important;
    height: 70px !important;
}
.items3Img img {
    max-width: calc(100% - 0px);
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
}       
.footerItem1 {
    flex-wrap: nowrap;
    flex-direction: column;
    
} 
    .footer1 {
        width: 100%;
    }    
    .footerFlex2,.footerFlex4 {
        justify-content: flex-start;
    }    
}
    


@media screen and  (max-width:550px) {
.ImagesSec9 {
    width: 100% !important;
}
}

@media screen and  (max-width:500px) {
.blancoSoc {
    width: 100%;
}
    .items3prag p {
    font-size: 12px;
    line-height: 20px;
}
.items3prag {
    width: 100%;
}
.textSec11 p:nth-child(2) {
    line-height: 25px !important;
    font-size: 18px !important;
}
.textSec11 p:nth-child(1) {
    line-height: 35px !important;
    font-size: 30px !important;
}
.items2Sec11 p {
    font-size: 20px !important;
}
.items3 {
    flex-direction: column-reverse;
}
.items3Img {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.items3Img div {
    width: 49% !important;
    display: flex;
    justify-content: center;
    align-items: end;
}
.sec11 h2 {
    font-size: 20px;
}
    /* .pargGroup p:nth-child(1) {
    font-size: 13px !important;
} */
/* .pargGroup p:nth-child(2) {
    font-size: 12px !important;
} */
.pargGroup p:nth-child(3) {
    font-size: 12px !important;
}
/* .pargGroupCh p {
    font-size: 12px !important;
}
     */
    .imgSec8 {
    display: flex;
    flex-wrap: wrap;
}
.imgsSec8 {
    width: 50%;
    margin-top: 20px;
}
.imgsSec8 img {
    width: 50%;
}
.imgs2Sec8 {
    width: 50% !important;
    margin-top: 20px;
}
.chgratot img {
    width: 50% !important;
}
.textSec8 {
    font-size: 30px;
}
.flexColumn {
    justify-content: center;
}
.itemSec7 img {
    width: 80% !important;
}
.itemSec7down img {
    width: 72% !important;
}
.itemSec7down1 img {
    width: 82% !important;
}
.itemSec7down, .itemSec7down1 {
    justify-content: center !important;
}
.blanco, .bosch {
    justify-content: center;
}
.ImgSec9 {
    width: 100% !important;
}
    
    .chairman {
    font-size: 40px !important;
}

.itemSec6 p {
    font-size: 11px;
}
.weAtAs {
    font-size: 20px;
}
.sec7 {
    margin-top: 20px !important;
}
    
.chairman {
    font-size: 50px !important;
}

}


@media screen and  (max-width:450px) {
.sec10 {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start !important;
    align-items: start;
}
.imgSec10 {
    display: flex;
    justify-content: start !important;
    width: 100% !important;
}
.item1sec10 h2 {
    font-size: 40px;
}
.item1sec10 p {
    font-size: 20px;
}
.TextSec10 p {
    font-size: 15px !important;
}
.textFlexSec10 {
    width: 100% !important;
}
    
    .navLinks {
    font-size: 8px;
}
.nav1 img {
    width: 65% !important;
}
.gro {
    font-size: 50px !important;
}
.abu {
    font-size: 20px !important;
}
.contabu {
    line-height: 20px !important;
}
.fashion-slider-button {
    width: 100px;
}
.imgSec3 {
    width: 300px !important;
    height: 70px !important;
}
.imgSec2 {
    width: 300px !important;
    height: 70px !important;
}
.imgSec4 {
    width: 300px !important;
    height: 70px !important;
}
.imgSec5 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec6 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec7 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec8 {
    width: 300px !important;
    height: 70px !important;
}
.imgHeroSec9 {
    width: 300px !important;
    height: 70px !important;
}
}

@media screen and (max-width:400px) {

.pragFooter p {
    font-size: 13px;
}
.FooterLinks {
    font-size: 13px !important;
}
.prag3Footer p:nth-child(2) {
    font-size: 10px;
}
.footerItem1 {
    flex-wrap: wrap;
}

.flexColumn {
    width: 100% !important;
    justify-content: center;
}
.itemSec7 img {
    width: 60% !important;
}
.itemSec7down img {
    width: 50% !important;
}
.itemSec7down1 img {
    width: 62% !important;
}
.itemSec7down, .itemSec7down1 {
    width: 100% !important;
    justify-content: center !important;
}
.blanco, .bosch {
    justify-content: center;
}
.ImgSec9 {
    width: 100% !important;
}
}
