/*styles*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #3c3c3c;
}

body.active {
    overflow-y: hidden;
}

.container {
    max-width: 1500px;
}

.container.wide {
    max-width: 1700px;
}

.container.sml {
    max-width: 1200px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}
.aos-animate {
    z-index: 999;
}
.icon {
    background: transparent;
}

a {
    color: inherit;
}

h1, h2, h3, h4, h5 {
    font-size: inherit !important;
    font-weight: inherit !important;
}

.breadcrumb {
    position: relative;
    background-image: url(../img/hero.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-transform: uppercase;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: 0.98;
}


/*Blog*/


.block.image {
    background-attachment: fixed;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 80px;
}

.block.image .heading {
    color: white;
}

.block.image .small-heading {
    color: white;
}

.block.image p {
    font-size: 19px;
    color: white;
}

.block.image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,0.2);*/
    background: #07253f;
    opacity: .75;
}

.small-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.small-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.wide-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.large-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.small-block.white {
    background: white;
}

.small-block.blue {
    background: #07253f;
}

.small-block.light-blue {
    background: #4b769b;
}

.wide-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.large-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.post-hold {
    padding: 40px 0;
    border-bottom: 1px solid #07253f;
}

.small-block.post {
    min-height: unset;
    display: block;
    height: unset;
}

.blog-post-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-inner {
    position: relative;
    padding: 65px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.block-inner.post {
    padding: 40px;
}

/* Header */

.header {
    position: fixed;
    width: 100%;
    z-index: 99999;
    background: black;
    top: 0;
}

.header.stuck {
    background: black;
}

.menu-hold {
    position: relative;
    height: 100%;
    transition: all .5s ease;
}

.menu-hold .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    opacity: 0;
    visibility: hidden;
}

.menu-hold .logo {
    font-size: 24px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    transition: all .5s ease;
}

.header.stuck .menu-hold {
    padding-left: 300px;
}

.header.stuck .menu-hold .logo {
    opacity: 1;
    visibility: visible;
}

.menu-hold ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    padding: 40px 0;
}

.menu-hold ul li {
    display: inline-block;
}

.menu-hold ul li a {
    padding: 10px 20px;
    margin: 10px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.menu-hold .btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.header .menu-hold ul li ul.sub-menu {
  position: absolute !important;
  /*right: 0;*/
  top: 75%;
  transition: all 0.5s ease;
  display: block !important;
  opacity: 0;
  border-radius: 0;
  line-height: 45px;
  padding: 10px;
  height: auto;
  width: auto;
  min-width: 300px;
  font-size: 15px;
  visibility: hidden;
  background: #111;
  z-index: 2;
  transform: translateY(0);
}
 
.header .menu-hold ul li ul.sub-menu li ul.sub-menu {
    background: #222;
    top: 100%;
}

.header .menu-hold ul li:hover > ul.sub-menu {
  opacity: 1;
  /*right: 0;*/
  visibility: visible;
}

/*Home*/

.section-select {
    position: relative;
    margin-top: 40px;
}

.section-select .sector {
    position: relative;
    text-align: center;
    width: 100%;
    background: #009ca6;
    color: white;
    display: block;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 10px;
    transition: all .5s ease;
}

.section-select .sector:hover {
    text-decoration: none;
    background: #111;
}

.hero-select {
    position: relative;
    border: 10px solid white;
    margin-top: 100px;
}

.hero-select .sectionselect {
    position: relative;
    display: block;
    border: 10px solid white;
}

.hero-select .sectionselect .image {
    position: relative;
    height: 400px;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.hero-select .sectionselect .image.withvid {
    overflow: hidden;
}

.hero-select .sectionselect .image.withvid video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.hero-vid-hold {
    position: relative;
    height: auto;
    width: 100%;
/*    overflow: hidden;*/
    background: black;
}

.hero-vid-hold video {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
/*    position: absolute;*/
/*    top: 45%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    min-height: 100vh;*/
    max-width: 100%;
    max-height: 800px;
}

.hero-vid-hold .main {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
}

.hero {
    position: relative;
    height: 75vh;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: black;
}

.hero.small {
    background-size: cover;
}

.hero.small::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    display: none;
}

.hero .main {
    position: absolute;
    bottom: 30px;
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    width: 100%;
    text-align: center;
    background: #009ca6;
}

.hero.mvp .main {
    background: transparent;
}

.hero .main small {
    font-size: 60%;
}

.hero .main span {
    color: #009ca6;
}

.hero.mvp .main {
    bottom: 20%;
}

.hero.mvp .main .inner {
    font-size: 100px;
    line-height: 22px;
    letter-spacing: 10px;
}

.hero.mvp .main span {
    font-size: 22px;
    line-height: 22px;
}

.welcome-blocks {
    position: relative;
/*    padding: 80px 0;*/
}

.welcome-blocks .wblock {
    position: relative;
    padding: 80px 60px;
    border: 1px solid white;
    background: #009ca6;
    border-left: 0;
    color: white;
}

.welcome-blocks .wblock.right {
    border-right: 0;
}

.welcome-blocks .wblock .content-hold {
    display: flex;
}

.welcome-blocks .wblock .content-hold .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-blocks .wblock .content-hold p {
    font-size: 14px;
    color: white;
    min-height: 120px;
}

.welcome-blocks .wblock .content-hold i {
    font-size: 35px;
    color: #009ca6;
    margin-right: 20px;
}

.welcome-blocks .wblock .number-link {
    position: relative;
}

.welcome-blocks .wblock .number-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eaeaea;
    z-index: -1;
}

.welcome-blocks .wblock .number-link span {
    position: relative;
}

.welcome-blocks .wblock .number-link a.little-btn {
    position: absolute;
    right: 0;
    padding: 10px 20px;
    border: 1px solid #eaeaea;
    background: white;
    color: #009ca6;
}

.about {
    position: relative;
    padding: 80px 0;
}

.about .btn.float {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about .about-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.about .little-content {
    position: relative;
    padding: 20px;
    max-width: 350px;
}

.about .little-content.first {
    margin-left: 25px;
}

.about .text-hold {
    position: relative;
}

.about .little-content i {
    font-size: 35px;
    color: #009ca6;
    margin-bottom: 20px;
}

.about .little-content .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about .text-hold.pl {
    padding-left: 300px;
}

.about .text-hold.pl .hover-content {
    position: absolute;
    top: 20px;
    left: -100px;
    background: black;
    color: white;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 6px 27px 0px rgb(73 149 176 / 30%);
    padding: 40px;
}

.about .text-hold.pl .hover-content .title {
    text-transform: uppercase;
}

.about .text-hold.pl .hover-content i {
    color: white;
}

.about .text-hold.pl .hover-content p {
    color: white;
    margin-bottom: 0;
}

.content-hold p.bigger {
    font-size: 18px;
}

.list-bubble {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: #009ca6;
    color: white;
    text-align: center;
}

.list-bubble p {
    color: white;
    margin-bottom: 0;
}

.list-bubble .sub {
    color: white;
}

.stats {
    position: relative;
    padding-top: 80px;
    background: #f7f7f7;
}

.stats .stat-holder {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
    padding-top: 350px;
}

.stats .stat-holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(178deg, #85a6a636 0%, #009ca6 100%);
}

.stats .stat-holder .sblock {
    position: relative;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.stats .stat-holder .sblock.middle {
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}

.stats .stat-holder .sblock .big {
    font-size: 75px;
    line-height: 75px;
    font-weight: 700;
    color: white;
}

.stats .stat-holder .sblock span {
    font-weight: 600;
    font-size: 18px;
    color: #beeeff;
}

.stats .hover-block {
    position: absolute;
    right: 50px;
    top: 100px;
    padding: 40px;
    background: #009ca6;
    color: white;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 6px 27px 0px rgb(73 149 176 / 30%);
}

.stats .hover-block .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stats .hover-block p {
    color: white;
    margin-bottom: 0;
}

.title-bubble {
    position: relative;
    padding: 40px 20px;
    background: #009ca6;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.title-bubble p {
    color: white;
    margin-bottom: 0;
}

.about .title-bubble {
    padding: 20px;
}

.about .content-hold .image-holder {
    text-align: center;
    margin-bottom: 20px;
}

.about .content-hold .image-holder img {
    max-height: 60px;
    display: inline-block;
    margin: 0 10px;
    background: #009ca6;
}

.text-bubble {
    position: relative;
    padding: 20px;
    background: #009ca6;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.text-bubble .btext {
    font-size: 20px;
}

.stats .content-block {
    position: relative;
    padding: 20px;
    background: #000;
    color: white;
    margin-bottom: 20px;
    border-radius: 10px;
}

.stats .content-block p {
    color: white;
}

.stats .content-block p:last-child {
    margin-bottom: 0;
}

.stats .side-image-unmiss {
    position: relative;
    height: 350px;
    width: 100%;
    background-position: center;
    background-size: cover;
    margin-bottom: 40px;
}

.sectors {
    padding: 80px 0;
    background: #f7f7f7;
}

.sectors .sector {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    box-shadow: 0px 6px 27px 0px rgb(73 149 176 / 30%);
}

.sectors .sector .title {
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #009ca6;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
}

.stages {
    position: relative;
    padding: 80px 0;
}

.stages .table-hold {
    overflow-x: auto;
}

.stages table {
    margin-top: 40px;
    border-collapse: collapse;
    width: 100%;
    min-width: 1200px;
/*    overflow-x: scroll;*/
    text-align: left;
}

.stages table tr {
    vertical-align: top;
}

.stages table tr td:first-child {
    font-weight: bold;
}

.stages table tr td:nth-child(3),
.stages table tr td:nth-child(2) {
    min-width: 350px;
}

.stages table tr td:nth-child(3) {
    font-weight: 800;
}

.stages table tr {
    /*background: rgba(0, 61, 65, 1);*/
    background: linear-gradient(90deg,rgba(0, 45, 65, 1) 45%, rgba(102, 0, 255, 1) 100%);
}

.stages.ffr table tr td {
    border: 2px solid black ;
}

.stages.ffr table tr td:nth-child(4) {
}

.stages table tr.break {
    color: white;
    background: #009ca6 !important;
}

.stages table td, .stages table th {
/*    border: 2px solid white;*/
    padding: 10px 20px;
}

.stages table tr:nth-child(even){
    background-color: #222;
}

.stages table th {
    text-align: left;
    background-color: #009ca6;
    color: white;
}

.stages-tabs {
}

.tabs {
    display: flex;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
/*    border-bottom: 1px solid #ddd;*/
    text-transform: uppercase;
    font-weight: bold;
}

.tab-link {
    padding: 10px 20px;
    border-bottom: none;
    background-color: black;
    color: white;
}

.tab-link.active {
    background-color: #009ca6;
}

.tab-content {
    display: none;
    padding: 20px;
/*    border: 1px solid #ddd;*/
    border-top: none;
    background: black;
    color: white;
}

.tab-content.active {
    display: block;
}

.breadcrumb {
    margin-bottom: 0;
}

.tab-hold {
    position: relative;
    padding: 40px;
    background: #f7f7f7;
}

ul.tabs {
    justify-content: center;
}

ul.tabs a {
    margin: 0 5px;
}

.speakers {
    position: relative;
    padding: 80px 0;
    background: #f7f7f7;
}

.speakers .speaker-block {
    margin: 15px 0;
}

.about.speakers {
    background: #f7f7f7;
}

.speakers.alt {
    background: white;
}

.presenters {
    position: relative;
    padding: 80px 0;
    background: #f7f7f7;
}

.presenters .presenter {
    position: relative;
    margin-bottom: 30px;
    background: white;
    display: flex;
}

.presenters .presenter .name {
    position: relative;
    padding: 20px;
    text-align: center;
    width: 100%;
    background: #009ca6;
    color: white;
    font-size: 14px;
}

.presenters .presenter .right {
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
}

.presenters .presenter .right img {
    margin: 34px 20px;
    max-height: 61px;
}

.presenters .presenter img {
    max-height: 190px;
}

.press-block {
    position: relative;
    box-shadow: 0px 6px 27px 0px rgb(73 149 176 / 30%);
    display: block;
    text-decoration: none;
}

.press-block .image {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.press-block .title {
    position: relative;
    padding: 20px;
    background: #009ca6;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

/*Product View*/

.small-product-section {
    margin: 0 auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    background: #f9f9f9;
}

.small-product-section h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.small-product-section .price {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #0071a1;
}

.small-product-section .quantity {
/*    margin-bottom: 10px;*/
}

.small-product-section .quantity input[type="number"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    margin: 0 auto;
    height: 50px;
    width: 80px;
    margin-right: 20px;
}

.payment-buttons {
/*    margin-top: 15px;*/
}

.small-product-section .btn {
    display: block;
    width: 100%;
}

.about .cart {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-view {
    position: relative;
    padding: 80px 0;
}

@media (max-width: 768px) {
    #quick-view-modal .quick-view-content {
        display: block !important;
    }

    #quick-view-modal .quick-view-content .split-hold {
        margin: 10px 0;
    }
}

#quick-view-modal .quick-view-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#quick-view-modal .quick-view-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

#quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 99999;
}

#quick-view-modal .quick-view-content h2 {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 28px !important;
    line-height: 28px !important;
}

#quick-view-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#quick-view-modal .modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111;
    color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 9999;
}

#quick-view-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#quick-view-modal p {
    font-size: 1rem;
    margin-bottom: 15px;
}

#quick-view-modal .quantity {
    margin-bottom: 15px;
}

#quick-view-modal .quantity input[type="number"] {
    width: 60px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    margin-left: 10px;
}

#quick-view-modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

#quick-view-modal .close:hover {
    color: white;
}

/*Defaults*/

p {
    letter-spacing: 1.2px;
    color: #797979;
    font-size: 14px;
}

.sub {
    color: #009ca6;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.heading {
    font-size: 45px;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    border-radius: 25px;
    padding: 10px 25px;
    background: #009ca6;
    color: white;
    border: none;
}

hr {
    display: block;
    background-color: #eaeaea !important;
    margin: 40px 0 !important;
}

/*Footer*/

.partner-banner {
    position: relative;
    background: black;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-banner img {
    max-height: 50px;
    width: auto;
    margin: 0 20px;
}

.partner-banner .btitle {
    padding: 10px 20px;
    color: white;
    background: #009ca6;
    text-transform: uppercase;
    font-weight: bold;
}

.partner-banner .btitle.ml {
    margin-left: 60px;
}

.footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: 0.98;
}

.footer .top-footer img {
    max-height: 100px;
    margin-bottom: 20px;
}

.footer .top-footer {
    position: relative;
    padding: 80px 0;
}

.footer .top-footer .footer-heading {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer .top-footer p {
    font-size: 13px;
    color: #aeaeae;
    max-width: 80%;
}

.footer .top-footer ul {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer .top-footer ul li {
    font-size: 14px;
    margin: 10px 0;
}

.footer .top-footer ul li a {
    color: #aeaeae;
    font-weight: 600;
}

.footer .top-footer ul li a i {
    color: #009ca6;
    margin-right: 10px;
    font-size: 15px;
}

.footer .top-footer ul.social {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 30px;
}

.footer .top-footer ul.social li {
    margin: 0 5px;
}

.footer .top-footer ul.social li a {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #009ca6;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .top-footer ul.social li a i {
    margin-right: unset;
    color: white;
    font-size: 20px;
}

.footer .bottom-footer {
    position: relative;
    padding: 20px 0;
    font-size: 12px;
    border-top: solid 1px rgba(255, 255, 255, .1);
    color: #aeaeae;
}

/*Responsive*/

@media only screen and (min-width : 1200px) {

    .menu-toggle {
        display: none;
    }

    .dropdown-toggle {
        display: none;
    }
}

@media only screen and (max-width : 1200px) {
    body {
        overflow-x: hidden;
    }

    body.active {
        overflow-y: hidden;
    }

    ul {
        padding-left: 0;
    }

    .menu-toggle {
        position: absolute;
        width: 40px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        margin: 0;
        appearance: none;
        border: 0;
        background: none;
        overflow: visible;
        z-index: 999999;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

    .menu-toggle:focus {
        outline: none;
    }

    .menu-toggle span {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background: #009ca6;   
    }

    .menu-toggle span:nth-of-type(1) {
      transition: all 0.3s 0.3s, transform 0.3s 0s;
    }

    .menu-toggle span:nth-of-type(2) {
      top: 50%;
      margin-top: -1px;
      left: 0;
      transition: all 0.3s 0.3s;
    }

    .menu-toggle span:nth-of-type(3) {
      bottom: 0;
      top: auto;
      left: 0;
      transition: all 0.3s 0.3s, transform 0.3s 0s;      
    }

    .menu-toggle.active {
        transform: translateY(-50%), rotate(135deg);
        transition: all 0.5s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(1) {
      top: 50%;
      margin-top: -1px;
      transform: rotate(90deg);
      transition: all 0.3s, transform 0.3s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(2) {
      opacity: 0;
      transition: all 0.3s, opacity 0.3s 0s;      
    }

    .menu-toggle.active span:nth-of-type(3) {
      bottom: 50%;
      margin-bottom: -1px;
      transform: rotate(0deg);
      transition: all 0.3s, transform 0.3s 0.3s;      
    }

    .header .logo {
        text-align: left !important;
    }

    .header .logo img {
        position: relative;
        z-index: 999;
        max-height: 70px;
        max-width: 100%;
        height: auto;
    }

    .header ul li::before {
        display: none;
    }

    .header .call-block {
        display: none;
    }
    .header .bottom-header {
        padding: 10px;
    }

    .header {
        padding: 20px;
    }

    .header .menu-hold .logo {
        display: none;
    }

    .header .logo {
        font-size: 24px;
        text-transform: uppercase;
        color: white;
        font-weight: 600;
        transition: all .5s ease;
    }

    .header .menu-hold ul.menu {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 99999;
        display: none;
        left: 0;
        top: 0;
        background: black;
        text-align: center;
        padding-top: 100px;
        overflow-y: scroll;
        margin-left: 0;
        padding-left: 0;
    }

    .header .menu-hold ul.menu li {
        display: block !important;
        position: relative;
        float: none;
        height: unset;
        padding: 0;
    }

    .header .menu-hold ul.menu li a {
        padding: 22px;
        text-decoration: none;
        font-size: 22px;
        display: block;
        transition: 0.3s;
        border-left: none;
        width: 75%;
        margin: 0 auto;
        color: white;
        background: transparent;
        border: none;
    }

    .header .menu-hold ul.menu li ul.dropdown {
        position: relative !important;
        left: 50%;
        top: 0;
        margin-left: 0;
        transition: all 0.4s ease;
        display: block !important;
        opacity: 0;
/*        background: white;*/
        text-align: center;
        height: auto;
        visibility: hidden;
        margin: 0;
        padding: 0;
        box-shadow: none;
        z-index: 9;
        transform: translate(-50%);
    }

    .heading {
        font-size: 25px;
        line-height: 25px;
    }

    .welcome-blocks .wblock {
        padding: 80px 20px;
        border-top: 0;
        text-align: left;
        border-top: 0;
    }

    .sectors .sector {
        margin: 20px 0;
    }

    .about .btn.float {
        position: relative;
        margin-top: 20px;
    }

    ul.double {
      columns: unset;
      -webkit-columns: unset;
      -moz-columns: unset;
    }

    .footer {
        text-align: center;
    }

    .footer ul.pages li {
        display: block;
        width: 100%;
    }

    .footer ul.pages li::before {
        display: none;
    }

    .footer .social {
        margin-bottom: 20px;
    }

    .footer .footer-heading {
        margin-top: 20px;
    }
    
}

@media (max-width: 991px) {
    .about .text-hold.pl .hover-content {
        position: relative;
        top: unset;
        left: 50%;
        transform: translateX(-50%) !important;
        margin-bottom: 40px;
    }

    .about .about-image {
        margin-bottom: 40px;
    }

    .about .text-hold.pl {
        padding-left: unset;
    }

    .stats .hover-block {
        position: relative;
        right: unset;
        top: unset;
        margin-top: 80px;
    }

    .about .little-content {
        left: 50%;
        transform: translateX(-50%);
    }

    .about .little-content.first {
        margin-left: unset;
    }
}

@media (max-width: 768px) {
    body {
        text-align: center;
    }

    .text-right {
        text-align: center !important;
    }

    .partner-banner {
        display: block;
        text-align: center;
    }

    .partner-banner .btitle.ml {
        margin-left: 0;
    }

    .partner-banner img {
        display: block;
        max-height: 80px;
        margin: 20px auto;
    }

    .title-bubble {
        margin-bottom: 20px;
    }

    .sub {
        margin-top: 20px;
    }

    .hero-vid-hold {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {

}

@media (max-width: 400px) {

}
