:root {
  --primary-color: #071A52; /*RGB: rgb(7, 26, 82) */
  --secondary-color: #086972; /*RGB: rgb(8, 105, 114) */
  --tertiary-color: #17B978; /*RGB: rgb(23, 185, 120)*/
  --error-color: #A7FF83; /*RGB: rgb(167, 255, 131)*/
}

footer {
  height: 30px;
}

.font-primary {
  color: var(--primary-color);
  /* RGB- rgb(150, 206, 180) */
}

.font-secondary {
  color: var(--secondary-color);
  /* RGB- rgb(255, 238, 173) */
}

.font-tertiary {
  color: var(--tertiary-color);
  /* RGB- rgb(217, 83, 79) */
}

.font-error {
  color: var(--error-color);
  /* RGB- rgb(255, 173, 96) */
}

.background-primary {
  background-color: var(--primary-color);
  /* RGB- rgb(150, 206, 180) */
}

.background-secondary {
  background-color: var(--secondary-color);
  /* RGB- rgb(255, 238, 173) */
}

.background-tertiary {
  background-color: var(--tertiary-color);
  /* RGB- rgb(217, 83, 79) */
}

.background-error {
  background-color: var(--error-color);
  /* RGB- rgb(255, 173, 96) */
}

.centered-text {
  text-align: center;
}

.full-height {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
}

.full-screen-container {
    background: rgb(0,41,161);
    background: radial-gradient(circle, rgba(0,41,161,1) 15%, rgba(213,96,0,1) 59%, rgba(237,119,0,0.6842087176667542) 91%);
    height: 100vh;
}

.leading-section {
  padding: 0 0 30px 0;
}

.leading-section-title {
  color: #fff;
  font-size: 3em;
  
}

.about, .blog, .contact {
  padding: 100px 0;
}

.about {
  color: #fff;
}

.about-text {
  color: #fff;
}

.about-description h1{
  font-size: 2em;
}

.about-description p{
  font-size: 1em;
}

.contact-form label {
  color: #fff;
  margin-top: 10px;
}

.contact-description h1 {

}

.contact-description {
  padding: 20px 0;
} 

.contact-description p {
  color: #fff;
  font-size: 1em;
  margin-top: 3px;
}



  /*
    Menu  
  */
  .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--tertiary-color);
    color: #fff;
    width: 100%;
  }

  .nav-menu a{
    color: #fff;
  }

  .menu-icon {
     font-size: 32px;
  }

  .menu-items {
    display: flex;
    gap: 1em;
    font-size: 15px;
  }

  .menu-items li:hover {
    background-color: #000;
    border-radius: 5px;
    color: #000;
    transition: 0.3s ease;
  }

  .menu-items li {
    padding: 5px 14px;
  }
  /* Menu end */

.intro {
  height: 80vh;
  min-height: 80vh;
  max-height: 80vh;
  background-image: url("../img/banner.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:inset 0 0 0 2000px rgba(7, 26, 82, 0.5);
  padding: 15% 0 0 0;
}

.main-content {
}

.banner-title {
  font-size: 4em;
  color: #fff;
  position: relative;
}

.banner-title:after {
    content: '';

    width: 80%;
    position: absolute;
    left: -10%;
    bottom: 1px;

    border-width: 0 0 1px;
    border-style: solid;
    text-align: center;
}

.btn-container {
  
}

.banner-btn {
  margin: 20px 0 0 0;
}

.leading-title {
    font-size: 4em;
}

#contact-form input, #contact-form textarea {
  width: 100%;
}

/*
Modal
*/
.md-modal {
  margin: auto;
	position: fixed;
	top: 100px;
	left: 0;
  right: 0;
  bottom: 0;
	width: 100%;
	/*max-width: 630px;
	min-width: 320px;*/
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
  overflow-y: scroll;
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
  bottom: 0;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(#fff, 0.1);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

.md-effect-12 .md-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-12 ~ .md-overlay {
	background-color: #fff;
} 

.md-effect-12 .md-content h3,
.md-effect-12 .md-content {
	background: transparent;
}

.md-show.md-effect-12 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}


.close-btn {
  float: right;
}

.close-btn button {
  border: none;
  padding: 3px 5px;
}

.close-btn button:hover {
  border: 1px solid var(--primary-color);
  padding: 3px 5px;
}

.resume-profile {
  background-image: url("../img/resume-profile.jpg");
  background-clip: padding-box;
  background-size: cover;
  background-position: center center;
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.resume-header h1{
  font-size: 2.5em;
}

.resume-header h2{
  font-size: 1.2em;
  margin-top: 1px;
}

.resume-body {
  margin-top: 50px;
}

.resume-body p {
  font-size: .9em;
}

.resume-about h1, .resume-experience h1, .resume-education h1, .resume-skills h1, .resume-languages h1 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.resume-experience h2, .resume-education h2 {
 font-size: .9em;
 margin-bottom: 5px;
}

.resume-experience h2 span, .resume-education h2 span {
  font-weight: bold;
}

.resume-experience h3, .resume-education h3 {
  font-size: .9em;
}

.skill-list {
  list-style-type: disc;
  line-height: .8em;
  margin-left: 6%;
  font-size: .9em;
}