header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #ffffff;
    z-index: 999;
}

.menu-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu-item-home {
    position: absolute;
    width: 200px;
    left: 0;
    top: 5px;
}
.tech360 .banner-btn{
	display: none;
}

.menu-item-home:hover {
    border-bottom: 2px solid transparent !important;
}

.menu-item-home>a {
    background-image: url(../assets/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent !important;
    width: 100%;
    margin-bottom: -13px;
    display: block;
}

.menu {
    position: relative;
    width: 100%;
}

.menu-container {
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}


/* .menu a.logo {
    display: inline-block;
    padding: 1.5em 3em;
    width: 19%;
    float: left;
} 

.menu img {
    max-width: 100%;
}*/

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "☰";
    font-size: 45px;
    font-weight: 900;
}

.menu-dropdown-icon:before {
    content: "❯";
    display: none;
    font-weight: 900;
    float: right;
    padding: 20px 15px;
    color: #0F63A5;
}

.menu>ul {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
    clear: right;
}


/* .menu>ul:before,
.menu>ul:after {
    content: "";
    display: table;
} */

.menu>ul:after {
    clear: both;
}

.menu>ul>li {
    float: left;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid transparent;
}

.menu>ul>li a {
    text-decoration: none;
    padding: 20px 10px;
    display: block;
    color: #0F63A5;
}

.menu>ul>li:hover {
    border-bottom: 2px solid #008EFF;
}

.menu>ul>li a:hover {
    color: #008EFF;
}

.menu>ul>li .a-btn--trinity:hover {
    color: #ffffff;
}

.menu>ul>li>ul {
    display: none;
    width: 100vw;
    padding: 20px 30px;
    left: 0;
    background: #ffffff;
    position: absolute;
    z-index: 99;
    margin: 2 0 0;
    list-style: none;
    box-sizing: border-box;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}

.menu>ul>li>ul:before,
.menu>ul>li>ul:after {
    content: "";
    display: table;
}

.menu>ul>li>ul:after {
    clear: both;
}

.menu>ul>li>ul>li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    /*width: 25%;*/
    width: 33.33%;
    background: none;
    float: left;
}

.menu>ul>li>ul>li a {
    font-size: 18px;
    color: #0F63A5;
    font-weight: 500;
    padding: .2em 0;
    width: 95%;
    display: block;
    border-bottom: 1px solid rgba(15, 99, 165, 0.3);
    cursor: default;
    pointer-events: none;
}

.menu>ul>li>ul>li a:hover {
    color: #0F63A5;
}

.menu>ul>li>ul>li>ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu>ul>li>ul>li>ul:before,
.menu>ul>li>ul>li>ul:after {
    content: "";
    display: table;
}

.menu>ul>li>ul>li>ul:after {
    clear: both;
}

.menu>ul>li>ul>li>ul>li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: .8em;
}

.menu>ul>li>ul>li>ul>li a {
    border: 0;
    font-size: 16px;
    cursor: pointer;
    pointer-events: initial;
}

.menu>ul>li>ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}

.menu>ul>li>ul.normal-sub>li {
    width: 100%;
}

.menu>ul>li>ul.normal-sub>li a {
    font-size: 16px;
    border: 0;
    padding: 10px 0;
    cursor: pointer;
    pointer-events: initial;
}

.menu>ul>li>ul>li>ul>li a:hover,
.menu>ul>li>ul.normal-sub>li a:hover {
    color: #008EFF;
}

.menu-btn {
    font-size: 14px;
    border-radius: 5px;
    background: #008EFF;
    height: 40px;
    line-height: 0;
}

.menu-btn a {
    color: #ffffff !important;
}

.menu-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 0;
    background-color: #F7F7F7;
}

.mf-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-footer__left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-footer__right .social-info {
    display: flex;
    flex-direction: row;
}

.menu-footer__left a {
    margin: 0;
    padding: 0 !important;
    display: flex !important;
    text-align: center;
    align-items: center;
}

.menu-footer__text {
    font-size: 18px;
    margin: 0 20px 0 0;
    color: #0F63A5;
    font-weight: 500;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    .menu-item-home {
        position: relative;
        list-style: none;
        top: 12px;
    }
    .menu-item-home>a {
        height: 50px;
    }
    .menu-container {
        width: 100%;
    }
    .menu-container .menu {
        display: inline-block;
    }
    .menu-mobile {
        display: block;
        float: right;
        /*padding: 20px 20px 0;*/
        padding: 0 0 15px;
        line-height: 1;
        margin-top: -27px;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu>ul {
        display: none;
        width: 100%;
    }
    .menu>ul>li {
        width: 100%;
        float: none;
        display: block;
    }
    .menu>ul>li:nth-child(2) {
        margin-top: 20px;
    }
    .menu>ul>li:last-child {
        margin: 10px 0 20px 0;
    }
    .menu>ul>li a {
        padding: 20px 10px;
        width: 100%;
        display: block;
    }
    .menu>ul>li>ul {
        width: 100%;
        position: relative;
        padding: 0 30px;
        box-shadow: none;
    }
    .menu>ul>li>ul.normal-sub {
        width: 100%;
    }
    .menu>ul>li>ul>li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu>ul>li>ul>li:first-child {
        margin: 0;
    }
    .menu>ul>li>ul>li>ul {
        position: relative;
    }
    .menu>ul>li>ul>li>ul>li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block;
        max-height: 90vh;
        overflow-y: auto;
    }
}

.menu-icon-left {
    margin-right: 10px !important;
    font-size: 20px;
}

.menu-icon-left .a-icon {
    font-size: 20px;
    color: #0F63A5;
}

.admin-bar {
    padding-top: 32px;
}

.admin-bar header {
    top: 32px;
}

.bannerinbanner {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;    
}
.bannerinbanner:hover{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.profile-image {
    background-size: cover;
    background-position: center;
    height: 250px;
    width:100%;
    border-radius: 10px;    
}

/*.grecaptcha-badge {
    display: none;
}*/

.blue-dropdown {
	border-bottom: 1px solid #ffffff !important;	
	background-image:linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%) !important;
	background-color: #008EFF !important;
}

.tkrk-wrapper {
    position: absolute;
    top: 160px;
    right: 20px;
    width: 300px !important;
    background: #008EFF;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 16px;
	font-weight: 400;
    color: #fff;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	z-index: 20;
}

.tkrk-wrapper .a-btn {
    font-size: 12px;
    height: 40px;
    min-width: 60px;
}

.banner-image-new {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px !important;
}
@media screen and (max-width: 1040px) {
    .banner-image-new {
        top: auto;
        bottom: 30px;
        left: 20px;
    }
	.tkrk-wrapper {
		top: 20px;
	}
}
@media screen and (max-width: 978px) {
    .banner-image-new {
        right: 100px;
        bottom: 40px;
        max-width: 200px;
    }
	.tkrk-wrapper {
		bottom: 40px;
		top: auto;
		left: 250;
	}
	.request-panel.is-reverse {
		flex-direction: column-reverse;
	}
	.contactus-img, .section-7 .image-cover{
		background-position: 85% center;
	}
}
@media screen and (max-width: 768px) {
	.tkrk-wrapper {
		bottom: 135px;
		left: 20PX;
	}
	.page-id-2778 .contactus-img, 
	.tech360 .banner-slide-img {
		background-position: 80%;
	}
	.tech360 .slideshow-pre .paragraph {
		display: block;
	}	
}

@media screen and (max-width: 425px) {
.slideshow-pre .owl-dots {
	right: 20px;
	bottom: 10px;
}
}