/* Start Global Rules */

/* body {
    background-color: #fff;
    color: #000000;
    font-family: "Open Sans", Arial, sans-serif; 
    font-size: inherit;
    line-height: normal;
    margin: 0;
} */

h1,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    line-height: inherit;
}

/* .box-header {
    font-size: 1.6em;
    color: #000000 !important;
    text-transform: normal;
} */

/* * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
} */

/* :root {
    --main-color: #19448b;
}

html {
    scroll-behavior: smooth;
} */

/* body {
    font-family: 'Cairo', sans-serif;
} */

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
} */

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* End Global Rules */

/* Start Game */

.game {
    position: absolute;
    width: 100%;
}

@media (max-width: 767px) {
    .game {
        position: relative;
    }
}

.image {
    position: relative;
    background-image: url(https://ithink.co/img/client-spotlight/client-spotlight.webp);
    background-size: cover;
    height: 400px;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

.image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 2 1 / 8%);
}

@media (max-width: 767px) {
    .image {
        margin-bottom: 0;
    }
}

/* End Game */

/* Start Register */

.register {
    padding-bottom: 50px;
    position: relative;
    padding-top: 100px;

}

@media (max-width: 991px) {
    .register {
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    .register {
        top: 0;
    }
}

.register .container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .register .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
    }
}

.register .content {
    background-color: #122333;
    padding: 10px 25px 30px;
    flex-basis: 40%;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .register .content {
        flex-basis: 34%;
    }
}

@media (max-width: 767px) {
    .register .content {
        width: 100%;
    }
}

.register .content h2 {
    color: white;
    font-weight: normal;
    font-size: 84px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 50px;
    margin-left: 50px;
}

.register .content h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 65px;
    height: 4px;
    background-color: var(--main-color);
}

@media (max-width: 991px) {
    .register .content h2 {
        font-size: 40px;
    }
}

.register .content ul li i {
    color: #5F893A;
}

.register .content ul li a {
    color: white;
    padding-left: 10px;
    font-size: 18px;
}

.register .content button.button1 {
    background-color: var(--main-color);
    color: white;
    border: 0;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 20px;
    margin-top: 5rem;
}

h2 {
    color: #080808;
}

.register .text {
    margin-bottom: 40px;
    flex-basis: 40%;
    border: 3px solid var(--main-color);
    padding: 20px;
    font-weight: 500;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .register .text {
        color: wheat;
        border-radius: 8px;
    }
}

@media (max-width: 767px) {
    .register .text {
        color: black;
    }
}

/* End Register */

/* Start Boxes */

.boxes {
    padding-bottom: 50px;
}

.boxes .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.box {
    background-color: #F2F8FA;
    padding: 25px 20px 30px;
}

.box span {
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
}

/* .box h2 {
    text-transform: uppercase;
} */

.box p {
    color: #777;
    margin: 10px 0;
}

.box .more a {
    color: var(--main-color);
    margin-right: 5px;
}

.box .more i {
    color: var(--main-color);
    font-size: 11px;
}

/* End Boxes */

/* Start Article */

.article1 {
    padding-top: 10px;
    padding-bottom: 10px;
    /* background-color: rgb(205 205 205 / 21%); */
}

.circle6 img {
    height: 250px;
    width: 250px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.article1 .data {
    /* background-image: url(https://i.postimg.cc/1zGXjpnn/florian-wehde-1LaUP9zVNhk-unsplash.jpg); */
    background-size: cover;
    background-position: bottom;
    height: 500px;
    position: relative;
    padding: 20px;
    color: white;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.article1 .data::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(26 28 30 / 21%); */
    z-index: -1;
}

@media (max-width: 767px) {
    .article1 .data {
        flex-direction: column;
    }
}

.article1 .data .text {
    flex-basis: 40%;
    ;
}

.article1 .data .text h2 {
    position: relative;
    margin-bottom: 50px;

    line-height: normal;
    font-size: 35px;
}

.article1 .data .text h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 65px;
    height: 4px;
    background-color: var(--main-color);
}

.article1 .data .text p {
    color: #000000;
    margin-bottom: 20px;
}

.article1 .data .text button.button1 {
    background-color: var(--main-color);
    color: white;
    border: 0;
    border-radius: 4px;
    padding: 13px 15px;
    font-size: 18px;
    margin-top: 15px;
    text-transform: uppercase;
}

.article1 .data img {
    width: 400px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .article1 .data img {
        display: none;
    }
}

.container:after,
.container:before {
    display: table;
    content: normal;
    line-height: 0;
}

button,
input,
label {
    line-height: normal;
}

iframe {
    box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.5);
}



.circle:nth-child(1) {
    float: left;
    width: 450px;
    height: 450px;
    margin: 20px;
    shape-outside: circle(50% at 30%);
    clip-path: circle(50% at 0%);
    background: rgb(173, 216, 230);
}

.circle:nth-child(2) {
    float: right;
    right: 0;
    width: 250px;
    height: 250px;
    /* border-radius: 50%; */
    transform: rotate(180deg);
    shape-outside: circle(50% at 30%);
    clip-path: circle(50% at 0%);
    background: rgb(70 134 240 / 60%);
}

.circle3 {
    float: right;
    right: 115px;
    width: 50px;
    height: 50px;
    margin: 20px;
    border-radius: 50%;
    background: rgb(70 134 240 / 60%);
}

.circle4 {
    float: left;
    width: 250px;
    height: 250px;
    /* border-radius: 50%; */
    /* transform: rotate(180deg); */
    shape-outside: circle(50% at 10%);
    clip-path: circle(50% at 30%);
    background: rgb(28 69 136 / 90%);
}

.circle5 {
    float: left;
    width: 70px;
    height: 70px;
    /* margin: 20px; */
    border-radius: 50%;
    background: rgb(28 69 136 / 50%);
}


@media(max-width:991px) {

    .circle,
    .circle3,
    .circle4,
    .circle5 {
        display: none;
    }

    iframe {
        width: 100%;
        height: 400px;
    }
}

@media(min-width:992px) and (max-width:1449px) {

    .circle,
    .circle3,
    .circle4,
    .circle5 {
        position: absolute;
    }
}

/* section.page-top {
    background-color: unset;
    border-bottom: 1px solid #ccc;
    border-top: none;
} */

/* End Article */