@media screen and (min-width: 1025px) {
    .pc {
        /* Styles that should only apply on PC-sized screens */
    }

     .sp {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .pc {
        display: none !important;
    }
}
/* Base Styles */
body, html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  padding: 20px;
}

.custom-container {
  padding-left: 150px;
  padding-right: 150px;
}

h2, h3, h4 {
  font-family: "Raleway", sans-serif;
}

h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 30px;
  color: #333;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}

a {
  color: #608dfd;
  font-weight: 400;
  text-decoration: none;
}

a:hover, a:focus {
  color: #608dfd;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-bullets {
  list-style-type: disc;
  color: #333;
  margin-left: 1em;
}

.custom-bullets li {
  font-weight: 400;
}

/* HR */
hr {
  height: 2px;
  width: 70px;
  background: #1e7a46;
  border: 0;
  margin: 20px auto;
}

/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}

#menu.navbar-default {
  background-color: #fff;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#menu a.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

#menu.navbar-default .navbar-nav > li > a {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  margin: 9px 20px 0;
  position: relative;
}

#menu.navbar-default .navbar-nav > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  transition: width 0.2s;
}

#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}

.navbar-default .navbar-nav > .active > a:after {
  width: 100%;
}

/* Buttons */
.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  border: none;
  transition: all 0.5s linear;
}

.btn-custom:hover {
  background: #6372ff;
  color: #fff;
}

/* Intro Section */
.intro {
  display: table;
  width: 100%;
  background: url(../img/intro-bg.jpg) center center no-repeat;
  background-size: cover;
}

.intro .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.intro h1 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}

.intro p {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 60px;
}

header .intro-text {
  padding-top: 350px;
  padding-bottom: 200px;
  text-align: center;
}

/* Features */
#features {
  background: #f6f6f6;
}

#features i.fa {
  font-size: 18px;
  color: #fff;
  width: 100px;
  height: 100px;
  padding: 35px 0;
  border-radius: 50%;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#features h2 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

#features h2::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


/* About */
#about {
  padding: 10px 0;
}
.custom-bullet li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  list-style: none;
}

.custom-bullet li::before {
  content: "\f00c"; /* FontAwesome check icon */
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  color: #5ca9fb;
  font-size: 20px;
}

#about h2 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

#about h2::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}

#about .about-text li {
  margin-bottom: 6px;
  padding-left: 0;
  list-style: none;
}

#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #5ca9fb;
  font-size: 20px;
  padding-right: 8px;
}

/* Services */
#services {
  padding: 30px 0;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: #fff;
}

#services .service-desc {
  margin: 10px 10px 20px;
}

#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#services h2 {
  color: #fff;
}
#services i.fa {
  font-size: 30px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  border-radius: 50%;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

/* Contact */
#contact {
  padding: 30px;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: rgba(255, 255, 255, 0.75);
}

#contact h2 {
  color: #fff;
}

#contact .btn-custom {
  border: 2px solid #fff;
  background: transparent;
}

#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}

#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}

#contact .social i.fa {
  font-size: 18px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

#contact .social i.fa:hover {
  color: #608dfd;
  background: #fff;
}

/* ===================== */
/* Responsive Breakpoints */
/* ===================== */

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .custom-container {
    padding: 0 20px;
  }

  h1, h2 {
    font-size: 24px;
  }

  h3, h4, p, a, label {
    font-size: 16px;
  }

  .btn-custom {
    padding: 10px 24px;
    font-size: 14px;
  }

  header .intro-text {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  #features i.fa,
  #services i.fa {
    width: 80px;
    height: 80px;
    font-size: 20px;
    padding: 25px 0;
  }

  #about img {
    width: 100%;
    padding: 20px;
  }
}

/* Tablet (577px–991px) */
@media (min-width: 577px) and (max-width: 991px) {
  .custom-container {
    padding: 0 40px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 26px;
  }

  p, label {
    font-size: 17px;
  }

  .btn-custom {
    padding: 12px 30px;
    font-size: 14px;
  }

  header .intro-text {
    padding-top: 250px;
    padding-bottom: 150px;
  }

  #about img {
    width: 100%;
    margin: 20px 0;
  }

  #features i.fa,
  #services i.fa {
    width: 90px;
    height: 90px;
    font-size: 24px;
    padding: 30px 0;
  }
}

/* Desktop (≥992px) */
@media (min-width: 992px) {
  .custom-container {
    padding-left: 150px;
    padding-right: 150px;
  }

  header .intro-text {
    padding-top: 350px;
    padding-bottom: 200px;
  }

  #about img {
    width: 520px;
  }
}
