/*********** RESET ************/

*, ::after, ::before{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #75d8fb;
  display: inline-block;
  margin-right: 20px;
}

ul,ol{
	list-style: '▸ ';
}

button:active, input[type=submit]:active,
input:focus, textarea:focus{
    outline: 1px solid;
}



html{
    scroll-behavior: smooth;
}


/*********** PREVENT BLUE COLOR ON MOBILE TAP ************/

* {
    -webkit-tap-highlight-color: transparent;
}
*:focus {
    outline: none !important;
}

/*********** PREVENT INPUT DEFAULT DISPLAY ON IOS ************/

input[type='text']{
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*********** KEEP SIMILAR FONT IN INPUTS AND TEXTAREAS ************/
input, textarea{
    font-family: unset;
}

button{
	border: none;
	background: none;
    cursor: pointer;
}
/*********** SELECTION ************/
*::selection{
    background: var(--primary);
    color: var(--navitem-bg);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 40px;
  color: #222;
}

.resume {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  line-height: 1.6;
}

.header {
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: 32px;
}

h2 {
  margin: 4px 0 12px;
  font-size: 18px;
  color: #222;
}
h3{
    color: #366091;
}
/* h4{
    color: #4f81bd;
} */
h5{
    color: #4f81bd;
}

.location,
.contact {
  font-size: 14px;
}

.contact span {
  display: inline-block;
  margin-right: 16px;
}

section {
  margin-bottom: 28px;
}

h3 {
  font-size: 20px;
}

.mb{
    margin-bottom: 16px;
}

h4 {
  font-size: 16px;
}

/* h4 span {
  font-weight: normal;
  color: #555;
  font-size: 14px;
} */

h5 {
  font-size: 15px;
}

/* h5 span {
  opacity: .5;
} */

ul {
  padding-left: 20px;
  margin: 8px 0;
}

li {
  margin-bottom: 6px;
}

.project {
  margin-bottom: 16px;
}

.skills p {
  margin: 6px 0;
}

.isolate, .isolate2{
  padding: 20px;
  border: 1px solid #C4C4C4;
  margin-bottom: 10px;
}
.isolate2{
  background: #F5F5F5;
}

.header .isolate{
  background: #254365;
  color: #F1F1F1;
}
span, strong{
  display: inline-block;
}
strong{
  margin-right: 4px;
}
.separator{
  padding: 0 2px;
}

@media screen and (max-width:992px) {
  body {
    padding: 0;
  }

  .resume {
    padding: 30px;
    max-width: unset;
  }
}

@media screen and (max-width:700px) {
  .isolate, .isolate2{
    padding: 10px 0px;
    border: none;
    border-top: 1px solid;
    background: none;
  }
  .header .isolate{
    padding: 10px;
  }
  h4, h5, .location, .contact, .skill-domain{
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .separator{
    display: none;
  }
  .project-name{
    margin-top: 12px;
  }
  .period{
    opacity: .5;
    color: #222;
  }
}
@media screen and (max-width:480px) {
  .resume{
    padding: 30px 12px;
  }
}



@media print {
  body {
    background: #fff;
    padding: 0;
  }

  .resume {
    padding: 0;
  }
}
