main {
    background: url("../img/publishing-banner-main.jpg") center/cover no-repeat;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero {
    color: var(--primary-white);
}

.hero h5 {
    font-weight: 500;
}

.hero .content h1 {
    margin-top: 15px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
}

.hero h1 span {
    color: var(--primary-color-light);
}

.hero p {
    margin-top: 18px;
    color: var(--primary-para-color);
}

.hero .content button {
    margin-top: 30px;
}

.hero .hero-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.hero .hero-brand img {
    height: 68px;
    object-fit: contain;
}

@media (max-width: 500px) {
    main {
        padding: 50px 0 50px 0;
    }

    .hero .content h1 {
        font-size: 38px;
    }

    .hero .hero-brand img {
        height: 50px;
    }
}

.hero form {
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 20px;
}

@media (min-width: 786px) {
    .hero form {
        width: 75%;
        margin: 0 0 0 auto;
    }
}

.hero form h1 {
    font-size: 24px;
    font-weight: 600;
}

.hero form h1 span {
    font-size: 30px;
}

.hero form .input-cont {
    margin-top: 14px;
}

.hero form .input-cont>*+* {
    margin-top: 14px;
}

.hero form input,
.hero form textarea {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    color: gray;
    border: 1px solid gray;
    border-radius: 3px;
}

.hero form button {
    text-align: center !important;
    width: 100%;
    display: inline;
    margin-top: 10px;
    font-size: 18px;
}

.craft {
    margin-top: 70px;
}

.craft img {
    width: 93%;
    margin: 0 auto 0 0;
}

@media (max-width: 500px) {
    .craft img {
        width: 100%;
    }
}

.craft h5 {
    background-color: #BE9A52;
    color: var(--primary-white);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.craft h1 {
    margin-top: 12px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
}

.craft h1 span {
    color: var(--primary-color);
}

.craft p {
    color: var(--primary-para-dark);
    font-size: 15px;
    margin-top: 13px;
}

.craft ul {
    color: var(--primary-para-dark);
    margin-top: 20px;
}

.craft ul>*+* {
    margin-top: 6px;
}

.craft ul li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
}

.craft ul i {
    color: var(--primary-color);
}

.services-section {
    margin-top: 110px;
}

.services-section h5 {
    background-color: #BE9A52;
    color: var(--primary-white);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.services-section h1 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 12px;
}

.services-section p {
    color: var(--primary-para-dark);
    font-size: 15px;
    margin-top: 10px;
}

.services-section .services-container .service{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 4px;
    border: 1px solid gainsboro;
    padding: 16px;
    transition: scale 0.4s ease;
}

.services-section .services-container .service:hover{
    scale: 1.05;
}

.services-section .services-container .service h1{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: rgb(34, 54, 69);
}

.services-section .services-container .service img{
    height: 70px;
    margin-bottom: 14px;
}

.why-choose {
    margin-top: 110px;
}

.why-choose .content {
    width: 90%;
    margin: 0 auto 0 0;
}

.why-choose h5 {
    background-color: #BE9A52;
    color: var(--primary-white);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.why-choose h1 {
    margin-top: 12px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
}

.why-choose h1 span {
    color: var(--primary-color);
}

.why-choose p {
    color: var(--primary-para-dark);
    font-size: 15px;
    margin-top: 13px;
}

.why-choose li{
    color: var(--primary-para-dark);
}

.why-choose p span {
    color: var(--primary-color);
    font-weight: 500;
}

.why-choose img {
    width: 100%;
    object-fit: contain;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px;
    margin-top: 36px;
}

@media (max-width:500px) {
    .why-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.why-content>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-content>div img {
    height: 70px;
    object-fit: contain;
}

.why-content>div h1 {
    font-size: 26px;
    color: #223235;
    font-weight: 600;
    margin-top: 16px;
}

.why-content>div p {
    font-size: 14px;
    /* line-height: 1.2; */
    color: var(--primary-para-dark);
}

.how-it-works {
    margin-top: 80px;
}

.how-it-works h1 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 12px;
}

.how-it-works p {
    color: var(--primary-para-dark);
    font-size: 15px;
    margin-top: 10px;
}

.how-it-works .how-it-container .how-it h1{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: rgb(34, 54, 69);
}

.how-it-works .how-it-container .how-it img{
    height: 50px;
    margin-bottom: 14px;
}