/*
  #3082C5   //Main blue
  #3037C5   //Dark blue
  #30C5BE   //Teal
*/



@keyframes gray-to-color {
  0% {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
  }
  25% {
    filter: grayscale(75%);
    -webkit-filter: grayscale(75%);
    -moz-filter: grayscale(75%);
  }
  50% {
    filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
  }
  75% {
    filter: grayscale(25%);
    -webkit-filter: grayscale(25%);
    -moz-filter: grayscale(25%);
  }
  100% {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
  }
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@keyframes fadeleft {
    from { opacity: 0; margin-right: -1rem;}
    to   { opacity: 1; margin-right: 0px;}
}
@-moz-keyframes fadeleft {
    from { opacity: 0; margin-right: -1rem;}
    to   { opacity: 1; margin-right: 0px;}
}

@-webkit-keyframes fadeleft {
    from { opacity: 0; margin-right: -1rem;}
    to   { opacity: 1; margin-right: 0px;}
}
@-ms-keyframes fadeleft {
    from { opacity: 0; margin-right: -1rem;}
    to   { opacity: 1; margin-right: 0px;}
}
@-o-keyframes fadeleft {
    from { opacity: 0; margin-right: -1rem;}
    to   { opacity: 1; margin-right: 0px;}
}

@keyframes fadetop {
    from { opacity: 0; margin-top: -1rem;}
    to   { opacity: 1; margin-top: 0px;}
}
@-moz-keyframes fadetop {
    from { opacity: 0; margin-top: -1rem;}
    to   { opacity: 1; margin-top: 0px;}
}

@-webkit-keyframes fadetop {
    from { opacity: 0; margin-top: -1rem;}
    to   { opacity: 1; margin-top: 0px;}
}
@-ms-keyframes fadetop {
    from { opacity: 0; margin-top: -1rem;}
    to   { opacity: 1; margin-top: 0px;}
}
@-o-keyframes fadetop {
    from { opacity: 0; margin-top: -1rem;}
    to   { opacity: 1; margin-top: 0px;}
}

@keyframes flickerAnimation {
  0%   { opacity:0.2; }
  50%  { opacity:0.1; }
  100% { opacity:0.2; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:0.2; }
  50%  { opacity:0.1; }
  100% { opacity:0.2; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:0.2; }
  50%  { opacity:0.1; }
  100% { opacity:0.2; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:0.2; }
  50%  { opacity:0.1; }
  100% { opacity:0.2; }
}
.animate-flicker {
   -webkit-animation: flickerAnimation 3s infinite;
   -moz-animation: flickerAnimation 3s infinite;
   -o-animation: flickerAnimation 3s infinite;
    animation: flickerAnimation 3s infinite;
}


* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
  letter-spacing: -.025rem;
  vertical-align: top;
  /*-webkit-transition:0.4s;
  -moz-transition:0.4s;
  -o-transition:0.4s;
  transition:0.4;*/
}
a {
  text-decoration: none;
  font-weight: 500;
  color: #3082c5;
}
a:hover {
  color: #236ba7;
}
ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
  margin-bottom: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}
img {
  width: 100%;
  height: auto;
}
h1 {
  font-size: 3.75rem;
  line-height: 4rem;
  font-weight: 700;
}
p {
  margin-top: 1.4rem;
  line-height: 2rem;
  font-size: 1.25rem;
  font-weight: 400;
}
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}
b {
  font-weight: 600;
}
.alert {
  color: #f00;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-top: -0.2rem;
  font-weight: 500;
}
.highlight {
  font-weight: 600;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.btn {
  display: inline-block;
}
.btn-primary {
  color: #fff !important;
  border: double 0.2rem transparent;
  border-radius: 0.3rem;
  background-image: linear-gradient(70deg, #3082C5, #30C5BE), 
                    linear-gradient(70deg, #3082C5, #30C5BE);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.btn-primary:hover {
  background-image: none;
  background: #3082C5;
  /*box-shadow: 0 0 2rem rgba(0,0,0,0.1);*/
  /*transform: skewX(-10deg);*/
  /*color: #5a5a5a !important;*/
  /*background-image: linear-gradient(20deg, #3082C5, #30C5BE), 
                    linear-gradient(20deg, #3082C5, #30C5BE);*/
  /*background-image: linear-gradient(70deg, white, white), 
                    linear-gradient(70deg, #30C5BE, #3082C5);*/


}
.btn-secondary {
  color: #3082C5 !important;
  border: double 0.14rem transparent;
  border-radius: 0.3rem;
  background-image: linear-gradient(white, white), 
                    linear-gradient(to right, #3082C5, #30C5BE);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.btn-secondary:hover {
  color: #fff !important;
  background-image: linear-gradient(70deg, #3082C5, #30C5BE), 
                    linear-gradient(70deg, #3082C5, #30C5BE);
}
.btn-lg {
  padding: 1rem 2rem !important;
  border-radius: 0.4rem;
  font-size: 0.9rem !important;
}
.left-col {
  float: left;
  width: 50%;
}
.right-col {
  float: right;
  width: 50%;
}
.clearfix {
  clear: both;
}
.hidden {
  display: none !important;
}
/*.desktop-hidden {
  display: none !important;
}*/
.page-section {
  /*display: flex;
  max-width: 85rem;
  margin: 0 auto;*/
  padding: 6rem 4rem;
}
.page-section-full {
  margin: 6rem 0;
  padding: 12rem 4rem;
  position: relative;
  background: rgba(0,0,0,0.85);
  overflow: hidden;
}
.page-section-full h1,
.page-section-full p,
.page-section-full .sub-title {
  color: #eee !important;
}
.content {
  display: flex;
  max-width: 85rem;
  margin: 0 auto;
}

.blue {
  color: #3082C5;
  background: -webkit-linear-gradient(to right, #3082C5, #30C5BE);
  background: linear-gradient(to right, #3082C5 , #30C5BE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.popup {
  position: fixed;
  width: 100%;
  max-width: 70rem;
  height: calc(100%); 
  top: 0;
  z-index: 9999;
  right: 0;
  background: #fff;
  box-shadow: 0 0 2rem rgba(0,0,0,0.5);
  overflow-y: auto;
  padding: 7rem;
  display: none;
}
.popup-bg {
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0,0,0,0.7);
  position: fixed;
  width: 100%;
  height: calc(100%);
  display: none;
}
.popup ul {
  margin-top: 1rem;
}
.popup li {
  margin-top: 0;
  line-height: 1.6rem;
  font-size: 1.25rem;
  font-weight: 400;
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 0.3rem;
}
.popup h2 {
  margin-top: 3rem;
}
.popup h3{
  margin-top: 1rem;
  line-height: 1.6rem;
  font-size: 1.25rem;
}
.popup-item {
  display: none;
}
.popup-team h1 {
  margin-top: 2rem;
  font-size: 2.4rem;
  line-height: 2.5rem;
}
.popup-team img {
  max-width: 50%;
  border-radius: 1rem;
}
.popup-team .position {
  font-size: 1.4rem;
  margin-top: 0.4rem;
  margin-bottom: 2rem;
  color: #999;
}
.popup-close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.5;
}
.popup-close:hover {
  opacity: 1;
}
.popup-close:before, .popup-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.popup-close:before {
  transform: rotate(45deg);
}
.popup-close:after {
  transform: rotate(-45deg);
}
.popup-careers h1 {
  margin-bottom: 1rem;
}
.popup-careers .career-info {
  margin-bottom: 0.4rem;
}

#header {
  /*display: flex;*/
  /*background: #fff;*/
  padding: 2rem 4rem;
  /*border-bottom: 1px solid #ddd;*/
  /*text-align: center;*/
}
#header ul{
  display: inline-block;
}
#header li {
  float: left;
}
#header .logo-link {
  display: inline-block;
}
#header .netopia-logo {
  width: 4rem;
}
#header ul li a {
  display: inline-block;
  margin: 1.5rem 1.4rem;
}
#header .left-col a.active,
#header .left-col a:hover {
  color: #3082C5;
}
#header .left-col {
  width: 80%;
}
#header .left-col .btn-list {
  display: none;
}
#header .left-col ul {
  margin-left: 3rem;
  z-index: 999999;
}
#header .left-col ul li a {
  color: #2b2b2b;
  font-weight: 500;
}
#header .right-col {
  text-align: right;
  width: 20%;
}
#header .right-col ul li a {
  color: #2b2b2b;
}
#header .right-col ul li:last-child a {
  margin: 0;
}
#header .right-col .btn {
  margin-top: 0.5rem !important;
}
#header .menu {
  display: none;
  cursor: pointer;
  margin-top: 1.2rem;
}
#header .menu span {
  width: 3rem;
  height: 0.24rem;
  background: #2b2b2b;
  display: block;
  margin-bottom: 0.4rem;
}
#header .menu-close-btn {
  display: inline-block;
}
#header .menu-close-btn:after{
  display: inline-block;
  content: "\00d7"; /* This will render the 'X' */
  font-size: 4rem;
  margin-top: -0.5rem;
  cursor: pointer;
  color: #2b2b2b;
}


#home {
  /*overflow-x: hidden;*/
  position: relative;
}
#home img {
  /*opacity: 0;*/
  border-radius: 18rem;
  /*animation: fadein 2s 1;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;*/
  max-width: 42rem;
}
#home .svg-container {
  /*position: absolute;
  z-index: -9999;
  top: -35rem;
  left: 22rem;
  width: 100%;
  rotate: 144deg;
  opacity: 0.15;*/


  /*position: absolute;
  z-index: -9999;
  top: -32rem;
  left: 16rem;
  width: 100%;
  rotate: 134deg;
  opacity: 0.1;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);*/

  position: relative;


  
}


@keyframes bannerFadeColor {
  0% {
    /*filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);*/
    transform: scale(1.5);
    opacity: 0.2;
  }
  100% {
    /*filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);*/
    transform: scale(1);
    opacity: 0.15;
  }
}
#home .banner-svg-img {
  position: absolute;
  z-index: -9999;
  top: 0;
  left: calc(50% - 48rem);
  rotate: 131deg;
  opacity: 0.15;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  min-width: 114rem;

  -webkit-animation: bannerFadeColor 4s 1;
   -moz-animation: bannerFadeColor 4s 1;
   -o-animation: bannerFadeColor 4s 1;
    animation: bannerFadeColor 4s 1;


  /*position: absolute;
  z-index: -9999;
  top: 10rem;
  left: 31rem;
  width: 100%;
  rotate: 131deg;
  opacity: 0.15;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);*/


  /*display: inline-block;*/

 /* position: absolute;
  z-index: -9999;
  top: 0;
  left: 0;
  width: 100rem;
  rotate: 134deg;
  opacity: 0.2;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);*/


  


}
#home .stripes-svg-img {
  /*position: absolute;
  z-index: -9999;
  top: 190rem;
  left: calc(30% - 50rem);
  rotate: 180deg;
  opacity: 0.1;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  height: auto;
  min-width: 80rem;
  width: 100%;
  height: auto;*/

  /*position: absolute;
  z-index: -9999;
  top: 181rem;
  left: calc(10% - 35rem);
  rotate: 180deg;
  opacity: 0.05;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  height: auto;
  min-width: 106rem;*/

  /*position: absolute;
  z-index: -9999;
  top: 175.2rem;
  left: calc(10% - 49rem);
  rotate: 180deg;
  opacity: 0.03;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  height: auto;
  min-width: 142rem;*/


  position: absolute;
  z-index: -9999;
  top: 140rem;
  left: calc(40% - 5rem);
  opacity: 0.05;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  height: auto;
  min-width: 112rem;

}
#home .sub-title {
  margin-bottom: 1rem;
  color: #7d7d7d;
}
#home .content > div {
  display: flex;
  flex-basis: 50%;
  justify-content: center;
  flex-direction: column;
}

#home .page-section-full video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /*top: 0;*/
  z-index: -1;
}
#home-section-one .desc-column {
  padding-right: 3rem;
}
#home-section-one h1 {
  opacity: 0;
  animation: fadein 2s 1;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
#home-section-one p {
  opacity: 0;
  animation: fadein 1s 1;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
#home-section-one img {
  /*margin: 0rem 2rem;*/
  opacity: 0;
  animation: fadein 1s 1;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
#home-section-two .desc-column {
  padding-left: 4rem;
}
#home-section-two h1 {
  opacity: 0;
  animation: fadein 2s 1;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
#home-section-two p {
  opacity: 0;
  animation: fadein 1s 1;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}
#home-section-two img {
  /*margin: 0rem 2rem;*/
  opacity: 0;
  animation: fadein 1s 1;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}
#home-section-two .sub-title {
  opacity: 0;
  animation: fadein 1s 1;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
#home-section-three {
 /* background: #fbfbfb;
  background: url(images/bridging-the-gap.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;*/
  
}

#home-section-three .content div {
  flex-basis: 64%;
}



#home-section-four .content .desc-column {
  padding-right: 2rem;
  flex-basis: 60%;
}
#home-section-four .content div:last-child {
  flex-basis: 60%;
}
#home-section-four img {
  /*border-radius: 100%;*/
  /*border-top-left-radius: 10rem;*/
  /*border-bottom-right-radius: 10rem;*/
}
#home-section-five .desc-column {
  padding-left: 3rem;
}
#home-section-six {
  /*padding: 8rem 4rem;*/
}
#home-section-six .content div:last-child {
  flex-basis: 70%;
}
#home-section-seven .desc-column {
  padding-left: 3rem;
}
#home-section-nine {
  padding: 4rem;
}
#home-section-nine .content {
  justify-content: center;
  text-align: center;
}
#home-section-nine .content > div {
  flex-basis: 58%;
  display: block;
}
#home-section-nine .btn {
  margin-top: 2rem;
}

#home-section-eight .content div:last-child {
  flex-basis: 70%;
}
#home-section-eight {
  background: rgba(0,0,0,0.5);
}
#home-section-eight video {
  /*filter: blur(2px);
  -webkit-filter: blur(2px);*/
}

#dev-section-ten {
  padding: 4rem;
  background: rgba(0,0,0,0.75);
}
#dev-section-ten .content {
  justify-content: center;
  text-align: center;
}
#dev-section-ten .content > div {
  flex-basis: 58%;
  display: block;
}
#dev-section-ten p {
  min-width: 300px;
  width: 60vw;
  margin: 2rem auto;
}

#footer {
  background: #fbfbfb;
  padding: 5rem 4rem;
  margin-top: 6rem;
  color: #eee;
  border-top: 1px solid #eee;
}
#footer a {
  /*color: #eee;*/
  color: #2b2b2b;
}
#footer a:hover {
  color: #3082c5;
}
#footer ul li:first-child {
  /*font-weight: 500;*/
  color: #999;
}
#footer ul li {
  padding: 0.4rem 0;
  /*color: #eee;*/
}
#footer .content > div {
  flex-basis: 25%;
}
#footer .content > div:last-child li {
  padding: 0.2rem 0;
}
#footer img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  /*filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);*/
  max-width: 4rem;
  opacity: 0.7;
}
#footer .copyright {
  font-size: 0.8rem;
  margin-top: 2rem;
}

#mission {
  z-index: -1;
}
#mission .page-section {
  padding: 4rem 4rem;
}
#mission img {
  object-fit: cover;
  height: 44rem;
  border-radius: 1rem;
}
#mission .page-section:not(:first-child) h1 {
  font-size: 2.4rem;
}
#mission ul {
  margin-top: 1rem;
}
#mission li {
  /*line-height: 2rem;
  font-size: 1.25rem;
  font-weight: 400;*/
  list-style: disc;
  margin-left: 2rem;
}
#mission li p {
  margin-top: 0.5rem;
}
#mission .content > div {
  display: flex;
  flex-basis: 50%;
  justify-content: center;
  flex-direction: column;
}
#mission-section-one {
  margin-top: 2rem;
}
#mission-section-one h1 {
  margin-bottom: 2rem;
}

#mission-section-one .content > div {
  flex-basis: 100%;
}
#mission-section-two .desc-column {
  padding-left: 4rem;
}
#mission-section-three .desc-column {
  padding-right: 4rem;
}
#mission-banner-container {
  /*position: relative;
  z-index: -1;*/
  padding: 4rem 4rem;
  margin: 0;
  /*z-index: -1;*/
}
#mission-banner-container .mission-banner-bg {
  /*background: rgba(0,0,0,0.7);
  width: 100%;
  position: absolute;
  height: 20rem;
  z-index: -1;*/
}
#mission-banner-container .content {
  flex-direction: column;
  color: #eee;
  /*padding: 7rem 0 0;*/
}
#mission-banner-container .content * {
  color: #eee;
}
#mission .mission-banner {
  /*position: absolute;
  z-index: -9999;
  top: 17rem;
  left: calc(10% - 77rem);
  rotate: 180deg;
  opacity: 0.15;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  min-width: 147rem;
  height: auto;*/
  /*filter: grayscale(100%);
  -webkit-filter: grayscale(100%);*/
  border-radius: 0;
  /*object-position: top;*/
  /*height: 20rem;*/
  position: absolute;
  z-index: -1;
  object-position: 80% 15%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}
#mission-section-one {
  /*margin-top: 8rem;*/
}
#mission-section-one img {
  /*margin-bottom: 3rem;
  height: 30rem;
  object-position: 80% 80%;*/
  
  /*filter: blur(2px);
  -webkit-filter: blur(2px);*/
}
#team-section-one {
  padding: 6rem 4rem 4rem;
}
#team-section-one .content > div {
  flex-basis: 65%;
}
#team .img-section {
  padding: 0 4rem;
}
#team .img-section .content {
  flex-wrap: wrap;
  /*row-gap: 10px;
  column-gap: 1rem;*/
  row-gap: 5rem;
  column-gap: 1rem;
}
#team .img-section .content > div {
  flex: 1 1 30%; /*grow | shrink | basis */
  max-width: 33.3333333333%;
  cursor: pointer;
}
#team .img-section img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  border-radius: 1rem;
  border: 1px solid #eee;
}
#team .img-section img:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -webkit-transition:0.4s;
  -moz-transition:0.4s;
  -o-transition:0.4s;
  transition:0.4;
}
#team .img-section .name {
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.1rem;
}
#team .img-section .position {
  margin-top: 0.2rem;
}
#team-section-three {
  margin-top: 4rem;
}
#team-section-three h2 {
  border-top: 1px solid #ddd;
  padding: 4rem 0 2rem;
  margin-top: 2rem;
  width: 100%;
  font-size: 2rem;
}
#careers-section-one {
  padding: 6rem 4rem 4rem;
}
#careers-section-two {
  padding: 0 4rem;
}
#careers-section-two .content {
  flex-wrap: wrap;
  row-gap: 1rem;
}
#careers-section-two .content > div {
  flex: 1 1 100%;
  width: 100%;
  padding: 3rem;
  background: #fbfbfb;
  border: 1px solid #eee;
  border-radius: 1rem;
}
#careers-section-two .title a {
  font-size: 1.5rem;
  font-weight: 600;
}
#careers-section-two .details {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.4rem;
}
#careers-section-two .sub-details {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}
#contact textarea {
  min-height: 10rem;
  resize: vertical;
}
#contact-section-one .content > div {
  
}
#contact-section-one .form-column {
  flex-basis: 42%;
}
#contact-section-one .form-column > div {
  padding: 3rem;
  background: #fbfbfb;
  border: 1px solid #ddd;
  border-radius: 1rem;
}
#contact-section-one .form-column h1 {
  font-size: 2rem;
  line-height: 2.4rem;
  margin-bottom: 1rem;
}
#contact-section-one .form-column p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0 0 1rem;
}
#contact-section-one .desc-column {
  padding-right: 4rem;
  flex-basis: 58%;
}
#contact-section-one .desc-column h1 {
  margin-bottom: 2rem;
}
#submit-msg {
  margin-top: 1rem;
}
#development .col-6 .content > div {
  display: flex;
  flex-basis: 50%;
  justify-content: center;
  flex-direction: column;
}
#development img {
  padding: 2rem;
  background: #f6fbfe;
  border-radius: 1rem;
}
#development .page-section {
  padding: 10rem 4rem;
}
#development .desc-column {
  padding-right: 4rem;
}
#development .grey-bg {
  background: #fbfbfb;
}
#development-quote {
  padding: 4rem 4rem !important;
  background: linear-gradient(to right, #3082C5 , #30C5BE);
}
#development-quote p:first-child {
  margin-top: 0;
}
#development-quote * {
  color: #fff;
}
#dev-2 img {
  background: #f7fdfd;
  margin: 2rem 0;
  border: 1px solid #ddd;
}

#survey .survey-control {
  color: black;
}
#survey .survey-item {
  margin-bottom: 20px;
  white-space: pre-line;
}
#survey .survey-item.horizontal {
  display: flex;
  flex-direction: column;
}
#survey .survey-item.horizontal .survey-answer {
  margin: auto;
  flex-direction: row;
}
#survey .survey-item.horizontal .survey-answer .survey-radio-answer {
  margin: auto;
  padding: 0px 15px;
}
#survey .english:not(:empty) {
  margin-top: 0.2rem;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}
#survey #first-page .english:not(:empty) {
  margin-top: 15px;
}
#survey #second-page .english:not(:empty) {
  margin-top: 0;
  margin-bottom: 10px;
}
#survey h5.english:not(:empty) {
  margin-top: 0.35rem;
  font-size: 1.25rem;
}
#survey h6.english:not(:empty) {
  margin-top: 0.35rem;
  font-size: 1rem;
}
#survey .survey-description {
  margin-bottom: 30px;
  font-size: 0.9rem;
}
#survey .survey-question {
  margin: 15px auto 10px auto;
  font-weight: 500;
}
#survey .survey-answer {
  display: flex;
  flex-direction: column;
}
#survey .survey-radio-answer,
.survey-cbox-answer {
  display: flex;
  flex-direction: row;
  margin-left: 0;
  padding: 5px 0;
}
#survey .survey-radio-answer label,
.survey-cbox-answer label {
  font-weight: normal;
  margin: auto 5px;
  padding-left: 0;
}
#survey input[type="radio"],
input[type="checkbox"] {
  transform: scale(1.2);
  vertical-align: middle;
  margin: auto 5px;
  width: min-content;
}
#survey #socmed-un-block {
  display: none;
}
#survey .block-input * {
  display: inline-block;
  vertical-align: middle;
}
#survey .block-input {
  display: none;
}
#survey .block-input div {
  min-width: 90px;
}
#survey button {
  color: white;
  font-weight: 500;
  background-color: #2b82c5 !important;
  background-image: none;
  font-size: 1.1rem;
  width: 10rem;
  border-radius: 0.5rem;
}
#survey #footer,
#survey #header {
  line-height: 1.225;
}
#survey {
  overflow-x: scroll;
}
#survey .container {
  margin: auto;
  border: 1px lightgray solid;
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 1200px;
  min-width: 368px;
}
#survey input[type="text"],
#survey input[type="number"],
#survey input[type="email"],
#survey select {
  width: 50%;
  line-height: 1.225;
  padding: 0.5rem;
  min-width: 300px;
}
#survey input[type="number"] {
  width: 10%;
  line-height: 1.225;
  padding: 0.5rem;
  min-width: 50px;
}
#survey #previous-button {
  display: none;
}
#survey .container ul li {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 20px;
}
#survey #disagree-modal .modal-body{
  text-align: left;
  padding: 2rem;
  padding-bottom: 1rem;
}
#survey #survey-password-block {
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
#survey #survey-password-block label {
  display: block;
  font-weight: bold;
}
#survey #survey-password {
  width: 40%;
  padding: 0.3rem;
}
#survey #survey-error {
  color: red;
  margin-bottom: 20px;
  font-size: 0.85rem;
  text-align: center;
}
#survey #password-error {
  color: red;
  font-size: 0.85rem;
  text-align: center;
}
#survey td {
  vertical-align: middle;
}
#survey .table td {
  vertical-align: top;
}
#survey thead td {
  border-top: none;
}
#survey thead th {
  border-bottom: none;
  border-top: none;
  text-align: center;
}
#survey .table td:has(input[type="radio"]) {
  text-align: center;
  vertical-align: middle;
}
#survey .carousel-inner {
  overflow-x: visible;
}
#survey .table-question {
  min-width: 145px;
}
#survey #second-page .survey-radio-answer {
  margin: 10px auto;
}
#survey #other-religion {
  display: none;
  padding: 1rem;
  margin-left: 10px;
}
#survey .carousel-inner .row {
  margin-right: 0;
  margin-left: 0;
}
#survey .modal-body {
  padding-top: 2rem;
  text-align: center;
}
#survey .modal-footer {
  border-top: none;
  justify-content: center;
}
#survey .modal-footer button {
  width: unset;
  height: 3rem;
}
#survey .survey-progress {
  padding: 0;
  margin: 2rem auto;
  display: none;
}
#survey .survey-progress .progress-bar {
  background-color: #2b82c5;
}

@media(max-width: 1500px) {
  #team-section-one .content > div {
    flex-basis: 80%;
  }
  #development .col-6 .content > div {
    display: block;
    flex-basis: unset;
  }
  #development .content {
    flex-wrap: wrap-reverse;
  }
  #development img {
    margin-bottom: 2rem;
  }
  #development .desc-column {
    padding: 0;
  }
  #development .page-section {
    padding: 6rem 4rem;
  }
}

@media(max-width: 1200px) {
  #header {
    padding: 1rem 2rem 2rem;
  }
  .page-section {
    padding: 4rem 2rem;
  }
  .page-section-full {
    padding: 8rem 4rem;
  }
  #home-section-nine .content > div {
    flex-basis: 90%;
  }
  #mission-banner-container {
    padding: 7rem 2rem;
  }
  #contact .content > div {
    display: block;
    flex-basis: unset !important;
    width: 100%;
    padding: 0;
  }
  #contact-section-one .content {
    flex-direction: column;
  }
  #contact-section-one .form-column {
    margin-top: 4rem;
  }
}

@media(max-width: 991px) {
  #header {
    padding: 2rem 4rem 2rem;
  }
  .page-section {
    padding: 4rem;
  }
  .page-section-full {
    padding: 8rem 4rem;
  }
  #home .content {
    flex-wrap: wrap;
    /*text-align: center;*/
  }
  #home .content > div {
    /*display: inline-block;*/
    /*width: 100%;*/
    display: block;
    flex-basis: unset !important;
    width: 100%;
  }
  #home-section-four .content,
  #home-section-one .content {
    flex-wrap: wrap-reverse;
  }
  #home img {
    border-radius: 1rem;
    max-width: 100%;
    margin-bottom: 1rem;
    object-fit: cover;
    max-height: 14rem;
  }
  #home .sub-title {
    margin-top: 2rem;
  }
  #home .desc-column {
    padding: 0 !important;
  }
  #home .abs-img {
    display: none;
  }
  #home-section-six {
    padding: 8rem 4rem;
  }
  #home-section-nine .content {
    justify-content: left;
    text-align: left;
  }
  #home-section-nine {
    padding: 3rem 2rem;
  }
  #mission img {
    height: 20rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  #mission .content {
    flex-wrap: wrap;
  }
  #mission .content > div {
    display: block;
    flex-basis: unset;
    width: 100%;
  }
  #mission-section-one .content > div {
    flex-basis: unset;
    width: 100%;
  }
  #mission .desc-column {
    padding: 0;
  }
  #mission-section-three .content {
    flex-wrap: wrap-reverse;
  }
  #mission-banner-container {
    padding: 7rem 4rem;
  }
  .popup {
    padding: 8rem 4rem 4rem;
  }
  .popup-team h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  #development-quote {
    padding: 4rem !important;
    margin-top: 2rem;
  }
  #survey .container {
    margin-top: 20px;
  }
}


@media(min-width: 767px) {
  #header ul {
    display: inline-block !important;
  }
  #header .menu-close-btn,
  #header .menu-open-btn {
    display: none !important;
  }
}
@media(max-width: 767px) {
  /*.desktop-hidden {
    display: block !important;
  }
  .mobile-hidden {
    display: none !important;
  }*/
  #development-quote {
    padding: 2rem !important;
  }
  #contact-section-one .form-column > div {
    padding: 2rem;
  }
  #contact-section-one .form-column h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  #mission .page-section:not(:first-child) h1,
  h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  p {
    line-height: 1.625rem;
    font-size: 1rem;    
  }
  #header {
    padding: 1rem 2rem 0;
  }
  .page-section {
    padding: 3rem 2rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .page-section-full {
    padding: 8rem 2rem !important;
  }
  #header {
    background: #fff;
  }
  #header .menu {
    display: inline-block;
  }
  #header ul {
    position: absolute;
    left: 0;
    width: 100%;
    margin: 0 !important;
    top: 6.8rem;
    background: #fff;
    display: none;
    padding-bottom: 2rem;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.4);
  }
  #header ul li {
    display: block;
    float: none;
  }
  #header ul li a {
    width: 100%;
    display: block;
    margin: 0;
    padding: 1.8rem 2rem;
    border-top: 1px solid #ddd;
    /*text-align: center;*/
    font-size: 1.4rem;
  }
  #header .right-col ul {
    display: none;
  }
  #header .left-col .btn-list {
    padding: 0 2rem;
    border-top: 1px solid #ddd;
    display: block;
  }
  #header .btn {
    margin-top: 2rem;
    text-align: center;
  }
  #home {
    z-index: -1;
  }
  #home .desc-column {
    text-align: left;
  }
  #home .sub-title {
    display: none;
  }
  /*#home-section-six {
    padding: 4rem 2rem;
  }*/
  #mission {
    margin-top: 1.5rem;
    z-index: -1;
  }
  #footer .content {
    flex-wrap: wrap;
    /*text-align: center;*/
  }
  #footer .content > div {
    /*display: inline-block;*/
    /*width: 100%;*/
    display: block;
    flex-basis: 50%;
    width: 100%;
    margin-bottom: 4rem;
  }
  #footer .content > div:last-child {
    margin-bottom: 0;
  }
  #mission-banner-container {
    padding: 4rem 2rem !important;
  }
  #team-section-one {
    padding: 6rem 2rem 4rem;
  }
  #team-section-one .content > div {
    flex-basis: 100%;
  }
  #team .img-section {
    padding: 0 2rem;
  }
  #team .img-section .content {
    row-gap: 1rem;
    column-gap: 1rem;
  }
  #team .img-section .content > div {
    flex: 1 1 45%; /*grow | shrink | basis */
    max-width: 50%;
    cursor: pointer;
  }
  #team .img-section .name {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  #team .img-section .position {
    margin-top: 0;
    font-size: 0.85rem;
  }
  #team .img-section img {
    border-radius: 0.5rem;
  }
  #careers-section-two .title a {
    font-size: 1.2rem;
  }
  #careers-section-two .content > div {
    padding: 2rem;
  }
  .popup {
    padding: 8rem 2rem 4rem;
  }
  .popup-team img {
    max-width: none;
  }
  .popup-team .position {
    font-size: 1.1rem;
  }
  .popup li {
    font-size: 1rem;
  }
  #survey .survey-table {
    font-size: 0.85rem;
    padding: 0.3rem;
  }
  #survey .survey-table td {
    padding: 0.3rem;
  }
  #survey .container {
    padding: 1.3rem;
  }
}

#team-section-two,
#team-section-four,
#team-section-five{
  margin-top: 30px;
}

#team-title-section{
  margin-bottom: 15px;
}