@import url(./fonts.css);

/* Navigation*/
.header_area .main_menu .navbar .navbar-brand {
  padding: 0 2rem 0 5rem;
}

.header_area .main_menu .navbar {
  padding: 1rem 8rem;
}

.header_area .main_menu .nav-item .nav-link {
  font-family: "Roboto";
  font-weight: 800;
  padding: 1, 7rem;
  color: snow;
}

.header_area .main_menu .navbar-nav .active a {
  background: skyblue;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header_area .main_menu .navbar-nav a:hover {
  background: skyblue;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar_fixed {
  position: fixed;
  width: 100%;
  top: -1px;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: var(--box-shadow);
  z-index: 999;
  transition: background 0.5s ease;
}

/* Banner Area */
.site-main .site-banner .site-tittle h1 {
  padding-top: 35%;
  font-size: 4rem;
}

.site-main .site-banner .site-tittle h4 {
  font-size: 1.5rem;
}

.site-main .site-banner .banner-image>img {
  padding: 7rem 0;
  width: 90rem;
  border-radius: 50%;
}

.tittle-text {
  font: normal bold 50px/ 72px "Roboto";
}

.button {
  padding: 0.8rem 2.2rem;
  font: normal 500 16px/20px "Roboto";
  position: relative;
  border: 3px solid transparent;
  border-radius: 4px;
}

.button.primary-button,
.secondary-button {
  background: rgb(64, 157, 214);
  background-clip: border-box;
  color: snow;
  box-shadow: steelblue;
}

.button.primary-button:hover,
.secondary-button:hover {
  background: rgb(75, 77, 184);
  background-clip: border-box;
  color: snow;
  box-shadow: rgb(90, 52, 133);
}

/* About Area */

.site-main .about-area {
  padding: 9rem 7rem;
}

.site-main .about-area .about-tittle h2>span {
  font: normal bold 49px/60px "Roboto";
}

.site-main .about-area .about-tittle .paragraph>p {
  padding: 0.4rem 0;
}

p.para {
  font-size: 14px;
  line-height: 1.5;
  font: normal 500 23px/35px "Roboto";
}


.carousel-control:hover,
.carousel-control:focus {
  color: #999;
}

.carousel {
  height: 380px;
}

.site-main .about-area .about-tittle p {
  padding: 1rem 7rem;
}

/*Footer contact me section */
footer {
  padding-top: 30px;
  background-color: #292c2f;
  color: #bbb;
  font-family: "Roboto";
}

input[type="text"],
select,
textarea {
  width: 100%;
  /* Full width */
  padding: 12px;
  /* Some padding */
  border: 1px solid #ccc;
  /* Gray border */
  border-radius: 4px;
  /* Rounded borders */
  box-sizing: border-box;
  /* Make sure that padding and width stays in place */
  margin-top: 6px;
  /* Add a top margin */
  margin-bottom: 16px;
  /* Bottom margin */
  resize: vertical;
  /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type="submit"] {
  background-color: steelblue;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type="submit"]:hover {
  background-color: rgb(75, 77, 184);
}

/* Add a background color and some padding around the form */
.container-mail {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.fa-github {
  color: silver;
  padding: 6px;
  cursor: pointer;
  font-size: 40px;
}

.fa-github:hover {
  color: white;
  padding: 6px;
  cursor: pointer;
  font-size: 40px;
}

.fa-linkedin {
  color: steelblue;
  padding: 6px;
  cursor: pointer;
  font-size: 40px;
}

.fa-linkedin:hover {
  color: rgb(150, 196, 233);
  padding: 6px;
  cursor: pointer;
  font-size: 40px;
}

.filters {
  margin-left: 20px;
}

#filter {
  width: 200px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px;
  font-size: 12px;
  margin-left: 20px;
}

.certification-list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -10px;
}

.certification {
  flex: 0 0 calc(50% - 20px);
  margin: 10px;
  text-align: center;
}

/* Make the certifications look good on small screens */
@media (max-width: 768px) {
  .certification {
    flex: 0 0 calc(100% - 20px);
  }
}

.certification img {
  width: 100%;
  height: auto;
}

.certification h2 {
  font-size: 24px;
  margin: 20px 0;
}

.certification p {
  font-size: 14px;
  color: #777;
  margin: 0;
}