* {
  font-family: 'Poppins', sans-serif;
  /* font-weight: 600; */
  font-size: 100%;
  scroll-behavior: smooth;

}
body{
font-size: 100%;
}
.nav-link {
display: inline-block;
position: relative;
font-size: 1vw;

}
.footer-logo{

  transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
}

.text-address{
  transform: translateY(10px) !important;
  -webkit-transform: translateY(10px) !important;
  -moz-transform: translateY(10px) !important;
  -ms-transform: translateY(10px) !important;
  -o-transform: translateY(10px) !important;
  font-weight: 400 !important;
}
.list-unstyled li .active {
color: #0085FF;
}
.mb-2 a{
font-size: .8vw;
}

.nav-link:hover{
background: linear-gradient(132.14deg, #F8953A 0%, #EF3C69 88.51%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}

.nav-item .nav-link{
color: #000 !important;
}

.nav-item .active{
color: #0085FF !important;
}

.nav-link::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(132.14deg, #0085FF 0%, #18D0FA 88.51%);
transform-origin: bottom right;
transition: transform 1.80s ease-out;

}
.nav-link:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}


.navbar{
background-color:transparent;
z-index: 1000;
}
.navbar-toggler{
border: none !important;
}

.nav-link:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
.navbar .active{
color: #007bff;

}

.nav-link {
color: #6c6c6c;
font-weight: 500;
padding: 12px 52px;
margin-right: 2em;
font-family: 'Poppins', sans-serif;
z-index: 100;

}
.nav-active {
background-color:#fff;
box-shadow: 5px -1px 12px -5px grey;
}
.nav-colored { background:#fff;
position: fixed !important;
width: 100%;
background-color: #f3f3f3;
z-index: 100 !important;
animation:navbar-up .7s alternate ease-in-out forwards;
transition: all .6s;}
@keyframes navbar-up {
from{
  transform: translateY(-90px);
}
to{
  transform: translateY(0px);
}
}
.nav-transparent .navbar-toggler-icon{
color: #fff !important;
}
.nav-colored .nav-link { color: #000 !important;}
.nav-colored #active { color: #0084FF !important;}
.nav-transparent 
{
 background-color:#000 !important;

}
.button {
position: relative;
padding: 12px 82px;
margin: 5px;
border: 2px solid transparent;
display: inline-block;
font-size: 20px;
border-radius: 10px;
background: linear-gradient(to left, #fff 50%, #0085FF 25%,#18D0FA 25%) right;
background-size: 200%;
transition: .5s ease-out;
border: 0px;
}

.button::before{
content: "";
position: absolute;
inset: 0;
border-radius: 10px;
padding: 2px; /* control the border thickness */
background:linear-gradient(132.14deg, #0085FF 0%, #18D0FA 88.51%);
-webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
        mask-composite: exclude;
pointer-events: none;
}

.button:hover {
text-decoration: none;
background-position: left;
color: #fff;
border: none;
}


.img-left svg{
transform: translateY(-50px);
}
/* life at bassure */
section {
width: 100vw;
height: 60vh;
overflow: hidden;
position: relative;
--v-offset: 60px;
--curve-height: 150px !important;
}
section:before, section:after {
content: "";
display: block;
background: white;
width: calc(100vw + 2 * var(--v-offset));
height: var(--curve-height);
position: absolute;
border-radius: 60%;
left: calc(-1 * var(--v-offset));
right: calc(-1 * var(--v-offset));
}
section:before {
top: calc(-0.6 * var(--curve-height));
}
section:after {
bottom: calc(-0.6 * var(--curve-height));
}
.wrapper {
  margin-top: 2em;
width: 100%;
height: 100%;
display: flex;
/* grid-template-rows: 1900px; */
/* grid-auto-flow: column; */
flex-direction: row;
grid-gap: 24px;
overflow: hidden;
/* scroll-snap-type: Y mandatory; */
}
.wrapper img {
max-width: 100%;
max-height: 100%;
scroll-snap-align: center;
-webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;

}
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-850px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-850px * 7));
  }
}
img {
max-width: 100%;
max-height: 100%;
}

.img-gal h2{
text-align: center;
font-size: 3vw;
font-weight: 700;
font-family: 'Poppins', sans-serif;
}


/* footer */


/* footer */
footer{
  background-color: #333535;
}
.company{
  color: white;
  margin-top: 1em;
  font-size: 1.2vw;
}
.company ul{
line-height: 1em;
}
.active{
  color:#0084FF;
}
.fa{
  padding: 10px;
  width: 40px;
  height:40px;
  font-size: 20px !important;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: #0085FF;
  color: #fff;
}

.fa:hover{
background: linear-gradient(132.14deg, #F8953A 0%, #EF3C69 88.51%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
animation:footerIcon .6s ease-in-out alternate forwards;
}
@keyframes footerIcon {
from{
  transform: rotate(180deg);
}
to{
  transform: rotate(0deg);
}
}
.fa-facebook {
  background: #0085FF;
  color: white;
}

.fa-twitter {
  background: #fff;
  color: #0085FF;
  font-size: 20px;
}

.fa-linkedin {
  background: #0085FF;
  color: white;
}

.fa-instagram {
  background-color:#0085FF;
  color: white;
  

}

.py-2 .row .white{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.py-2 .row .white2{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.py-2 .row .col-sm-12 a{
  font-size: .8vw;
  text-align: center;
  color: #fff;
  opacity: .7;
}

.py-2 .row .col-sm-12 a:hover{
 text-decoration: none;
}

.py-2{
  background-color: #282828;
  color: #282828;
}

.center{
  margin-bottom: 5em;
}
h3{
color: black;
}

.cardName{
line-height: 2.5em;
}
.mb-4{
color: #fff;
font-size: .8vw;
}

/* upper footer */

.sub-footer{
background:url('../images/footer/footer-4.png');
min-height: 20vh;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
}

.sub-left p{
color: #000;
font-size:35px;
font-weight: 600;
}

.cen{
color: #D3EAFF;
}

.talk a {
position: relative;
padding: 12px 62px;

margin: 5px;
border: 2px solid transparent;
display: inline-block;
font-size: 20px;
border-radius: 30px;

background-size: 200%;
transition: .5s ease-out;
border: 0px;
color: #0084FF;
font-weight: 500;
}

.talk a::before{
content: "";
position: absolute;
inset: 0;
border-radius: 30px;
padding: 2px; /* control the border thickness */
/* background:linear-gradient(132.14deg, #0085FF 0%, #18D0FA 88.51%); */
background-color: #fff;
/* background: linear-gradient(132.14deg, #F8953A 0%, #EF3C69 88.51%); */
-webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
        mask-composite: exclude;
pointer-events: none;
}
.py-2{

}
.talk a:hover{
border-radius: 30px;
text-decoration: none;
background-color: #fff;
color: #000;
/* border: 2px solid #0085ff; */
/* border: none !important; */
text-decoration: none !important;
}
.mb-2 a{
color: #fff;
text-decoration: none;
}

#star{
color: orange;
}

.footer-logo p{
font-size:1.5em;
color: #fff !important;
font-weight: 200;
align-items: flex-start;
transform: translateX(-5px) ;
transform: translateY(7px);


}
.gallery-container{
min-height: 100vh;

}
.body{
margin: 0px;
padding: 0px;
overflow: hidden;

}
.panorama {
margin: 0 auto;
cursor: all-scroll;
width: 100%;
height: 100vh;
padding-bottom: 30%;
background:url('../images/career-office/career-hero.png');
background-size: cover;
background-position: 50% 0;

transition: background-position 1s linear;
}


.hero-content{
display: flex;
align-items: center;
flex-wrap: wrap;
min-height: 100vh;
position: relative;
}

.hero-content h2{
font-size: 4vw;
font-weight: 700;
color: #fff;

}

h2#text{
float: left;
font-size: 4vw;
font-weight: 700;
color: #000 ;
}




.image-wrapper {
width: 500px;
height: 700px;
position: relative;

}
.image-wrapper img {
position: absolute;
top: 0;
left: 0;
transform-origin: left;
}
.image-1 {
clip-path: polygon(0 0, 0 32%, 28% 0);
transform: translate(-10px, -10px);
transition: transform 300ms ease;
transform-origin: top;
}
.image-wrapper:hover .image-1 {
transform: translate(0, 0);
}
.image-2 {
clip-path: polygon(28% 0, 0 32%, 0 100%, 17% 100%, 90% 0);
transform: translate(-30px, 5px);
transition: transform 300ms ease;
}
.image-wrapper:hover .image-2 {
transform: translate(0, 0);
}
.image-3 {
clip-path: polygon(100% 0, 100% 65%, 74% 100%, 17% 100%, 90% 0);
transform: translate(-15px, -10px);
transition: transform 300ms ease;
}
.image-wrapper:hover .image-3 {
transform: translate(0, 0);
}
.image-4 {
clip-path: polygon(100% 65%, 74% 100%, 100% 100%);
transform: translate(-32px, 5px);
transition: transform 300ms ease;
transform-origin: top;
}
.image-wrapper:hover .image-4 {
transform: translate(0, 0);
}

.button1 {
position: relative;
padding: 8px 32px;
margin: 5px;
transform: translateX(-18px);
border: 2px solid transparent;
display: inline-block;
font-size: 16px;
border-radius: 10px;
background: linear-gradient(to left, #fff 50%, #0085FF 25%,#18D0FA 25%) right;
background-size: 200%;
transition: .5s ease-out;
border: 0px;
}

.button1::before{
content: "";
position: absolute;
inset: 0;
border-radius: 10px;
padding: 2px; /* control the border thickness */
background:linear-gradient(132.14deg, #0085FF 0%, #18D0FA 88.51%);
-webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
        mask-composite: exclude;
pointer-events: none;
}

.button1:hover {
text-decoration: none;
background-position: left;
color: #fff;
border: none;
}

#section__title{
color: #000 !important;
font-size: 3vw;
font-weight: 600 !important;
width: 100% !important;
text-align: center;
}
.text-center p{
color: #6c6c6c;
font-size: 20px;
font-weight: 400;
}
label{
color: #000 !important;
}
#sectionJobList{
width: 100%;
min-height: 110vh;
display: flex;
align-items: center;
justify-content: center;
margin-top: 4vw;
}

.shadow-sm,
.shadow-sm--on-hover:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(132, 138, 163, 0.1) !important
}
.gradient-light--lean-left {
  background-image: -webkit-linear-gradient(110deg, #f2f3fa 0%, #fcfdff 100%);
  background-image: -ms-linear-gradient(110deg, #f2f3fa 0%, #fcfdff 100%)
}

.color--heading {
  color: #101f41 !important
}

.color--text {
  color: #4f5464 !important
}


.badge-circle {
  border-radius: 50% !important;
  height: 3.5rem !important;
  width: 3.5rem !important;
  font-size: 1rem !important;
  line-height: 3rem !important;
  padding: 0
}

.text-white {
  /* color: #fff!important; */
}


.background--white,
.bg-white {
  background-color: #fff !important
}

.background--brand,
.background--primary,
.bg-brand,
.bg-primary {
  background-color: #4d5bed !important;
  color: #fff;
  width: 50px;
}

.background--dark,
.bg-dark {
  background: #0c2050 !important;
  color: #939eb8
}

.background--secondary,
.bg-secondary {
  background-color: #939eb8 !important
}

.background--tertiary,
.bg-tertiary {
  background-color: #9779e3 !important
}

.background--danger,
.bg-danger {
  background-color: #f53d55 !important
}

.background--success,
.bg-success {
  background-color: #66df7c !important
}

.background--warning,
.bg-warning {
  background-color: #f6c460 !important
}

.background--warning2,
.bg-warning2 {
  background-color: #f89c59 !important
}

.background--info,
.bg-info {
  background-color: #52bbd3 !important
}

.background--light,
.bg-light {
  background-color: #f6f8fb !important
}

a {
  text-decoration: none !important;
}

.shadow-sm{
transition: transform .2s; 
}
.shadow-sm:hover{
transform: scale(1.1);
box-shadow: 0 3px 8px 0 rgba( 31, 38, 135, 0.37 ) !important; 
}

.content-container{

min-height: 100vh;
margin-top: 4em;
}

.content-container .row{
display: flex;
align-items: flex-start !important;
justify-content: flex-start !important;
}

.career-content h2{
font-size: 3vw;
font-weight: 700;
min-height: 10vh;
}

.img-left{
display: flex;
align-items:center;
justify-content: flex-start;
min-height: 70vh;
}

.img-left img{
width: 90%;
}
.career-content p{
font-size: 1.2vw;
color: #6c6c6c;
font-weight: 500;
text-align: justify;
font-family: 'Poppins', sans-serif;
/* line-height: 2em; */
letter-spacing: 1px !important;
}
.nav-colored{
background-color: #fff;
position: fixed !important;
width: 100%;
z-index: 100;
animation: navbarUp .6s ease-in-out forwards;
transition: all .6s;
}

@keyframes navbarUp {
from{
  transform: translateY(-90px);
}to{
  transform: translateY(0px);
}
}
.nav-colored .nav-link { color: #000 !important;}
.nav-colored #active { color: #0084FF !important;}
.nav-transparent { background-color: #dbebf0;}

.top-button{
display: flex;
align-items: flex-end;
justify-content: flex-end;
}

.iconCard-container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 140vh;

}

.iconCard-container h2{
font-size: 3vw;
font-weight: 700;
font-family: 'Poppins', sans-serif;
text-align: center;
}

.iconCard-container p{
font-size: 1.3vw;
font-weight: 500;
color: #0084FF;
font-family: 'Poppins', sans-serif;
text-align: justify;
}

.iconCard-container #second-line{
font-size: 20px;
font-weight: 500;
color: #6c6c6c;
text-align: center;
}

.iconCard-row{
display: flex;
align-items: center;
justify-content: space-around;
}

.iconCard-row .iconCard{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 50vh;
}

.iconCard-img{
width: 150px;
height: 150px;
border-radius: 50%;
background-color: #f3f3f3;
border-radius: 2px solid #f3f3f3;
display: flex;
align-items: center;
justify-content: center;
}

.iconCard-txt p{
color: #6c6c6c;
font-size: 1vw;
font-weight: 500;
text-align: justify;
}


.iconCard:hover .iconCard-img svg {
animation: Iconrotate .6s ease-in-out forwards alternate ;
}

@keyframes Iconrotate {
from{
  transform: rotate(360deg);
}
to{
  transform: rotate(0deg);
}
}

.slideanim {
visibility:hidden;
visibility:visible\9;/*For old IE browsers IE6-8 */
}
.slideanim.slide {                  
visibility: visible;                  
animation: slide 1s;
}
.slideanim::after {
/* useful when its child elements are float:left; */
content: "";
display: table;
clear: both;
}
@keyframes slide {
0% {
    opacity: 0;
    transform: translateY(50%);
} 
100% {
    opacity: 1;
    transform: translateY(0);
} 
}


#marketing{
width: 100%;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
line-height: 3em;
/* display: none; */
}

#marketing svg{
width: 300px;
}

#marketing h2{
font-size: 25px;

}



#business{
width: 100%;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
line-height: 3em;
/* display: none; */
}

#business svg{
width: 300px;
}

#business h2{
font-size: 25px;

}

.content .data{
display: none;
}

#design{
width: 100%;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
line-height: 3em;
/* display: none; */
}

#design svg{
width: 300px;
}

#design h2{
font-size: 25px;

}

#finance{
width: 100%;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
line-height: 3em;
/* display: none; */
}

#finance svg{
width: 300px;
}

#finance h2{
font-size: 25px;

}
.navbar-toggler-icon{
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}
.nav-colored .nav-colored .navbar-toggler-icon{
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

@media only screen and (min-width:300px) and (max-width: 600px) {
html,body {
 overflow-x: hidden !important;
}
  p{
  font-size: 18px !important;

}
.mb-2 a{
  font-size: 12px !important;
}

.py-2 .row .col-sm-12{
  display: flex;
  align-items: center;
  justify-content: center;
}
a{
  font-size: 14px !important;
}

.company{
  font-size: 16px !important;
}
.img-left .image-wrapper{
display: none;
}
.first-img img{
display: block !important;
}
.first-img{
width: 100%;
max-width: 400px;
display: block;
align-items: center;
justify-content: center;

}
.panorama{
width: 100%;
display: flex;
flex-direction:column;
}
#sub-title,#section__title{
font-size: 30px !important;
line-height: 1.5em !important;
}
#text{
width:380px;
font-size: 40px !important; 
text-align: center !important;
}
label{
font-size:16px !important; 
}
.content-container{
display: flex;
align-items: center;
justify-content: center;
min-height: 150vh;
}
.career-content{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.career-content h2{
text-align: center;
width: 350px;
font-size: 24px;
}
.career-content p{
text-align: justify;
width: 350px;
font-size: 16px;
}
.img-left{
display: flex;
align-items: center;
justify-content: center;
/* min-height: 10vh; */
}
#second-line,#sub-title2,#card-txt{
font-size:14px !important;
}
.image-wrapper{
margin-top: 4em;
margin-left: 9em;
}
.image-wrapper img{
width: 350px !important;
height: 350px !important;
}
.sub-footer{
display: flex;
align-items: center;
justify-content: center;
}

.sub-left p{
text-align: center;
}
.py-5 .row .col-sm-12{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.py-2 .container-fluid .row {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.white p{
font-size: 10px;
text-align: center;
}
.white2 p{
font-size: 10px;
text-align: center;
}
.gallery-txt{
font-size: 24px !important;
min-height: 10vh;
}
.wrapper{
min-height: 60vh;
}
.iconCard-container h2{
min-height: 10vh;
margin-top: 2em;
font-size: 24px;
}
.iconCard-container p{
font-size: 16px;
text-align: center;
}
#section__title{
font-size: 24px !important;
margin-top: 2em;
}
.text-center p{
font-size: 16px;
text-align: center;
}

.sub-footer{
display: flex;
align-items: center;
justify-content: center;
min-height: 20vh;
}
.sub-left p{
font-size: 20px !important;
text-align: center;
width: 300px;
margin-top: 1em;
}
.talk a{
font-size: 14px;
pad: 12px 42px !important;
margin-bottom: 1em;
}
.py-5 .row .col-sm-12{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.py-2 .container-fluid .row {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.footer p{
text-align: center;
}
.py-2 .row .col-sm-12{
display: flex;
align-items: center;
justify-content: space-around;
}

.py-2 .row .col-sm-12 p{
font-size: 10px;
text-align: center;
color: #fff;
}
.list-unstyled li{
text-align: center;
}
section {
width: 100vw;
height: 60vh;
overflow: hidden;
position: relative;
--v-offset: 100px;
--curve-height:200px !important;
}
section:before, section:after {
content: "";
display: block;
background: white;
width: calc(100vw + 2 * var(--v-offset));
height: var(--curve-height);
position: absolute;
border-radius: 60%;
left: calc(-1 * var(--v-offset));
right: calc(-1 * var(--v-offset));
}
section:before {
top: calc(-0.6 * var(--curve-height));
}
section:after {
bottom: calc(-0.6 * var(--curve-height));
}
#card-txt{
text-align: justify;
}
}
.first-img img{
display: none;
}

@media screen and (min-width:600px) and (max-width:900px) {
html,body{
  overflow-x: hidden;
}
  p{
  font-size: 18px !important;
}
.mb-2 a{
  font-size: 16px
}

.company{
  font-size: 18px;
}
.hero-content{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content h2{
  text-align: center;
}
.career-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.py-3 .col-md-12{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
}
@media screen and (min-width:900px) and (max-width:1200px) {
Html,body{
  overflow-x:hidden !important;
}
  p{
  font-size: 18px !important;
}
.mb-2 a{
  font-size: 16px
}

.company{
  font-size: 18px;
}
.hero-content{
  display: flex;
  align-items: center;
  justify-content: center;
}
#text{
  text-align: center;
}
.content-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-container .row{
  display: flex;align-items: center;
  justify-content: center;
}
.career-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.career-content h2{
  text-align: center;
}
.career-content p{
  text-align: center;
}
.py-3 .col-sm-12{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

}


.carousel-control-prev-icon, .carousel-control-next-icon {
  height: 50px !important;
  width: 50px !important;
  outline: black;
  background-color: #000 !important;
  background-size: 100%, 100%;
  border-radius: 50%;
  border: 1px solid black;
}