* {
    margin: 0px;
    padding: 0px;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

body {
    background-color: #070707;
}

.whatsapp-button {
    position: fixed;
    bottom: 50px;
    right: 50px;
}

.whatsapp-icon img {
    width: 50px;
    /* Adjust the size as needed */
    height: 50px;
    /* Adjust the size as needed */
    border-radius: 50%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

/* header */
.construction {
    background-color: red;
    text-align: center;
}

.construction p {
    font-size: 20px;
}

header {
    height: 100vh;
}

nav {
    display: flex;
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 95px;
    background-color: rgba(0, 0, 0, 0.74);
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid rgb(87 86 86 / 58%);
}

.hamburger {
    display: none;
}

.logo img {
    width: 220px;
    margin-right: 100px;
}

.list ul {
    display: flex;
}

.list {
    display: flex;
    align-items: center;
}
.mobile-nav{
    display: none;
}

.list ul li {
    list-style: none;
    margin: 0px 15px;
    padding: 2px 5px;
    font-weight: 500;
}

.list ul li a {
    text-decoration: none;
    color: rgb(192, 192, 192);

}

.list ul li a:hover {
    color: #f1591d;
    transition: 0.7s;
}

.navbtn {
    padding: 15px 10px 15px 40px;

}

.navbtn button {
    border-radius: 25px;
    padding: 0px 25px;
    border: none;
    cursor: pointer;
    background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22%;
    transition-duration: .3s;
    color: #fff;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, .25);
    display: inline-block;
    height: 40px;
    letter-spacing: .5px;
    width: auto;
}

.navbtn button:hover {
    box-shadow: 0 0 20px 5px rgba(251, 83, 67, .2);
    filter: brightness(125%);
    color: #fff;
    color: white;
    text-decoration: none;

}

#home {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 350px;
}

.hometext {
    display: flex;
    text-align: center;
    margin: 0px 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hometext h3 {
    font-weight: 400;
    color: rgb(223 222 222);
    margin-bottom: 10px;
    font-style: italic;


}

.hometext span {
    color: #f1591d;
}

.hometext p {
    padding-bottom: 10px;
    line-height: 1.6;
    margin-top: 15px;
    color: rgb(223 222 222);
    font-size: 19px;
    width: 900px;
    text-align: center;
    letter-spacing: 1.1px;
}

.hometext h1 {
    font-size: 55px;
    letter-spacing: 2;
}

.homebtn {
    padding: 30px 15px 15px 15px;
    display: flex;
    justify-content: center;
}

.contactbtn {
    border-radius: 45px;
    padding: 15px 60px;
    border: none;
    cursor: pointer;
    background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22%;
    transition-duration: .3s;
    color: #fff;
    color: white;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, .25);
    display: inline-block;
    height: 65px;
    letter-spacing: 1px;
    width: auto;
    margin: 0px 8px;

}

.aboutbtn {
    margin: 0px 8px;
    border-radius: 45px;
    padding: 15px 60px;
    border: 2px solid rgba(255, 255, 255, 0.212);
    cursor: pointer;
    background: transparent;
    transition-duration: .8s;
    color: #fff;
    color: white;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, .25);
    display: inline-block;
    height: 65px;
    letter-spacing: 1px;
    width: auto;


}

.contactbtn:hover {
    box-shadow: 0 0 20px 5px rgba(251, 83, 67, .2);
    filter: brightness(115%);
    color: #fff;
    color: white;
    text-decoration: none;
}

.aboutbtn:hover {
    background-color: #fb5343;
    box-shadow: 0px 0 20px 5px rgba(201, 17, 0, 0.26);

}

/* circles */
.rightcircle {
    z-index: -1;
    width: 550px;
    height: 550px;
    border-radius: 1000px;
    opacity: .25;
    position: fixed;
    left: auto;
    top: -250px;
    right: -250px;
    filter: blur(90px);
    bottom: auto;
    background-image: linear-gradient(45deg, #fb5343, #6549d5);
}

.leftcircle {
    position: fixed;
    left: -250px;
    top: 250px;
    right: auto;
    bottom: auto;
    z-index: -1;
    width: 550px;
    height: 550px;
    filter: blur(90px);
    opacity: 0.25;
    border-radius: 1000px;
    background-image: linear-gradient(45deg, #059dff, #36c6f0);

}



/* About section */

#about {
    padding-top: 100px;

}

.abtmain {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rightabt h1 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1.1;
}

.rightabt span {
    color: #f1591d;
}

.rightabt {
    width: 500px;
    padding-top: 30px;
}

.rightabt1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
}

.rightabt2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 25px;
}

.rightabt1 p {
    margin-left: 45px;
    padding-top: 12px;
    font-weight: 100;
    line-height: 1.6;
    letter-spacing: 1px;
}

.rightabt1 h3 {
    font-weight: 600;

}

.rightabt2 h3 {
    font-weight: 600;


}

.rightabt2 p {
    margin-left: 45px;
    padding-top: 12px;
    font-weight: 100;
    line-height: 1.6;
    letter-spacing: 1px;
}

.abtlogo i {
    color: #f1591d;
    padding-left: 5px;
    font-size: 30px;
    padding-right: 12px;
}

.abtlogo {
    display: flex;
    align-items: center;

}

.leftabt {
    padding-right: 80px;

}

.leftabt img {
    height: auto;
    border-radius: 12px;
}

.abtmain {
    display: flex;


}

.textabt {
    font-size: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0px 100px;

}

.textabt p {
    width: 720px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    margin-left: 50px;

    color: #cacaca;
}

.textabt h1 {
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1.2;
}

.brandsrow1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
}

.brand img {
    width: 200px;
}

.brand {
    padding: 0px 20px;
}

.brandsrow2 {
    display: flex;
    padding-top: 50px;
    justify-content: center;
}

.linebr hr {

    margin: auto;
    margin-top: 100px;
    width: 80%;
    border: 1px solid rgba(153, 153, 153, 0.432);
    outline: none;

}

/* services tag */


#services {
    padding-top: 100px;
    padding-bottom: 30px;
}

.servicetext {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0px 10px;
}

.servicetext h1 {
    font-size: 45px;
    font-weight: 600;
}

.servicetext span {
    color: #f1591d;
}

.servicetext p {
    font-weight: 400;
    color: #cacaca;
    padding-top: 25px;
    width: 800px;
    text-align: center;
    line-height: 1.7;
    font-size: 19px;
}

.cardsrow {
    display: flex;
    justify-content: center;
    margin: 60px auto;
    flex-wrap: wrap;
    padding-top: 35px;
    max-width: 1200px;

}



.card {
    background-color: rgb(15, 15, 15);
    display: flex;
    flex-direction: column;
    width: 350px;
    border-radius: 0 0 20px 0px;
    margin: 0px 15px;
    margin-bottom: 35px;
    height: 450px;
}

.cardcontent {
    text-align: left;
    padding-top: 25px;
    padding-right: 15px;
    padding-left: 15px;
    border-bottom-right-radius: 20px;
    border: 1px solid #404040;
    background-color: rgb(12, 12, 12);
    border-top: none;
    height: 210px;

}

.card img {
    height: 220px;
}

.card:hover {
    transform: translateY(-10px);
    transition: 0.7s;
}

.card h1:hover {
    color: #f1591d;
    transition: 0.3s ease-out;
    cursor: pointer;
}

.card h1 {
    color: #f3f3f3;
    font-weight: 600;
    padding-bottom: 15px;
    font-size: 26px;
}

.card p {
    color: #c0c0c0;
    font-weight: 100;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0.2px;

}

.fa-television {
    color: rgb(233, 54, 54);
}

.fa-rocket {
    color: #dce92a;
}

.fa-tablet {
    color: rgb(50, 165, 241);
}

.fa-line-chart {
    color: rgb(255, 136, 0);
}

.fa-phone {
    color: rgb(0, 255, 64);
}

.fa-paper-plane {
    color: rgb(92, 41, 212);
}

/* price plan2 section */
#price {
    padding-top: 100px;

}

.linebr2 hr {
    margin: auto;
    margin-top: 25px;
    width: 200px;
    border: 1px solid rgba(153, 153, 153, 0.432);
    outline: none;
}

.pricehead h1 {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 0px;

}

.pricehead span {
    color: #f1591d;
}

.pricehead p {
    font-weight: 400;
    color: #cacaca;
    padding-top: 25px;
    width: 800px;
    text-align: center;
    line-height: 1.7;
    font-size: 19px;
}

.pricehead {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    border-radius: 3px;
    border: #403d3d 1px solid;
    justify-content: center;
    padding-top: 30px;
    background-color: rgb(12, 12, 12);
    padding-bottom: 30px;
    margin: 0px 10px;
}

.containerbox {
    display: flex;
    justify-content: center;
    margin: 0px 0px;
    margin-top: 100px;
}

.pricebox h1 {
    font-size: 30px;
    font-weight: 700;
}

.pricebox p {
    font-size: 15px;
    padding-top: 15px;
    color: #c9c9c9;
}

.pricingtxt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.pricingtxt h1 {
    font-size: 60px;
    padding-top: 10px;
}

.listing ul {
    padding-top: 30px;
    text-align: left;
}

.listing ul li {
    padding-top: 15px;
    font-size: 15px;

}

.pricebtn {
    padding: 45px 25px 25px 25px;
}

.pricebtn button {
    height: 45px;
    background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22%;
    width: 140px;
    font-size: 16px;
    border-radius: 6px;
    outline: none;
    border: none;
}

.pricebtn button:hover {
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px 5px rgba(251, 83, 67, .2);
    filter: brightness(115%);
}

.fa-times {
    color: red;
}

.fa-check {
    color: #11d111;
}


/* ---- testimonials --------- */
#testimonial {
    padding-top: 100px;
}

.testhead {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align:center;
}

.testhead h1 {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 0px;
}

.clientrow {
    display: flex;
    padding-top: 100px;
    justify-content: center;
    margin: 0px 30px;

}

.clientcard p {
    width: 315px;
    color: #c0c0c0;
    font-weight: 100;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.clientcard h1 {
    font-size: 22px;
    padding-top: 25px;
    font-weight: 600;
}

.clientcard {
    display: flex;
    margin: 0px 15px;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    background-color: #0c0c0c;
    width: 350px;
    height: 250px;
}

.clientcard:hover {
    transition: 0.7s;
    transform: translateY(-10px);
}

.stars {
    padding-top: 8px;
    padding-bottom: 25px;
}

.stars i {
    color: goldenrod;
    font-size: 25px;
    padding-right: 2px;
    padding-left: 2px;
}

.testhead p {
    font-weight: 400;
    color: #cacaca;
    padding-top: 25px;
    width: 800px;
    text-align: center;
    line-height: 1.7;
    font-size: 19px;
}

.clientcard h2 {
    background: linear-gradient(to right, rgb(255, 107, 6) 2%, rgb(255, 1, 107) 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 15px;
    font-size: 19px;
    font-weight: 500;
}

/* FAQ----------------- */
#faq {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.faqleft img {
    height: 600px;
    border-radius: 6px;
}

.faqright {
    padding-left: 40px;
    padding-top: 30px;
}

.faqright h1 {
    font-size: 45px;
    font-weight: 600;
    padding-top: 20px;

}

.faqright h2 {
    font-weight: 600;
    font-size: 16px;

}

.faqright span {
    font-weight: 600;
    color: #f1591d;
}

.faqs-container {
    margin: 0 auto;
    max-width: 600px;
    padding-top: 35px;
}

.faq {
    background-color: transparent;
    border: 1px solid #9FA4A8;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    transition: 0.3s ease;
}

.faq h3 {
    font-size: 17px;
    font-weight: 500;
}

.faq.active::after,
.faq.active::before {
    display: none;
}

.faq.active::before {
    display: none;

}

.faq-title {
    margin: 0 35px 0 0;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 10px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.faq-toggle:focus {
    outline: none;
}

.faq.active .faq-toggle {
    background-color: #ffffff;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    display: block;
}

.faq-toggle .fa-chevron-down {
    color: #83888E;
}

.faq-text {
    color: #cacaca;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

/* blog sections */
#blog {
    padding-top: 100px;
    text-align: center;
}

.bloghead h1 {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 20px;
}

.bloghead span {
    color: #f1591d;
}

.bloghead p {
    font-weight: 400;
    color: #cacaca;
    padding-top: 25px;
    width: 800px;
    text-align: center;
    line-height: 1.7;
    font-size: 19px;
}

.bloghead {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.blogrow {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    align-items: center;
}

.blogcard {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    border-radius: 12px;
    background-color: #0c0c0c;
    margin: 0px 20px;
    padding-bottom: 25px;
}

.blogcard:hover {
    transform: translateY(-10px);
    transition: 0.7s;
}

.blogcard a {
    text-decoration: none;
}

.blogcardtext {
    padding-top: 25px;
    padding-left: 25px;
}

.blogcardtext h1 {
    width: 265px;
    padding-top: 15px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 20px;
}

.blogcardtext p {
    color: #cacaca;
    font-size: 13px;
}

.blogcard img {
    width: 350px;
    height: 220px;
}


/* Contact page */

#contact {
    display: flex;
    padding-top: 100px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contacttext h1 {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 20px;
}

.contacttext span {
    color: #f1591d;
}

.contacttext {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contacttext p {
    font-weight: 400;
    color: #cacaca;
    padding-top: 25px;
    width: 800px;
    text-align: center;
    line-height: 1.7;
    font-size: 19px;
}

.contactrow {
    display: flex;
    padding-top: 60px;
    justify-content: center;
}

.boxinn {
    padding-right: 5px;
}

.contactbox {
    width: 350px;
    height: 200px;
    padding-left: 20px;
    background-color: #0c0c0c;
    margin: 0px 15px;
    border-radius: 12px;
    display: flex;
    padding-top: 30px;
    flex-direction: column;
}

.contactbox:hover {
    transform: translateY(-10px);
    transition: 0.5s;
}

.contactbox i {
    font-size: 45px;
    padding-bottom: 15px;
    color: #f1591d;
}

.contactbox h1 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;

}

.contactbox p {
    margin-top: 10px;
}

/* FOOOTER */

footer {
    margin-top: 120px;
    padding-top: 100px;
    display: flex;
    justify-content: space-around;
    background-color: rgb(15, 15, 15);
    padding-bottom: 40px;
}

footer h1 {
    font-size: 23px;
    font-weight: 600;
}

footer p {
    font-size: 15px;
    font-weight: 300;
    color: #cacaca;
}

footer a {
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    color: #cacaca;
}

.footlinks ul li {
    list-style: none;
    margin: 15px 0px;
}

.footlinks ul {
    padding-top: 35px;
}

.footlinks ul li a:hover {
    color: #f1591d;
    transition: 0.4s;
}

/* email */

.email {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email h1 {
    margin-bottom: 50px;
}

.emailholder {
    width: 400px;
    padding: 10px 10px;
    outline: none;
    color: black;
}

.subs {
    margin-top: 40px;
    height: 50px;
    width: 180px;
    background-color: transparent;
    outline: none;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 16px;
}

.subs:hover {
    background-color: #f1591d;
    box-shadow: 0px 0 20px 5px rgba(201, 121, 0, 0.26);
    transition: 0.6s;
    cursor: pointer;
}

.trusted-section {
  padding-block: min(20vh, 2rem);
  width: calc(min(76.5rem, 90%));
  margin-inline: auto;
  color: #111;
  font-weight: 400;
  font-style: normal;
}

.trusted-heading {
  text-transform: capitalize;
  letter-spacing: 0.025em;
  font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
}

.trusted-section a {
  display: inline-block;
  text-decoration: none;
}

.trusted-container {
  margin-top: 5em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.trusted-card:nth-child(1) .trusted-icon .trusted-iconBox {
   background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22%;
}
.trusted-card:nth-child(2) .trusted-icon .trusted-iconBox {
   background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22%;
}
.trusted-card:nth-child(3) .trusted-icon .trusted-iconBox {
   background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22%;
}
.trusted-iconBox{
    background: linear-gradient(95deg, #ff0200 43%, #df8426 45%, #ff5f5f 68%, #ff3b3b) 91%/218% 22% !important;
}
.trusted-tags {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.trusted-tags li {
  text-transform: uppercase;
  background: var(--clr-tag);
  color: #282828;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.375rem 0.625rem;
  border-radius: 0.188rem;
}

.trusted-tag-branding {
  color: white !important;
  background-color: #fa7e2a !important;
}
.trusted-tag-packaging {
  color: white !important;
  background-color:#fa7e2a !important;
}
.trusted-tag-marketing {
  color: white !important;
  background-color: #fa7e2a !important;
}

.trusted-content {
  padding: 0.938rem 0.625rem;
}

.trusted-title {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
}

.trusted-desc {
  margin: 0.625rem 0 1.25rem;
  color: #565656;
}

.trusted-card-inner {
  position: relative;
  width: inherit;
  height: 18.75rem;
  background: #fa7e2a;
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.trusted-box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.trusted-imgBox {
  position: absolute;
  inset: 0;
}
.trusted-imgBox img {
  width: 100%;
  height: 98%;
  object-fit: cover;
}

.trusted-icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;
}
.trusted-icon:hover .trusted-iconBox {
  transform: scale(1.1);
}

.trusted-icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.trusted-icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

.trusted-iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.trusted-iconBox span {
  color: #fff;
  font-size: 1.5rem;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px !important;
    position: absolute;
    line-height: 1;
    top: 20px;
    left: 20px;
    letter-spacing: normal;
    text-transform: none;
    padding: 5px;
}

.trusted-container {
  margin-top: 5em;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr); /* Default: desktop/laptop */
}

/* Tablets: 2 columns */
@media (max-width: 968px) {
  .trusted-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phones: 1 column */
@media (max-width: 600px) {
  .trusted-container {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* contact footer */

.footcontact {
    display: flex;
    flex-direction: column;
}

.footcontact h1 {
    margin-bottom: 30px;
}

.footcontact p {
    margin: 3px 0px;
    font-size: 13px;
    display: flex;
    align-items: center;
    width: 250px;
}

.footicons {
    margin-top: 10px;
}

.footcontact1 i {
    color: #f1591d;
    margin-right: 5px;
}

.footicons i {
    padding-top: 40px;
    font-size: 23px;
    margin: 0px 8px;
    cursor: pointer;
}

.footicons i:hover {
    color: #f1591d;
    transition: 0.5s;
    cursor: pointer;
}

.footerend {
    background-color: rgb(7, 7, 7);
    padding-top: 25px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}

.footerend p {
    text-align: center;
    margin: 0px 10px;
}

.footcontact1 {
    display: flex;
    justify-content: center;
    flex-direction: column;

}

/* Media Queries with 1600 less*/
@media screen and (max-width:1600px) {
    #home {
        margin-top: 275px;
    }
}

/* Media Queries with 1270 less*/
@media screen and (max-width:1270px) {
    #home {
        margin-top: 245px;
    }

    .hometext p {
        width: auto;
    }

    .list ul li {
        list-style: none;
        margin: 0px 8px;
        padding: 2px 4px;
        font-weight: 400;
    }

    .navbtn button {
        height: 38px;
        padding: 0px 15px;
        font-size: 15px;
    }

    .logo img {
        width: 175px;
        margin-right: 30px;
    }

    /* testimonial section */
    .clientrow {
        flex-direction: column;
        align-items: center;
    }

    .clientcard {
        width: 550px;
        height: 305px;
        margin-bottom: 35px;
    }

    .clientcard p {
        width: 500px;
        font-size: 18px;
    }

    .clientcard h1 {
        font-size: 32px;
        padding-top: 40px;
    }

    .clientcard h2 {
        font-size: 23px;
    }

    .stars i {
        font-size: 30px;
    }


    /*about section */
    .leftabt {
        padding-right: 0px;
        margin: 0px 10px;
    }

    .leftabt img {
        height: 500px;
        border-radius: 12px;
        width: 580px;
    }

    .abtmain {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .rightabt {
        padding-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        margin: 0px 50px;
        width: auto;
    }

    .rightabt h1 {
        font-size: 45px;
        padding-bottom: 25px;
    }

    .rightabt2 p {
        text-align: left;
    }

    .rightabt1 p {
        text-align: left;
    }

    .brand img {
        width: 165px;
    }

    /* price plan */
    .containerbox {
        flex-direction: column;
        align-items: center;
        margin-top: 65px;
    }

    .pricebox {
        margin-bottom: 50px;
        width: 450px;
    }

    .listing ul li {
        font-size: 18px;
    }

    .pricebtn button {
        height: 60px;
        width: 200px;
        font-size: 19px;
    }

    /* faq */
    #faq {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faqright {
        padding-left: 0px;
    }

    /* blog */
    .blogrow {
        align-items: center;
        flex-direction: column;
    }

    .blogcard {
        margin-bottom: 35px;
    }

    /* contact row */
    .contactrow {
        flex-direction: column;
        align-items: center;
    }

    .contactbox {
        margin-bottom: 25px;
        width: 415px;
    }

    .contactbox i {
        font-size: 50px;
    }

    .contactbox h1 {
        font-weight: 600;
        font-size: 25px;
        margin-bottom: 20px;
    }

    /* footer */
    footer {
        padding-right: 10px;
        padding-left: 10px;
    }

    footer h1 {
        font-size: 18px;
        font-weight: 400;
    }

    .emailholder {
        width: 250px;
    }

    .subs {
        height: 42px;
        width: 150px;
    }

    .footcontact p {
        font-size: 13px;
    }


}

/* media queries width 850 more*/
@media screen and (min-width: 851px) and (max-width:1269px) {
    #home {
        margin-top: 200px;
    }

    .contactbtn {
        height: 56px;
        padding: 10px 45px;
        font-size: 16px;
    }

    .hometext h1 {
        font-size: 48px;
    }

    .aboutbtn {
        height: 56px;
        padding: 10px 45px;
        font-size: 16px;

    }
}

/* media queries width 850 less */

@media screen and (max-width: 850px) {
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width:100%;
        min-height: 100vh;
        display: block;
        z-index: 2;
        background-color: rgba(0,0,0,0.8);
        padding-top: 120px;
        transition: 0.4s;
    }
    .mobile-nav a{
        display: block;
        text-align: left;
        text-decoration: none;
        padding-bottom: 12px 16px;
        margin-bottom: 15px;
        text-align: center;
    }
    .mobile-nav ul li{
        list-style: none;
        text-decoration: none;
    }
    
    .mobile-nav.is-active{
        right: 0;
    }
    

    .hamburger {
        position: relative;
        display: block;
        width: 22px;
        height: 29px;
        cursor: pointer;
        z-index: 10;
        margin-right: 25px;
        appearance: none;
        outline: none;
        border: none;
    }

    .hamburger .bar,
    .hamburger::after,
    .hamburger::before {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        margin: 5px 0px;
        transition: .4s;

    }

    .hamburger.is-active:before {
        transform: rotate(-45deg) translate(-4px, 4px);

    }

    .hamburger.is-active:after {
        transform: rotate(45deg) translate(-7px, -7px);

    }

    .hamburger.is-active .bar {
        opacity: 0;
    }


    .navbtn {
        display: none;
    }

    .list ul {
        display: none;
    }

    nav {
        justify-content: space-between;
    }

    .logo img {
        width: 170px;
        margin-left: 25px;
    }

    #home {
        margin-top: 200px;
    }

    .hometext h3 {
        font-weight: 400;
        font-size: 16px;
    }

    .hometext h1 {
        font-size: 45px;
    }

    .hometext p {
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .contactbtn {
        height: 55px;
        padding: 10px 40px;
        font-size: 16px;
    }

    .aboutbtn {
        height: 55px;
        padding: 10px 40px;
        font-size: 16px;

    }

    .navbtn button {
        display: none;
    }

    /* about */
    .brandsrow1 {
        flex-wrap: wrap;
        max-width: 450px;
        margin: auto;
    }

    .brandsrow2 {
        flex-wrap: wrap;
        max-width: 450px;
        margin: auto;
        padding-top: 0px;
    }

    .brand {
        padding: 0px 25px;
    }

    /* service*/
    .servicetext p {
        width: auto;
        margin: 0px 20px;
    }

    /* all p & h1 */
    .rightabt h1 {
        font-size: 40px;
    }

    .pricehead p {
        width: auto;
        margin: 0px 20px;
    }

    .testhead p {
        width: auto;
        margin: 0px 20px;
    }

    .bloghead p {
        width: auto;
        margin: 0px 20px;
    }

    .contacttext p {
        width: auto;
        margin: 0px 20px;
    }

    /*footer*/

    .footlinks {
        display: none;
    }

    .emailholder {
        width: 190px;
    }

    .email h1 {
        margin-bottom: 30px;
    }

    .subs {
        height: 36px;
        font-size: 13px;
        width: 130px;
        margin-top: 25px;
    }

    .footlinks h1 {
        font-size: 15px;

    }

    .footcontact h1 {
        margin-bottom: 21px;
    }

    .footcontact {
        justify-content: center;
    }

    .emailholder {
        margin: 0px 100px;
    }

    .footcontact1 {
        display: none;
    }

    footer {
        display: block;
    }

    .footicons i {
        margin-top: 40px;
        margin-left: 13px;
        padding-top: 0px;
        margin-right: 13px;
    }

    .footerend p {
        text-align: center;
        font-weight: 400;
        font-size: 14px;
    }

    .emailholder {
        width: 206px;
    }
     .footicons {
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

}

/* media queries width 650 less */
@media screen and (max-width: 650px) {

    /* home */

    .hometext h1 {
        font-size: 38px;
        font-weight: 700;
    }

    .hometext h3 {
        font-weight: 300;
        font-size: 14px;
    }

    .hometext p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .contactbtn {
        height: 45px;
        padding: 10px 25px;
        font-size: 15px;
    }

    .aboutbtn {
        height: 45px;
        padding: 10px 25px;
        font-size: 15px;
    }

    /* about */
    .rightabt h1 {
        font-size: 35px;
    }

    .rightabt {
        margin: 0px 20px;
    }

    .leftabt img {
        width: 330px;
        height: 330px;
    }

    .rightabt1 p {
        margin-left: 45px;
        padding-top: 12px;
        font-weight: 100;
        line-height: 1.3;
        letter-spacing: 0.3px;
        font-size: 14px;
    }

    .rightabt2 p {
        margin-left: 45px;
        padding-top: 12px;
        font-weight: 100;
        line-height: 1.3;
        letter-spacing: 0.3px;
        font-size: 14px;
    }

    .brandsrow1 {
        padding-top: 80px;
    }

    .brand {
        padding: 0px 10px;
    }

    /* service */

    .servicetext h1 {
        font-size: 35px;
    }

    .servicetext p {

        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .cardsrow {
        margin: 30px auto;
    }

    .card {
        width: 300px;
        height: 400px;
    }

    .card img {
        height: 190px;
    }

    .cardcontent {
        padding-top: 15px;
        padding-right: 5px;
        padding-left: 10px;
    }

    .card h1 {
        padding-bottom: 10px;
        font-size: 21px;
    }

    .card p {
        line-height: 1.4;
        font-size: 14px;
        letter-spacing: 0.3px;
    }


    /* plan */
    .pricehead h1 {
        font-size: 35px;
    }

    .pricehead p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .listing ul li {
        font-size: 14px;
    }

    .pricebox {
        width: 300px;
    }

    .pricebtn button {
        height: 40px;
        width: 135px;
        font-size: 16px;
    }

    .pricebtn {
        padding: 0px;
        padding-top: 45px;
    }

    /* testimonials */

    .testhead h1 {
        font-size: 35px;
    }

    .testhead p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .clientrow {
        padding-top: 50px;
    }

    .clientcard p {
        width: 270px;
        font-size: 14px;
    }

    .stars i {
        font-size: 25px;
    }

    .clientcard h1 {
        font-size: 25px;
        padding-top: 20px;
    }

    .clientcard h2 {
        font-size: 19px;
    }

    .clientcard {
        width: 300px;
        height: 260px;
    }

    /* faq*/

    .faqright {
        margin: 0px 15px;
    }

    .faqleft img {
        height: 400px;
    }

    .faqright h1 {
        font-size: 35px;
    }

    .faq h3 {
        font-size: 14px;
    }

    .faq-toggle {
        right: 7px
    }

    .faq.active .faq-text {
        font-size: 14px;
    }


    /* blog */
    .bloghead h1 {
        font-size: 35px;
    }

    .bloghead p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .blogcard {
        width: 300px;
        padding-bottom: 20px;
    }

    .blogcard img {
        height: 185px;
    }


    /* contact */
    .contacttext h1 {
        font-size: 35px;
    }

    .contacttext p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;

    }

    .contactbox {
        height: 180px;
        width: 250px;
    }

    .contactbox h1 {
        font-weight: 600;
        font-size: 22px;
    }

    .contactbox i {
        font-size: 42px;
    }

    .contactbox p {
        font-size: 14px;
        font-weight: 300;
    }

   
}

/* media queries width 370 less */

@media screen and (max-width: 420px) {
    .logo img {
        width: 150px;
        margin-right: 0px;
    }

    nav {
        height: 62px;
    }

    .brand img {
        width: 120px;
    }

    .contactbtn {
        height: 40px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .homebtn {
        padding: 15px 5px 5px 5px;
    }

    .hometext {
        margin: 0 10px;
    }

    .aboutbtn {
        height: 40px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .hometext p {
        font-size: 12px;
    }

    .hometext h1 {
        font-size: 29px;
    }

    /* about */
    .leftabt img {
        width: 250px;
        height: 250px;
    }

    /*service */
    .card {
        width: 250px;
        height: 325px;
    }

    .card img {
        height: 160px;
    }

    .cardcontent {
        height: 150px;
    }

    .card h1 {
        padding-bottom: 7px;
        font-size: 19px;
    }

    .card p {
        line-height: 1.3;
        font-size: 12px;
    }

    /* price */
    .listing ul li {
        font-size: 12px;
    }

    .pricebox h1 {
        font-size: 25px;
        font-weight: 700;
    }

    .pricingtxt h1 {
        font-size: 50px;
    }

    .pricebtn button {
        height: 38px;
        width: 115px;
        font-size: 14px;
    }

    .pricebox {
        width: 265px;
    }

    /* testimonial */
    .clientcard p {
        width: 250px;
        font-size: 12px;
    }

    .clientcard {
        width: 265px;
        height: 230px;
    }

    .clientcard h1 {
        font-size: 23px;
        padding-top: 15px;
    }

    .clientcard h2 {
        font-size: 17px;
    }

    /* blog */
    .blogcard {
        width: 265px;
    }

    .blogcard img {
        width: 265px;
    }

    .blogcardtext {
        padding-top: 25px;
        padding-left: 15px;
    }

    .blogcardtext h1 {
        width: 240px;
        padding-top: 15px;
        line-height: 1.5;
        font-weight: 600;
        font-size: 18px;
    }

}