@font-face {
    src: url("../fonts/Raleway-Thin.ttf");
    font-family: "raleway";
    font-weight: 100;
}

@font-face {
    src: url("../fonts/Raleway-ExtrLight.ttf");
    font-family: "raleway";
    font-weight: 200;
}

@font-face {
    src: url("../fonts/Raleway-Light.ttf");
    font-family: "raleway";
    font-weight: 300;
}

@font-face {
    src: url("../fonts/Raleway-Regular.ttf");
    font-family: "raleway";
    font-weight: normal;
}

@font-face {
    src: url("../fonts/Raleway-Medium.ttf");
    font-family: "raleway";
    font-weight: 500;
}

@font-face {
    src: url("../fonts/Raleway-SemiBold.ttf");
    font-family: "raleway";
    font-weight: 600;
}

@font-face {
    src: url("../fonts/Raleway-Bold.ttf");
    font-family: "raleway";
    font-weight: 700;
}

@font-face {
    src: url("../fonts/Raleway-Black.ttf");
    font-family: "raleway";
    font-weight: 900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "raleway", sans-serif;
}

:root {
    --c1: #4d4d4d;
    --c2: #3d3d3d;
    --c3: #f5f5f5;
    --c4: #8a91a1;
    --c5: #b3b3b3;
    --c6: #d1d1d1;
    --c7: #ffffff;
    --c8: #2e2e2e;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.c1 {
    color: var(--c1);
}

.bg_c1 {
    background-color: var(--c1);
}

.c2 {
    color: var(--c2);
}

.bg_c2 {
    background-color: var(--c2);
}

.c3 {
    color: var(--c3);
}

.bg_c3 {
    background-color: var(--c3);
}

.c4 {
    color: var(--c4);
}

.bg_c4 {
    background-color: var(--c4);
}

.c5 {
    color: var(--c5);
}

.bg_c5 {
    background-color: var(--c5);
}

.c6 {
    color: var(--c6);
}

.bg_c6 {
    background-color: var(--c6);
}

.c7 {
    color: var(--c7);
}

.bg_c7 {
    background-color: var(--c7);
}

.c8 {
    color: var(--c8);
}


/* font-weight */

.fw_bold {
    font-weight: bold !important;
}

.fw_600 {
    font-weight: 600 !important;
}

.fw_900 {
    font-weight: 900;
}

.fw_500 {
    font-weight: 500 !important;
}

.fw_100 {
    font-weight: 100;
}


/* display */

.d_block {
    display: block;
}

.d_iblock {
    display: inline-block;
}

.d_flex {
    display: flex;
}

.d_grid {
    display: grid;
}

.d_no {
    display: none !important;
}

/* columns */
.cols_2 {
    grid-template-columns: 1fr 1fr;
}


/* flex */

.flex_sp {
    justify-content: space-between;
}

.flex_end {
    justify-content: flex-end;
}

.flex_center {
    justify-content: center;
}

.item_center {
    align-items: center;
}

.flex_wrap {
    flex-wrap: wrap;
}

.text_c {
    text-align: center;
}

.t_upper {
    text-transform: uppercase;
}

.ls_no {
    list-style: none;
}

.t_dcrtn_no {
    text-decoration: none;
}

.flex_col {
    flex-direction: column;
}

.m_center {
    margin: 0 auto;
    display: block;
}

.underline {
    text-decoration: underline;
}

.underline_none {
    text-decoration: none;
}

.italic {
    font-style: italic;
}

p.menu.fw_500:first-child {
    margin-right: 30px;
}

.item {
    border-radius: 8px;
    background-color: var(--c3);
    color: var(--c2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.item img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.my-16 {
    margin: 16px 0;
}

.mt-15 {
    margin-top: 15px;
}

.mt-36 {
    margin-top: 36px;
}

.allWorks {
    padding: 12px 25px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: 200ms;
}

.allWorks:hover {
    background-color: rgb(102, 102, 102);
}

.viewDetails {
    padding: 12px 24px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
}

.learn_more:hover,
.view_more:hover {
    color: #000;
}

.vr {
    border-bottom: 1px solid var(--c6);
    margin-top: 64px;
}

.section_title {
    color: var(--c2);
}

.competency {
    background-color: var(--c4);
    border-radius: 8px;
}

.competency img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
}

.w290 {
    width: 290px;
    margin: 0 auto;
    padding: 0;
}

.footer-logo {
    width: 82px;
    height: 64px;
    margin-bottom: 48px;
}

.mail {
    margin: 20px 0;
}

.ao {
    margin-top: 48px;
}

.menuList {
    display: none;
    /* width: 100%; */
    z-index: 10;
    position: absolute;
    top: 37px;
    border-radius: 8px;
}

.langList {
    display: none;
    /* width: 100%; */
    z-index: 10;
    position: absolute;
    top: 37px;
    border-radius: 8px;
}

.menuList ul li,
.langList ul li {
    list-style: none;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #666666;
    /* padding: 15px 0; */
    background-color: var(--c1);
    transition: 200ms;
}

.menuList ul li:hover a,
.langList ul li:hover p {
    color: var(--c7);
    /* transition: 500ms; */
}

.menuList ul li:hover,
.langList ul li:hover {
    background-color: rgb(102, 102, 102);
    /* transition: 500ms; */
}

.menuList ul li:last-child,
.langList ul li:last-child {
    border-bottom: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.menuList ul li:first-child,
.langList ul li:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.menuList ul li a,
.langList ul li p {
    text-transform: uppercase;
    color: var(--c6);
    display: inline-flex;
    width: 100%;
    justify-content: center;
    transition: 200ms;
    padding: 15px 0;
}

.hamburger {
    cursor: pointer;
    margin-top: -2px;
}

.hamburger li {
    width: 100%;
    height: 2px;
    background-color: var(--c2);
    margin-bottom: 6px;
    list-style: none;
}

.hamburger li:last-child {
    width: 50%;
    margin-bottom: 0 !important;
    transition: 0.5s;
}

.hamburger:hover.hamburger li:last-child {
    width: 100%;
}

.language_dropdown,
.dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 20px;
}

.language_dropdown img {
    width: 40px;
    height: 30px;
}

ul.switch-locale li {
    list-style: none;
    cursor: pointer;
}

#eng,
#tkm,
#rus {
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}

.mx-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.my-20 {
    margin-top: 20px;
}

.hover1:hover {
    text-decoration: underline;
}

.modalForm {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.modalInput {
    padding: 13px 15px;
    gap: 10px;
    width: 100%;
    height: 41px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modalInput:nth-child(2),
.modalInput:nth-child(3),
.modalInput:nth-child(4),
.modalInput:nth-child(5) {
    width: 217px;
}

.sendForm {
    margin: 0 auto;
    outline: none;
    border: none;
    width: 130px;
    height: 40px;
    background: #3d3d3d;
    border-radius: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px;
}
.opacity-50 {
    opacity: 0.5 !important;
}

.news-follow {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
}

.news-follow input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

#continue {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    text-decoration: none;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.hidden {
    display: none !important;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.news_title {
    font-size: 18px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.2;
    margin-bottom: 8px;
    height: 65px;
    width: 100%;
}

.news_card_title {
    font-size: 24px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.2;
    margin-bottom: 16px;
    height: 85px;
    width: 100%;
}

.news_card_source {
    color: #8A91A1;
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 16px;
}

.news_img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    height: 100%;
    overflow: hidden; /* This ensures the image doesn't spill out */
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item .news_img img {
    height: 100%;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
    .wrapper {
        width: 320px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .active.center .item {
        width: 290px;
        margin: 0 auto;
    }
    .owl-item {
        width: 290px !important;
    }
    header {
        padding: 39px 0 39.5px 0;
        border-bottom: 1px solid var(--c5);
        margin-bottom: 80px;
    }
    h1 {
        font-size: 24px;
        line-height: 28px;
        font-weight: 700;
    }
    h2 {
        font-size: 20px;
        line-height: 23px;
        font-weight: 400;
    }
    h3 {
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
    }
    .carousel-text h3 {
        font-size: 16px !important;
        line-height: 19px !important;
        font-weight: 600;
    }
    p {
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    p.small {
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }
    a.small {
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }
    p.menu,
    a.menu {
        text-decoration: none;
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
    }
    .logo {
        width: 104px;
        height: 12.5px;
    }
    .langList {
        margin-right: -53px;
    }
    .hamburger {
        width: 32px;
        height: 12px;
    }
    .title {
        margin-bottom: 32px;
    }
    .intro {
        width: 100%;
    }
    .featured {
        margin-top: 80px;
    }
    .section_title {
        margin-bottom: 24px;
    }
    .carousel-text {
        margin: 24px 16px 26px 16px;
    }
    /* .item img { */
    .item img:not([class^="news_img"]) {
        height: 290px;
    }
    .description_h {
        height: 56px;
    }
    .allWorks {
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        background-color: var(--c2);
        color: var(--c7);
    }
    .owl-carousel {
        margin-bottom: 36px;
    }
    .vr {
        margin-bottom: 56px;
    }
    .competencies {
        padding-bottom: 64px;
        border-bottom: 1px solid var(--c6);
    }
    .competency {
        width: 100%;
    }
    .competency img {
        height: 320px;
    }
    .competency_description {
        margin: 24px 15px 24px 15px;
        padding-bottom: 32px;
    }
    .competency:last-child .competency_description {
        margin: 24px 15px 0 15px;
    }
    .competency_text {
        margin: 24px 0;
    }
    .competency_text div {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 15px;
        font-size: 14px !important;
        line-height: 16px !important;
        font-weight: 500 !important;
    }
    .competency_text div:last-child {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0 !important;
    }
    .viewDetails {
        background: var(--c3);
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        color: var(--c2);
        display: inline-block;
        margin-bottom: 32px;
    }
    .products {
        margin-top: 56px;
    }
    .footer {
        margin-top: 64px;
        background-color: var(--c1);
        padding: 48px 0;
    }
    .menuList ul,
    .langList ul {
        width: 290px;
        margin: 0 auto;
    }
    .bg_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/agts.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/ACTN.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/oneWindow.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/trl.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
.bg_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sbr.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/tracking.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img6 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sport.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/scst.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .developing_img1 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/develop.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 320px;
    }
    .developing_img2 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/cybersecurity.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 320px;
    }
    .prod_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 290px;
    }
    .prod_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/2.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 290px;
    }
    .prod_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/1.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 290px;
    }
    .news_img1_jpeg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img1_png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.png);
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/2.jpg);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/3.jpg);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/4.jpg);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/5.png);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img6png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.png);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img6jpg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.jpg);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/7.png);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/8.jpg);
        background-size: cover;
        background-position: center;
        background-size: cover;
        background-attachment:fixed; 
        -o-background-size:cover; 
        -moz-background-size:cover; 
        -webkit-background-size:cover; 
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img9 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/9.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img10 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/10.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img11 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/11.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img12 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/12.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img13 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/13.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img14 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/14.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img15 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/15.webp);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: 290px; */
        height: 188px;
    }
    .news_img16 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/16.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 188px;
    }
    .news_img17 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/17.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 188px;
    }
    .news_img {
        width: 290px;
        height: 188px !important;
    }
    .item .news_img img {
        height: 188px !important;
    }
    .w90 {
        width: 85%;
    }
    .modalInput:nth-child(2),
    .modalInput:nth-child(3),
    .modalInput:nth-child(4),
    .modalInput:nth-child(5) {
        width: 100%;
    }
    .modalHeader {
        font-size: 16px !important;
        line-height: 19px !important;
        text-align: center !important;
    }
    .modalDescription {
        font-size: 14px !important;
        line-height: 16px !important;
        text-align: center !important;
    }
    .news-follow {
        margin-bottom: 15px;
    }
    .news_title {
        font-size: 16px !important;
        height: 58px;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }

    .news_card_title {
        font-size: 16px !important;
        height: 58px;
        margin-bottom: 8px;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }

    .news_card_source {
        font-size: 16px;
        margin-bottom: 8px;
    }

   
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .wrapper {
        width: 540px;
        padding: 0 7.5px;
        margin: 0 auto;
    }
    .active.center .item {
        width: 330px;
        margin: 0 auto;
    }
    .owl-item {
        width: 330px !important;
    }
    header {
        padding: 39px 0 39.5px 0;
        border-bottom: 1px solid var(--c5);
        margin-bottom: 80px;
    }
    h1 {
        font-size: 24px;
        line-height: 28px;
        font-weight: 700;
    }
    h2 {
        font-size: 20px;
        line-height: 23px;
        font-weight: 400;
    }
    h3 {
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
    }
    .carousel-text h3 {
        font-size: 16px !important;
        line-height: 19px !important;
        font-weight: 600;
    }
    p {
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    p.small {
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }
    a.small {
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }
    p.menu,
    a.menu {
        text-decoration: none;
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
    }
    .logo {
        width: 104px;
        height: 12.5px;
    }
    .hamburger {
        width: 32px;
        height: 12px;
    }
    .title {
        margin-bottom: 32px;
    }
    .intro {
        width: 100%;
    }
    .featured {
        margin-top: 86px;
    }
    .section_title {
        margin-bottom: 32px;
    }
    .carousel-text {
        margin: 24px 16px 26px 16px;
    }
    /* .item img { */
    .item img:not([class^="news_img"]) {
        height: 330px;
    }
    .description_h {
        height: 42px;
    }
    .allWorks {
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        background-color: var(--c2);
        color: var(--c7);
    }
    .owl-carousel {
        margin-bottom: 44px;
    }
    .vr {
        margin-bottom: 56px;
    }
    .competencies {
        padding-bottom: 64px;
        border-bottom: 1px solid var(--c6);
    }
    .competency {
        width: 100%;
    }
    .competency img {
        height: 380px;
    }
    .competency_description {
        margin: 24px 15px 32px 15px;
        padding-bottom: 32px;
    }
    .competency:last-child .competency_description {
        margin: 24px 15px 0 15px;
    }
    .competency_text {
        margin: 24px 0;
    }
    .competency_text div {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 15px;
        font-size: 14px !important;
        line-height: 16px !important;
        font-weight: 500 !important;
    }
    .competency_text div:last-child {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0 !important;
    }
    .viewDetails {
        background: var(--c3);
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        color: var(--c2);
        display: inline-block;
        margin-bottom: 32px;
    }
    .products {
        margin-top: 56px;
    }
    .footer {
        margin-top: 64px;
        background-color: var(--c1);
        padding: 48px 0;
    }
    .menuList ul,
    .langList ul {
        width: 240px;
        margin: 0 auto;
    }
    .bg_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/agts.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/ACTN.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
.bg_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sbr.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/oneWindow.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/trl.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/tracking.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img6 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sport.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/scst.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .developing_img1 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/develop.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 380px;
    }
    .developing_img2 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/cybersecurity.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 380px;
    }
    .prod_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 330px;
    }
    .prod_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/2.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 330px;
    }
    .prod_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/1.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 330px;
    }
    .news_img1_jpeg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img1_png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/2.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/3.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/4.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/5.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img6jpg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img6png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/7.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/8.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img9 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/9.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img10 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/10.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img11 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/11.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img12 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/12.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img13 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/13.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img14 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/14.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img15 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/15.webp);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: 330px; */
        height: 228px;
    }
    .news_img16 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/16.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 228px;
    }
    .news_img17 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/17.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 228px;
    }
    .news_img {
        width: 330px;
        height: 228px !important;
    }
    .item .news_img img {
        height: 228px !important;
    }
    .modalHeader {
        font-size: 17px !important;
        line-height: 20px !important;
        text-align: center !important;
    }
    .modalDescription {
        font-size: 13px !important;
        line-height: 15px !important;
        text-align: center !important;
    }
    .news_title {
        font-size: 16px !important;
        height: 58px;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }
    .news_card_title {
        font-size: 18px !important;
        margin-bottom: 8px;
        height: 65px;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }
    .news_card_source {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .wrapper {
        width: 720px;
        padding: 0 7.5px;
        margin: 0 auto;
    }
    .active.center .item {
        width: 330px;
        margin: 0 auto;
    }
    .owl-item {
        width: 330px !important;
    }
    header {
        padding: 39px 0 39.5px 0;
        border-bottom: 1px solid var(--c5);
        margin-bottom: 120px;
    }
    h1 {
        font-size: 32px;
        line-height: 38px;
        font-weight: 700;
    }
    h2 {
        font-size: 27px;
        line-height: 32px;
        font-weight: 400;
    }
    h3 {
        font-size: 17px;
        line-height: 20px;
        font-weight: 600;
    }
    p {
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    p.small {
        font-size: 13px;
        line-height: 15px;
        font-weight: 400;
    }
    a.small {
        font-size: 13px;
        line-height: 15px;
        font-weight: 400;
    }
    p.menu,
    a.menu {
        text-decoration: none;
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    .logo {
        width: 104px;
        height: 12.5px;
    }
    .hamburger {
        width: 32px;
        height: 12px;
    }
    .title {
        margin-bottom: 45px;
    }
    .intro {
        width: 450px;
        /* float: right; */
    }
    .featured {
        margin-top: 120px;
    }
    .section_title {
        margin-bottom: 48px;
    }
    .carousel-text {
        margin: 24px 16px 26px 16px;
    }
    /* .item img { */
    .item img:not([class^="news_img"]) {
        height: 330px;
    }
    .description_h {
        height: 60px;
    }
    .allWorks {
        font-size: 17px;
        line-height: 20px;
        font-weight: 600;
        background-color: var(--c2);
        color: var(--c7);
    }
    .owl-carousel {
        margin-bottom: 44px;
    }
    .vr {
        margin-bottom: 64px;
    }
    .competencies {
        padding-bottom: 80px;
        border-bottom: 1px solid var(--c6);
    }
    .competency {
        width: 100%;
    }
    .competency img {
        height: 520px;
    }
    .competency_description {
        margin: 24px 15px 48px 15px;
        padding-bottom: 32px;
    }
    .competency:last-child .competency_description {
        margin: 24px 15px 0 15px;
    }
    .competency_text {
        margin: 24px 0;
    }
    .competency_text div {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 20px;
        font-size: 16px !important;
        line-height: 19px !important;
        font-weight: 500 !important;
    }
    .competency_text div:last-child {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0 !important;
    }
    .viewDetails {
        background: var(--c3);
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        color: var(--c2);
        display: inline-block;
        margin-bottom: 32px;
    }
    .products {
        margin-top: 64px;
        margin-bottom: 72px !important;
    }
    .footer {
        margin-top: 80px;
        background-color: var(--c1);
        padding: 48px 0;
    }
    .menuList ul,
    .langList ul {
        width: 290px;
        margin: 0 auto;
    }
    .bg_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/agts.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/ACTN.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/oneWindow.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
.bg_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sbr.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/trl.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/tracking.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img6 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sport.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .bg_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/scst.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 330px;
    }
    .developing_img1 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/develop.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .developing_img2 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/cybersecurity.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .prod_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 330px;
    }
    .prod_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/2.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 330px;
    }
    .prod_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/1.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 330px;
    }
    .news_img1_jpeg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img1_png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/2.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/3.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/4.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/5.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img6png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img6jpg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/7.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/8.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img9 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/9.jpg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img10 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/10.png);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img11 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/11.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img12 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/12.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img13 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/13.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img14 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/14.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img15 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/15.webp);
        background-size: cover;
        background-position: center;
        width: 330px;
        /* height: auto; */
        height: 228px;
    }
    .news_img16 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/16.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 228px;
    }
    .news_img17 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/17.jpeg);
        background-size: cover;
        background-position: center;
        width: 330px;
        height: 228px;
    }
    .news_img {
        width: 330px;
        height: 228px !important;
    }
    .item .news_img img {
        height: 228px !important;
    }
    .w90 {
        width: 85%;
    }
    .modalHeader {
        font-size: 17px !important;
        line-height: 20px !important;
        text-align: center !important;
    }
    .modalDescription {
        font-size: 13px !important;
        line-height: 15px !important;
        text-align: center !important;
    }
    
    .news_title {
        font-size: 16px !important;
        height: 58px;        /* Slightly adjusted height for mobile */
        -webkit-line-clamp: 3;
        line-height: 1.2;
    }
    .news_card_source {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .wrapper {
        width: 960px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .wrap {
        width: 960px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .active.center .item {
        width: 290px;
        margin: 0 auto;
    }
    .owl-item {
        width: 290px !important;
    }
    header {
        padding: 37px 0;
        border-bottom: 1px solid var(--c5);
        margin-bottom: 120px;
    }
    h1 {
        font-size: 32px;
        line-height: 38px;
        font-weight: 700;
    }
    h2 {
        font-size: 27px;
        line-height: 32px;
        font-weight: 400;
    }
    h3 {
        font-size: 17px;
        line-height: 20px;
        font-weight: 600;
    }
    p {
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    p.small {
        font-size: 13px;
        line-height: 15px;
        font-weight: 400;
    }
    p.menu,
    a.menu {
        text-decoration: none;
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    .logo {
        width: 137px;
        height: 17px;
    }
    .hamburger {
        width: 40px;
        height: 16px;
    }
    .title {
        margin-bottom: 40px;
    }
    .intro {
        width: 610px;
        /* float: right; */
    }
    .featured {
        margin-top: 120px;
    }
    .section_title {
        margin-bottom: 48px;
    }
    .carousel-text {
        margin: 24px 16px 26px 16px;
    }
    /* .item img { */
    .item img:not([class^="news_img"]) {
        height: 290px;
    }
    .description_h {
        height: 75px;
    }
    .allWorks {
        font-size: 17px;
        line-height: 20px;
        font-weight: 600;
        background-color: var(--c2);
        color: var(--c7);
    }
    .owl-carousel {
        margin-bottom: 44px;
    }
    .vr {
        margin-bottom: 72px;
    }
    .competencies {
        display: flex;
        padding-bottom: 88px;
        border-bottom: 1px solid var(--c6);
    }
    .competency {
        width: calc(50% - 15px);
    }
    .competency:first-child {
        margin-right: 15px;
    }
    .competency:last-child {
        margin-left: 15px;
    }
    .competency img {
        height: 520px;
    }
    .competency_description {
        margin: 24px 15px 0 15px;
        padding-bottom: 32px;
    }
    .competency_text {
        margin: 40px 0;
    }
    .competency_text div {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 15px;
        font-size: 16px !important;
        line-height: 19px !important;
        font-weight: 500 !important;
    }
    .competency_text div:last-child {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0 !important;
    }
    .viewDetails {
        background: var(--c3);
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        color: var(--c2);
        display: inline-block;
        margin-bottom: 32px;
    }
    .products {
        margin-top: 72px;
    }
    .footer {
        margin-top: 88px;
        background-color: var(--c1);
        padding: 48px 0;
    }
    .menuList ul,
    .langList ul {
        width: 290px;
        margin: 0 auto;
    }
    .bg_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/agts.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/ACTN.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
.bg_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sbr.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/oneWindow.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/trl.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/tracking.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img6 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sport.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .bg_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/scst.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 290px;
    }
    .developing_img1 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/develop.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .developing_img2 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/cybersecurity.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .prod_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 290px;
    }
    .prod_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/2.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 290px;
    }
    .prod_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/1.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 290px;
    }
    .news_img1_jpeg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img1_png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/2.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/3.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/4.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/5.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img6png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img6jpg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/7.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/8.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img9 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/9.jpg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img10 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/10.png);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img11 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/11.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img12 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/12.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img13 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/13.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img14 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/14.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img15 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/15.webp);
        background-size: cover;
        background-position: center;
        width: 290px;
        /* height: auto; */
        height: 188px;
    }
    .news_img16 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/16.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 188px;
    }
    .news_img17 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/17.jpeg);
        background-size: cover;
        background-position: center;
        width: 290px;
        height: 188px;
    }
    .news_img {
        width: 290px;
        height: 188px !important;
    }
    .item .news_img img {
        height: 188px !important;
    }
    .w90 {
        width: 90%;
    }
    .modalHeader {
        font-size: 24px !important;
        line-height: 28px !important;
        text-align: center !important;
    }
    .modalDescription {
        font-size: 16px !important;
        line-height: 19px !important;
        text-align: center !important;
    }
    .news_card_source {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .wrapper {
        width: 1140px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .wrap {
        width: 1140px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .active.center .item {
        width: 350px;
        margin: 0 auto;
    }
    .owl-item {
        width: 350px !important;
    }
    header {
        padding: 52px 0 51px 0;
        border-bottom: 1px solid var(--c5);
        margin-bottom: 120px;
    }
    h1 {
        font-size: 40px;
        line-height: 47px;
        font-weight: 700;
    }
    h2 {
        font-size: 32px;
        line-height: 38px;
        font-weight: 400;
    }
    h3 {
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
    }
    p {
        font-size: 18px;
        line-height: 21px;
        font-weight: 400;
    }
    p.small {
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    p.menu,
    a.menu {
        text-decoration: none;
        font-size: 18px;
        line-height: 21px;
        font-weight: 400;
    }
    .logo {
        width: 137px;
        height: 17px;
    }
    .hamburger {
        width: 40px;
        height: 16px;
    }
    .title {
        margin-bottom: 40px;
    }
    .intro {
        width: 730px;
        /* float: right; */
    }
    .featured {
        margin-top: 120px;
    }
    .section_title {
        margin-bottom: 56px;
    }
    .carousel-text {
        margin: 24px 16px 26px 16px;
    }
    /* .item img { */
    .item img:not([class^="news_img"]) {
        height: 350px;
    }
    .description_h {
        height: 95px;
    }
    .allWorks {
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
        background-color: var(--c2);
        color: var(--c7);
    }
    .owl-carousel {
        margin-bottom: 44px;
    }
    .vr {
        margin-bottom: 80px;
    }
    .competencies {
        display: flex;
        padding-bottom: 96px;
        border-bottom: 1px solid var(--c6);
    }
    .competency {
        width: calc(50% - 15px);
    }
    .competency:first-child {
        margin-right: 15px;
    }
    .competency:last-child {
        margin-left: 15px;
    }
    .competency img {
        height: 520px;
    }
    .competency_description {
        margin: 24px 15px 0 15px;
        padding-bottom: 32px;
    }
    .competency_text {
        margin: 40px 0;
    }
    .competency_text div {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 15px;
        font-size: 18px !important;
        line-height: 21px !important;
        font-weight: 500 !important;
    }
    .competency_text div:last-child {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0 !important;
    }
    .viewDetails {
        background: var(--c3);
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        color: var(--c2);
        display: inline-block;
        margin-bottom: 32px;
    }
    .products {
        margin-top: 80px;
    }
    .footer {
        margin-top: 96px;
        background-color: var(--c1);
        padding: 48px 0;
    }
    .menuList,
    .langList {
        top: 50px !important;
    }
    .menuList ul,
    .langList ul {
        width: 255px;
        margin: 0 auto;
    }
    .bg_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/agts.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .bg_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/ACTN.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .bg_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/oneWindow.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
.bg_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sbr.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .bg_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/trl.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .bg_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/tracking.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .bg_img6 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sport.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .bg_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/scst.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 350px;
    }
    .developing_img1 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/develop.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .developing_img2 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/cybersecurity.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .prod_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 350px;
    }
    .prod_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/2.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 350px;
    }
    .prod_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/1.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 350px;
    }
    .news_img1_jpeg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img1_png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/2.jpg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/3.jpg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/4.jpg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/5.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img6png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img6jpg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.jpg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/7.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/8.jpg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img9 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/9.jpg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img10 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/10.png);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img11 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/11.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img12 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/12.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img13 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/13.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img14 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/14.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img15 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/15.webp);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    
    .news_img16 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/16.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img17 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/17.jpeg);
        background-size: cover;
        background-position: center;
        width: 350px;
        height: 248px;
    }
    .news_img {
        width: 350px;
        height: 248px !important;
    }
    .item .news_img img {
        height: 248px !important;
    }
    .modalHeader {
        font-size: 24px !important;
        line-height: 28px !important;
        text-align: center !important;
    }
    .modalDescription {
        font-size: 16px !important;
        line-height: 19px !important;
        text-align: center !important;
    }
}

@media only screen and (min-width: 1400px) {
    .wrapper {
        width: 1320px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .wrap {
        width: 1320px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .active.center .item {
        width: 410px;
        margin: 0 auto;
    }
    .owl-item {
        width: 410px !important;
    }
    header {
        padding: 52px 0 51px 0;
        border-bottom: 1px solid var(--c5);
        margin-bottom: 136px;
    }
    h1 {
        font-size: 40px;
        line-height: 47px;
        font-weight: 700;
    }
    h2 {
        font-size: 32px;
        line-height: 38px;
        font-weight: 400;
    }
    h3 {
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
    }
    p {
        font-size: 18px;
        line-height: 21px;
        font-weight: 400;
    }
    p.small {
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }
    p.menu,
    a.menu {
        text-decoration: none;
        font-size: 18px;
        line-height: 21px;
        font-weight: 400;
    }
    .logo {
        width: 137px;
        height: 17px;
    }
    .hamburger {
        width: 40px;
        height: 16px;
    }
    .title {
        margin-bottom: 48px;
    }
    .intro {
        width: 850px;
        /* float: right; */
    }
    .featured {
        margin-top: 136px;
    }
    .section_title {
        margin-bottom: 64px;
    }
    .carousel-text {
        margin: 24px 16px 26px 16px;
    }
    .item img {
        height: 410px;
    }
    .description_h {
        height: 76px;
    }
    .allWorks {
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
        background-color: var(--c2);
        color: var(--c7);
    }
    .owl-carousel {
        margin-bottom: 44px;
    }
    .vr {
        margin-bottom: 96px;
    }
    .competencies {
        display: flex;
        padding-bottom: 104px;
        border-bottom: 1px solid var(--c6);
    }
    .competency {
        width: calc(50% - 15px);
    }
    .competency:first-child {
        margin-right: 15px;
    }
    .competency:last-child {
        margin-left: 15px;
    }
    .competency img {
        height: 520px;
    }
    .competency_description {
        margin: 24px 15px 0 15px;
        padding-bottom: 32px;
    }
    .competency_text {
        margin: 40px 0;
    }
    .competency_text div {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 15px;
        font-size: 18px !important;
        line-height: 21px !important;
        font-weight: 500 !important;
    }
    .competency_text div:last-child {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 0 !important;
    }
    .viewDetails {
        background: var(--c3);
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        color: var(--c2);
        display: inline-block;
        margin-bottom: 32px;
    }
    .products {
        margin-top: 96px;
    }
    .footer {
        margin-top: 104px;
        background-color: var(--c1);
        padding: 48px 0;
    }
    .menuList,
    .langList {
        top: 50px !important;
    }
    .menuList ul,
    .langList ul {
        width: 300px;
        margin: 0 auto;
    }
    .bg_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/agts.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .bg_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/ACTN.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .bg_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/oneWindow.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .bg_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/trl.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .bg_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/tracking.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .bg_img6 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sport.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
.bg_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/sbr.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .bg_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/scst.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 410px;
    }
    .developing_img1 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/develop.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .developing_img2 {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        background-image: url(../img/cybersecurity.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 520px;
    }
    .prod_img1 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 410px;
    }
    .prod_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/2.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 410px;
    }
    .prod_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/1.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 410px;
    }
    .news_img1_jpeg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img1_png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/1.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img2 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/2.jpg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img3 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/3.jpg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img4 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/4.jpg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img5 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/5.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img6png {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img6jpg {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/6.jpg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img7 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/7.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img8 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/8.jpg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img9 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/9.jpg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img10 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/10.png);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img11 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/11.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img12 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/12.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img13 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/13.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img14 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/14.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    } 
    .news_img15 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/15.webp);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    } 
    .news_img16 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/16.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img17 {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-image: url(../img/news-thumbnails/17.jpeg);
        background-size: cover;
        background-position: center;
        width: 410px;
        height: 308px;
    }
    .news_img {
        width: 410px;
        height: 308px !important;
    }
    .item .news_img img {
        height: 308px !important;
    }
    
    .w90 {
        width: 90%;
    }
    .modalHeader {
        font-size: 24px !important;
        line-height: 28px !important;
        text-align: center !important;
    }
    .modalDescription {
        font-size: 16px !important;
        line-height: 19px !important;
        text-align: center !important;
    }
}