/*Reset CSS Starts*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body, html {
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "Anta", sans-serif;
} /*0b0b0b*/
/*Reset CSS Ends*/
/*Cursor/Loader CSS Starts From Here*/
body{ padding-top: 5%;}
#crsr {
  height: 2.3vw;
  width: 2.3vw;
  border-radius: 50%;
  position: fixed;
  z-index: 999;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
}
.clear::after {
  content: "";
  clear: both;
  font-size: 0px;
  display: block;
  height: 0px;
}
/*loading css*/
.bubbles-wrapper {
  width: 500px;
  height: 160px;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  /* top: 50%;*/
  bottom: 0;
  transform: translate(-50%, -50%);
  -webkit-filter: url("#gooey");
  filter: url("#gooey");
  span {
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 25px;
    position: relative;
    top: 21px;
    animation-duration: 3.5s;
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    animation-iteration-count: infinite;
    animation-direction: alternate;
    &:nth-child(1) {
      width: 160px;
      height: 160px;
      position: absolute;
      left: 50%;
      top: 0;
      margin: -34px 0px 0px -80px;
      z-index: 0;
      animation-name: big-bubble;
    }
    &:nth-child(2) {
      animation-name: move-pos-2-1;
      transform: translateX(225px);
      z-index: 7;
    }
    &:nth-child(3) {
      animation-name: move-pos-2-2;
      transform: translateX(150px);
      z-index: 6;
    }
    &:nth-child(4) {
      animation-name: move-pos-2-3;
      transform: translateX(75px);
      z-index: 5;
    }
    &:nth-child(6) {
      animation-name: move-pos-2-4;
      transform: translateX(-75px);
      z-index: 3;
    }
    &:nth-child(7) {
      animation-name: move-pos-2-5;
      transform: translateX(-150px);
      z-index: 2;
    }
    &:nth-child(8) {
      animation-name: move-pos-2-6;
      transform: translateX(-225px);
      z-index: 1;
      margin-right: 0;
    }
  }
}
@keyframes move-pos-2-1 {
  0% {
    transform: translateX(225px);
  }
  90%, 100% {
    transform: translateX(0px);
  }
}
@keyframes move-pos-2-2 {
  0%, 20% {
    transform: translateX(150px);
  }
  90%, 100% {
    transform: translateX(0px);
  }
}
@keyframes move-pos-2-3 {
  0%, 40% {
    transform: translateX(75px);
  }
  90%, 100% {
    transform: translateX(0px);
  }
}
@keyframes move-pos-2-4 {
  0%, 40% {
    transform: translateX(-75px);
  }
  90%, 100% {
    transform: translateX(0px);
  }
}
@keyframes move-pos-2-5 {
  0%, 20% {
    transform: translateX(-150px);
  }
  90%, 100% {
    transform: translateX(0px);
  }
}
@keyframes move-pos-2-6 {
  0% {
    transform: translateX(-225px);
  }
  90%, 100% {
    transform: translateX(0px);
  }
}
@keyframes big-bubble {
  0%, 35% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  60% {
    transform: scale(0.5);
  }
  80% {
    transform: scale(0.3);
  }
  100% {
    transform: scale(0.3);
  }
}
/*ends loading css*/
#loader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background-color: #0b0b0b;
  padding: 20vh 10vw;
}
#loader .line {
  height: fit-content;
  overflow: hidden;
  display: block;
  /*display: flex;*/
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  gap: 3vw;
}
#loader .line h1 {
  text-transform: uppercase;
  font-size: 4vw;
  margin-top: 1%;
}
.line h2 {
  font-size: 5vw;
  text-transform: uppercase;
  font-weight: 900;
  opacity: 0;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  margin-top: 2%;
}
@keyframes anime {
  0% {
    font-family: "plain light";
    -webkit-text-stroke: 1px #fff;
    /*color:red;*/
    font-weight: 500;
    opacity: 1;
  }
  48% {
    font-family: "plain light";
    -webkit-text-stroke: 1px #fff;
    /*color:red;*/
    font-weight: 500;
    opacity: 0;
  }
  50% {
    font-family: "plain light";
    -webkit-text-stroke: 1px #fff;
    /*color:red;*/
    font-weight: 500;
    opacity: 1;
  }
  100% {
    font-family: "silk serif";
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-weight: 500;
    opacity: 1;
  }
}
/*#line1-part1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}*/
#line1-part1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  width: 300px;
  margin: auto;
}
#line1-part1 h5, #line1-part1 h6 {
  font-size: 3vw;
  font-weight: 100;
  font-family: silk serif;
}
#line1-part1 h5 {
  width: 5vw;
  text-align: right;
}
#main {
  position: relative;
  width: 100%;
  background-color: #000;
}
/*Cursor/Loader CSS Ends From Here*/
/*Page 1 Starts From Here*/
#page1 {

  height: 110vh;
  width: 100%;
  /*background-color: #151515;*/
  /*background-color: red;*/
  background: url("images/ink_splash_duotone_stripe_background.png") #0b162b no-repeat 50% 50%;
  background-size: cover;
  position: relative;
}
.fixed-menu{position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    z-index: 1000;
	border-bottom: 2px solid #0B162B;
}
#nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3vw 6vw;
	background-color: #0b0b0b;
}
#nav .logo {
  font-size: 3vw;
  font-weight: 900;
}
/*#nav #nav-part2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
}*/
#nav #nav-part2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
#nav #nav-part2 ul li {
  font-size: 1vw;
  font-weight: 500;
  list-style-type: none;
}
#nav #nav-part2 ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}
#nav #nav-part2 ul li a:hover {
  color: #3F7DF4;
}
/*menu starts*/
.nav-bar {
  min-height: 4.375em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.nav-branding {
  font-size: 2rem;
  font-weight: 600;
  transition: color 500ms ease;
}
.nav-branding:hover, .nav-branding:focus {
  color: dodgerblue;
}
.nav-menu {
  position: fixed;
  left: -100%;
  top: 3.375em;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  text-align: center;
  transition: 750ms;
  z-index: 9999999;
}
.nav-menu.activeMenu {
  left: 0;
}
.nav-item {
  margin: 1em 0;
}
.nav-link {
  transition: 400ms ease;
}
.hamburger {
  cursor: pointer;
}
.bar {
  display: block;
  background-color: #fff;
  width: 24px;
  /* The following 2 properties are essential in creating the "X" when the hamburger is clicked. If you change just 1 of the 2, then you need to find the proper combination for the other one */
  height: 2px;
  margin: 6px auto;
  /*    -webkit-transition: all 300ms ease;  */
  transition: all 300ms ease-in-out;
}
.hamburger.activeMenu .bar:nth-child(2) {
  opacity: 0
}
.hamburger.activeMenu .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.activeMenu .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/*ends*/
#page1 .hero {
  width: 46%;
 
  margin: auto;
  overflow: hidden; /* height: fit-content;*/
}
#hero2{padding-top:5%;}
#page1 .hero h1 {
  font-size: 7.2vw;
  font-weight: 700;
  line-height: 7.2vw;
  text-transform: uppercase;
}
#page1 #hero3 {
  position: relative;
}
#page1 #hero3 h1 {
  font-size: 11vw;
  letter-spacing: 4px;
  line-height: 10vw;
}
#page1 .hero h2 {
  font-size: 7.2vw;
  font-weight: 700;
  line-height: 7.2vw;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: .8vw solid #fff; /*padding-bottom: .5vw;*/
}
#page1 #hero3 h1:hover {
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
/*#page1 .hero:nth-child(2) {
  margin-top: 3vw;
}*/
#intro {
  padding-top: 5vh;
  word-wrap: break-word;
  max-width: 46%;
}
#intro p {
  font-size: 1vw;
  line-height: 2vw;
  overflow: hidden;
}
/*Page 1 Ends Here*/
/*Page 2 CSS Starts From Here*/
#page2 {
  width: 100%;
  padding-top: 20vh; /*height: 100vh;*/
}
#page2HeadingCont {
  /*height: 100vh;*/
  width: 100%;
}
#page2HeadingCont #expertiseHeading {
  width: 100%;
  padding-top: 5vw;
}
#page2HeadingCont #expertiseHeading h1 {
  color: #fff;
  font-size: 10vw;
  font-weight: 900;
}
#expertiseCircle {
  position: relative;
  left: 20%;
  width: 80%; /*padding-bottom: 20vh;*/
}
/*#expertiseCircle .animatedLine{}*/
#expertiseCircle h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  /*display: flex;*/
  text-transform: uppercase;
  /*justify-content: right;*/
  padding-right: 1vw;
  margin-top: 3vw;
}
#expertiseCircle h1::before {
  content: "01.";
  opacity: .2;
  font-weight: 900;
}
#expertiseCircle .circleWrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#expertiseCircle .circleWrapper .dmWrapper{ width: 33%; display: flex;}

#expertiseCircle .circleWrapper .circleHead {
  margin: 2vw 1vw;
  border-radius: 50%;
  background-color: #f2f1f6;
  width: 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2vw;
  font-weight: 700;
  text-align: center;
  height: 230px;
  line-height: 1.5vw;
  text-transform: uppercase;
}
@keyframes fadeIn {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
#expertiseCircle .circleWrapper .dmCircle1:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(230, 115, 18, 1) 0%, rgba(183, 43, 9, 1) 54%);
  animation: fadeIn .8s;
}
#expertiseCircle .circleWrapper .dmCircle1 .textHeadHover {
  display: none;
  padding: 10%;
  font-size: .7em;
  text-transform: none;
  line-height: 1.4em;
  font-weight: 100;
}
#expertiseCircle .circleWrapper .dmCircle1:hover .textHead {
  display: none;
}
#expertiseCircle .circleWrapper .dmCircle1:hover .textHeadHover {
  display: block;
  animation: fadeIn .6s;
}
#expertiseCircle .circleWrapper .dmCircle2:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(185, 209, 103, 1) 13%, rgba(130, 162, 18, 1) 71%);
  animation: fadeIn .8s;
}
#expertiseCircle .circleWrapper .dmCircle2 .textHeadHover {
  display: none;
  padding: 10%;
  font-size: .7em;
  text-transform: none;
  line-height: 1.4em;
  font-weight: 100;
}
#expertiseCircle .circleWrapper .dmCircle2:hover .textHead {
  display: none;
}
#expertiseCircle .circleWrapper .dmCircle2:hover .textHeadHover {
  display: block;
  animation: fadeIn .6s;
}
#expertiseCircle .circleWrapper .dmCircle3:hover {
  color: #fff;
  animation: fadeIn .8s;
  background: linear-gradient(90deg, rgba(227, 155, 187, 1) 13%, rgba(232, 67, 130, 1) 61%);
}
#expertiseCircle .circleWrapper .dmCircle3 .textHeadHover {
  display: none;
  padding: 10%;
  font-size: .7em;
  text-transform: none;
  line-height: 1.4em;
  font-weight: 100;
}
#expertiseCircle .circleWrapper .dmCircle3:hover .textHead {
  display: none;
}
#expertiseCircle .circleWrapper .dmCircle3:hover .textHeadHover {
  display: block;
  animation: fadeIn .6s;
}
#expertiseCircle .circleWrapper .dmCircle4:hover {
  color: #fff;
  animation: fadeIn .8s;
  background: linear-gradient(90deg, rgba(240, 215, 125, 1) 13%, rgba(175, 106, 3, 1) 60%);
}
#expertiseCircle .circleWrapper .dmCircle4 .textHeadHover {
  display: none;
  font-size: .7em;
  padding: 10%;
  text-transform: none;
  line-height: 1.4em;
  font-weight: 100;
}
#expertiseCircle .circleWrapper .dmCircle4:hover .textHead {
  display: none;
}
#expertiseCircle .circleWrapper .dmCircle4:hover .textHeadHover {
  display: block;
  animation: fadeIn .6s;
}
#expertiseCircle .circleWrapper .dmCircle5:hover {
  color: #fff;
  animation: fadeIn .8s;
  background: linear-gradient(90deg, rgba(0, 201, 148, 1) 16%, rgba(3, 115, 94, 1) 50%);
}
#expertiseCircle .circleWrapper .dmCircle5 .textHeadHover {
  display: none;
  font-size: .7em;
  padding: 10%;
  text-transform: none;
  line-height: 1.4em;
  font-weight: 100;
}
#expertiseCircle .circleWrapper .dmCircle5:hover .textHead {
  display: none;
}
#expertiseCircle .circleWrapper .dmCircle5:hover .textHeadHover {
  display: block;
  animation: fadeIn .6s;
}
#expertiseCircle .circleWrapper .dmCircle6:hover {
  color: #fff;
  animation: fadeIn .8s;
  background: linear-gradient(90deg, rgba(49, 99, 150, 1) 16%, rgba(12, 60, 110, 1) 100%);
}
#expertiseCircle .circleWrapper .dmCircle6 .textHeadHover {
  display: none;
  font-size: .7em;
  padding: 10%;
  text-transform: none;
  line-height: 1.4em;
  font-weight: 100;
}
#expertiseCircle .circleWrapper .dmCircle6:hover .textHead {
  display: none;
}
#expertiseCircle .circleWrapper .dmCircle6:hover .textHeadHover {
  display: block;
  animation: fadeIn .6s;
}
#video-container {
  width: 100%;
  height: 100%;
  /*background: url("https://obys.agency/wp-content/uploads/2022/11/Showreel-2022-preview-1.jpg");*/
  position: relative;
}
/*#video-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
	
}*/
#video-container video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  transform: scale(0.7);
}
#video-cursor {
  background-color: #ffa63d;
  height: 7vw;
  width: 7vw;
  border-radius: 50%;
  position: absolute;
  top: -10vh;
  left: 80%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-cursor i {
  font-size: 2.5vw;
}
/*Page 2 CSS Ends Here*/
/*Page 3 CSS Starts Here*/
#page3 {
  width: 100%;
  padding-top: 20vh;
}
#page3HeadingCont #expertiseHeadingPage3 {
  width: 100%;
  height: 100vh;
}
#page3HeadingCont #expertiseHeadingPage3 h1 {
  color: #fff;
  font-size: 30vw;
  font-weight: 900;
}
#expertiseCirclePage3 {
  position: relative;
  left: 20%;
  width: 80%;
  padding-bottom: 10vh;
}
.circleContPage3 .webDevCont{ display: flex; align-items: center; justify-content: center; width: 50%;}
.animatedLine {
  padding-bottom: 3.5vw;
  margin-top: 2vw;
}
#expertiseCircle .animatedLine {
  border-top: 2px solid #fff;
  opacity: 0;
  width: 10%;
  height: 4px;
  clear: both;
}
#expertiseCirclePage3 .animatedLine {
  border-top: 2px solid #fff;
  opacity: 0;
  width: 10%;
  height: 4px;
  clear: both;
}
#profileCont .animatedLine {
  border-top: 2px solid #fff;
  opacity: 0;
  width: 10%;
  height: 4px;
  margin-left: 20%;
}
#page6 #projectWrapper .animatedLine {
  border-top: 2px solid #fff;
  opacity: 0;
  width: 10%;
  height: 4px;
  margin-left: 20%;
}
#page5 #page5HeadingCont .animatedLine {
  border-top: 2px solid #fff;
  opacity: 0;
  width: 10%;
  height: 4px;
  margin-left: 20%;
}
#contactUsPage #contactCont .animatedLine {
  border-top: 2px solid #fff;
  opacity: 0;
  width: 10%;
  height: 4px;
  margin-left: 20%;
}
#expertiseCirclePage3 h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  padding-right: 1vw;
}
#expertiseCirclePage3 h1::before {
  content: "02.";
  opacity: .2;
  font-weight: 900;
}
#expertiseCirclePage3 .circleContPage3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: fit-content;
  margin-top: 10vh;
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3 {
  width: 50%;
  margin-right: 2%;
  border-radius: 12% 88% 17% 83% / 100% 0% 100% 0%;
  background-color: #f2f1f6;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-size: 1.2vw;
  font-weight: 700;
  text-align: center;
  padding: .5vw;
  line-height: 1.5vw;
  text-transform: uppercase;
  animation-name: borderRadRev;
  animation-duration: 1s;
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3 i {
  display: block;
  text-align: center;
  font-size: 3vw;
  margin-bottom: 2vh;
  font-weight: 100 !important;
}
@keyframes borderRad {
  0% {
    border-radius: 12% 88% 17% 83% / 100% 0% 100% 0%;
  }
  100% {
    border-radius: 0% 100% 0% 100% / 87% 8% 92% 13%;
  }
}
@keyframes borderRadRev {
  0% {
    border-radius: 0% 100% 0% 100% / 87% 8% 92% 13%;
  }
  100% {
    border-radius: 12% 88% 17% 83% / 100% 0% 100% 0%;
  }
}
/*#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:nth-child(1) {
    color: #fff;
    background: rgb(230,115,18);
    background: linear-gradient(90deg, rgba(230,115,18,1) 0%, rgba(183,43,9,1) 54%);
    transition: width 1s ease-in-out 1s;
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:hover:nth-child(1) {
    border-radius: 0% 100% 0% 100% / 87% 8% 92% 13%;
    animation-name: borderRad;
    animation-duration: 1s;
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:nth-child(2) {
    color: #fff;
    background: rgb(185,209,103);
    background: linear-gradient(90deg, rgba(185,209,103,1) 13%, rgba(130,162,18,1) 71%);
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:hover:nth-child(2) {
    border-radius: 0% 100% 0% 100% / 87% 8% 92% 13%;
    animation-name: borderRad;
    animation-duration: 1s;
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:nth-child(3) {
    color: #fff;
    background: rgb(227,155,187);
    background: linear-gradient(90deg, rgba(227,155,187,1) 13%, rgba(232,67,130,1) 61%);
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:hover:nth-child(3) {
    border-radius: 0% 100% 0% 100% / 87% 8% 92% 13%;
    animation-name: borderRad;
    animation-duration: 1s;
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:nth-child(4) {
    color: #fff;
    background: rgb(47,97,148);
    background: linear-gradient(90deg, rgba(47,97,148,1) 0%, rgba(117,173,230,1) 100%);
}
#expertiseCirclePage3 .circleContPage3 .circleHeadPage3:hover:nth-child(4) {
    border-radius: 0% 100% 0% 100% / 87% 8% 92% 13%;
    animation-name: borderRad;
    animation-duration: 1s;
}*/
#video-containerPage3 {
  width: 80%;
  height: auto;
  /*background: url("https://obys.agency/wp-content/uploads/2022/11/Showreel-2022-preview-1.jpg");*/
  position: relative;
}
/*#video-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
	
}*/
#video-containerPage3 video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  transform: scale(0.7);
}
#video-cursorPage3 {
  background-color: #ffa63d;
  height: 7vw;
  width: 7vw;
  border-radius: 50%;
  position: absolute;
  top: -10vh;
  left: 80%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-cursorPage3 i {
  font-size: 2.5vw;
}
/*Page 3 CSS Ends Here*/
/*Page 4 CSS Starts Here*/
#page4 {
  width: 100%;
  padding-top: 11vh;
}
#profileCont {
  position: relative;
  width: 100%;
	padding-top:7%;
}
#profileCont h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  padding-right: 1vw;
}
#profileCont h1::before {
  content: "03.";
  opacity: .2;
  font-weight: 900;
}
#profileCont #page4ImageCont {
  width: 25%;
  left: 30%;
  position: relative;
}
#profileCont #page4ImageCont img {
  width: 100%;
  object-fit: cover;
  border: 1px solid #8d8c8f;
	position: relative;
	/*left:-151px;*/
	
}
#profileCont .imgTextCont {
  position: relative;
  top: -25vw;
  width: 80%;
  right: -30vw;
  font-size: 1.6vw;
  line-height: 2.2vw;
}
#profileCont .imgTextCont::before {
  content: '"';
  font-size: 3vw;
}
#profileCont .imgTextCont::after {
  content: '"';
  font-size: 3vw;
}
#profileCont #page4ImageCont h3 {
  width: 100%;
  color: #fff;
  font-weight: 400;
  font-size: 1.5vw;
  line-height: 2vw;
  margin-bottom: 2vw;
}
#profileCont #aboutMeCont {
  position: relative;
  left: 48%;
  border: 1px solid #8d8c8f;
  padding: 1vw;
  bottom: 16vw;
  width: 30%;
  background-color: #3F7DF4;
}
#profileCont #aboutMeCont .aboutMeTextCont {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1vw;
  padding-bottom: 1vw;
  height: fit-content;
  border-bottom: 1px solid #8d8c8f;
}
#profileCont #aboutMeCont .aboutMeTextCont h4 {
  width: 45%;
  font-size: 1.2em;
  font-weight: 300;
}
#profileCont #aboutMeCont .aboutMeTextCont p {
  width: 55%;
  font-size: 1.1em;
  font-weight: 100;
  line-height: 1.5em;
}
#profileCont #aboutMeCont .aboutMeTextCont:nth-child(5) {
  border-bottom: none;
}
#page5 {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  /*border-top:.5vw solid #fff; padding-top:2vw;*/
  position: relative;
	padding-top:7%;
}
#contactUsPage #contactCont h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  padding-right: 1vw;
}
#page5 #page5HeadingCont h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  padding-right: 1vw;
}
#page5 #page5HeadingCont h1::before {
  content: "05.";
  opacity: .2;
  font-weight: 900;
}
#page5 .techSkills {
  width: 100%;
  position: relative;
  padding-top: 9vw;
}
#page5 #techSkillsMob {
  display: none;
}
/*page 6 Project css starts*/
#page6 {
  width: 100%;
  position: relative;
  min-height: 100vh;
}
#page6 #projectWrapper {
  background-color: black;
  padding: 1vw;
  position: relative;
	padding-top:7%;
}
#page6 #projectWrapper h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  padding-right: 1vw;
}
#page6 #projectWrapper h1::before {
  content: "04.";
  opacity: .2;
  font-weight: 900;
}
.site-content {
  width: 60%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 100px 0;
}
.site-content:after {
  content: " ";
  display: block;
  clear: both;
}
.section-title {
  text-align: center;
  text-transform: uppercase;
}
.align-center {
  text-align: center;
}
.align-center h1 {
  margin-top: 0;
}
.share {
  margin-bottom: 50px;
}
.share span, .share a, .share iframe {
  vertical-align: middle;
}
.share span span, .share a span, .share iframe span {
  vertical-align: middle !important;
  width: 130px !important;
}
.demo {
  margin: 40px 0;
}
.demo h2 {
  margin-bottom: 10px;
  line-height: 1;
}
.demo-1 {
  text-align: center;
}
.demo-2 {
  text-align: left;
}
.demo-2 .section-title {
  text-align: left;
}
.columns:after {
  content: " ";
  display: block;
  clear: both;
}
.columns .column {
  width: 50%;
  float: left;
  min-height: 1px;
}
.columns h2 {
  margin-bottom: 20px;
  line-height: 1;
}
pre {
  background-color: #fbfbfb;
  padding: 10px;
}
.projectCont h3{ text-align: left; font-size: 2vw; text-transform: uppercase; font-weight: 300;}
.project {
  width: 50%;
  float: left;
  padding: 25px 15px;
	margin-bottom: 31px;
	
}
.project-list:after {
  content: " ";
  display: block;
  clear: both;
}
.project__image {
  display: block;
  position: relative;
}
.project__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.project__image:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  transition: opacity .3s ease;
  opacity: 0;
}
.project__card {
  position: relative;
  transition: box-shadow .3s ease;
  box-shadow: 0 10px 30px transparent;
}
.project__card.hover-in {
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}
.project__card.hover-out {
  transition: -webkit-transform .2s ease-in;
  transition: transform .2s ease-in;
  transition: transform .2s ease-in, -webkit-transform .2s ease-in;
}
.project:hover .project__card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.project:hover .project__image:after {
  opacity: 1;
}
.project:hover .project__detail {
  border-width: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.project:hover .project__title, .project:hover .project__category {
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  opacity: 1;
}
.project:hover .project__title {
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}
.project__detail {
  position: absolute;
  z-index: 999;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: translateZ(30px);
  transform: translateZ(30px);
  border: 0 solid #ffffff;
  transition: border .4s ease;
	text-align: center;
}

.project__title {
  margin: 0 0 10px;
  font-size: 1.5vw;
  text-transform: uppercase;
  font-weight: 500;
  transition: .4s ease;
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0);
  -ms-transform: translateY(40px) scale(0);
  transform: translateY(40px) scale(0);
  will-change: transform;
}
.project__title a {
  text-decoration: none;
  color: white;
}
.project__category {
  opacity: 0;
	font-size: 1.2em;
  transition: .4s ease;
  transition-delay: .1s;
  -webkit-transform: translateY(40px) scale(0);
  -ms-transform: translateY(40px) scale(0);
  transform: translateY(40px) scale(0);
  will-change: transform;
}
.project__category a {
  color: rgba(255, 255, 255, 0.8);
 
 text-decoration: none;
}
.project__category a:hover{text-decoration: underline;}
.projectTitle {
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
  z-index: 999;
	
}
.projectTitle a {
  color: #3F7DF4;
  text-decoration: none;
}
.projectTitle a:hover{text-decoration: underline;}
.lightboxBG {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  opacity: .8;
  background-color: black;
  padding: 20vh 10vw;
  color: #fff;
  left: 0;
  top: 0;
  font-size: 24px;
}
.projectPage{ position: relative;}
.emailImgCont{display: none; position:absolute; height: 100%; padding-bottom: 1%; margin: 9% 0; width: 600px; overflow-x: scroll;left:50%; top:50%;z-index: 2; transform: translate(-50%, -50%); border:5px solid #fff;}
.emailImgCont img{ object-fit: cover;}
.viewProjectCont {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999999;
  background-color: black;
  padding: 20vh 10vw;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
}
.projectImgCont {
  width: 100%;
  min-height: 6000px;
  display: block;
}
#innovateEmailDesk{ display: block;}
#innovateEmailMob{display: none;}
#buildersEmailDesk{display: block;}
#buildersEmailMob{display: none;}
#awsomeEmailDesk{display: block;}
#awsomeEmailMob{display: none;}
#summitEmailDesk{display: block;}
#summitEmailMob{display: none;}
/*page 6 Project css ends*/
.marquee_text {
  font-size: 4vw;
  font-weight: 200;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  text-transform: uppercase;
}
.marquee_text1 {
  font-size: 4vw;
  font-weight: 200;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  position: absolute;
  top: 200px;
  transform: translateY(-50%);
  /*background-color:red;*/
  text-transform: uppercase;
}
.marquee_text2 {
  font-size: 4vw;
  font-weight: 200;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  position: absolute;
  top: 300px;
  transform: translateY(-50%);
  /*background-color:green;*/
  text-transform: uppercase;
}
.marquee_text3 {
  font-size: 4vw;
  font-weight: 200;
  line-height: auto;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  position: absolute;
  top: 400px;
  transform: translateY(-50%);
  /* background-color:grey;*/
  text-transform: uppercase;
}
/*contact us*/
#contactUsPage {
  width: 100%;
	padding-top:7%;
}
#contactUsPage #contactCont {
  height: 100vh;
  width: 100%;
}
#contactUsPage #contactCont h1 {
  font-size: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: right;
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  padding-right: 1vw;
}
#contactUsPage #contactCont h1::before {
  content: "06.";
  opacity: .2;
  font-weight: 900;
}
/*#contactUsPage #contactCont .formCont{ width: 40%; position: relative; left: 50%; margin-right: 10%;}
    #contactUsPage #contactCont .formCont label{ font-size: 1em; text-transform: uppercase;}
    #contactUsPage #contactCont .formCont input{ width:100%; height:40px; padding:2%; background-color: #0b0b0b; border-radius: 5px;  border:1px solid #333;color:#fff; }
    #contactUsPage #contactCont .formCont input[type=submit]{ background-color: orange; width: 25%; padding:2%; color:#fff; border-radius: 5px; line-height: 0px; text-transform: uppercase; font-size: 1em;}
    #contactUsPage #contactCont .formCont textarea{ width:100%; padding:2%; background-color: #0b0b0b; border:1px solid #333;border-radius: 5px; color:#fff; }
    #contactUsPage #contactCont .formCont input:focus{ background-color: #333; border:1px solid grey; outline: none;}
    #contactUsPage #contactCont .formCont textarea:focus{ background-color: #333; border:1px solid grey; outline: none;}*/
.contactUsFooter {
  width: 80%;
  margin-left: 20%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contactUsFooter ul {
  width: 33%;
}
.contactUsFooter .margin3 {
  width: 1px;
  height: 100%;
  padding: 85px 0;
  background-color: #fff;
  margin-left: 6.4%;
  margin-right: 6.4%;
}
.contactUsFooter ul li {
  list-style-type: none;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.contactUsFooter ul li h2 {
  font-weight: 100;
  margin-bottom: 1vw;
  text-transform: uppercase;
  font-size: 1.5em;
}
.contactUsFooter ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  text-transform: uppercase;
}
.contactUsFooter ul li.HPercent {
  width: 100%;
  text-align: center;
  margin-bottom: 2vw;
}
.contactUsFooter ul li i {
  font-size: 1.5vw;
  font-weight: 100;
}
/*ends*/
#flag {
  height: 20vw;
  position: absolute;
  top: -12vw;
  opacity: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}
#hero3 {
  /* background-color: red; */
  z-index: 999;
  position: relative;
}
#closeMobProjects{left:50%; top:16%; position: absolute; transform: translate(-50%, -50%)}
a:hover.ln{color:#0A66C2;}
a:hover.fb{color:#0866FF;}
a:hover.ig{color:#fb0038;}
a:hover.dribble{color:#b8509a;}
a.whatsapp{ display: flex; justify-content: center; align-items: center;}
a:hover.whatsapp{color:#128C7E; display: flex;}
a:hover.emailContact{color:#4283FF;}
@media (min-width: 769px){ .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    width: auto;
  }
  .hamburger {
    display: none;
  }
	
	
}
/*769px to 1024px css starts here*/
@media (min-width: 769px) and (max-width:1024px) {
  #page1 {
    /*background-color: red;*/
	  
	  height: 100vh;
		
  }
	#nav #nav-part2 ul li{ font-size:1.7vw;}
	#page1 .hero{ width:48%; margin-left:26%;}
	/*#page1 .hero:nth-child(2){ margin-top:20vw;}*/
	#nav .logo{ font-size:4vw;}
	#intro p{ font-size:2vw; line-height: 3.1vw;}
	
	#page2{ padding-top:10vh; width: 96%; margin: auto;}
	#expertiseCircle{ width:100%; left: 0;}
	#expertiseCircle .circleWrapper{display: block;}
	#expertiseCircle .circleWrapper .dmWrapper{ width:61%; margin: auto;}
	#expertiseCircle .circleWrapper .dmlastWrapper{ width:49%; text-align: center;}
	#expertiseCircle .circleWrapper .dmlastWrapper .circleHead{ margin:auto; width: 54%;}
		#expertiseCircle .circleWrapper .circleHead{ max-height: 225px; font-size: 2.5vw; line-height: 3.3vw; width: 49%;}
	#video-container video{ height: 100%;}
	#expertiseCirclePage3{ width: 94%; margin: auto; left: 0; padding-top: 10vh; padding-bottom:0px; }
	#expertiseCirclePage3 .circleContPage3{ width: 100%; display: block;}
	.circleContPage3 .webDevCont{ width: 100%; margin-bottom: 10%; }
		#expertiseCirclePage3 .circleContPage3 .circleHeadPage3{width: 49%; font-size: 2.5vw; line-height: 3.3vw;}
	#expertiseCirclePage3 .circleContPage3 .circleHeadPage3 i{ font-size: 4vw;}
	
	#profileCont{ width: 94%; margin: auto}
	#profileCont .animatedLine{  margin-left:0;  }
	
	#profileCont #page4ImageCont{ width: 100%; left: 0; text-align: center;}
	#profileCont #aboutMeCont{ width: 100%; left: 0 !important;}
	#profileCont #page4ImageCont h3{ font-size: 3vw; line-height: 4vw; margin-top: 4vh; margin-bottom: 4vh;}
	#profileCont #page4ImageCont img{ width: 55%; border:0px;}
	#profileCont .imgTextCont{ font-size: 3vw; line-height: 4vw; right: auto; margin: auto;}
	#page6{ width: 94%; margin: auto;}
	#page6 #projectWrapper .animatedLine{ margin-left: 0;}
	.site-content{ width: 100%;}
	.marquee_text1{ top:110px;}
	.marquee_text2{ top:191px;}
	.marquee_text3{ top:291px;}
	#page5{ min-height:71vh;}
	#page5 #page5HeadingCont .animatedLine{ margin-left: 0px;}
	#contactUsPage #contactCont{ width: 94%; margin: auto;}
	#contactUsPage #contactCont .animatedLine{ margin-left: 0px;}
	.contactUsFooter{ width: 100%; margin-left: 0; display: block;}
	.contactUsFooter ul{ float: left; width: 49%;}
	.contactLastCont::before{ height: 0px; content:""; clear: both; font-size: 0px; display:block;}
	.contactLastCont{ width: 100% !important; text-align: center; display: block; margin-top: 10vh;}
	.contactUsFooter ul li i{ font-size: 4.5vw;}
	
}
/*769px to 1024px css ends here*/

/*600px mobile css starts here*/
@media screen and (max-width:600px) {
	#hero2{padding-top:31%;}
	#closeMobProjects{top:13%;}
	.emailImgCont{width: 95%; margin-top: 25%;  }
	#innovateEmailDesk{ display: none;}
#innovateEmailMob{display: block;}
#buildersEmailDesk{display: none;}
#buildersEmailMob{display: block;}
#awsomeEmailDesk{display: none;}
#awsomeEmailMob{display: block;}
#summitEmailDesk{display: none;}
#summitEmailMob{display: block;}
	#profileCont{ padding-top: 21%;
	}
	#page6 #projectWrapper{ padding-top: 21%;
	}
	#page5HeadingCont{ padding-top: 21%;}
  /*loading animate starts*/
  .bubbles-wrapper {
    width: 320px;
    height: 125px;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    /* top: 50%;*/
    bottom: 0;
    transform: translate(-50%, -50%);
    -webkit-filter: url("#gooey");
    filter: url("#gooey");
    span {
      background-color: #000;
      border-radius: 50%;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      line-height: 28px;
      text-align: center;
      float: left;
      width: 28px;
      height: 28px;
      margin-right: 15px;
      position: relative;
      top: 21px;
      animation-duration: 3.5s;
      animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
      animation-iteration-count: infinite;
      animation-direction: alternate;
      &:nth-child(1) {
        width: 160px;
        height: 160px;
        position: absolute;
        left: 50%;
        top: 0;
        margin: -34px 0px 0px -80px;
        z-index: 0;
        animation-name: big-bubble;
        display: none;
      }
      &:nth-child(2) {
        animation-name: move-pos-2-1;
        transform: translateX(225px);
        z-index: 7;
      }
      &:nth-child(3) {
        animation-name: move-pos-2-2;
        transform: translateX(150px);
        z-index: 6;
      }
      &:nth-child(4) {
        animation-name: move-pos-2-3;
        transform: translateX(75px);
        z-index: 5;
      }
      &:nth-child(6) {
        animation-name: move-pos-2-4;
        transform: translateX(-75px);
        z-index: 3;
      }
      &:nth-child(7) {
        animation-name: move-pos-2-5;
        transform: translateX(-150px);
        z-index: 2;
      }
      &:nth-child(8) {
        animation-name: move-pos-2-6;
        transform: translateX(-225px);
        z-index: 1;
        margin-right: 0;
      }
    }
  }
  /*ends*/
  #line1-part1 h5, #line1-part1 h6 {
    font-size: 8vw;
  }
  #line1-part1 h5 {
    width: 13vw;
  }
  #loader .line h1 {
    font-size: 9vw;
    line-height: 11vw;
    margin-top: 4vw;
  }
  .line h2 {
    font-size: 11vw;
  }
  #nav .logo {
    font-size: 7vw;
  }
  #nav {
    padding-top: 5vw;
  }
  #nav #nav-part2 ul {
    margin-top: 10vw;
  }
  #nav #nav-part2 ul li {
    font-size: 6vw;
    text-transform: uppercase;
  }
  .nav-menu {
    padding: 10vw;
    background-color: rgba(0, 0, 0, 0.85);
  }
  /*#nav-part2{ display: none !important;}*/
  .nav-item {
    margin: 0px;
  }
  #flag {
    height: 70vw;
  }
  #page1 {
    height: 100vh;
  }
  #page1 .hero {
    width: 94%;
    margin-left: 3%;
    height: fit-content;
    text-align: center;
  }
  #page1 .hero h1 {
    font-size: 14vw;
    line-height: 14vw;
  }
  #page1 .hero#hero3 h1 {
    font-size: 20.2vw;
    line-height: 20vw;
  }

  #page1 .hero h2 {
    font-size: 13.8vw;
    line-height: 13.8vw
  }
  #intro {
    max-width: 94%;
  }
  #intro p {
    font-size: 5vw;
    line-height: 7vw;
  }
  #expertiseCircle {
    width: 94%;
    left: 3%;
  }
  #expertiseCircle h1 {
    justify-content: flex-start;
    font-weight: bolder;
  }
  #expertiseCircle .circleWrapper {
    display: block;
  }
	#expertiseCircle .circleWrapper .dmWrapper{ width: 100%; display: block; }
	#expertiseCircle .circleWrapper .dmCircle1 .textHeadHover{ padding:15%;}
  #expertiseCircle .circleWrapper .circleHead {
    font-size: 5vw;
    line-height: 6.3vw;
    width: 100%;
    max-width: 275px;
    margin: 3% auto;
    min-height: 260px;
  }
  #page2 {
    padding-top: 5vh;
  }
  #page2HeadingCont #expertiseHeading {
    height: 45vh;
  }
  #page2HeadingCont #expertiseHeading h1 {
    font-size: 10vw;
  }
  #video-container {
    display: none;
  }
  #page3 {
    padding-top: 5vh;
  }
  #expertiseCirclePage3 {
    width: 94%;
    left: 3%;
    padding-bottom: 4vh;
  }
  #expertiseCirclePage3 .circleContPage3 {
    display: block;
    margin-top: 8vh;
  }
  #expertiseCirclePage3 .circleContPage3 .circleHeadPage3 {
    width: 100%;
    margin: auto;
    margin-top: 3vh;
    font-size: 5vw;
    line-height: 6vw;
	  max-width: 301px;
	
  }
	.circleContPage3 .webDevCont{ width: 100%; display: block;}
  #expertiseCirclePage3 .circleContPage3 .circleHeadPage3 i {
    font-size: 10vw;
  }
  #page4 {
    padding-top: 10vh;
    width: 94%;
    margin: auto;
  }
  #expertiseCirclePage3 h1 {
    display: block;
    font-weight: bolder;
  }
  #profileCont h1 {
    display: block;
    padding-top: 2vh;
    font-weight: bolder;
  }
  #profileCont #page4ImageCont {
    width: 100%;
    left: 0;
    padding-top: 5vh;
  }
  #profileCont #page4ImageCont h3 {
    font-size: 5vw;
    line-height: 7vw;
    margin-bottom: 10vw;
  }
  #profileCont .imgTextCont {
    top: -25vh;
    width: 92%;
    left: 4%;
    right: 0;
    font-size: 5vw;
    line-height: 7vw;
  }
  #profileCont .imgTextCont::before {
    font-size: 6vw;
  }
  #profileCont .imgTextCont::after {
    font-size: 6vw
  }
  #profileCont #aboutMeCont {
    width: 100%;
    margin-top: 5vh;
    left: 0;
  }
  #page6 #projectWrapper h1 {
    font-weight: bolder;
  }
	#profileCont #aboutMeCont .aboutMeTextCont{ display: block;}
  #profileCont #aboutMeCont .aboutMeTextCont h4 {
    padding: 2vw;
	  width: 100%;
	  font-size: 5vw;
	  font-weight:900;
  }
  #profileCont #aboutMeCont .aboutMeTextCont p {
    padding: 2vw;
	  
	  width: 100%;
	  font-size: 4vw;
	  
  }
  #page5 {
    min-height: 85vh;
  }
  #page5 .techSkills {
    display: none;
  }
  #page5 #techSkillsMob {
    display: block;
    padding-top: 5vh;
  }
  #page5 #techSkillsMob ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
  }
  #page5 #techSkillsMob ul li {
    width: fit-content;
    font-size: 1.5em;
    margin: 1% 3%;
    -webkit-text-stroke: 1px orange;
    display: inline-block;
    color: transparent;
    text-transform: uppercase;
  }
  #page5 #techSkillsMob ul li:nth-child(odd) {
    -webkit-text-stroke: 1px #3F7DF4;
  }
  #page5 #techSkillsMob ul li:nth-child(3n+0) {
    -webkit-text-stroke: 1px #fff;
  }
  #page5 #page5HeadingCont h1 {
    display: block;
    font-weight: bolder;
    text-align: right;
  }
  #contactUsPage {
    width: 94%;
    margin: auto;
    padding-top: 11vh;
    padding-bottom: 11vh;
  }
  #contactUsPage #contactCont .formCont {
    width: 100%;
    left: 0;
    margin-right: 0;
  }
  #contactUsPage #contactCont h1 {
    display: block;
    font-weight: bolder;
  }
  .site-content {
    width: 97%;
  }
  .project {
    width: 100%;
    padding: 45px 15px;
  }
	.project__category{ font-size:2.5vw;}
  .project__category a {
    font-size: 2.5vw;
  }
  .project__title {
    font-size: 5vw;
  }
  .project:hover .project__detail {
    border-width: 6px;
  }
  .projectTitle {
    font-size: 4vw;
  }
  .contactUsFooter {
    width: 100%;
    display: block;
    margin: 0;
  }
  .contactUsFooter ul {
    width: 80%;
    display: block;
    padding-bottom: 5vh;
    margin: 10vh auto;
    border-bottom: 1px solid #fff;
  }
  .contactUsFooter .margin3 {
    display: none;
  }
  .contactUsFooter ul li i {
    font-size: 12vw;
    font-weight: 100;
  }
  #contactUsPage #contactCont .animatedLine {
    margin-left: 0px;
  }
  #page5 #page5HeadingCont .animatedLine {
    margin-left: 0px;
  }
  #page6 #projectWrapper .animatedLine {
    margin-left: 0px;
  }
  #profileCont .animatedLine {
    margin-left: 0px;
  }
  #contactUsPage #contactCont {
    height: 140vh;
  }
	.contactUsFooter ul li a i{font-size: 1.5em;}
}
/*600px mobile css ends here*/


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	/*#page1{background-color: grey;}*/
}
