@import "globals.css";

html,
body {
    background-color: var(--gray-color);
}

.header {
    padding: 4rem 0;
    overflow: hidden;
}

.header .container {
    display: flex;
    justify-content: space-between;
}

.header .container .header-contents {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    z-index: 2;
    position: relative;
}

.header .container .header-contents .targ {
    width: auto;
    max-width: max-content;
    padding: 8px 16px;
    border-radius: 5px;
    background: rgba(7, 67, 88, 0.15);
    border-radius: 5px;
}

.header .container .header-contents .targ h6 {
    color: #074358;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.header .container .header-contents h1 {
    color: #1A1A1A;
    font-family: "Inter", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 50px;
}

.header .container .header-contents h1 span {
    color: #074358;
}

.header .container .header-contents p {
    color: #1A1A1A;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.header .container .header-contents p span {
    font-weight: 600;
}

.header .container .header-contents .header-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-direction: row;
    justify-content: start;
}

.header .container .header-contents .header-buttons a {
    font-size: 16px;
    display: flex;
    gap: 10px;
    font-weight: 400;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background-color: #074358;
    border: 2px solid var(--primary-color);
    color: white;
    justify-content: center;
    align-items: center;
}

.header .container .header-contents .header-buttons a.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: #1A1A1A;
    font-weight: 600;
}

.header .header-image img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .header {
        position: relative;
        overflow: hidden;
    }

    .header .header-image {
        position: absolute;
        right: -20%;
        top: 0;
    }
}

@media screen and (max-width: 900px) {
    .header .container .header-contents {
        max-width: 450px;
    }

    .header .container .header-contents h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 800px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .header .container .header-contents {
        align-items: center;
        text-align: center;
    }

    .header .header-image {
        position: relative;
        right: unset;
        top: unset;
    }
}

@media screen and (max-width: 500px) {
    .header .container .header-contents .header-buttons {
        flex-direction: column;
    }
}

.features {
    padding: 2rem 0;
    background: #F6F6F6;
}

.features .features-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media screen and (max-width: 1400px) {
    .features .features-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .features .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .features .features-list {
        grid-template-columns: 1fr;
    }
}

.features .features-list .item-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 1.5rem 1.5rem;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    background: #EEE;
}

.features .features-list .item-box .item-icon {
    width: 60px;
    height: 60px;
    background-color: #D4E1E6;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features .features-list .item-box .item-icon img {
    width: 30px;
    height: 30px;
}

.features .features-list .item-box .item-contents {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.features .features-list .item-box .item-contents h6 {
    color: #074358;
    font-size: 18px;
    font-weight: 600;
}

.features .features-list .item-box .item-contents p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
}

.benefits {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background: var(--primary-color);
    position: relative;
}

.benefits .container {
    z-index: 2;
    position: relative;
}

.benefits::before {
    width: 100%;
    height: 100%;
    content: "";
    background: url(../images/ellipse.png) no-repeat;
    left: 0;
    top: 0;
    position: absolute;
    background-position-x: right;
    background-position-y: center;
}

.benefits::after {
    width: 100%;
    height: 100%;
    content: "";
    background: url(../images/pattern-2.svg) no-repeat;
    left: 0;
    top: 0;
    position: absolute;
    background-position-x: -340px;
}

.benefits h2 {
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.benefits .benefits-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

@media screen and (max-width: 1400px) {
    .benefits .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits .benefits-list .item-box .item-contents {
        margin-right: auto;
    }
}

@media screen and (max-width: 800px) {
    .benefits .benefits-list {
        grid-template-columns: 1fr;
    }
}

.benefits .benefits-list .item-box {
    width: 100%;
    height: 130px;
    border-radius: 5px;
    padding: 2rem 30px;
    background: #D4E1E6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.benefits .benefits-list .item-box .item-icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background: #CBE0E9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.benefits .benefits-list .item-box .item-icon img {
    width: 40px;
    height: 40px;
}

.benefits .benefits-list .item-box .item-contents {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefits .benefits-list .item-box .item-contents h6 {
    color: #074358;
    font-size: 18px;
    font-weight: 600;
}

.benefits .benefits-list .item-box .item-contents p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
}

.register {
    padding: 8rem 0;
    overflow: hidden;
}

.register .section-title {
    padding: 0;
}

.register .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.register .register-contents {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.register .register-contents h2 {
    text-align: left;
}

.register .register-contents h2 span {
    color: #074358;
}

.register .register-contents ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register .register-contents ul li {
    color: #1A1A1A;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
}

.register .register-image img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .register .container {
        flex-direction: column;
    }

    .register .section-title {
        padding: 0 1rem;
    }

    .register .register-contents {
        align-items: center;
        text-align: center;
    }

    .register .register-contents h2 {
        text-align: center;
    }
}

.our-services {
    padding: 8rem 0;
    background-color: #F6F6F6;
}

.our-services .services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

@media screen and (max-width: 1400px) {
    .our-services .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .our-services .services-list {
        grid-template-columns: 1fr;
    }
}

.our-services .services-list .item-box {
    padding: 30px 50px;
    border-radius: 5px;
    background: #EEE;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.our-services .services-list .item-box .item-header {
    display: flex;
    justify-content: center;
}

.our-services .services-list .item-box .item-header .header-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.our-services .services-list .item-box .item-header .header-box {
    width: 210px;
    height: 160px;
    padding: 15px 15px;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    background: #EAEAEA;
}

.our-services .services-list .item-box .item-header .header-box .header-icon {
    width: 65px;
    height: 60px;
    border-radius: 5px;
    background: #D4E1E6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.our-services .services-list .item-box .item-header .header-box .header-icon img {
    width: 30px;
    height: 30px;
}

.our-services .services-list .item-box .item-header .header-contents {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.our-services .services-list .item-box .item-header .header-contents h6 {
    color: #074358;
    font-size: 18px;
    font-weight: 600;
}

.our-services .services-list .item-box .item-header .header-contents p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
}

.our-services .services-list .item-box .item-body {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.queries {
    padding: 6rem 0;
    overflow: hidden;
}

.queries .container {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
}

.queries .container .queries-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.queries .container .queries-list .item {
    max-width: 250px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.queries .container .queries-list .item img {
    width: 40px;
    height: 40px;
}

.queries .container .queries-list .item p {
    color: #1A1A1A;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
}

.queries .container .queries-list .item p span {
    font-weight: 700;
}

.queries .container .queries-list.left-contents {
    align-items: start;
}

.queries .container .queries-list.left-contents .item:nth-child(odd) {
    margin-left: 50px;
}

.queries .container .queries-list.right-contents {
    align-items: end;
}

.queries .container .queries-list.right-contents .item:nth-child(odd) {
    margin-right: 50px;
}

@media screen and (max-width: 1000px) {
    .queries-img {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .queries .container {
        flex-direction: column;
        gap: 60px;

    }

    .queries .container .queries-list.left-contents {
        align-items: center;
    }

    .queries .container .queries-list.left-contents .item:nth-child(odd) {
        margin-left: 0;
    }

    .queries .container .queries-list.right-contents {
        align-items: center;
    }

    .queries .container .queries-list.right-contents .item:nth-child(odd) {
        margin-right: 0;
    }
}


.our-plans {
    padding: 6rem 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.our-plans::before {
    width: 100%;
    height: 100%;
    content: "";
    background: url(../images/pattern.svg) no-repeat;
    left: 0;
    top: 0;
    position: absolute;
    background-position-x: calc(100% + 400px);
    background-position-y: calc(100% + 200px);
}

.our-plans::after {
    width: 100%;
    height: 100%;
    content: "";
    background: url(../images/ellipse-2.png) no-repeat;
    left: 0;
    top: 0;
    position: absolute;
    background-position-y: 50px;
    background-position-x: 0;
}

.our-plans .container {
    position: relative;
    z-index: 2;
}

.our-plans .plans-list {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.our-plans .plans-list .item-box {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    background: #D4E1E6;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.our-plans .plans-list .item-box .box-header {
    display: flex;
    flex-direction: column;
}

.our-plans .plans-list .item-box .box-header h3 {
    color: #074358;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.our-plans .plans-list .item-box .box-header p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.our-plans .plans-list .item-box .box-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: auto;
}

.our-plans .plans-list .item-box .box-body ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.our-plans .plans-list .item-box .box-body ul li {
    color: #000;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

.our-plans .plans-list .item-box .box-body .item-price {
    display: flex;
    flex-direction: column;
}

.our-plans .plans-list .item-box .box-body .item-price h6 {
    color: #074358;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}

.our-plans .plans-list .item-box .box-body .item-price p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.our-plans .plans-list .item-box .box-body .item-btn {
    width: 100%;
    min-height: 40px;
    background: #074358;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .our-plans .plans-list {
        flex-direction: column;
        align-items: center;
    }
}

.trigger {
    padding: 6rem 0;
    overflow: hidden;
}

.trigger .trigger-box {
    width: 100%;
    min-height: 280px;
    background-color: #074358;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}

.trigger .trigger-box .trigger-contents {
    max-width: 530px;
    padding: 55px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trigger .trigger-box .trigger-contents h3 {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
}

.trigger .trigger-box .trigger-contents p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}

.trigger .trigger-box .trigger-contents p span {
    font-weight: 700;
}

.trigger .trigger-box .trigger-contents .trigger-btn {
    max-width: max-content;
    padding: 0.5rem 3rem;
    border-radius: 30px;
    background: #FFF;
    margin-top: 10px;
    color: #074358;
    font-size: 15px;
    font-weight: 500;
}

.trigger .trigger-box .trigger-img {
    width: 550px;
    position: relative;
    display: flex;
    justify-content: center;
    background: url(../images/scribble.svg) calc(100% - 50px) 40px no-repeat, url(../images/ellipse-3.png);
}

.trigger .trigger-box .trigger-img img {
    position: absolute;
    bottom: 0;
}

@media screen and (max-width: 850px) {
    .trigger .trigger-box .trigger-img {
        background: url(../images/scribble.svg) calc(100% - 50px) 40px no-repeat, url(../images/ellipse-3.png) center;
    }
}

@media screen and (max-width: 750px) {
    .trigger .trigger-box {
        overflow: hidden;
    }
}

@media screen and (max-width: 550px) {
    .trigger .trigger-box {
        position: relative;
    }
    .trigger .trigger-box .trigger-img {
        background: unset;
        position: absolute;
        right: 0;
        bottom: 0;

    }
    .trigger .trigger-box .trigger-img img {
        opacity: 0.1;
        right: 0;
    }
}

.pulse-hover:hover {
    transform: scale(1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(7, 67, 88, 0.7);
    }

    70% {
        transform: scale(0.95);
        box-shadow: 0 0 0 10px rgba(7, 67, 88, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(7, 67, 88, 0);
    }
}