body {
    font-family: 'Roboto', sans-serif;
}

.circleContainer {
    display: grid;
    place-items: center;
}

.outerCircle {
    z-index: 1;
    border-radius: 50%;
    background-color: #424243;
    width: 300px;
    height: 300px;
    display: grid;
    place-items: center;
}

.innerCircle {
    z-index: 2;
    border: 2px solid #000;
    border-radius: 50%;
    background-image: linear-gradient(to bottom right, #a87f41, #fde7cf);
    width: 286px;
    height: 286px;
    display: grid;
    place-items: center;
}

.circleItems {
    z-index: -1;
    border-radius: 50%;
    border: 2px solid #000;
    width: 236px;
    height: 236px;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    top: -48px;
    left: -48px;
}

.circleItem123 {
    width: 118px;
    height: 118px;
    border-top-left-radius: 100%;
    background-image: linear-gradient(to bottom right, #5c2e77, #b483b3, #b483b3);
}

.circleItem123 img {
    transform: rotate(-45deg);
    position: relative;
    top: 40px;
    left: 19px;
    height: 20px;
}

.circleItem123:hover {
    background-image: linear-gradient(to bottom right, #5d2e79, #996c99, #996c99);
}

.circleItemGo {
    width: 118px;
    height: 118px;
    border-top-right-radius: 100%;
    background-image: linear-gradient(to bottom left, #1f6666, #619686, #619686);
}

.circleItemGo img {
    transform: rotate(45deg);
    position: relative;
    top: 40px;
    left: 36px;
    height: 20px;
}

.circleItemGo:hover {
    background-image: linear-gradient(to bottom left, #175252, #45695e, #45695e);
}

.circleItemV5 {
    width: 118px;
    height: 118px;
    border-bottom-left-radius: 100%;
    background-image: linear-gradient(to top right, #b40a21, #e9725f, #e9725f);
}

.circleItemV5 img {
    transform: rotate(-135deg);
    position: relative;
    top: 50px;
    left: 25px;
    height: 20px;
}

.circleItemV5:hover {
    background-image: linear-gradient(to top right, #ad1b2f, #c76556, #c76556);
}

.circleItemIq {
    width: 118px;
    height: 118px;
    border-bottom-right-radius: 100%;
    background-image: linear-gradient(to top left, #18507a, #689bbe, #689bbe);
}

.circleItemIq img {
    transform: rotate(135deg);
    position: relative;
    top: 50px;
    left: 45px;
    height: 20px;
}

.circleItemIq:hover {
    background-image: linear-gradient(to top left, #1b5683, #4b7a9c, #4b7a9c);
}

.vexCircle {
    border: 3px solid #000;
    border-radius: 50%;
    background-image: radial-gradient(#a3a3a3, #5f5e5e);
    width: 142px;
    height: 142px;
    display: grid;
    place-items: center;
    position: relative;
}

.vexCircle:hover {
    background-image: radial-gradient(#706f6f, #464444);
}

.vexLogo {
    width: 100px;
    position: absolute;
    top: 39%;
    transition: ease 0.3s;
}

.vexCircle:hover .vexLogo {
    width: 90px;
}

.carousel-item {
    height: 50vh;
}

.carousel-caption {
    background-color: rgba(58, 57, 57, 0.5);
    border-radius: 2em;
}

.carousel-caption h3,
.carousel-caption p {
    text-shadow: 0px 0px 3px white;
}

.nav-link img {
    height: 20px;
}

.carousel-caption img {
    height: 40px;
}

.cells {
    height: 100%;
}

.cells .btn {
    border: 2px solid transparent;
}

.cells .btn:hover {
    border: 2px solid #fff;
}

.cell {
    border-radius: 15px;
    display: grid;
    place-items: center;
    align-items: flex-start;
    box-shadow: 6px 6px 14px rgb(134, 134, 134);
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

@media (min-width: 1200px) {
    .cell:hover {
        transform: scale(1.4);
        transition: 500ms;
        box-shadow: none;
        z-index: 100;
    }
    .cell:hover .hidden {
        transform: scale(1);
        transition: 500ms;
    }
    .hidden {
        transform: scale(0);
    }
}

.cell .mainimg {
    border-radius: 10px;
    width: 100%;
}

.cell .imglogo {
    height: 14px;
}

.cell h2 {
    display: none;
}

.cell::after {
    content: "";
    position: absolute;
    bottom: 0.4rem;
    left: 1rem;
    height: 3rem;
    width: 3.5rem;
    transform: rotate(12deg);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.cell::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 1.5rem;
    border-bottom-left-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.vex123 {
    background-image: linear-gradient(to bottom, #b462be, #532c58);
}

.vexgo {
    background-image: linear-gradient(to bottom, #197c82, #0e4547);
}

.vexiq {
    background-image: linear-gradient(to bottom, #1a77b8, #12507c);
}

.vexv5 {
    background-image: linear-gradient(to bottom, #d52c34, #992228);
}

.vexexp {
    background-image: linear-gradient(to bottom, #d22630, #d71d27);
}

.vexaim {
    background-image: linear-gradient(to bottom, #03228b, #011864);
}

.vexcte {
    background-image: linear-gradient(to bottom, #029c3d, #02782f);
}

.vexair {
    background-image: linear-gradient(to bottom, #D1420A, #af3504);
}

.specradius {
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

footer {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.nav-item {
    margin-left: 10px;
    margin-right: 10px;
}

.nav-item:hover img {
    /*background-color: #c9c7c7;*/
    transform: scale(1.3);
    transition: 300ms ease-in-out;
}

.activ img {
    /*background-color: #c9c7c7;*/
    transform: scale(1.3);
}

.red-texture {
    background: url(/img/bcg-texture.png)
}

.fullheight {
    min-height: 76vh;
}

.pos-rel {
    position: relative;
}

.no-deco {
    text-decoration: none;
}

#page-container {
    position: relative;
    /*min-height: 100vh;*/
}

.content-wrap {
    height: auto;
}

.bigfooter {
    width: 100%;
    border-top: 12px solid rgb(56, 56, 56);
}

.foot img {
    height: 45px;
}

.foot a {
    opacity: 0.6;
}

.foot a:hover {
    opacity: 1;
}

.img-button {
    height: 50px;
    position: absolute;
    left: -6px;
    top: -7px;
    padding: 0.5rem;
    border-radius: 15%;
}

.logo {
    font-size: 120%;
    font-weight: 600;
    font-style: italic;
    position: relative;
    top: 8px;
}

.cover img {
    height: 100vh;
}

.border-change {
    border-bottom: 1px dashed #757575;
}

@media (min-width: 992px) {
    .border-change {
        border-right: 1px dashed #757575;
        border-bottom: none;
    }
}

@media (max-width: 770px) {
    .nav-item {
        margin: .5rem
    }
}

.links a,
.links .form-button {
    transition: 300ms ease-in-out;
}

.links a:hover,
.links .form-button:hover {
    transform: rotate(-2deg);
}

.outside {
    position: absolute;
    left: -10000px;
}

.term-container {
        background-color: white;
        margin-bottom: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        overflow: hidden;
    }

.term-header {
    background-color: #0dcaf0;
    color: black;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.term-header:hover {
    background-color: #0088a3;
    color: white;
}

.term-header h3 {
    margin: 0;
    font-size: 18px;
}

.arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.arrow.expanded {
    transform: translateY(-50%) rotate(180deg);
}

.term-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.term-content.expanded {
    max-height: 500px;
    padding: 20px;
}

.term-content p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #333;
}

.term-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.term-content li {
    margin: 5px 0;
    color: #555;
}