

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  margin: 0;

  color: #101c2c;
  background-color: #edf5fd;

  font-family: Arial, Helvetica, sans-serif;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.extra {
  width: min(1100px, 92%);
  min-height: 96px;

  display: flex;
  align-items: center;
  gap: 22px;

  margin: 30px auto;
  padding: 16px 28px;

  color: white;
  background-color: #0d1d2d;

  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(13, 29, 45, 0.15);
}

.extra_icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  color: #05bdf4;
  border: 1px solid #078bea;
  border-radius: 50%;
}

.extra_icon svg {
  width: 28px;
  height: 28px;
}

.extra_content {
  flex: 1;
}

.extra_help_text {
  margin: 0 0 7px;
  padding: 0;

  color: white;
  font-size: 21px;
}

.extra_help_p_text {
  margin: 0;
  padding: 0;

  color: #d8e7f5;
  font-size: 15px;
}

.contact_button {
  display: inline-block;
  flex-shrink: 0;

  margin: 0;
  padding: 13px 24px;

  color: white;
  background-color: #078bea;

  border: none;
  border-radius: 6px;

  font-size: 15px;
  font-weight: 600;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.contact_button:hover {
  background-color: #05bdf4;
  transform: translateY(-2px);
}
/* HEADER */

.header {
  width: 100%;

  color: white;
  background-color: #0d1a28;
}

.header_content {
  width: 88%;
  max-width: 1360px;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 0 auto;
}

.logo {
  color: white;
  font-size: 30px;
  font-weight: 700;
}

.nav_bar {
  display: flex;
  align-items: center;
  gap: 46px;
}

.nav_bar a {
  color: white;
  font-size: 16px;
}

.nav_bar a:hover {
  color: #05bdf4;
}

.talk_button {
  padding: 10px 25px;

  color: #05c7f7 !important;

  border: 1px solid #05c7f7;
  border-radius: 5px;
}

.talk_button:hover {
  color: #0d1a28 !important;
  background-color: #05c7f7;
}



.services_text_title {
  margin: 35px 0 0;

  text-align: center;

  font-size: 50px;
}

.services_site_description {
  margin: 25px 0 20px;

  text-align: center;

  font-size: 18px;
}

.service_container{
    display:flex;
    margin: auto 0;
    justify-content: center;
    padding:5px;
    gap:10px;

}

.service_div{
    background-color: #fdfdfd;
    width:550px;
    
    padding: 20px;
    display:flex;
    border-radius: 20px;
}

.list_items{
    list-style-type:disc
}

.service_icon{
    width:180px;
    height:120px;
    background-color: #e6f2fd;
    border-radius: 20px;
    padding:9px

}

.service_title_text{
    font-size: 30px;
    padding-left:30px

}

.service_description{
  padding-left: 30px;
}

.learn_more{
  margin-left:-100px
}

.learn_more:hover{
  margin-left:-100px;
  color: #05bdf4;
}

.services_div{
  display:flex;
  
}

.service_list{
  row-gap: 19px;
  column-gap: 20px;
}
.list_item{
  padding-top:20px
}
/* FOOTER */

.footer {
  width: 100%;
  min-height: 115px;
  display: block;
  flex-shrink: 0;

  padding: 20px 0 12px;

  color: white;
  background-color: #0d1d2d;
}

.footer_content {
  width: 87%;
  max-width: 1340px;

  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;

  margin: 0 auto;
}

.footer_brand h2 {
  margin: 0 0 5px;
  font-size: 21px;
}

.footer_brand p {
  margin: 3px 0;

  color: #d5dde5;

  font-size: 12px;
}

.footer_navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer_navigation a {
  color: white;
  font-size: 14px;
}

.footer_navigation a:hover {
  color: #05bdf4;
}


/* SOCIAL MEDIA ICONS */

.social_links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.social_links a {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social_links a:hover {
  color: #05bdf4;
  transform: translateY(-2px);
}

.social_links svg {
  width: 20px;
  height: 20px;
  display: block;
}

.copyright {
  margin: -3px 0 0;

  color: #bec8d1;

  text-align: center;
  font-size: 12px;
}


/* TABLET */

@media (max-width: 1100px) {

  .nav_bar {
    gap: 24px;
  }

}


/* MOBILE */

@media (max-width: 750px) {

  .header_content {
    width: 92%;
    padding: 14px 0;
  }

  .logo {
    font-size: 24px;
  }

  .nav_bar a:not(.talk_button) {
    display: none;
  }

  .talk_button {
    padding: 9px 15px;
  }

  .footer {
    padding: 25px 0;
  }

  .footer_content {
    width: 92%;
    grid-template-columns: 1fr;
    gap: 22px;

    text-align: center;
  }

  .footer_navigation {
    flex-wrap: wrap;
    gap: 15px 25px;
  }

  .copyright {
    margin-top: 24px;
  }

}