:focus {
    outline: 0;
}

* {
    zoom: 1;
}

img, iframe{
	max-width: 100% !important;
}

html {
    color: #ffffff;
    font-size: 18px;
    background-image:url('../images/bg.jpg');
    background-color: #011e3a;
    background-position: center top;
    background-repeat: no-repeat;
    font-family: 'PT Sans', sans-serif;
	/*	
    -webkit-text-size-adjust:none;
    text-size-adjust:none
	*/
}

a:link, a:visited {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: none;
    color: #ffffff;
}
h1,h2,h3,h4,h5,h6{
    font-family: "PT Sans Caption", sans-serif;
}

body {
    margin: 0;
    padding: 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.clearfix {
    clear: both;
}

#container {
    position: relative;
}

.section{
	flex: 1;
}

.center {
    max-width: 1370px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.center .block-content{
    padding: 0 100px;
}


/* Header */

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #00a8e8;
}

.header-contacts {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}
.contact-item img{
    display: block;
}

.search-box {
    display: flex;
    gap: 0;
}

.search-box input {
    padding: 0 15px 0 40px;
    border: none;
    background: #195087;
    background-image: url("../images/search.png");
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: auto 50%;
    color: #ffffff;
    border-radius: 6px 0 0 6px;
    height: 32px;
    box-sizing: border-box;
}

.search-box button{
    background: #0c3559;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    height: 32px;
    box-sizing: border-box;
    width: 85px;
    border: 1px solid #009bdf;
    border-radius: 6px;
    margin-left: -6px;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(11, 144, 205, 0.6);
    -moz-box-shadow: 0px 0px 40px 0px rgba(11, 144, 205, 0.6);
    box-shadow: 0px 0px 40px 0px rgba(11, 144, 205, 0.6);
}

.btn,a.btn,input[type=submit],input[type=button],input[type=reset] {
    background-color: rgba(0, 105, 170, 1);
    background-image: linear-gradient(90deg, rgba(0, 105, 170, 1) 0%, rgba(20, 137, 209, 1) 50%, rgba(0, 105, 170, 1) 100%);
    -webkit-box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
    -moz-box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
    box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    display: inline-flex;
    padding: 0 20px;
    height: 62px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 376px;
    min-width: 230px;
}
button{

    cursor: pointer;
}

input[type=submit],input[type=button],input[type=reset]{
    height: 40px;
}


.btn:hover,input[type=submit]:hover,input[type=button]:hover,input[type=reset]:hover {
    opacity: 0.8;
}

/* Navigation */
.nav {
}
.nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.nav ul li{
    flex: 1;
}

.nav a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px;
    text-align: center;
    background-color: #1a5087;
    position: relative;
}

.nav > ul > li > a{
	text-wrap: nowrap;
}

.nav .dropdown>a::after{
    content: url("../images/open.png");
}

.nav .dropdown{
    position: relative;
}

.nav .dropdown div{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #03284e;
    padding: 10px;
    z-index: 100;
    width: 400px;
    max-width: 100%;
    border-radius: 4px;
    display: none;
}

.nav .dropdown div a{
    text-transform: initial;
    text-align: left;
    justify-content: flex-start;
    padding: 5px 0;
    background-color: unset;
}

.nav .dropdown div ul{
	flex-direction: column;
}
.nav .dropdown div a:hover{
    font-weight: bold;
}

.nav li:hover > div{
    display: block;
}

.nav > ul > li:hover > a,
.nav > ul > li > a.active {
    background-color: rgba(0, 105, 170, 1);
    background-image: linear-gradient(90deg, rgba(0, 105, 170, 1) 0%, rgba(20, 137, 209, 1) 50%, rgba(0, 105, 170, 1) 100%);
    -webkit-box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
    -moz-box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
    box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
}

.nav a.active img{
    transform: scale(-1,-1);
}

.nav .dropdown.active>a::after{
    transform: scale(-1,-1);
}
header .center{
    padding:3px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
    background: rgba(255,255,255,0.25);
    background: -moz-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.25)), color-stop(100%, rgba(102,111,185,0.24)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#666fb9', GradientType=1 );
    border-top: none;
}
header .center .block-content{
    background-color: rgba(9, 52, 86, 1);
    background-image: linear-gradient(50deg, rgba(9, 52, 86, 1) 0%, rgba(3, 71, 140, 1) 100%);
    border-radius: 0;
    padding-top: 35px;
    padding-bottom: 35px;
}

header:not(.mobile){
    margin-bottom: 35px;
}

/* Hero Section */
.hero .center{
    padding:3px;
    padding-top: 0;
    border-radius: 0 0 25px 25px;
    background: rgba(255,255,255,0.25);
    background: -moz-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.25)), color-stop(100%, rgba(102,111,185,0.24)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#666fb9', GradientType=1 );
    border-top: none;
}

.hero .center .block-content{
    background-color: rgba(9, 52, 86, 1);
    background-image: linear-gradient(50deg, rgba(9, 52, 86, 1) 0%, rgba(3, 71, 140, 1) 100%);
    border-radius: 0 0 25px 25px;
    padding-top: 35px;
    padding-bottom: 50px;
}
.hero-content {
    display: flex;
    justify-content: center;
    padding: 30px 0 60px 0;
    flex-direction: column;
    gap: 30px;
    background-image: url("../images/hero.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    min-height: 525px;
}

.hero-title {
    font-family: "PT Sans Caption", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 750px;
    position: relative;
    padding: 0;
    margin: 0 0 35px;
}

.hero-title::after{
    content: '';
    background-color: #4b9af5;
    height: 6px;
    width: 90px;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -35px;
}

.hero-title span {
    color: #fba13e;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 590px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0a395f;
    padding: 15px 25px;
    border-radius: 8px;
    border-color: rgba(255,255,255,0.2);
    border-width: 3px;
    border-style: solid;
    font-size: 16px;
    width: 225px;
}

.stat-img{
	flex: none;
}

.stat-item div:last-child{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.stat-item div:last-child span{
	text-wrap: nowrap;
}

.hero-content a.btn{
    margin-top: 20px;
}


.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* News Section */
.news-section {
    background-color: rgba(4, 59, 107, 1);
    background-image: linear-gradient(50deg, rgba(4, 59, 107, 1) 0%, rgba(15, 106, 158, 1) 100%);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-item {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 18px;
}

.news-date {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.news-item>div:not(.news-date){
    text-decoration: underline;
}

.news-list>div:not(.news-item) a{
    color: #90c6fd;
    text-decoration: underline;
    font-size: 16px;
}

/* Section Styles */

.section,.hero{
    margin-bottom: 90px;
}

.section .center{
    padding:3px;
    border-radius: 25px;
    background: rgba(255,255,255,0.25);
    background: -moz-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.25)), color-stop(100%, rgba(102,111,185,0.24)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, rgba(102,111,185,0.24) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#666fb9', GradientType=1 );
}

.section .center .block-content{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: rgba(9, 52, 86, 1);
    background-image: linear-gradient(50deg, rgba(9, 52, 86, 1) 0%, rgba(3, 71, 140, 1) 100%);
    border-radius: 25px;
}


.section-title {
    font-family: "PT Sans Caption", sans-serif;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
}

.section-title span{
    color: #eba20e;
}

.section-title::after {
    content: '';
    background-color: #4b9af5;
    height: 6px;
    width: 90px;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -30px;
}

.section-subtitle {
    color: #fff;
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Projects Section */
.projects {
    border-radius: 12px;
    margin: 40px 0;
}

.project-card {
    display: flex;
    gap: 70px;
    align-items: center;
}

.project-card:not(:last-child){
    margin-bottom: 130px;
    position: relative;
}

.project-card:not(:last-child)::after{
    content: '';
    background: #ffffff;
    height: 3px;
    display: block;
    opacity: 0.3;
    bottom: -65px;
    position: absolute;
    width: 100%;
}

.project-card:nth-child(even) {
    flex-direction: row-reverse;
}

.project-image {
    flex: 1;
}

.project-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.project-info {
    flex: 0.65;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-title {
    font-family: "PT Sans Caption", sans-serif;
    font-size: 22px;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
}

.project-title::after {
    content: '';
    background-color: #4b9af5;
    height: 6px;
    width: 90px;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -25px;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item::before {
    content: '•';
    color: #00a8e8;
    font-size: 20px;
}

/* Solutions Section */
.solutions {
}

.solution-card {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 3px solid rgba(0, 168, 232, 0.2);
}

.solution-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.solution-title {
    font-family: "PT Sans Caption", sans-serif;
    font-size: 22px;
    color: #fff;
    position: relative;
    margin-bottom: 30px;
}

.solution-title::after {
    content: '';
    background-color: #4b9af5;
    height: 6px;
    width: 90px;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -25px;
}


.solution-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image .sized{
    position: relative;
}

.solution-image .sized::after{
    content: '';
}

.solution-image .sized a:first-child{
    float: right;
}

.solution-image .sized a:last-child{
    margin-top: -70px;
    float: left;
}

.solution-image .sized img{
    display: block;
}

.solution-image .sized a{
    position: relative;
    display: block;
}

.solution-image .sized a::after{
    content: '';
    background-image: url('../images/sizein.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 40px;
    bottom: 20px;
}




.solution-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Careers Section */
.careers {
}

.careers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.career-card {
    box-sizing: border-box;
	width: calc(50% - 10px);
    background: #ffffff;
    color: #1a202c;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.career-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    position: relative;
    margin-bottom: 30px;
}

.career-card h3::after {
    content: '';
    background-color: #4b9af5;
    height: 6px;
    width: 90px;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -25px;
}


.career-card img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.career-card p {
    color: #1a1a1a;
    line-height: 1.6;
}

.career-card .career-info{
    flex: 1;
}
.career-card a.btn{
	width: 100%;
	max-width: unset;
	box-sizing: border-box;
	text-decoration: none;
}

/* newss Section */
.newss {
}

.newss-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-card {
    box-sizing: border-box;
	width: calc(50% - 10px);
    background: #ffffff;
    color: #1a202c;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.news-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    position: relative;
    margin-bottom: 30px;
}

.news-card h3::after {
    content: '';
    background-color: #4b9af5;
    height: 6px;
    width: 90px;
    border-radius: 6px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -25px;
}


.news-card img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.news-card p {
    color: #1a1a1a;
    line-height: 1.6;
}

.news-card .news-info{
    flex: 1;
}
.news-card a.btn{
	width: 100%;
	max-width: unset;
	box-sizing: border-box;
	text-decoration: none;
}

/* Footer */
.footer {
    background: #fff;
    padding: 20px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.footer-logos {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}


.footer-content .search-box input {
    padding: 0 15px 0 40px;
    border: 1px solid #009bdf;
    background: #ffffff;
    background-image: url("../images/search2.png");
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: auto 50%;
    color: #ffffff;
    border-radius: 6px 0 0 6px;
    height: 32px;
    box-sizing: border-box;
}

.footer-content .search-box button{
    background: #0c3559;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    height: 32px;
    box-sizing: border-box;
    width: 85px;
    border: 1px solid #009bdf;
    border-radius: 6px;
    margin-left: -4px;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
}

.section-content input[type=text],.section-content input[type=email],.section-content textarea {
    padding: 0 15px 0 40px;
    border: none;
    background: #195087;
    background-position-x: 0%;
    background-position-y: 0%;
    background-image: none;
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: auto 50%;
    color: #ffffff;
    border-radius: 6px;
    height: 40px;
    box-sizing: border-box;
    max-width: 100%;
}
.section-content form input{
    margin-bottom: 10px;
}

.section-content table{
    border-collapse: collapse;
}
.section-content table th{
    border: 1px solid rgba(255,255,255,0.6);
    padding: 4px 8px;
    background-color: rgba(255,255,255,0.1);
}
.section-content table td{
    border: 1px solid rgba(255,255,255,0.6);
    padding: 4px 8px;
}

.section-content a:not(.btn):link{
    text-decoration: underline;
}

blockquote {
    margin: 30px 0;
    padding: 20px 0 20px 30px;
    border-left: 4px solid #2563eb;
    font-size: 1.2rem;
    font-style: italic;
    background: transparent;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #2563eb;
    font-style: normal;
}

.inner .hero .center .block-content{
    padding-bottom: 0px;
}
.inner .hero .center .block-content::after{
    content: '';
    overflow: hidden;
    clear: both;
    display: block;
}
.hero header::after{
    content: '';
    overflow: hidden;
    clear: both;
    display: block;
}
.inner .hero{
    margin-bottom: 40px;
}

.inner .section .center .block-content{
    padding-top: 30px;
    padding-bottom: 30px;
}

.section .center .block-content::after{
    content: '';
    overflow: hidden;
    clear: both;
    display: block;
}
.mobile{
    display: none;
}

.mobile_menu {
    background-color: #03305e;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    border-radius: 5px 5px 0 0;
}

.mobile_menu > div{
    padding: 0 clamp(5px,0.5vw,10px);
    box-sizing: border-box;
    width: 100%;
}

.mobile_menu div ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.mobile_menu div ul li{
    display: flex;
    padding:  clamp(10px,0.8vw,15px) clamp(5px,0.5vw,10px);
    box-sizing: border-box;
}


.mobile_menu div ul li.dropdown > div{
    position: absolute;
    left: 0;
    bottom: 100%;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;	
}


.mobile_menu div ul li > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:  clamp(5px,0.5vw,10px);
}

.mobile_menu div ul li > a span:first-child{
    display: block;
    height: 42px;
}

.mobile_menu div ul li > a span:last-child{
    font-size: clamp(12px,1.1vw,22px);
    text-wrap: nowrap;
}
.mobile_menu div ul li.dropdown > a span:last-child{
    display: flex;
    align-items: center;
    gap: clamp(5px,0.5vw,10px);
    text-transform: initial;
}
.mobile_menu div ul li.dropdown > a span:last-child::after{
    content: url("../images/open.png");
}

.mobile_menu div ul li.dropdown.active > a span:last-child::after{
    transform: scale(-1,-1);
}

.mobile_menu div ul li.dropdown > div{
    background-color: #03284e;
    padding: 10px;
    z-index: 100;
    width: 400px;
    max-width: 100%;
    border-radius: 4px;
    display: none;
	flex-wrap: wrap;
}

.mobile_menu div ul li.dropdown.active > div{
    display: flex;
}

.mobile_menu div ul li.dropdown.active > div ul{
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.mobile_menu div ul li.dropdown > div ul{
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.mobile_menu div ul li.dropdown > div ul li {
  padding: 0;
}

.mobile_menu div ul li.dropdown.active > div ul li{
	padding: 0;
}

.mobile_menu div ul li.dropdown > div a{
    text-transform: initial;
    text-align: left;
    justify-content: flex-start;
    padding:  clamp(5px,0.5vw,10px) 0;
    background-color: unset;
	display: flex;
	width: 100%;
}

.mobile_menu div ul li.dropdown > div a:hover{
    font-weight: bold;
}

.mobile_menu div ul li.dropdown:hover > div{
    display: block;
}

.pagination{
	padding: 20px 0;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.pagination a{    
display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 0 5px;
  min-width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  text-align: center;
  background-color: #1a5087;
  position: relative;
  text-decoration: none !important;
  box-sizing: border-box;
}

.pagination span{    
display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 0 5px;
  min-width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  text-align: center;
background-color: rgba(0, 105, 170, 1);
  background-image: linear-gradient(90deg, rgba(0, 105, 170, 1) 0%, rgba(20, 137, 209, 1) 50%, rgba(0, 105, 170, 1) 100%);
  -webkit-box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
  -moz-box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
  box-shadow: inset 0px 0px 18px 0px rgba(160,200,246,0.9);
  box-sizing: border-box;
}

.newss ul{
	margin: 0 0 0 15px;
	padding: 0;
	display: flex;
	gap: 10px;
	flex-direction: column;
}

.allwrap{
	max-width: 100%;
	overflow: auto;
	
}

.allwrap table{
	min-width: 650px;
}