* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}

/*header*/
nav {
  background-color: white;
  margin-left: 1.5rem;
  margin-right: 4rem;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  list-style: none;
}
nav ul li {
  height: 50px;
}
nav ul li a {
  height: 100%;
  padding: 0 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  font-weight: bold;
}
nav ul uline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  list-style: none;
  text-decoration: none;
  padding-right: 0;
}
nav ul uline li {
  height: 50px;
}
nav ul uline li a {
  height: 100%;
  padding: 0 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
nav .sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: white;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
nav .sidebar li {
  width: 100%;
}
nav .sidebar li a {
  width: 100%;
}

@media screen and (min-width: 1020px) {
  .hideonScreen {
    display: none;
  }
}
@media screen and (max-width: 575.98px) {
  .hideonMobile {
    display: none;
  }
  nav {
    margin-right: 0.5rem;
  }
  nav ul .logo img {
    margin-left: -3rem;
  }
}
@media screen and (max-width: 375px) {
  .hideonMobile {
    display: none;
  }
  nav {
    margin-right: 0;
  }
  nav ul uline {
    padding-right: 15rem;
  }
}
@media screen and (max-width: 320px) {
  .hideonMobile {
    display: none;
  }
  nav {
    margin-left: 1rem;
    margin-right: -2.5rem;
  }
  nav ul uline {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 240px) {
  .hideonMobile {
    display: none;
  }
  nav {
    margin-left: 1rem;
    margin-right: -7.5rem;
  }
  nav ul uline {
    padding-right: 1rem;
  }
}
/*sub body section*/
.main {
  margin-left: 4rem;
  margin-right: 4rem;
}
.main .main-content h1 {
  font-size: 36px;
  color: black;
  font-style: normal;
  font-weight: bold;
  padding-top: 30px;
  text-align: center;
}
.main .main-content p {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  color: black;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
.main .main-content .main-btn {
  font-size: 1.3rem;
  background: black;
  border-radius: 50px;
  position: relative;
  left: 45%;
  width: 160px;
  height: 61px;
}
.main .main-content .main-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #0606fa;
  transition: all 0.35s;
  border-radius: 50px;
}
.main .main-content .main-btn:hover {
  color: white;
}
.main .main-content .main-btn:hover:after {
  width: 100%;
}
.main .main-content .main-btn a {
  position: relative;
  z-index: 2;
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 575.98px) {
  .main {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .main .main-content h1 {
    font-size: 20px;
  }
  .main .main-content p {
    font-size: 12px;
  }
  .main .main-btn {
    width: 100px;
    height: 61px;
    left: 35% !important;
  }
  .main .main-btn a {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .main {
    margin-left: 1rem;
    margin-right: 0.7rem;
  }
  .main .main-content h1 {
    font-size: 20px;
  }
  .main .main-content p {
    font-size: 12px;
  }
  .main .main-btn {
    width: 100px;
    height: 61px;
    left: 25% !important;
  }
  .main .main-btn a {
    font-size: 15px;
  }
}
@media screen and (max-width: 320px) {
  .main {
    margin-left: 0.5rem;
    margin-right: -2rem;
  }
  .main .main-content h1 {
    font-size: 15px;
  }
  .main .main-content p {
    font-size: 8px;
  }
  .main .main-btn {
    width: 100px !important;
    height: 41px !important;
    left: 30% !important;
    margin-bottom: 1rem;
  }
  .main .main-btn a {
    font-size: 10px;
  }
}
@media screen and (max-width: 240px) {
  .main {
    margin-left: 0.5rem;
    margin-right: -7rem;
  }
  .main .main-content h1 {
    font-size: 15px;
  }
  .main .main-content p {
    font-size: 8px;
  }
  .main .main-btn {
    width: 100px !important;
    height: 41px !important;
    left: 30% !important;
    margin-bottom: 1rem;
  }
  .main .main-btn a {
    font-size: 10px;
  }
}
/**how it works**/
.services h4 {
  margin-top: 2rem;
  font-size: 32px;
  color: black;
  text-align: center;
  font-weight: bold;
}
.services .service-box {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin-left: 4rem;
  margin-right: 4rem;
}
.services .service-box .service-content {
  width: 250px;
  height: 250px;
  background: white;
  margin: 20px;
}
.services .service-box .service-content img {
  margin-top: 2rem;
  margin-left: 0.5rem;
  font-size: 50px;
  margin-left: 6rem;
}
.services .service-box .service-content h2 {
  margin-top: 1rem;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}
.services .service-box .service-content p {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}

@media screen and (max-width: 575.98px) {
  .services h4 {
    font-size: 20px;
    margin-top: 1rem;
  }
  .services .service-box {
    display: grid;
    grid-template-columns: auto auto;
    margin-left: -0.5rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .services h4 {
    font-size: 20px;
    margin-top: 2rem;
  }
  .services .service-box {
    display: grid;
    grid-template-columns: auto;
    margin-left: 2rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 240px) {
  .services h4 {
    font-size: 20px;
    margin-top: 2rem;
    margin-left: 5rem;
  }
  .services .service-box {
    display: grid;
    grid-template-columns: auto;
    margin-left: 2rem;
    margin-right: 1rem;
  }
}
/*choose your brand*/
.brand {
  margin-left: 4rem;
  margin-right: 4rem;
}
.brand h4 {
  margin-top: 3rem;
  font-size: 32px;
  color: black;
  text-align: center;
  font-weight: bold;
}
.brand .brandflex {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding-top: 1rem;
}
.brand .brandflex .brand_box {
  width: 163px;
  height: 196px;
  background: whitesmoke;
  margin: 20px;
  border-radius: 25px 0 25px 0;
  cursor: pointer;
}
.brand .brandflex .brand_box:hover {
  background: linear-gradient(#F3F3F3, #181874);
}
.brand .brandflex .brand_box img {
  margin-left: 30px;
  margin-top: 50px;
}

@media screen and (max-width: 575.98px) {
  .brand {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .brand h4 {
    margin-top: 1rem;
    font-size: 20px;
  }
  .brand .brandflex {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 1rem;
  }
  .brand .brandflex .brand_box {
    width: 140px;
    height: 196px;
    background: whitesmoke;
    margin: 20px;
    border-radius: 25px 0 25px 0;
    cursor: pointer;
  }
  .brand .brandflex .brand_box img {
    margin-left: 20px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 375px) {
  .brand {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .brand h4 {
    margin-top: 1rem;
    font-size: 20px;
  }
  .brand .brandflex {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 1rem;
  }
  .brand .brandflex .brand_box {
    width: 140px;
    height: 196px;
    background: whitesmoke;
    margin: 20px;
    border-radius: 25px 0 25px 0;
    cursor: pointer;
  }
  .brand .brandflex .brand_box img {
    margin-left: 20px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 320px) {
  .brand {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .brand h4 {
    margin-top: 1rem;
    font-size: 20px;
  }
  .brand .brandflex {
    width: 100%;
    display: grid;
    grid-template-columns: auto;
    padding-top: 1rem;
  }
  .brand .brandflex .brand_box {
    width: 140px;
    height: 196px;
    background: whitesmoke;
    margin: 20px;
    border-radius: 25px 0 25px 0;
    cursor: pointer;
  }
  .brand .brandflex .brand_box img {
    margin-left: 20px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 240px) {
  .brand {
    margin-left: 1rem;
  }
  .brand h4 {
    margin-top: 1rem;
    font-size: 20px;
    margin-left: 5rem;
  }
  .brand .brandflex {
    width: 100%;
    display: grid;
    grid-template-columns: auto;
    padding-top: 1rem;
  }
  .brand .brandflex .brand_box {
    width: 140px;
    height: 196px;
    background: whitesmoke;
    margin: 20px;
    border-radius: 25px 0 25px 0;
    cursor: pointer;
  }
  .brand .brandflex .brand_box img {
    margin-left: 20px;
    margin-top: 50px;
  }
}
/*blog*/
.blog {
  margin-left: 4rem;
  margin-right: 4rem;
}
.blog .blog_title {
  display: flex;
  gap: 35rem;
  margin-top: 3rem;
}
.blog .blog_title h4 {
  color: black;
  font-size: 32px;
  text-align: left;
  font-weight: bold;
}
.blog .blog_title p {
  margin-top: 1rem;
  font-size: 24px;
  text-align: left;
  color: #686666;
  font-weight: lighter;
}
.blog .blog_container {
  display: flex;
  gap: 10rem;
}
.blog .blog_container .blog_box {
  width: 505px;
  height: 487px;
  background: whitesmoke;
  margin-top: 1rem;
  border-radius: 25px;
}
.blog .blog_container .blog_box img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 503px;
}
.blog .blog_container .blog_box h5 {
  text-align: center;
  margin-top: 1rem;
  color: black;
  font-size: 15px;
  font-weight: bold;
}
.blog .blog_container .blog_box p {
  font-size: 14px;
  text-align: center;
  margin-top: 1rem;
  color: black;
}
.blog .blog_container .blog_box1 .box {
  width: 505px;
  height: 244px;
  background: whitesmoke;
  margin-top: 1rem;
  border-radius: 25px;
}
.blog .blog_container .blog_box1 .box img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 503px;
}
.blog .blog_container .blog_box1 .box h5 {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
  color: black;
}

@media screen and (max-width: 575.98px) {
  .blog {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .blog .blog_title {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    text-align: center;
  }
  .blog .blog_title h4 {
    font-size: 20px;
  }
  .blog .blog_title p {
    font-size: 15px;
    text-align: left;
    margin-right: 1rem;
  }
  .blog .blog_container {
    display: grid;
    gap: 0.5rem;
  }
  .blog .blog_container .blog_box {
    margin-left: 6rem;
    width: 350px;
    height: 400px;
  }
  .blog .blog_container .blog_box img {
    width: 350px;
  }
  .blog .blog_container .blog_box1 .box {
    margin-left: 6rem;
    width: 350px;
    height: 244px;
  }
  .blog .blog_container .blog_box1 .box img {
    width: 350px;
  }
}
@media screen and (max-width: 375px) {
  .blog {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .blog .blog_title {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    text-align: center;
  }
  .blog .blog_title h4 {
    font-size: 20px;
  }
  .blog .blog_title p {
    font-size: 15px;
    text-align: left;
    margin-right: 1rem;
  }
  .blog .blog_container {
    display: grid;
    gap: 0.5rem;
  }
  .blog .blog_container .blog_box {
    margin-left: 0;
    width: 350px;
    height: 400px;
  }
  .blog .blog_container .blog_box img {
    width: 350px;
  }
  .blog .blog_container .blog_box1 .box {
    margin-left: 0;
    width: 350px;
    height: 244px;
  }
  .blog .blog_container .blog_box1 .box img {
    width: 350px;
  }
}
@media screen and (max-width: 320px) {
  .blog {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .blog .blog_title {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    text-align: center;
  }
  .blog .blog_title h4 {
    font-size: 20px;
  }
  .blog .blog_title p {
    font-size: 15px;
    text-align: justify;
    margin-right: 0;
  }
  .blog .blog_container {
    display: grid;
    gap: 0.5rem;
  }
  .blog .blog_container .blog_box {
    margin-left: 0;
    width: 300px;
    height: 400px;
  }
  .blog .blog_container .blog_box img {
    width: 300px;
  }
  .blog .blog_container .blog_box1 .box {
    margin-left: 0;
    width: 300px;
    height: 244px;
  }
  .blog .blog_container .blog_box1 .box img {
    width: 300px;
  }
}
@media screen and (max-width: 240px) {
  .blog .blog_container {
    display: grid;
    gap: 0.5rem;
  }
  .blog .blog_container .blog_box {
    margin-left: 0;
    width: 290px;
    height: 400px;
  }
  .blog .blog_container .blog_box img {
    width: 290px;
  }
  .blog .blog_container .blog_box1 .box {
    margin-left: 0;
    width: 300px;
    height: 244px;
  }
  .blog .blog_container .blog_box1 .box img {
    width: 295px;
  }
}
/*repair services*/
.repair {
  margin-left: 4rem;
  margin-right: 4rem;
}
.repair h4 {
  color: black;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  padding-top: 3rem;
}
.repair .repairflex {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding-left: 1rem;
  padding-top: 1rem;
  gap: 1rem;
}
.repair .repairflex .repair_box {
  width: 168px;
  height: 170px;
  background: whitesmoke;
  margin: 20px;
  border-radius: 8px;
}
.repair .repairflex .repair_box:hover {
  background: #9C85DA;
}
.repair .repairflex .repair_box a {
  text-decoration: none;
}
.repair .repairflex .repair_box img {
  margin-left: 2.2rem;
  margin-top: 1rem;
}
.repair .repairflex .repair_box p {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
  color: #000;
}

@media screen and (max-width: 575.98px) {
  .repair {
    margin-left: 0rem;
  }
  .repair h4 {
    font-size: 20px;
    text-align: center;
  }
  .repair .repairflex {
    grid-template-columns: auto auto auto;
    padding-left: 0;
    padding-top: 1rem;
    gap: 0rem;
  }
  .repair .repairflex .repair_box {
    width: 145px;
  }
  .repair .repairflex .repair_box:hover {
    background: #9C85DA;
  }
  .repair .repairflex .repair_box img {
    margin-left: 1.5rem;
  }
  .repair .repairflex .repair_box p {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .repair {
    margin-left: 0.5rem;
  }
  .repair h4 {
    font-size: 20px;
  }
  .repair .repairflex {
    grid-template-columns: auto auto;
    padding-left: 0;
    padding-top: 1rem;
    gap: 0;
  }
  .repair .repairflex .repair_box {
    width: 145px;
  }
  .repair .repairflex .repair_box:hover {
    background: #9C85DA;
  }
  .repair .repairflex .repair_box img {
    margin-left: 1.5rem;
  }
  .repair .repairflex .repair_box p {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .repair {
    margin-left: 0.5rem;
  }
  .repair h4 {
    font-size: 20px;
    margin-left: 3rem;
  }
  .repair .repairflex {
    grid-template-columns: auto;
    padding-left: 0;
    padding-top: 1rem;
    gap: 0;
  }
  .repair .repairflex .repair_box {
    width: 145px;
  }
  .repair .repairflex .repair_box:hover {
    background: #9C85DA;
  }
  .repair .repairflex .repair_box img {
    margin-left: 1.5rem;
  }
  .repair .repairflex .repair_box p {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 240px) {
  .repair {
    margin-left: 0.5rem;
  }
  .repair h4 {
    font-size: 20px;
    margin-left: 1rem;
  }
  .repair .repairflex {
    grid-template-columns: auto;
    padding-left: 0;
    padding-top: 1rem;
    gap: 0;
  }
  .repair .repairflex .repair_box {
    width: 145px;
  }
  .repair .repairflex .repair_box:hover {
    background: #9C85DA;
  }
  .repair .repairflex .repair_box img {
    margin-left: 1.5rem;
  }
  .repair .repairflex .repair_box p {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
}
/* about page */
.office {
  padding-left: 4rem;
  padding-right: 4rem;
}

@media screen and (max-width: 575.98px) {
  .office {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .office {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .office {
    padding-left: 1rem;
    padding-right: 0;
    width: 350px;
  }
}
@media screen and (max-width: 240px) {
  .office {
    padding-left: 1rem;
    padding-right: 0;
  }
}
.about-us {
  padding-top: 4rem;
}
.about-us .container-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-us .container-about .row {
  display: flex;
  flex-wrap: wrap;
}
.about-us .container-about .row .flex {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}
.about-us .container-about .row .flex h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: black;
  margin-top: 2rem;
}
.about-us .container-about .row .flex h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}
.about-us .container-about .row .flex p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5;
}
.about-us .container-about .row .flex img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.about-us .container-about .row .flex .btn {
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.about-us .container-about .row .flex .btn:hover {
  transform: translateY(-3px);
}

@media screen and (max-width: 575.98px) {
  .about-us {
    padding-top: 2rem;
    padding-left: 1rem;
  }
  .about-us .container-about {
    max-width: 100%;
  }
  .about-us .container-about .row {
    display: grid;
  }
  .about-us .container-about .row .flex {
    max-width: 100%;
  }
  .about-us .container-about .row .flex img {
    margin-right: 15rem;
  }
  .about-us .container-about .row .flex h2 {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .about-us {
    padding-top: 2rem;
    padding-left: 1rem;
  }
  .about-us .container-about {
    max-width: 100%;
  }
  .about-us .container-about .row {
    display: grid;
  }
  .about-us .container-about .row .flex {
    max-width: 100%;
  }
  .about-us .container-about .row .flex h2 {
    margin-top: 1rem;
  }
}
.float {
  background-color: rgb(24, 23, 23);
  display: flex;
  margin-left: 4rem;
  margin-right: 4rem;
  gap: 20rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.float .float-desp {
  padding-top: 3rem;
  padding-left: 3rem;
}
.float .float-desp h1, .float .float-desp p {
  text-align: left;
  color: white;
}
.float .float-desp .description {
  display: flex;
  margin-top: 3rem;
}
.float .float-desp .description img {
  margin-top: 1rem;
}
.float .float-desp .description h2 {
  text-align: left;
  color: white;
  font-size: 20px;
  margin-left: 2rem;
}
.float .float-desp .description p {
  text-align: left;
  margin-left: 2rem;
}
.float .images {
  padding-top: 3rem;
  padding-right: 2rem;
}
.float .images .image-box1 {
  margin-left: 5rem;
  margin-bottom: 3rem;
}
.float .images .image-box2 {
  margin-bottom: 3rem;
}

@media screen and (max-width: 575.98px) {
  .float {
    display: grid;
    margin-left: 1rem;
    margin-right: 1rem;
    gap: 0;
  }
  .float .float-desp {
    padding-left: 1rem;
  }
  .float .float-desp h1, .float .float-desp p {
    padding-right: 3rem;
    text-align: left;
  }
  .float .float-desp .description h2 {
    margin-left: 1rem;
  }
  .float .float-desp .description p {
    margin-left: 1rem;
  }
  .float .images .image-box2 {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .float {
    display: grid;
    margin-left: 1rem;
    margin-right: 1rem;
    gap: 0;
  }
  .float .float-desp {
    padding-left: 1rem;
  }
  .float .float-desp h1, .float .float-desp p {
    margin-right: 3rem;
  }
  .float .float-desp .description h2 {
    margin-left: 1rem;
  }
  .float .float-desp .description p {
    margin-left: 1rem;
  }
  .float .images .image-box1 {
    margin-left: 1rem !important;
  }
  .float .images .image-box2 {
    margin-left: 0.25rem !important;
  }
}
@media screen and (max-width: 320px) {
  .float {
    display: grid;
    margin-left: 1rem;
    margin-right: 1rem;
    gap: 0;
  }
  .float .float-desp {
    padding-left: 1rem;
  }
  .float .float-desp h1, .float .float-desp p {
    margin-right: 3rem;
  }
  .float .float-desp .description h2 {
    margin-left: 1rem;
  }
  .float .float-desp .description p {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 240px) {
  .float {
    display: grid;
    margin-left: 1rem;
    margin-right: -3rem;
    gap: 0;
  }
  .float .float-desp {
    padding-left: 1rem;
  }
  .float .float-desp h1, .float .float-desp p {
    margin-right: 0;
  }
  .float .float-desp .description h2 {
    margin-left: 1rem;
  }
  .float .float-desp .description p {
    margin-left: 1rem;
  }
}
.mission h4 {
  margin-top: 4rem;
  font-size: 32px;
  color: black;
  font-weight: bold;
  text-align: center;
}
.mission .mission-box {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin-left: 4rem;
  margin-right: 4rem;
}
.mission .mission-box .mission-content {
  width: 250px;
  height: 250px;
  background: white;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 2px rgb(55, 55, 68);
}
.mission .mission-box .mission-content:hover {
  transform: translateY(-12px);
}
.mission .mission-box .mission-content i {
  margin-top: 2rem;
  margin-left: 0.5rem;
  font-size: 50px;
  margin-left: 6rem;
}
.mission .mission-box .mission-content h2 {
  margin-top: 1rem;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.mission .mission-box .mission-content p {
  text-align: center;
  font-size: 15px;
}

@media screen and (max-width: 575.98px) {
  .mission .mission-box {
    grid-template-columns: auto auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 375px) {
  .mission .mission-box {
    grid-template-columns: auto;
    margin-left: 3rem;
  }
}
@media screen and (max-width: 320px) {
  .mission .mission-box {
    grid-template-columns: auto;
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 240px) {
  h4 {
    margin-left: 3rem;
  }
  .mission .mission-box {
    grid-template-columns: auto;
    margin-left: 1.5rem;
  }
}
.service-btn {
  margin-left: 2rem;
  margin-top: 2rem;
  text-decoration: none;
  color: black;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  background-color: whitesmoke;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.service-btn:hover {
  transform: translateY(-3px);
  color: black;
}

@media screen and (max-width: 375px) {
  .service-btn {
    margin-left: 2rem;
  }
}
/* contact */
.contact-container {
  background-image: url("../images/contact.png");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: 4rem;
  margin-right: 4rem;
}
.contact-container h1 {
  font-size: 36px;
  color: white;
  font-weight: bold;
  text-align: center;
  padding-top: 6rem;
}
.contact-container p {
  font-size: 20px;
  color: white;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 575.98px) {
  .contact-container {
    background-image: url("../images/contact.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .contact-container h1 {
    font-size: 25px;
    color: white;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
  }
  .contact-container p {
    font-size: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .contact-container {
    background-image: url("../images/contact.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .contact-container h1 {
    font-size: 25px;
    color: white;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
  }
  .contact-container p {
    font-size: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 240px) {
  .contact-container {
    background-image: url("../images/contact.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .contact-container h1 {
    font-size: 16px;
    color: white;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
  }
  .contact-container p {
    font-size: 13px;
    color: white;
    font-weight: bold;
    text-align: center;
  }
}
.contact {
  display: flex;
  padding-top: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  gap: 13rem;
}
.contact .contact-detail h1 {
  text-align: left;
  margin-left: 1rem;
  font-weight: bold;
}
.contact .contact-detail p {
  text-align: left;
  margin-left: 1rem;
}
.contact .contact-detail .contact-info {
  display: flex;
  margin-left: 4rem;
}
.contact .contact-detail .contact-info i {
  font-size: 30px;
}
.contact .contact-detail .contact-info .contact-list h2 {
  font-size: 18px;
  margin-left: 1rem;
  font-weight: bold;
}
.contact .contact-detail .contact-info .contact-list p {
  font-size: 15px;
}
.contact .contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 600px;
}
.contact .contact-form label {
  display: block;
  margin-bottom: 5px;
}
.contact .contact-form input, .contact .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact .contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.contact .contact-form button:hover {
  background-color: #0056b3;
}

@media screen and (max-width: 575.98px) {
  .contact {
    display: grid;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 2rem;
  }
  .contact .contact-form {
    width: 500px;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .contact {
    display: grid;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 2rem;
  }
  .contact .contact-form {
    width: 300px;
  }
}
iframe {
  margin-top: 5rem;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}

@media screen and (max-width: 375px) {
  iframe {
    margin-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 240px) {
  iframe {
    margin-top: 3rem;
    padding-left: 0;
    padding-right: 0;
    margin-left: 2rem;
  }
}
.footer {
  background-color: #F3F3F3;
  margin-top: 1rem;
}
.footer .footer_container {
  display: flex;
  gap: 7rem;
}
.footer .footer_container .footer_column {
  margin-top: 2rem;
  margin-left: 6rem;
  text-decoration: none;
}
.footer .footer_container .footer_column h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2rem;
}
.footer .footer_container .footer_column p {
  color: #686666;
  font-size: 16px;
  font-weight: bold;
}
.footer .footer_container .footer_column a {
  text-decoration: none;
  color: #686666;
}
.footer .footer_container1 {
  display: flex;
  margin-top: 1rem;
  gap: 45rem;
  border-style: groove;
}
.footer .footer_container1 .footer_column1 p {
  color: #686666;
  font-size: 16px;
  font-weight: bold;
  margin-left: 6rem;
  margin-top: 1rem;
}
.footer .footer_container1 .footer_column1 i {
  width: 30px;
  height: 30px;
  margin-top: 1rem;
  color: #686666;
}

@media screen and (max-width: 575.98px) {
  .footer {
    background-color: #F3F3F3;
    margin-top: 1rem;
  }
  .footer .footer_container {
    display: flex;
    gap: 0;
  }
  .footer .footer_container .footer_column {
    margin-top: 1rem;
    margin-left: 2rem;
  }
  .footer .footer_container .footer_column h5 {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
  .footer .footer_container .footer_column p {
    font-size: 13px;
    margin-bottom: 0.5rem;
  }
  .footer .footer_container1 {
    display: flex;
    margin-top: 0;
    gap: 13rem;
  }
  .footer .footer_container1 .footer_column1 p {
    font-size: 10px;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .footer .footer_container1 .footer_column1 i {
    width: 15px;
    height: 30px;
    margin-top: 2;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .footer {
    background-color: #F3F3F3;
    margin-top: 1rem;
  }
  .footer .footer_container {
    display: grid;
    gap: 0;
  }
  .footer .footer_container .footer_column {
    margin-top: 1rem;
    margin-left: 2rem;
  }
  .footer .footer_container .footer_column h5 {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
  .footer .footer_container .footer_column p {
    font-size: 13px;
    margin-bottom: 0.5rem;
  }
  .footer .footer_container1 {
    display: grid;
    margin-top: 0;
    gap: 0;
  }
  .footer .footer_container1 .footer_column1 p {
    font-size: 10px;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .footer .footer_container1 .footer_column1 i {
    width: 15px;
    height: 30px;
    margin-top: 0;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .footer {
    margin-right: -2rem;
  }
}
@media screen and (max-width: 240px) {
  .footer {
    margin-right: -7rem;
  }
}
/*iphoneBrand*/
.brand_container h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding-top: 2rem;
}
.brand_container h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}
.brand_container .link {
  padding-left: 6rem;
  padding-top: 3rem;
}
.brand_container .link .front_link {
  color: black;
  font-weight: bold;
  font-size: 16px;
}
.brand_container .link .front_link:hover {
  color: #0606fa;
  transition: all 0.3s ease;
}
.brand_container .link p {
  font-size: 20px;
  margin-top: 2rem;
}

.apple_brand .appleflex {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding-left: 3rem;
  gap: 0.5rem;
  padding-top: 4rem;
}
.apple_brand .appleflex .apple_box {
  width: 150px;
  height: 150px;
  background: white;
  margin: 20px;
  border-radius: 8px;
}
.apple_brand .appleflex .apple_box:hover {
  transform: translateY(-6px);
  box-shadow: 2px 2px 2px 2px rgb(68, 55, 55);
}
.apple_brand .appleflex .apple_box img {
  margin-left: 20px;
  margin-top: 10px;
}
.apple_brand .appleflex .apple_box p {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 575.98px) {
  .brand_container h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
  }
  .brand_container h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
  .brand_container .link {
    padding-left: 2rem;
    padding-top: 2rem;
  }
  .brand_container .link .front_link {
    color: black;
    font-weight: bold;
    font-size: 12px;
  }
  .apple_brand .appleflex {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    padding-left: 1rem;
    gap: 0;
    padding-top: 4rem;
  }
  .apple_brand .appleflex .apple_box {
    background: white;
    margin: 20px;
    border-radius: 8px;
    width: 130px;
    height: 150px;
  }
  .apple_brand .appleflex .apple_box p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .brand_container h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
  }
  .brand_container h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
  .brand_container .link {
    padding-left: 2rem;
    padding-top: 2rem;
  }
  .brand_container .link .front_link {
    color: black;
    font-weight: bold;
    font-size: 12px;
  }
  .apple_brand .appleflex {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto auto;
    padding-left: 1rem;
    gap: 0;
    padding-top: 4rem;
  }
  .apple_brand .appleflex .apple_box {
    background: white;
    margin: 20px;
    border-radius: 8px;
    width: 130px;
    height: 150px;
  }
  .apple_brand .appleflex .apple_box p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .brand_container h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
  }
  .brand_container h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
  .brand_container .link {
    padding-left: 2rem;
    padding-top: 2rem;
  }
  .brand_container .link .front_link {
    color: black;
    font-weight: bold;
    font-size: 12px;
  }
  .apple_brand .appleflex {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto;
    padding-left: 1rem;
    gap: 0;
    padding-top: 4rem;
  }
  .apple_brand .appleflex .apple_box {
    background: white;
    margin: 20px;
    border-radius: 8px;
    width: 130px;
    height: 150px;
  }
  .apple_brand .appleflex .apple_box p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 240px) {
  .brand_container h2 {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding-top: 0;
    margin-left: 1rem;
  }
  .brand_container h3 {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
  }
  .brand_container .link {
    padding-left: 2rem;
    padding-top: 2rem;
  }
  .brand_container .link .front_link {
    color: black;
    font-weight: bold;
    font-size: 12px;
  }
  .apple_brand .appleflex {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto;
    padding-left: 1rem;
    gap: 0;
    padding-top: 4rem;
  }
  .apple_brand .appleflex .apple_box {
    background: white;
    margin: 20px;
    border-radius: 8px;
    width: 130px;
    height: 150px;
  }
  .apple_brand .appleflex .apple_box p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
}
/*iphoneModel*/
.iphone_container .iphone_box {
  width: 250px;
  height: 250px;
  background: white;
  margin-left: 33rem;
  margin-top: 5rem;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 2px rgb(68, 55, 55);
}
.iphone_container .iphone_box img {
  margin: 1.5rem;
}
.iphone_container h6 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}
.iphone_container .link {
  padding-left: 6rem;
  padding-top: 3rem;
}
.iphone_container .link .front_link {
  color: black;
  font-weight: bold;
  font-size: 16px;
}
.iphone_container .link .front_link:hover {
  color: #0606fa;
  transition: all 0.3s ease;
}
.iphone_container .link p {
  font-size: 20px;
  margin-top: 2rem;
}

.price {
  display: grid;
  grid-template-columns: auto auto auto;
  margin-left: 5rem;
  gap: 1rem;
}
.price .price_item {
  width: 250px;
  height: 150px;
  background: white;
  margin: 20px;
  border-radius: 8px;
}
.price .price_item:hover {
  transform: translateY(-6px);
  box-shadow: 2px 2px 2px 2px rgb(68, 55, 55);
}
.price .price_item img {
  margin-top: 2rem;
  margin-left: 0.5rem;
}
.price .price_item p {
  float: right;
  margin-top: 2rem;
  margin-right: 2rem;
  font-size: 17px;
  font-weight: bold;
}
.price .price_item .btn {
  font-size: 1rem;
  background: gray;
  border-radius: 50px;
  width: 70px;
  height: 30px;
  margin-left: 6.5rem;
}
.price .price_item .btn a {
  color: black;
}

@media screen and (max-width: 575.98px) {
  .iphone_container .iphone_box {
    width: 250px;
    height: 250px;
    background: white;
    margin-left: 3rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 2px 2px 2px 2px rgb(68, 55, 55);
  }
  .iphone_container h6 {
    padding-left: 7rem;
    text-align: left;
  }
  .iphone_container .link {
    padding-left: 1rem;
    padding-top: 2rem;
  }
  .iphone_container .link .front_link {
    color: black;
    font-weight: bold;
    font-size: 14px;
  }
  .iphone_container .link p {
    font-size: 16px;
    margin-top: 2rem;
  }
  .price {
    display: grid;
    grid-template-columns: auto;
    margin-left: 3rem;
    gap: 1rem;
  }
}
.prices {
  display: grid;
  grid-template-columns: auto auto auto;
  margin-left: 2rem;
}
.prices .price_item {
  width: 190px;
  height: 120px;
  background: white;
  margin: 0px;
}
.prices .price_item img {
  margin-top: 1rem;
  margin-left: 0.3rem;
}
.prices .price_item p {
  float: right;
  margin-top: 1rem;
  margin-right: 2rem;
  font-size: 12px;
  font-weight: bold;
}
.prices .price_item .btn {
  font-size: 0.8rem;
  background: gray;
  width: 60px;
  height: 30px;
  margin-left: 5rem;
}
.prices .price_item .active {
  background-color: green;
}

@media screen and (max-width: 375px) {
  .prices {
    display: grid;
    grid-template-columns: auto auto;
    margin-left: 0rem;
  }
}
@media screen and (max-width: 240px) {
  .prices {
    display: grid;
    grid-template-columns: auto;
    margin-left: 0rem;
  }
}
.wrapper {
  max-width: 500px;
  width: 100%;
  margin-top: 3%;
  margin-left: 30%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

.wrapper .title {
  height: 120px;
  background: #6866ac;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form {
  padding: 25px 35px;
}

.wrapper form .row {
  height: 60px;
  margin-top: 15px;
  position: relative;
}

.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 70px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 18px;
  transition: all 0.3s ease;
}

form .row input:focus {
  border-color: #6866ac;
}

form .row input::placeholder {
  color: #999;
}

.wrapper form .row i {
  position: absolute;
  width: 55px;
  height: 100%;
  color: #fff;
  font-size: 22px;
  background: #6866ac;
  border: 1px solid #6866ac;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form .pass {
  margin-top: 12px;
}

.wrapper form .pass a {
  color: #6866ac;
  font-size: 17px;
  text-decoration: none;
}

.wrapper form .pass a:hover {
  text-decoration: underline;
}

.wrapper form .button input {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #6866ac;
  border: 1px solid #6866ac;
  cursor: pointer;
}

form .button input:hover {
  background: #342fc4;
}

.wrapper form .signup-link {
  text-align: center;
  margin-top: 45px;
  font-size: 17px;
}

.wrapper form .signup-link a {
  color: #6866ac;
  text-decoration: none;
}

form .signup-link a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 575.98px) {
  .wrapper {
    max-width: 450px;
    width: 100%;
    margin-top: 3%;
    margin-left: 10%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 375px) {
  .wrapper {
    max-width: 350px;
    width: 100%;
    margin-top: 3%;
    margin-left: 5%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 320px) {
  .wrapper {
    max-width: 300px;
    width: 100%;
    margin-top: 3%;
    margin-left: 3%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 240px) {
  .wrapper {
    max-width: 300px;
    width: 100%;
    margin-top: 3%;
    margin-left: 15%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  }
}
.container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
}
.container h1 {
  text-align: center;
  margin-bottom: 20px;
}
.container .form-group {
  margin-bottom: 15px;
}
.container .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.container .form-group input[type=text],
.container .form-group input[type=email],
.container .form-group input[type=tel],
.container .form-group input[type=date],
.container .form-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
.container .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.container .form-group textarea {
  resize: vertical;
}
.container label {
  font-weight: bold;
}
.container button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.container button:hover {
  background-color: #45a049;
}
.container .image-container {
  display: grid;
  align-items: center;
  justify-content: center;
}
.container .image-container img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container .image-container p {
  text-align: center;
  font-weight: bold;
}
.container .brand-image {
  margin-top: 0px;
  display: none;
}
.container .brand-image img {
  width: 100px;
  height: auto;
}

@media screen and (max-width: 575.98px) {
  .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 550px;
    margin-top: 2rem;
  }
  .container .prices {
    display: grid;
    grid-template-columns: auto auto;
    margin-left: 0rem;
  }
}
@media screen and (max-width: 375px) {
  .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px !important;
    margin-top: 2rem;
    margin-left: 1rem;
  }
  .container .prices {
    display: grid;
    grid-template-columns: auto;
    margin-left: 0rem;
  }
}
@media screen and (max-width: 240px) {
  .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px !important;
    margin-top: 2rem;
    margin-left: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
