@media screen and (min-width: 1120px) {
    .index-link::after {
        width: 100%;
    }

    .container {
        width: 100%;
    }


    .center-container {
        max-width: 1492px;
        padding: 48px 16px;
        margin: 0 auto;
    }

    .index {
        background: url('../img/index-bg.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: calc(200vh - 100px);
        width: 100%;
    }

    .index-container {
        width: 100%;
        height: 100vh;
        padding: 56px 52px;
        display: flex;
        justify-content: space-between;
    }

    .index-left {
        width: 60%;
    }

    .index-title {
        width: 100%;
        font-weight: 700;
        color: #2b3a4e;
        font-size: 88px;
        line-height: 1.1;
        margin-top: 2em;
    }

    .index-about {
        width: 320px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #e29463;
        background-color: #e29463;
        color: #0B0C10;
        margin-top: 40px;
    }

    .index-about a {
        line-height: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .inder-container2 {
        width: 100%;
        height: calc(100vh - 100px);
        background-color: rgba(0, 33, 54, 0.7);
        background-color: rgba(226, 148, 99, 0.5);
    }

    .index-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .index-left2 {
        width: 300px;
        height: 300px;
    }

    .index-right2 {
        flex: 1;
        margin-left: 100px;
    }

    .index-title2 {
        width: 100%;
        font-weight: 700;
        color: #fff;
        font-size: 88px;
        line-height: 1.1;
        margin-top: 1.5em;
    }

    .index-about2 {
        width: 170px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #e29463;
        background-color: #e29463;
        color: #0B0C10;
        margin-top: 40px;
    }

    .index-about2 a {
        line-height: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .index-right {
        margin-top: 150px;
    }

    .circle {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        position: relative;
        border: 1px solid #2b3a4e;
        animation: rotateCircle 5s linear infinite;
    }

    @keyframes rotateCircle {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .rotundity {
        width: 40px;
        height: 40px;
        background-color: #e29463;
        border-radius: 50%;
        position: absolute;
        top: calc(50% - 20px);
        left: calc(100% - 20px);
    }

    .circle2 {
        top: calc(50% - 125px);
        left: calc(50% - 125px);
        width: 250px;
        height: 250px;
        border-radius: 50%;
        position: relative;
        border: 1px solid #2b3a4e;
        animation: rotateCircle2 5s linear infinite;
    }

    @keyframes rotateCircle2 {
        0% {
            transform: rotate(360deg);
        }

        100% {
            transform: rotate(-360deg);
        }
    }

    .rotundity {
        width: 20px;
        height: 20px;
        background-color: #e29463;
        border-radius: 50%;
        position: absolute;
        top: -10px;
        left: calc(50% - 10px);
    }

    .triangle {
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 30px solid #e29463;
        position: absolute;
        top: calc(50% - 15px);
        left: calc(50% - 25px);
        transform: rotate(45deg);
        animation: rotateCircle3 5s linear infinite;
    }

    @keyframes rotateCircle3 {
        0% {
            transform: rotate(45deg);
        }

        100% {
            transform: rotate(405deg);
        }
    }

    .circle-container {
        margin-top: 150px;
        width: 300px;
        height: 300px;
        display: flex;
        flex-flow: wrap;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .circle3 {
        width: 150px;
        height: 150px;
        border: 3px solid #fff;
        border-radius: 50%;
    }

    .circle3:nth-child(2) {
        margin-left: -30px;
    }

    .circle3:nth-child(3) {
        margin-top: -30px;
    }

    .circle3:nth-child(4) {
        margin-left: -30px;
        margin-top: -30px;
        background-color: #fff;
    }
}

@media screen and (max-width: 1120px) and (min-width: 768px) {
    .index-link::after {
        width: 100%;
    }

    .container {
        width: 100%;
    }


    .center-container {
        max-width: 1492px;
        padding: 48px 16px;
        margin: 0 auto;
    }

    .index {
        background: url('../img/index-bg.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: calc(200vh - 100px);
        width: 100%;
    }

    .index-container {
        width: 100%;
        height: 100vh;
        padding: 56px 52px;
    }

    .index-title {
        width: 100%;
        font-weight: 700;
        color: #2b3a4e;
        font-size: 70px;
        line-height: 1.1;
        margin-top: 3em;
    }

    .index-about {
        width: 320px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #e29463;
        background-color: #e29463;
        color: #0B0C10;
        margin-top: 40px;
    }

    .index-about a {
        line-height: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .inder-container2 {
        width: 100%;
        height: calc(100vh - 100px);
        background-color: rgba(0, 33, 54, 0.7);
        background-color: rgba(226, 148, 99, 0.5);
    }

    .index-content {
        width: 100%;
        padding: 56px 52px;
    }

    .index-title2 {
        width: 100%;
        font-weight: 700;
        color: #fff;
        font-size: 70px;
        line-height: 1.1;
        margin-top: 1.5em;
    }

    .index-about2 {
        width: 170px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #e29463;
        background-color: #e29463;
        color: #0B0C10;
        margin-top: 40px;
    }

    .index-about2 a {
        line-height: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {

    .card-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        padding: 52px 0 60px 0;
    }

    .card-text {
        width: 43%;
    }

    .card-eyebrow {
        font-weight: 900;
        font-size: 12px;
        line-height: 136%;
        color: #334255;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .card-spot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: rgba(255, 153, 51, 1);
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .card-title {
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        color: #e29463;
    }

    .card-content {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        color: #0B0C10;
        margin-top: 22px;
    }

    .card-btn {
        margin-top: 30px;
        height: 45px;
    }

    .card-btn-a {
        background-color: #e29463;
        border-color: #e29463;
        border-radius: 30px;
        color: #fff;
        padding: 0 24px;
        line-height: 45px;
        height: 45px;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-img {
        max-width: 50%;
        padding-bottom: 0;
        min-height: 384px;
    }

    .news-container {
        width: 100%;
        background-color: #e29463;
    }

    .news-header {
        font-size: 44px;
        margin-bottom: 48px;
        color: #fff;
        line-height: 120%;
        font-weight: 400;
    }

    .news-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .news-item {
        width: 32%;
        background-color: #e27363;
        margin-bottom: 20px;
        color: #fff;
        padding: 28px;
        transition: all 0.3s ease-in-out;

    }

    .news-link {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;

    }

    .news-img {
        width: 100%;
        height: 230px;
        margin-bottom: 16px;

        overflow: hidden;
    }

    .news-img img {
        width: 100%;
        height: 230px;
        transition: all 0.3s ease-in-out;
    }

    .news-img:hover img {
        transform: scale(1.1);
    }

    .news-title {
        font-size: 23px;
        font-weight: 600;
        line-height: 140%;
        text-decoration: dotted;
        display: inline;
        background-image: linear-gradient(to bottom, #fff, #fff);
        background-position: 0 calc(100%);
        background-repeat: no-repeat;
        background-size: 0% 3px;
        animation-fill-mode: forwards;
        padding-bottom: 3px;
        transition: background-size 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .news-item:hover {
        transform: translateY(-5px);

    }

    .news-link:hover .news-title {
        background-size: 100% 2px;
    }

    .news-time {
        margin: 16px 0;
    }

    .news-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-contact-link {
        color: #fff;
        width: 200px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #fff;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .index-link::after {
        width: 100%;
    }

    .container {
        width: 100%;
    }


    .center-container {
        max-width: 1492px;
        padding: 48px 16px;
        margin: 0 auto;
    }

    .index {
        background: url('../img/index-bg.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: calc(200vh - 100px);
        width: 100%;
    }

    .index-container {
        width: 100%;
        height: 100vh;
        padding: 56px 20px;
    }

    .index-title {
        width: 100%;
        font-weight: 700;
        color: #2b3a4e;
        font-size: 40px;
        line-height: 1.1;
        margin-top: 3em;
    }

    .index-about {
        width: 320px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #e29463;
        background-color: #e29463;
        color: #0B0C10;
        margin-top: 40px;
    }

    .index-about a {
        line-height: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .inder-container2 {
        width: 100%;
        height: calc(100vh - 100px);
        background-color: rgba(0, 33, 54, 0.7);
        background-color: rgba(226, 148, 99, 0.5);
    }

    .index-content {
        width: 100%;
        padding: 56px 20px;
    }

    .index-title2 {
        width: 100%;
        font-weight: 700;
        color: #fff;
        font-size: 40px;
        line-height: 1.1;
        margin-top: 1.5em;
    }

    .index-about2 {
        width: 170px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #e29463;
        background-color: #e29463;
        color: #0B0C10;
        margin-top: 40px;
    }

    .index-about2 a {
        line-height: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
        padding: 52px 0 10px 0;
        flex-wrap: wrap;
    }

    .card-container-reverse {
        flex-direction: row;
    }

    .card-text {
        width: 100%;
    }

    .card-eyebrow {
        font-weight: 900;
        font-size: 12px;
        line-height: 136%;
        color: #334255;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .card-spot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: rgba(255, 153, 51, 1);
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .card-title {
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        color: #e29463;
    }

    .card-content {
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        color: #0B0C10;
        margin-top: 22px;
    }

    .card-btn {
        margin-top: 30px;
        height: 45px;
    }

    .card-btn-a {
        background-color: #e29463;
        border-color: #e29463;
        border-radius: 30px;
        color: #fff;
        padding: 0 24px;
        line-height: 45px;
        height: 45px;
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-img {
        max-width: 100%;
        padding-bottom: 0;
        margin-bottom: 30px;
    }

    .news-container {
        width: 100%;
        background-color: #e29463;
    }

    .news-header {
        font-size: 30px;
        margin-bottom: 48px;
        color: #fff;
        line-height: 120%;
        font-weight: 400;
    }

    .news-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .news-item {
        width: 98%;
        background-color: #e27363;
        margin-bottom: 20px;
        color: #fff;
        padding: 28px;
        transition: all 0.3s ease-in-out;

    }

    .news-link {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;

    }

    .news-img {
        width: 100%;
        margin-bottom: 16px;

        overflow: hidden;
    }

    .news-img img {
        width: 100%;
        transition: all 0.3s ease-in-out;
    }

    .news-img:hover img {
        transform: scale(1.1);
    }

    .news-title {
        font-size: 23px;
        font-weight: 600;
        line-height: 140%;
        text-decoration: dotted;
        display: inline;
        background-image: linear-gradient(to bottom, #fff, #fff);
        background-position: 0 calc(100%);
        background-repeat: no-repeat;
        background-size: 0% 3px;
        animation-fill-mode: forwards;
        padding-bottom: 3px;
        transition: background-size 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .news-item:hover {
        transform: translateY(-5px);

    }

    .news-link:hover .news-title {
        background-size: 100% 2px;
    }

    .news-time {
        margin: 16px 0;
    }

    .news-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-contact-link {
        color: #fff;
        width: 200px;
        height: 44px;
        border-radius: 25px;
        border: 1px solid #fff;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        width: 80%;
        margin: 20px auto 10px;
    }
}