@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.main-nav {
  background-color: white;
}
.main-nav nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
}
@media only screen and (max-width: 600px) {
  .main-nav nav .left-nav {
    display: none;
  }
}
.main-nav nav .left-nav .nav-options {
  display: flex;
  gap: 35px;
}
.main-nav nav .left-nav .nav-options a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: ease-in-out 0.25s;
}
.main-nav nav .left-nav .nav-options a:after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: rgb(100, 145, 222);
  transition: ease-in-out 0.25s;
}
.main-nav nav .left-nav .nav-options a:hover:after {
  width: 100%;
}
.main-nav nav .right-nav .resume-button {
  border: none;
  padding: 8px 30px;
  color: white;
  background-color: rgb(10, 25, 48);
  transition: ease-in-out 0.25s;
}
.main-nav nav .right-nav .resume-button:hover {
  background-color: rgb(91, 173, 170);
}
.main-nav .burger-container {
  display: none;
  height: 25px;
  width: 25px;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .main-nav .burger-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.main-nav .burger-container .burger-line {
  display: block;
  border-radius: 10px;
  height: 3px;
  width: 100%;
  background-color: rgb(10, 25, 48);
  transition: ease-in-out 0.25s;
}
.main-nav .burger-container.active .top {
  transform: translateY(11px) rotate(45deg);
}
.main-nav .burger-container.active .middle {
  opacity: 0;
  transform: translateX(-15px);
}
.main-nav .burger-container.active .bottom {
  transform: translateY(-11px) rotate(-45deg);
}
.main-nav .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 30%;
  right: 20px;
  z-index: 1000;
  padding: 10px 5px;
  background-color: white;
  border-radius: 15px;
}
.main-nav .social-links .social-bubble {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(10, 25, 48);
  transition: ease-in-out 0.25s;
  border-radius: 100%;
  height: 54px;
  width: 54px;
}
@media only screen and (max-width: 600px) {
  .main-nav .social-links .social-bubble {
    width: 40px;
    height: 40px;
  }
}
.main-nav .social-links .social-bubble:hover {
  background-color: rgb(91, 173, 170);
  transform: scale(0.85);
}
.main-nav .social-links .social-bubble i {
  color: white;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.site-footer {
  background-color: white;
  padding-block: 25px;
}
.site-footer .site-by {
  font-weight: 300;
  margin-left: auto;
  margin-bottom: 0;
  text-align: right;
  font-weight: 500;
}
.site-footer .site-by a {
  text-decoration: underline;
  font-weight: 700;
  color: black;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.intro-banner-component {
  background-color: rgb(91, 173, 170);
  padding-block: 50px;
}
.intro-banner-component .intro-banner {
  background-color: rgb(10, 25, 48);
  padding-block: 50px;
}
.intro-banner-component .intro-banner .content-container {
  display: flex;
  align-items: center;
  gap: 15%;
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .intro-banner-component .intro-banner .content-container {
    flex-direction: column-reverse;
  }
}
.intro-banner-component .intro-banner .content-container .text-block .intro-greeting {
  font-size: 27px;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container .text-block .intro-greeting {
    font-size: 22px;
  }
}
.intro-banner-component .intro-banner .content-container .text-block .intro-name {
  font-size: 50px;
  color: rgb(91, 173, 170);
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container .text-block .intro-name {
    font-size: 38px;
  }
}
.intro-banner-component .intro-banner .content-container .text-block .job-title {
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container .text-block .job-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .intro-banner-component .intro-banner .content-container .text-block .job-title {
    margin-bottom: 30px;
  }
}
.intro-banner-component .intro-banner .content-container .text-block .intro-summary {
  color: white;
  line-height: 1.2;
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container .text-block .intro-summary {
    line-height: normal;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .intro-banner-component .intro-banner .content-container .text-block .intro-summary {
    line-height: normal;
  }
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container .image-block {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .intro-banner-component .intro-banner .content-container .image-block {
    margin-bottom: 50px;
  }
}
.intro-banner-component .intro-banner .content-container .image-block .image-container {
  height: 400px;
  width: 400px;
  border-radius: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .intro-banner-component .intro-banner .content-container .image-block .image-container {
    height: 200px;
    width: 200px;
  }
}
.intro-banner-component .intro-banner .content-container .image-block .image-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.welcome-strip-component {
  padding-block: 75px;
}
.welcome-strip-component .welcome-strip .strip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome-strip-component .welcome-strip .strip-container .section-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 50px;
}
.welcome-strip-component .welcome-strip .strip-container .strip-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 600px) {
  .welcome-strip-component .welcome-strip .strip-container .strip-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .welcome-strip-component .welcome-strip .strip-container .strip-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link {
  max-width: 20%;
}
@media only screen and (max-width: 600px) {
  .welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link {
    max-width: 100%;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link {
    max-width: 100%;
  }
}
.welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-inline: auto;
  border: 1px solid rgb(232, 232, 232);
  border-radius: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link .icon-container {
    width: 55px;
    height: 55px;
  }
}
.welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link .icon-container i {
  font-size: 24px;
  color: rgb(91, 173, 170);
}
@media only screen and (max-width: 600px) {
  .welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link .icon-container i {
    font-size: 18px;
  }
}
.welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link .text-content .text-title {
  font-size: 22px;
  color: black;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.welcome-strip-component .welcome-strip .strip-container .strip-links .strip-link .text-content .text-summary {
  color: rgb(91, 173, 170);
  font-size: 14px;
  text-align: center;
  line-height: 1;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.about-me-component {
  padding-block: 75px;
  background-color: rgb(10, 25, 48);
}
.about-me-component .about-me .main-about-me {
  display: flex;
  gap: 50px;
  padding-block: 50px;
  background-color: white;
  padding-inline: 5%;
}
.about-me-component .about-me .main-about-me .image-container {
  width: 400px;
}
@media only screen and (max-width: 600px) {
  .about-me-component .about-me .main-about-me .image-container {
    display: none;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .about-me-component .about-me .main-about-me .image-container {
    display: none;
  }
}
.about-me-component .about-me .main-about-me .image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-me-component .about-me .main-about-me .text-container {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  flex-grow: 1;
}
@media only screen and (max-width: 600px) {
  .about-me-component .about-me .main-about-me .text-container {
    padding-top: 0;
  }
}
.about-me-component .about-me .main-about-me .text-container .tabs-component {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options {
  display: flex;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab {
  padding: 8px 10px;
  text-align: center;
  flex-grow: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  transition: ease-in-out 0.25s;
  cursor: pointer;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab.tab-1 {
  color: rgb(91, 173, 170);
  background-color: rgb(10, 25, 48);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab.tab-1:hover {
  background-color: #132f5a;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab.tab-2 {
  color: white;
  background-color: rgb(91, 173, 170);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab.tab-2:hover {
  background-color: #7dbebc;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab.tab-3 {
  color: rgb(10, 25, 48);
  background-color: white;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-options .tab.tab-3:hover {
  background-color: #e6e6e6;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container {
  height: 100%;
  max-height: 100%;
  width: 100%;
  background-color: rgb(10, 25, 48);
  position: relative;
}
@media only screen and (max-width: 600px) {
  .about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container {
    background-color: transparent;
    height: 300px;
    max-height: 350px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container {
    height: 300px;
  }
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  padding: 15px;
  transition: ease-in-out 0.25s;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.active {
  opacity: 1;
  z-index: 10;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-1 {
  background-color: rgb(10, 25, 48);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-1 .my-story {
  padding-block: 15px;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-1 .my-story p {
  color: white;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 {
  background-color: rgb(91, 173, 170);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: white;
  padding: 8px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: ease-in-out 0.25s;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block:hover {
  transform: scale(1.1);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block .image-container {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  overflow: hidden;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block .image-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block .qualification-details .degree-title {
  color: rgb(10, 25, 48);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block .qualification-details .organisation-title {
  font-size: 15px;
  color: rgb(91, 173, 170);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-2 .qualification-blocks .qualification-block .qualification-details .details p {
  color: #b3b3b3;
  font-size: 12px;
  margin: 0;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-3 {
  background-color: white;
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-3 .hobbies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media only screen and (max-width: 600px) {
  .about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-3 .hobbies-grid {
    grid-template-columns: 1fr;
  }
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-3 .hobbies-grid .hobby {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.about-me-component .about-me .main-about-me .text-container .tabs-component .tab-content-container .tab-block.block-3 .hobbies-grid .hobby .hobby-text {
  margin: 0;
  font-weight: 700;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.experience-component .experience {
  padding-block: 75px;
}
.experience-component .experience .experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
@media only screen and (max-width: 600px) {
  .experience-component .experience .experience-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .experience-component .experience .experience-grid {
    grid-template-columns: 1fr;
  }
}
.experience-component .experience .experience-grid .grid-card {
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .experience-component .experience .experience-grid .grid-card {
    display: flex;
  }
}
.experience-component .experience .experience-grid .grid-card:hover img {
  transform: scale(1.2);
}
.experience-component .experience .experience-grid .grid-card .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .experience-component .experience .experience-grid .grid-card .image-container {
    height: 200px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .experience-component .experience .experience-grid .grid-card .image-container {
    height: auto;
    width: 40%;
  }
}
.experience-component .experience .experience-grid .grid-card .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: ease-in-out 0.25s;
}
.experience-component .experience .experience-grid .grid-card .image-container .black-tint {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.experience-component .experience .experience-grid .grid-card .card-content {
  padding: 15px;
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .experience-component .experience .experience-grid .grid-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }
}
.experience-component .experience .experience-grid .grid-card .card-content .company-name {
  font-size: 22px;
  color: rgb(10, 25, 48);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}
.experience-component .experience .experience-grid .grid-card .card-content .job-title {
  font-size: 18px;
  color: rgb(91, 173, 170);
  margin-bottom: 20px;
}
.experience-component .experience .experience-grid .grid-card .card-content .job-detail {
  font-size: 14px;
  font-weight: 400;
  color: #b3b3b3;
  margin: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.skills-component {
  padding-block: 75px;
  background-color: #f8f9fa;
}
.skills-component .container {
  text-align: center;
}
.skills-component .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: rgb(10, 25, 48);
}
.skills-component .section-title span {
  color: rgb(91, 173, 170);
}
.skills-component .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 20px;
}
@media only screen and (max-width: 600px) {
  .skills-component .skills-grid {
    grid-template-columns: 1fr;
  }
}
.skills-component .skills-grid .skill-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.skills-component .skills-grid .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}
.skills-component .skills-grid .skill-card.alt-1 {
  border-left: 6px solid rgb(10, 25, 48);
}
.skills-component .skills-grid .skill-card.alt-2 {
  border-left: 6px solid rgb(91, 173, 170);
}
.skills-component .skills-grid .skill-card .skill-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: rgb(10, 25, 48);
}
.skills-component .skills-grid .skill-card .skill-summary {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}
.skills-component .skills-grid .skill-card .ordered {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 14px;
  color: #666;
}
.skills-component .skills-grid .skill-card .ordered li {
  margin-bottom: 8px;
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .skills-component .skills-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.contact-component {
  padding-block: 75px;
  background-color: rgb(10, 25, 48);
}
.contact-component .contact .contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 600px) {
  .contact-component .contact .contact-container {
    flex-direction: column;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .contact-component .contact .contact-container {
    flex-direction: column;
  }
}
.contact-component .contact .contact-container .message-container {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  .contact-component .contact .contact-container .message-container {
    width: auto;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  .contact-component .contact .contact-container .message-container {
    width: auto;
  }
}
.contact-component .contact .contact-container .message-container .message-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .contact-component .contact .contact-container .message-container .message-title {
    font-size: 30px;
  }
}
.contact-component .contact .contact-container .message-container .work-hours {
  font-size: 24px;
  color: rgb(91, 173, 170);
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .contact-component .contact .contact-container .message-container .work-hours {
    font-size: 15px;
  }
}
.contact-component .contact .contact-container .message-container .message-text {
  color: white;
  text-align: center;
}
.contact-component .contact .contact-container .contact-options-container {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 600px) {
  .contact-component .contact .contact-container .contact-options-container {
    width: 100%;
    flex-direction: column;
  }
}
.contact-component .contact .contact-container .contact-options-container .contact-option {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.25);
  padding: 25px 50px;
  transition: ease-in-out 0.25s;
}
@media only screen and (max-width: 600px) {
  .contact-component .contact .contact-container .contact-options-container .contact-option {
    padding: 15px 30px;
    text-align: center;
  }
}
.contact-component .contact .contact-container .contact-options-container .contact-option:hover {
  background-color: rgb(91, 173, 170);
}
.contact-component .contact .contact-container .contact-options-container .contact-option:hover .option-text {
  color: white;
  transform: scale(1.2);
}
.contact-component .contact .contact-container .contact-options-container .contact-option .option-text {
  color: rgb(10, 25, 48);
  font-weight: 700;
  margin: 0;
  transition: ease-in-out 0.25s;
}

p {
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  p {
    font-size: 13px;
  }
}

a {
  text-decoration: none;
}

.section-title {
  color: rgb(10, 25, 48);
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 36px;
  }
}
.section-title span {
  color: rgb(91, 173, 170);
}

.burger-menu {
  display: none;
  background-color: rgb(10, 25, 48);
}
.burger-menu .burger-item {
  color: white;
  display: block;
  border-bottom: 1px solid rgb(232, 232, 232);
  padding: 10px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */