:root {
    --light-blue: #e9eff2;
    --washed-blue: #4e7e9c;
    --secondary-blue: #dce7f2;
    --white: #fff;
    --green: #00b140;
    --dark-blue: #183e61;
    --gray: #6d6e71;
    --vibrant-blue: #8eb4d7;
	--grey: #4a4a49;
	--orange: #ff6c0e;
}

body {
    font-family: 'Gotham Greek';
    font-size: 16px;
}

a {
    text-decoration: none;
}

.full {
    width: 100%;
}

.header {
    background: transparent;
    padding: 50px 55px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 110;
}

.bg {
    /*background: rgb(24 62 97 / 90%);
    mix-blend-mode: multiply;*/
	background: #A2027B;
	background: linear-gradient(90deg, rgba(162, 2, 123, 1) 0%, rgba(207, 53, 70, 1) 50%, rgba(254, 107, 15, 1) 100%);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 168px;
    z-index: 100;
}

.main-menu {
    gap: 45px;
    margin-right: 0px;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 200;
    transition: all 0.3s ease;
}

.main-menu li {
    position: relative;
}

.main-menu > li:hover a,
.main-menu > li a:hover {
    /*color: var(--vibrant-blue);*/
}

.main-menu .sub-menu {
    position: absolute;
    padding: 40px 0 0 0;
    margin: -8px 0 0 -100px;
    width: 370px; /*auto; /*270px;*/
    display: none;
}

.main-menu li:first-child .sub-menu {
	margin: -8px 0 0 -60px;
    width: 270px;
}

.main-menu > li:hover .sub-menu {
    display: block;
}

.main-menu .sub-menu li {
    display: block;
    margin-bottom: 3px;
}

.main-menu .sub-menu li a {
    font-size: 18px;
    color: #fff;
    display: block;
    padding: 4px 12px;
    background: #a0007d; /*rgb(0 0 0 / 50%);*/
    transition: all 0.3s ease;
	/*white-space: nowrap;*/
}

.main-menu .sub-menu li a:hover, .main-menu .sub-menu li.menu-item-has-children .sub-menu li a:hover {
    background: var(--orange);
}

.main-menu .sub-menu li.menu-item-has-children .sub-menu {
	position: absolute;
	top: -32px;
	left: 472px;
	display: none;	
}

.main-menu .sub-menu li.menu-item-has-children::after {
	content: "";
	position: absolute;
    display: inline-block;
	top: 8px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 9px solid #FFF;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    vertical-align: middle;
}

.main-menu .sub-menu li.menu-item-has-children .sub-menu li a {
	background: #cf3546;
}

.main-menu .sub-menu > li.menu-item-has-children:hover .sub-menu {
    display: block;
}

.home-slider {
    
}

.home-slider .swiper-slide {
    
}

.home-slider img.full {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 767px;
    max-height: 767px;
}

.home-slider .swiper-slide .slide-text {
    position: absolute;
    width: 45%;
    left: 16.66666667%;
    top: 35%;
}

.home-slider .swiper-slide .slide-text h2 {
    font-family: 'Gotham Greek Book';
    font-size: 54px;
    line-height: 58px;
    color: var(--grey);
    margin-bottom: 20px;
}

.home-slider .swiper-slide .slide-text p {
    font-family: 'Gotham Greek Book';
    font-size: 28px;
    line-height: 36px;
    color: var(--grey);
    margin: 40px 0;
}

.home-slider .swiper-pagination {
    bottom: 20px;
}

.home-slider .swiper-pagination-bullet {
    background: var(--white);
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

.home-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--white);
}

.article-slider .swiper-button-prev,
.article-slider .swiper-button-next {
    color: var(--white);
}

.article-slider .swiper-button-prev, 
.article-slider .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,30px);
    right: auto;
}

.article-slider .swiper-button-next, 
.article-slider .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,30px);
    left: auto;
}

.page-content h1 {
    font-size: 46px;
    font-family: 'Gotham Greek Book';
    color: var(--grey);
    margin-bottom: 45px;
}

.page-content h2 {
    font-size: 29px;
    font-family: 'Gotham Greek Book';
    color: var(--grey);
}

.page-content p,
.page-content li {
    font-size: 21px;
    font-family: 'Gotham Greek Book';
    line-height: 28px;
    color:#6d6e71;
}

.home-content h2 {
    color: var(--grey);
    font-size: 46px;
    font-family: 'Gotham Greek Book';
    margin-bottom: 50px;
}

.home-content p {
    color: var(--gray);
    font-size: 20px;
    line-height: 28px;
    font-family: 'Gotham Greek Book';
}

.home-content .service-list h3 {
    color: var(--white);
    font-size: 28px;
    font-family: 'Gotham Greek Book';
    margin-bottom: 30px;
    background: var(--grey);
    padding: 20px;
}

.home-content .service-list .col-12:nth-child(2) h3  {
    background: var(--washed-blue);
}

.home-content .service-list .col-12:nth-child(3) h3  {
    background: var(--vibrant-blue);
}

.home-content .service-list p {
    padding: 0 10px;
    margin-bottom: 30px;
}

.intro-text {
    /*background: var(--light-blue);*/
    padding: 100px 30px;
}

.intro-text.nobg {
    background: none;
}

.over-panel {
    background: rgb(92 0 92 / 90%);
    position: absolute;
    right: 0;
    width: 50%;
    bottom: 0;
    top: 0;
    padding: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.over-panel h2,
.over-panel p {
    color: var(--white);
}

.logo-wrap {
    background: transparent; /*var(--secondary-blue);*/
    padding: 100px 30px;
}

.article-slider .swiper-slide h3 {
    color: var(--white);
    font-size: 22px;
    font-family: 'Gotham Greek Book';
    background: var(--grey);
    padding: 50px 20px;   
}

.article-slider .swiper-slide:nth-child(2) h3 {
    background: var(--washed-blue);
}

.article-slider .swiper-slide:nth-child(3) h3 {
    background: var(--vibrant-blue);
}

.btn-outline-primary {
    color: var(--white);
    /*border-color: var(--dark-blue);
    border-radius: 0;*/
	border:0;
	background: #A2027B;
	background: linear-gradient(90deg, rgba(162, 2, 123, 1) 0%, rgba(207, 53, 70, 1) 50%, rgba(254, 107, 15, 1) 100%);
    padding: 12px 20px;
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--grey);
    border-color: var(--grey);
}

.btn-outline-secondary {
    color: var(--white);
    border-color: var(--white);
    border-radius: 0;
    padding: 12px 20px;
}

.btn-outline-secondary:hover {
    color: var(--grey);
    background-color: var(--white);
    border-color: var(--white);
}

.btn-outline-grey {
	color: var(--grey);
    background-color: var(--white);
    border-color: var(--grey);
}

.service-text {
    padding: 10px 30px;
    background: var(--grey);
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text.alt {
    background: var(--washed-blue);
}

.service-text p {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}

.footer {
    background: var(--grey);
    padding: 6% 6%;
}

.footer h3 {
    font-family: 'Gotham Greek Book';
    font-size: 24px;
    color: var(--white);
}

.footer li {
    list-style: none;
}

.footer li,
.footer li a {
    font-family: 'Gotham Greek Book';
    font-size: 24px;
    line-height: 36px;
    color: var(--white);   
}

.footer li a {
    transition: all 0.3s ease;
}

.footer li a:hover {
    color: var(--orange);
}

.footer p {
    font-family: 'Gotham Greek Book';
    font-size: 24px;
    font-weight: 300;
    color: var(--white);   
    margin: 0;
}

.footer p strong {
    font-weight: 600;
}

.footer p.small {
    font-size: 14px;
}

.footer .top-row {
    border-bottom: 2px solid var(--white);
}

.footer .top-row p {
    font-family: 'Gotham Greek';
    font-size: 24px;
}

.mobimenu {
    background: #A2027B;/*#4e7e9c;*/
	background: linear-gradient(90deg, rgba(162, 2, 123, 1) 0%, rgba(207, 53, 70, 1) 50%, rgba(254, 107, 15, 1) 100%);
    color: #fff;
    max-width: 280px;
}

.side-nenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-nenu ul {
    margin-top: 10px;
    padding-left: 18px;
    list-style: none;
}

.side-nenu li {
    margin-bottom: 20px;
}

.side-nenu a {
    color: #fff;
    display: block;
    font-weight: 300;
}

.side-nenu .has-submenu ul {
    display: none;
}

.side-nenu .has-submenu > a {
    position: relative;
}

.side-nenu .has-submenu > a::after {
    content: '';
    background: url(../images/side-drop.png) no-repeat;
    display: block;
    width: 13px;
    height: 7px;
    position: absolute;
    right: 0;
    top: 10px;
    transition: all 0.3s ease;
}

.side-nenu .has-submenu.active > a::after {
    transform: rotate(180deg);
}

.side-nenu .has-submenu.active > a {
    color: var(--green);
}

.side-nenu .has-submenu.active  ul {
    display: block;
    margin-top: 20px;
}

.search {
    position: relative;
    margin-left: 15px;
}

.search .s-form {
    position: absolute;
    right: 0;
    background: #fff;
    display: none;
    padding: 12px;
    top: 60px;
}

.search .s-form.active {
    display: flex;
}

.search .s-form form {
    display: flex;
    align-items: center;
    position: relative;
}

.search .s-form form input[type="text"] {
    padding: 6px;
    font-size: 16px;
}

.search .s-form form button {
    position: absolute;
    right: 6px;
    width: 30px;
    border: 0;
    display: flex;
    background: transparent;
}

.header-image {
    min-height: 320px;
    object-fit: cover;
}

.service-img {
    height: 100%;
    object-fit: cover;
}

.mobilogo {
    max-width: 120px;
    margin: 20px auto 10px;
}

.service-toggle {
    background: #ff6c0e; /*#d6d6d6;*/
}

.service-toggle:nth-child(2) {
    background: #d5a9d3; /*#4e7e9a;*/
}

.service-toggle:nth-child(3) {
    background: #a0007d; /*#183e61;*/
}

.service-toggle:nth-child(4) {
    background: #c9cedb; /*#8cb2d5;*/
}

.service-toggle:nth-child(5) {
    background: #cf3546; /*#e7edf0;*/
}

.service-toggle:nth-child(6) {
    background: #ffc9a6;
}

.service-toggle:nth-child(7) {
    background: #e85200;
}

.service-toggle:nth-child(8) {
    background: #a9b2c7;
}

.service-toggle h3 {
    position: relative;
    padding: 45px 60px;
    margin: 0;
    font-size: 29px;
    font-weight: 300;
    cursor: pointer;
	color: var(--grey);
	text-transform: uppercase;
}

.service-toggle h3::after {
    content: '';
    background: url(../images/service-toggle.png) no-repeat;
    display: block;
    width: 47px;
    height: 46px;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: all 0.3s ease;
}

.service-toggle:nth-child(1) h3,
.service-toggle:nth-child(3) h3,
.service-toggle:nth-child(5) h3,
.service-toggle:nth-child(7) h3 {
    color: var(--white);
}

.service-toggle:nth-child(1) h3::after,
.service-toggle:nth-child(3) h3::after,
.service-toggle:nth-child(5) h3::after,
.service-toggle:nth-child(7) h3::after {
    background: url(../images/service-toggle-w.png) no-repeat;
    height: 47px;
}

.service-toggle h3.active:not(.disabled)::after {
    transform: translateY(-50%) rotate(0deg);
}

.service-toggle p {
    color:#6d6e71;
    font-size: 21px;
    line-height: 42px;
}

.service-toggle:nth-child(2) p,
.service-toggle:nth-child(3) p,
.service-toggle:nth-child(4) p {
    color:#fff;
}

.service-toggle:nth-child(2) .btn-outline-primary,
.service-toggle:nth-child(3) .btn-outline-primary,
.service-toggle:nth-child(4) .btn-outline-primary {
    color: #fff;
    border-color: #fff;
}

ul.service-sub-menu {
	list-style:none;
	padding:0;
	margin:0;
}

.service-sub-menu li a {
    color: var(--grey);
    position: relative;
    padding: 45px 60px;
    margin: 0;
    font-size: 29px;
    font-weight: 300;
    cursor: pointer;
    color: var(--grey);
    text-transform: uppercase;
}

.service-sub-menu li {
	padding:10px 0;
}

.service-sub-menu li:nth-child(1) {
	background:#7c8dac;
}

.service-sub-menu li:nth-child(2) {
	background:#8f9cb8;
}

.service-sub-menu li:nth-child(3) {
	background:#a4aec5;
}

.service-sub-menu li:nth-child(4) {
	background:#c7ccda;
}

.cerlist img {
    max-width: 70px;
}

.solutions-text {
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(224 101 13 / 80%);
    width: 35%;
    height: 100%;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.solutions-text h3 {
    font-size: 46px;
    font-family: 'Gotham Greek Book';
    color: #fff;
    margin-bottom: 40px;
}

.service-toggle-content {
    overflow: hidden;
}

.solutions-text p {
    color: #fff;
    font-size: 21px;
    line-height: 28px;
}

.wpml-ls-current-language a {
    font-weight: bold;
    position: relative;
}

.wpml-ls-current-language a::after {
    content: '';
    background: url(../images/lang-drop.png) no-repeat;
    display: block;
    width: 16px;
    height: 8px;
    position: absolute;
    right: -22px;
    top: 10px;
    transition: all 0.3s ease;
}

.service-tile a {
    display: block;
    color: #fff;
}

.service-tile h3 {
    margin: 0;
    padding: 16px;
    font-size: 28px;
    font-weight: 300;
    background: #8bb1d4;
    height: 100px;
    display: flex;
    align-items: center;
}

.service-tile:nth-child(2) h3 {
    background: #4e7e99;
}

.service-tile:nth-child(3) h3 {
    background: #183e61;
}

.service-tile:nth-child(4) h3 {
    background: #e6ecef;
}

.service-tile:nth-child(5) h3 {
    background: #d5d5d5;
}

.service-tile:nth-child(4) a,
.service-tile:nth-child(5) a {
    color: #183e61;
}

.service-tile.for-sector h3 {
    font-size: 23px;
    padding: 55px 40px;
    background: red;
}

.service-tile.for-sector:nth-child(5n+1) h3 {
    background: #8bb1d4;
    color:#183e61;
}

.service-tile.for-sector:nth-child(5n+2) h3 {
    background: #4e7e99;
}

.service-tile.for-sector:nth-child(5n+3) h3 {
    background: #183e61;
}

.service-tile.for-sector:nth-child(5n+4) h3 {
    background: #e6ecef;
    color:#183e61;
}

.service-tile.for-sector:nth-child(5n+5) h3 {
    background: #d5d5d5;
    color:#183e61;
}

.service-tile p {
    font-size: 19px;
    line-height: 23px;
    color:#6d6e71;
    margin-bottom: 0;
    padding: 30px;
}

/* .service-tile.for-clients {
    margin-bottom: 80px;
} */

.service-tile.for-clients:nth-child(3n+1) h3 {
    background: #183e61;
    color:#fff;
}

.service-tile.for-clients:nth-child(3n+2) h3 {
    background: #4e7e99;
    color:#fff;
}

.service-tile.for-clients:nth-child(3n+3) h3 {
    background: #8bb1d4;
    color:#fff;
}

.service-toggle-content img {
    height: 100%;
    object-fit: cover;
}

.single-job .page-content {
    padding-top: 180px;
}

.otgs-development-site-front-end {
    display: none;
}

.page-template-career .page-content h2 {
    font-weight: bold;
    margin-bottom: 50px;
    color: #6d6e71;
}

.joblink {
    background: #a0007d;
    color: #fff;
    font-size: 21px;
    display: block;
    padding: 15px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.joblink:hover {
    color: #fff;
	background: var(--orange);
}

.pre-contact-form {
    background: #ededed;
}

.contact-form-row {
    background: url(../images/green-shadow6.png) no-repeat right bottom #ededed;
    padding-bottom: 100px;
}

.contact-form-form {
    position: relative;
}

.contact-form-form input,
.contact-form-form textarea {
    border-radius: 0;
    border: 0 none;
    outline: none;
    box-shadow: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 300;
    resize: none;
}

.contact-form-form button {
    background: var(--green);
    border-color: var(--green);
    padding: 15px 25px;
    margin-left: auto;
}

.contact-form-form button:hover {
    background: var(--black);
    border-color: var(--black);
}

.contact-form-form p {
    margin-bottom: 0;
}

.contact-form-form br {
    display: none;
}

.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap textarea {
    width: 100%;
}

.contact-form-form input[type="submit"] {
    background: #183e61;
    border-color: #183e61;
    padding: 15px 25px;
    margin-left: auto;
    float: right;
}

.contact-form-form input[type="submit"]:hover {
    background: var(--black);
    border-color: var(--black);
}

.contact-form-form.d-flex.flex-column.career-form {
    background: #ededed;
    padding: 50px;
}

.contact-form-form .wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    padding: 20px;
    border: 0;
    display: block;
    width: 100%;
}

.wpcf7-file {
    display: block;
    background: #fff;
    width: 100%;
}

.page-template-who-are-we .service-tile {
    width: calc(100% / 5);
}

.serv-sect {
    color:#fff;
    background: #cecece;
}

.serv-txt {
    padding: 0 20px;
}

.serv-sect h3 {
    font-family: 'Gotham Greek Book';
    font-size: 46px;
    margin-bottom: 40px;
}

.serv-sect p {
    font-family: 'Gotham Greek Book';
    font-size: 21px;
}

/* loop every four elements */
.serv-sect:nth-child(4n+1) {
    background: #ff6c0e;
}

.serv-sect:nth-child(4n+2) {
    background: #c03546;
}

.serv-sect:nth-child(4n+3) {
    background: #a0007d;
}

.serv-sect:nth-child(4n+4) {
    background: #c9cedb;
	color: var(--grey);
}

.page-template-service-sectors main .container {
    max-width: 1520px;
}

@media screen and (max-width: 1629.97px) {

    .home-slider .swiper-slide .slide-text {
        width: 40%;
    }

    .main-menu {
        gap: 15px;
        margin-right: 0px;
    }

    .service-tile h3 {
        font-size: 22px;
    }

}

@media screen and (max-width: 1399.97px) {

    .main-swiper .slide-text .row {
        height: 100%;
        padding: 0;
        align-items: center;
    }

    .home-slider .swiper-slide .slide-text {
        width: 60%;
    }

}

@media screen and (max-width: 1279.97px) {

    .page-template-who-are-we .service-tile {
        width: 50%;
    }

}

@media screen and (max-width: 991.97px) {

    .header {
        padding: 15px;
        background-color: #A2027B;/*#183e61;*/
		background: linear-gradient(90deg, rgba(162, 2, 123, 1) 0%, rgba(207, 53, 70, 1) 50%, rgba(254, 107, 15, 1) 100%);
    }

    .bg {
        display: none;
    }

    /* .service-img {
        min-height: 300px;
    } */
    
    .home-slider .swiper-slide {
        height: 500px;
    }

    .home-slider .swiper-slide .slide-text {
        position: absolute;
        width: 90%;
        left: 6.66666667%;
        top: 20%;
    }

    .home-slider .swiper-slide .slide-text h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .home-slider .swiper-slide .slide-text p {
        font-size: 20px;
        line-height: 26px;
        margin: 30px 0;
    }

    .over-panel {
        position: relative;
        width: 100%;
    }

}

@media screen and (max-width: 767.97px) {

    .header-image {
        height: 320px;
        object-fit: cover;
    }

    .home-slider img.full {
        min-height: 500px;
        max-height: 500px;
    }

    .footer-logo {
        width: 140px;
        display: inline-block;
    }
	
    .logolist li {
        width: 25%;
    }

    .footer .top-row p {
        font-size: 18px;
    }

    .footer h3 {
        font-size: 16px;
    }

    .footer li, .footer li a{
        font-size: 14px;
        line-height: 20px;
    }

    .footer .social li a img {
        max-width: 30px;
        max-height: 30px;
    }

    .footer p {
        font-size: 12px;
    }

    .logolist li {
        text-align: center;
    }

    .home-content h2 {
        font-size: 30px;
    }

    .home-content .service-list h3 {
        font-size: 20px;
    }

    .service-toggle h3 {
        padding: 25px 10px;
        font-size: 20px;
    }

    .service-toggle h3::after {
        width: 20px;
        height: 19px;
        right: 10px;
        background-size: contain;
    }

    .service-toggle:nth-child(1) h3::after, 
    .service-toggle:nth-child(3) h3::after,
	.service-toggle:nth-child(5) h3::after, 
    .service-toggle:nth-child(7) h3::after {
        width: 20px;
        height: 20px;
        right: 10px;
        background-size: contain;
    }

    .service-toggle p {
        color: #6d6e71;
        font-size: 18px;
        line-height: 26px;
    }

    .solutions-text {
        position: relative;
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .service-toggle-content img {
        margin-bottom: 30px;
        height: auto;
    }

    .side-nenu li.wpml-ls-current-language {
        display: inline-block;
    }

    .solutions-text h3 {
        font-size: 30px;
    }

    .service-tile h3,
    .service-tile.for-sector h3 {
        font-size: 20px;
        padding: 20px;
    }

    .page-content h1 {
        font-size: 28px;
    }

    .page-content h2 {
        font-size: 24px;
    }

    .page-content p, .page-content li {
        font-size: 16px;
    }

    .service-tile p {
        padding: 20px;
    }

    /* .service-tile.for-clients {
        margin-bottom: 20px;
    } */

    .page-template-clients .page-content h1 {
        padding-left: 20px;
    }

    .serv-txt {
        padding: 20px;
    }

    .serv-sect h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .serv-sect p {
        font-size: 18px;
    }
    
}