/* Resetting CSS */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --page-bg-color: #fff;
  --icon-color: #373737;
  --hover-color: #505050;
}

html,
body {
  background-color: var(--page-bg-color);
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 56.25em) {
  html,
  body {
    font-size: 55%;
  }
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 6rem 2rem;
}
@media only screen and (max-width: 50em) {
  .container {
    padding: 2rem;
  }
}

.main {
  display: flex;
  flex-direction: column;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about__education {
  margin-top: 2rem;
  margin-right: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .about__education {
    margin: 0;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
}
.about__text__contact {
  align-self: start;
}
@media only screen and (max-width: 56.25em) {
  .about {
    grid-template-columns: 2fr 1fr;
  }
}
@media only screen and (max-width: 50em) {
  .about {
    grid-template-columns: none;
  }
}

.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  padding-top: 6rem;
}
.brands img {
  width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 56.25em) {
  .brands {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 50em) {
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
}

.title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 1rem 0;
}
.title__name {
  margin-bottom: 2rem;
}

.paragraph {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__contact--email, .about__contact--phone {
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.about__contact--email:hover, .about__contact--phone:hover {
  color: var(--hover-color);
}

.about__photo img {
  object-fit: contain;
  width: 100%;
  border-radius: 5px;
}
@media only screen and (max-width: 50em) {
  .about__photo img {
    margin: 0 auto;
    width: 50%;
  }
}
.about__contact-socialicons {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  margin-left: -10px;
}

.icon {
  height: 4rem;
  width: 4rem;
  fill: var(--icon-color);
  transition: all 0.2s;
}
.icon:hover {
  fill: var(--hover-color);
}

/*# sourceMappingURL=styles.comp.css.map */
