/* Reset stylesheet */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
    overflow-x:hidden;
    background-color: #ffffff;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    background:transparent;
    color: #353535;
}


ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    height:1px;
    border:0;
    border-top:1px solid rgba(42, 103, 138, 0.15);
    margin-top: 50px;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* --------- */

/* General */
*{
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  margin: 0 auto;
}
p{
  font-size:16px;
  font-weight: 300;
  line-height: 24px;
  color: #2A678A;
}
h1{
  font-size: 60px;
  font-weight:700;
  color: #2A678A;
  letter-spacing: -0.025em;
}
h2{
  font-size: 60px;
  font-weight:700;
  color: #2A678A;
  letter-spacing: -0.025em;
}
h3{
  font-size: 60px;
  font-weight:700;
  color: #2A678A;
  letter-spacing: -0.035em;
}
.max-width{
  width: 1170px;
  background-color: #ffffff;
  margin: 0 auto;
}

span{
  font-weight: 300;
  color: #2A678A;
  opacity: .5;
  letter-spacing: -0.05em;
}
hr{
  display: none;
}
/* End General */

/* Hero section */
.hero{
  position:relative;
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
}
.hero-content{
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 35%;
}
#scroll-down {
  width: 100px;
  position: absolute;
  text-align: center;
  bottom: 15%;
  left:50%;
  right: 50%;
  margin-left: -3%;
}

#scroll-down p {
  position: absolute;
  padding-top: 55px;
}
#scroll-down p span {
  position: absolute;
  top: 0;
  width: 30px;
  height: 50px;
  margin-left: 5px;
  border: 2px solid #2A678A;
  border-radius: 50px;
  box-sizing: border-box;
  opacity: 1;
}
#scroll-down p span::before {
  position: absolute;
  top: 10px;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #2A678A;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* End Hero */

/* Content sections */
.section-wrapper{
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 150px;
}
.section-image{
  display: inline-block;
  width: 40%;
  height: 350px;
}

.section-image-right{
  display: inline-block;
  width: 40%;
  height: 350px;
}
.section-content{
  display:inline-block;
  width: 55%;
}
.section-content-left{
  display:inline-block;
  width: 55%;
}
.section-content p{
  margin-top: 20px;
}
.section-content-left p{
  margin-top: 20px;
}

#ux-designer{
  width: 90%;
  height: 100%;
  background-image: url("../images/ux-designer-1.svg");
  background-repeat:no-repeat;
  background-size: 351px 350px;
  background-position: right;
  transition: background-image 800ms ease-in-out;
}
#ux-designer:hover{
  background-image: url("../images/ux-designer-2.svg");
}

#web-developer{
  width: 100%;
  height: 100%;
  background-image: url("../images/web-developer.svg");
  background-repeat:no-repeat;
  background-size: contain;
  background-position: center;
  transition: background-image 800ms ease-in-out;
}
#web-developer:hover{
  background-image: url("../images/web-developer-2.svg");
}
#data-analyst{
  width: 100%;
  height: 100%;
  background-image: url("../images/data-1.svg");
  background-repeat:no-repeat;
  background-size: contain;
  background-position: center;
  transition: background-image 800ms ease-in-out;
}
#data-analyst:hover{
  background-image: url("../images/data-2.svg");
}
#seo{
  width: 100%;
  height: 100%;
  background-image: url("../images/seo.svg");
  background-repeat:no-repeat;
  background-size: contain;
  background-position: center;
  transition: background-image 800ms ease-in-out;
}
#seo:hover{
  background-image: url("../images/seo-2.svg");
}
/* End content sections */

/* Portfolio wrapper */
.portfolio-wrapper{
  text-align: center;
  margin-top: 150px;
}
.sm-wrapper{
  width: 495px;
  margin: 80px auto;
}
.sm-item{
  display: inline-block;
  width: 100px;
  margin-left: 10px;
  margin-right: 10px;
  opacity: .7;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: opacity 800ms , transform .2s ease-in-out;
}
.sm-item:hover{
  -webkit-transform: rotate(5deg) scale(1.20) ;
          transform: rotate(5deg) scale(1.20);
  opacity: 1;
}
/* End portfolio wrapper */

/* Contact form */
.contact-form-wrapper{
  width: 1170px;
  height: 630px;
  border: 1px solid rgba(42, 103, 138, 0.25);
  margin: 150px auto;
  padding-bottom: 20px;
  text-align: center;
}
.contact-form-wrapper h3{
  display: block;
  margin-top: 80px;
}
.contact-form{
  width: 820px;
  margin: 50px auto;
  text-align: left;
}
input[type=text], select {
  width: 100%;
  padding: 12px;
  border: 1px solid #2A678A;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #2A678A;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 12px;
  border: 1px solid #2A678A;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #2A678A;
  resize: vertical;
}

input[type=submit] {
  background-color: #2A678A;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  padding: 12px 20px;
  margin-top: 0px;
  cursor: pointer;
  border: none;
}

/* End contact form */

/* Responsive styling */
@media only screen and (min-width: 1920px){
#scroll-down{
  bottom: 10%;
}
}
@media only screen and (max-width: 1025px){
  hr{
    display: block;
  }
.max-width{
  width: 90%;
  margin: 0 auto;
}
.section-wrapper{
  margin-top: 50px;
  text-align: center;
}
.section-image{
  display: block;
  width: 100%;
}
.section-content{
  display: block;
  width: 100%;
  margin-top:50px;
}
.section-image-right{
  display: block;
  width: 100%;
  margin-top: 50px;
}
.section-content-left{
  display: block;
  width: 100%;
  margin-top:50px;
}
.no-top-margin{
  margin-top: 10px;
}
.hero{
  height: 98vh;
}
#ux-designer{
  width: 100%;
  background-image: url("../images/ux-designer-2.svg");
  background-size: contain;
  background-position: center;
  transition: none;
}
#web-developer{
  background-image: url("../images/web-developer-2.svg");
  transition: none;
}
#data-analyst{
  background-image: url("../images/data-2.svg");
  transition: none;
}
#seo{
  background-image: url("../images/seo-2.svg");
  transition: none;
}
.contact-form-wrapper{
  width: 100%;
  margin: 20px auto;
}
.contact-form{
  width: 90%;
}
}
@media only screen and (max-width: 768px){
h1{
  font-size: 40px;
  line-height: 46px;
}
h2{
  font-size: 40px;
  line-height: 46px;
}
h3{
  font-size: 40px;
  line-height: 46px;
}
p{
  font-size: 14px;
}
.hero{
  height: 87vh;
}
.hero-content{
  top: 30%;
}
#scroll-down{
  margin-left: -7%;
}
.portfolio-wrapper{
  margin-top: 70px;
}
.section-image-right{
  width: 70%;
  margin: 0 auto;
}
.section-image{
  width: 70%;
  margin: 0 auto;
}
.section-content{
  margin-top: 20px;
}
.section-content{
  margin-top: 20px;
}
.no-top-margin{
  margin-top: 0px;
}
#ux-designer{
  width: 100%;
  margin: 0 auto;
}
#web-developer{
  width: 100%;
  margin: 0 auto;
}
#data-analyst{
  width: 100%;
  margin: 0 auto;
}
#seo{
  width: 100%;
  margin: 0 auto;
}
.sm-wrapper{
  width: 100%;
  margin-top: 10px;
}
.sm-item{
  width: 50px;
  margin-left: 2px;
  margin-right: 2px;
}
}
/* End responsive styling */
