/*
Theme Name: Bespoke theme for Simpson Ltd
*/

:root {
    --base-font:            'Kumbh Sans', sans-serif;
    --base-size:            18px;

    --font-regular:         400;
    --font-medium:          500;
    --font-bold:            700;
    --font-extrabold:       800;
    
    --blue:                 #2a4f86;
    --lightblue:            #0D6DFC;
    --grey:                 #707070;
    --lightgrey:            #afafaf;
    --white:                #ffffff;
 
   --section-padding:       8rem;  
   --section-padding-sml:   6rem;   
}


/* Main CSS
-------------------------------------------------------------- */
body { 
    font-family: "Kumbh Sans", sans-serif;
    font-weight:500;
    font-size: var(--base-size);
    color: #707070;
    background-color: #F8F8F8;
}

    body.home {
        //background-image: url(images/simpsonsbg.jpg);
        //background-position: top;
        //background-repeat: no-repeat;
        //background-size: cover;
        //background-attachment: fixed;
        //background-color: #3D3D49;
    } 
   

/* typography */

h1,h2,h3,h4,h5,h6 {
    color: var(--blue);
    font-weight: 800;
}

    h2 strong {
        color: var(--lightblue);
        font-weight:800;
    }

    h1.heading {
        color: #ffffff;
        font-size: 40px;
        line-height: 40px;
        font-weight: 800;
        letter-spacing: 6px;
        text-transform: uppercase;
    }

        @media only screen and (min-width : 768px) { 
            h1.heading {
                font-size: 48px;
                line-height: 48px;
                //letter-spacing: 8px;
            }
        }

        @media only screen and (min-width : 992px) { 
            h1.heading {
                font-size: 64px;
                line-height: 64px;
                //letter-spacing: 12px;
            }
        }

        @media only screen and (min-width : 1200px) { 
            h1.heading {
                font-size: 70px;
                line-height: 70px;
                //letter-spacing: 12px;
            }
        }
        
    h1.display {
        font-size: 40px;
        line-height: 40px;
        font-weight: 800;
        letter-spacing: 6px;
        text-transform: uppercase;
    }

        @media only screen and (min-width : 768px) { 
            h1.display {
                font-size: 48px;
                line-height: 48px;
            }
        }

         @media only screen and (min-width : 1200px) { 
            h1.display {
                font-size: 50px;
                line-height: 50px;
            }
        }
    
    h2,
    h2.display,
    h3.display {
        font-size:32px;
        line-height: 32px;
        letter-spacing: 1.8px;
        text-transform:uppercase;
    }  
    
        @media only screen and (min-width : 768px) { 
            h2,
            h2.display,
            h3.display {
                font-size:40px;
                line-height: 40px;
                letter-spacing: 2px;
            }
        }

        @media only screen and (min-width : 992px) { 
            h2,
            h2.display,
            h3.display {
                font-size:44px;
                line-height: 44px;
                letter-spacing: 2.4px;
            }
        }
  
.subheading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    display:flex;
}

.text-grey {
    color: var(--grey);
}

.text-blue {
    color: var(--blue);
}

.text-lightblue {
    color: var(--lightblue);
}

.text-uppercase {
    text-transform:uppercase;
}
   
a {
    text-decoration:none;
}

    a:hover, a:focus {
        color: var(--blue); 
    }
 
p {
    font-size: var(--base-size);
}

/* attributes */
.relative {
    position:relative;
}

.absolute {
    position:absolute;
}

.no-overflow {
    overflow:hidden;
}

.section-padding {
    padding-top: var(--section-padding-sml);
    padding-bottom: var(--section-padding-sml);
}

    @media only screen and (min-width : 1200px) {
        .section-padding {
            padding-top: var(--section-padding);
            padding-bottom: var(--section-padding);
        }    
    }

.wp-block-image img {
    border-radius: 30px;
    margin-top:60px;
    margin-bottom:60px;
}

    .single #blog .wp-block-image img {
        border-radius: 30px;
        margin-top:0;
        margin-bottom:0;
    }

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center center;
}

.visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

    .visual.left {
        left: 0;
        right: auto;
    }
  

/* buttons */
.btn {
    border-radius: 30px 30px 0 30px;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 25px 13px;
    text-transform:uppercase;
    letter-spacing: 1px;
}

    .btn:hover, .btn:focus {
        border-radius: 30px 30px 0 30px;
        box-shadow:none;
        outline:0;
    }

.btn-blue {
    background: #0D6DFC;
    color:#ffffff;
}

    .btn-blue:hover, .btn-blue:focus {
        background: #2A4F86;
        color:#ffffff;
    }
    
.btn-grey {
    background: #2A4F861A;
    color:#2A4F86;
}

    .btn-grey:hover, .btn-grey:focus {
        background: #2A4F86;
        color:#ffffff;
    }


.btn-trans {
    background-color: rgba(255, 255, 255, 0.10);
    color:#ffffff;
}

    .btn-trans:hover, .btn-trans:focus {
        background: #2A4F86;
        color:#ffffff;
    }


/* navbar styling */
.lock-scroll {
    overflow: hidden;
}

.navbar-nav li .dropdown-menu {
    display: block;
}

@media only screen and (min-width : 1200px) {
    .navbar-nav li .dropdown-menu {
        display: none;
    }

    .navbar-nav li:hover .dropdown-menu {
        display: block;
    }
}

.navbar {
    height: 50px;
}

    @media only screen and (min-width :1200px) {
    .navbar {
        height: 100%;
    }
    }

.navbar .navbar-brand {
    font-size:inherit;
}

.menu-navbar-container {
    width:100%;
}

.navbar ul {}

    @media only screen and (min-width : 1200px) {
        .navbar ul {
            margin-top:0;
        }
    }

ul.dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    border:none;
}

    @media only screen and (min-width :1200px) {
        ul.dropdown-menu {
            background-color: #212121;
            border-radius: 0;
        }
    }     
 
.dropdown-item {
    color:rgba(255,255,255,0.7);
    font-weight: 500;
    font-size:16px;
}

    .dropdown-menu a:hover {
        background-color: transparent;
        color: var(--lightblue);
    }


    @media only screen and (min-width : 1200px) {
        .dropdown-item {
            color: #ffffff;
            text-align: left;
            padding: 8px 15px;
        }
    }

    .dropdown-item.active, .dropdown-item:active {
        color: var(--lightblue);
        text-decoration: none;
        background-color: transparent;
    }

.current-menu-parent a.nav-link {
    color: #ffffff;
}

 
.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-header {
    height:32px;
}

.navbar-toggler {
    z-index: 10;
}

    .navbar-toggler:focus, .navbar-toggler:active {
        outline: 0!important;
        box-shadow:none!important;
    }


.navbar-collapse {
    transition: all 0.3s ease;
    display: block;
    position: fixed;
    top: 0px;
    bottom: 0;
    padding: 1rem 20px;
    left: -120%;
    width: 100%;
    margin-top:50px;
}

    .logged-in .navbar-collapse {
        margin-top:90px;
    }

        @media only screen and (min-width: 783px) {
            .logged-in .navbar-collapse {
                margin-top:80px;
            }
        }

    .navbar-collapse.show {
        left: 0;
        z-index: 5;
        background: #212121;
        overflow:scroll;
        //height: 100vh;
    }

    @media only screen and (min-width: 1200px) {
        .navbar-collapse {
            position:static;
            padding: 0;
            margin-top:0;
        }

        .logged-in .navbar-collapse {
            margin-top:0;
        }
    }

    a.nav-link {
        color: rgba(255,255,255,0.7);
        font-weight: 500;
        font-size:14px;
        text-transform: uppercase;
        padding: 10px 0;
        letter-spacing: 1px;
    }
    
        a.nav-link.active, a.nav-link:hover, a.nav-link:focus  {
            color: #ffffff;
        }

.navbar-toggler span {
   display: block;
   background-color: var(--white);
   height: 2px;
   width: 25px;
   margin-top: 0;
   margin-bottom: 6px;
   -webkit-transform: rotate(0deg);
   -moz-transform: rotate(0deg);
   -o-transform: rotate(0deg);
   transform: rotate(0deg);
   position: relative;
   left: 0;
   opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   -webkit-transition: transform .35s ease-in-out;
   -moz-transition: transform .35s ease-in-out;
   -o-transition: transform .35s ease-in-out;
   transition: transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 22px;
    top: 24px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 22px;
    top: 24px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}


/*Header */
.top-header {
    background: #212121;
    height:50px;
    font-size: 16px;
    z-index: 1;
    position: relative;
}

    .top-header a {
        color:#ffffff;
    }
    
        .top-header a:hover {
            color:var(--lightblue);
        }

    .top-header .right-line {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }

header {
    background-color: #212121; 
    width:100%;
    color:#ffffff;
    height:50px;
    z-index:20;
    position:fixed;
}

    @media only screen and (min-width : 1200px) {
        header {
            height:153px;
            //position:relative;
            position:absolute;
            background: rgba(31, 31, 31, 0.60);
            box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(15px);
        }
    }

    header.fixed-header {
        position:fixed;
        top:0;
    }
    
   

/* Front Page */
.jumbotron {
	height: auto;
    //background-image: url(images/simpsonsbg.jpg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  background-color: #3D3D49 !important;
  //padding-top: 150px;
}

    @media only screen and (min-width : 1200px) {
        .jumbotron {
	       height: 95vh;
           min-height: 700px;
           padding-top: 150px;
        }
        
        .jumbotron.add-paddding {
    	   //margin-top: 153px;
        }
    }
    
    @media only screen and (min-width : 1400px) {
        .jumbotron {
	       height: 95vh;
           min-height: 700px;
        }
    }


    @media only screen and (min-width : 1200px) { 
        .jumbotron .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            display: inline-flex;
            margin-top: 14px;
        }
    }

    .jumbotron .paragraph {
        font-weight:500;
        font-size: var(--base-size);
        color: #fff;
    }

    
#home-accreditations{
    background: linear-gradient(90deg, #1D1D1D 18.34%, #071428 100%);
}  
  
    #home-accreditations .slick-track {
        display: flex;
        align-items: center;
    }  
  
#home-services {
    background: #F8F8F8;
}

    @media only screen and (min-width : 1400px) {
        #home-services .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(130, 130, 130, 0.3);
            display: inline-flex;
            margin-top: 14px;
        }
    }

    #home-services .services img {
        transition: 1s all;
        border-radius: 30px 30px 0 30px;
        height: 400px;
        object-fit: cover;
    }

        #home-services .services img.substract {
            object-fit: cover;
            object-position: bottom;
        }
    
    @media only screen and (min-width : 1200px) {
        #home-services .services img {
            height: 350px;
        }
    }

    @media only screen and (min-width : 1400px) {
        #home-services .services img {
            height: 400px;
        }
    }
    
    #home-services .services a {
        position: relative;
        transition: 1s all;
        display: block;
        border-radius: 30px 30px 0 30px;
    }
    
        #home-services .services .substract {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }
    
        #home-services .services .overlay-top {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            border-radius: 30px 30px 0 30px;
            //background: radial-gradient(circle, rgba(76,146,252,0.4) 0%, rgb(76, 146, 252) 100%);
            background: radial-gradient(circle, rgba(232, 236, 242, 0) 30%, rgb(0, 0, 0) 100%);
            transition: opacity 1s ease-in-out;
              -moz-transition: opacity 1s ease-in-out;
              -webkit-transition: opacity 1s ease-in-out;
            opacity:0.2;
        }

            #home-services .services a:hover .overlay-top {
                opacity:0;
            }
    
        #home-services .services a .overlay-bottom {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;  
            border-radius: 30px 30px 0 30px;     
            background: radial-gradient(circle, rgba(76,146,252,0.4) 0%, rgb(76, 146, 252) 100%);
            //box-shadow: 0px 40px 50px 0px #4C92FC60;
            opacity:0;
            transition: opacity 1s ease-in-out;
              -moz-transition: opacity 1s ease-in-out;
              -webkit-transition: opacity 1s ease-in-out;
            }
    
                #home-services .services a:hover .overlay-bottom {
                    background: radial-gradient(circle, rgba(76,146,252,0.4) 0%, rgb(76, 146, 252) 100%);
                    box-shadow: 0px 40px 50px 0px #4C92FC60;
                    opacity:1;
                }
               
    #home-services .services .content {
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        max-width: 230px;
    }
    
    #home-services .services .heading {
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    
        @media only screen and (min-width : 1200px) {
            #home-services .services .heading {
                font-size: 14px;
            }
        }

    @media only screen and (min-width : 1400px) {
        #home-services .services .heading {
            font-size: 18px;
        }
    }
    
        #home-services .services .see_more {
            color: #FFF;
            font-size: 14px;
            font-weight: 500;
            line-height: 24px;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            align-items: center;
            display: flex;
            flex-grow: 1;
        }

        #home-services .services .see_more::before {
            border-top: 1px solid #fff;
            content: " ";
            height: auto;
            margin-right: 1rem;
            width: 38px;
          }
          
          
#home-core-points {
    //background-image: url('images/howweworkbg.jpg');
    min-height: 300px;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: #ffffff;
}

    @media only screen and (min-width : 1200px) {
        #home-core-points .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            display: inline-flex;
            margin-top: 14px;
        }
    }
    
    #home-core-points .heading {
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
    }
    
#home-testimonials {
    background: #F8F8F8;
}

    #home-testimonials.add-padding {
        padding-bottom: 11rem;
    }


    #home-testimonials a {
        color: #2A4F86;
    }

    #home-testimonials .review {
        color: #2A4F86;
        font-size: 18px;
        font-weight: 500;
        line-height: 140%;
        position:relative;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
        @media only screen and (min-width : 768px) {
            #home-testimonials .review {
                font-size: 25px;
            }
        }
    
            #home-testimonials .review-inner {
                z-index:1;
            }
    
        #home-testimonials .quote-left {
            position: absolute;
            left: 0;
            top: -16px;
            width: 76px;
            height: 58px;
        }
        
             @media only screen and (min-width : 768px) {
                #home-testimonials .quote-left {
                    position:absolute;
                    left:0;
                    top: 0;
                    width: 156px;
                    height: 138px;
                }         
            }
    
        #home-testimonials .quote-right {
            position: absolute;
            right: 0;
            bottom: -16px;
            width: 76px;
            height: 58px;
        }
        
            @media only screen and (min-width : 768px) {
                #home-testimonials .quote-right {
                    position:absolute;
                    right:0;
                    top: 0;
                    bottom:auto;
                    width: 156px;
                    height: 138px;
                }         
            }
    
    #home-testimonials .name {
        color: #2A4F86;
        font-size: 18px;
        font-weight: 600;
    }
    
#home-industries {
    background: #FEFEFE;
    box-shadow: 0 4px 60px 0px rgba(0, 0, 0, 0.3);
    position:relative;
    z-index:1;
}

    @media only screen and (min-width : 1200px) {
        #home-industries .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(130, 130, 130, 0.3);
            display: inline-flex;
            margin-top: 14px;
        }
    }
    
    #home-industries .heading {
        color: #2A4F86;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }
    
#home-stories {
    background: #F8F8F8;
}

    @media only screen and (min-width : 1400px) {
        #home-stories .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(130, 130, 130, 0.3);
            display: inline-flex;
            margin-top: 14px;
        }
    }
    
     #home-stories .nav-tabs {
        border-bottom:none;
     }
    
    #home-stories li.nav-item a {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1.4px;
        padding: 13px 30px 12px;
        text-transform: uppercase;
        text-decoration: none;
        transition: 1s all;
        border-radius: 10px;
        border: none;
        color: #2A4F86;
    }
    
        #home-stories li.nav-item a:hover {
            color: #4C92FC;
        }
    
        #home-stories li.nav-item a.active, #home-stories li.nav-item a.active:hover {
            border-radius: 10px;
            background: #fefefe;
            box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
            color: #2A4F86;
        }
    
    #home-stories .tab-content img,
    #home-stories .accordion img {
        border-radius: 30px 30px 0 30px;
        width: 250px;
        height:250px;
        object-fit: cover;
    }    
    
    #home-stories .accordion-item {
        background-color: #fefefe;
        border: none;
        box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
        border-radius: 10px !important;
    }
    
        #home-stories .accordion-button {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 10px;
            border: none;
            color: #2A4F86;
        }
    
        #home-stories .accordion-button:focus {
            outline: 0;
            box-shadow: none;
}
    
        #home-stories .accordion-button:not(.collapsed) {
            color: #2A4F86;;
            background-color: #fefefe;
        }


#home-experience {
    background-image: url(images/experiencebg.jpg);
    min-height: 300px;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-bottom: 11rem;
}

    @media only screen and (min-width : 768px) {
        #home-experience {
            padding-bottom: 12rem;
        }
    }

    #home-experience .heading {
        color: #FFF;
        text-align: center;
        font-size: 40px;
        font-weight: 800;
        letter-spacing: 8px;
        text-transform: uppercase; 
        line-height: normal;   
    }
    
        @media only screen and (min-width : 768px) {
            #home-experience .heading {
                font-size: 48px;
                letter-spacing: 10.8px;
            }
        }

    @media only screen and (min-width : 1200px) {
        #home-experience .line::before {
            border-top: 1px solid rgba(255, 255, 255, 0.5);
            content: " ";
            height: auto;
            margin: auto;
            width: 4rem;
            padding-top: 1rem;
            display: block;
        }
    }
        
/* inner page general styles */

.jumbotron.inner {
	height: 500px;
	position: relative;
	background-size: cover !important;
	background-position: center !important;
    background-repeat: no-repeat !important;
    overflow:hidden;
    padding-top: 50px;
}


    @media only screen and (min-width : 1200px) {
        .jumbotron.inner {
            height:600px;
            padding-top:150px;
            //margin-top:-153px;
        }
    }

    @media only screen and (min-width : 1400px) {
        .jumbotron.inner {
           height:620px;
        }
    }
    
    .jumbotron.inner.add-paddding {
        margin-top:0 !important;
    }
    
    .jumbotron.inner.basic {
        height:50px;
        min-height: auto;
    }
    
        @media only screen and (min-width : 1200px) {
            .jumbotron.inner.basic {
                height:100px;
            }
        }




/* services */
#services {}

    #services-list {
        background: linear-gradient(90deg, #1D1D1D 18.34%, #071428 99.99%, rgba(7, 20, 40, 0.90) 100%);
    }
    
        #services-list li {
            padding: 3px 40px;
            display:inline-block;
        }
    
        #services-list a {
            color:#ffffff;
        }
        
            #services-list a:hover {
                color:var(--lightblue);
            }

    #services.cta {
        //background-image: url(images/simpsonsbg.jpg);
        min-height: 300px;
        background-attachment: fixed !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        padding-bottom: 11rem;
    }

        @media only screen and (min-width : 768px) {
            #services.cta {
                padding-bottom: 12rem;
            }
        }

        #services.cta .heading {
            color: #FFF;
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 6px;
            text-transform: uppercase; 
            line-height: normal;   
        }
        
            @media only screen and (min-width : 768px) {
                #services.cta .heading {
                    font-size: 40px;
                }
            }

            @media only screen and (min-width : 1200px) {
                #services.cta .heading {
                    font-size: 48px;
                }
            }
    
/* Blog Post */
#blog article {
    border: 1px solid #D3D3D3;
    color: #656565;
    height: 100%;
    border-radius: 30px 30px 0 30px;
}

    #blog article a {
        color: #7D7D7D;
    }

    #blog .blog-image {
        height: 250px;
        object-fit: cover;
        object-position: center;
        border-radius: 30px 30px 0 0;
        width: 100%;
    }
    
        @media only screen and (min-width: 576px) {
            #blog .blog-image {
                height: 315px;
            }
        }
        
        @media only screen and (min-width: 768px) {
            #blog .blog-image {
                height: 220px;
            }
        }
       
        @media only screen and (min-width: 992px) {
            #blog .blog-image {
                height: 280px;
            }
        }

        @media only screen and (min-width: 1200px) {
            #blog .blog-image {
                height: 200px;
            }
        }
    
    #blog .date {
        color: var(--lightblue);
        font-weight: 500;
        font-size: 16px;
    }
    
    #blog .heading {
        color: #555555;
        font-weight: 700;
        font-size: 18px;
    }
    
    .single #blog h2, 
    .single #blog h3 {
        margin-top:32px;
    }


/* Post End */

/* Inner Page */


/* Inner Page End */


/* cta */
#cta {
    background: linear-gradient(90deg, #1D1D1D 18.34%, #071428 100%);
    color:#AFAFAF;
}

    #industry-cta {
        background: linear-gradient(90deg, #1D1D1D 18.34%, #071428 100%);
        color: #AFAFAF;
        box-shadow: 0 4px 60px 0px rgba(0, 0, 0, 0.76);
        position: relative;
        z-index: 1;
          }

/* mailing list */
#mailing-list {
    position: absolute;
    margin-top: 0;
    left: 0;
    right: 0;
}

    #mailing-list .inner {
        border-radius: 20px;
        background: linear-gradient(90deg, #1D1D1D 18.34%, #071428 99.99%, rgba(7, 20, 40, 0.90) 100%);
        backdrop-filter: blur(17.5px);
        margin: -5rem 1rem 0 1rem;
    }
    
        @media only screen and (min-width : 768px) {
            #mailing-list .inner {
               margin: -5rem 3rem 0 3rem;
            }
        }
    
    @media only screen and (min-width : 1200px) {
        #mailing-list .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(130, 130, 130, 0.3);
            display: inline-flex;
            margin-top: 14px;
        }
    }
 

/* contact us page */
#contact-page {
    background-color:#FEFEFE;
}

    #contact-page.contact-details {
        background: linear-gradient(90deg, #1D1D1D 18.34%, #071428 100%);
    }
    
        #contact-page.contact-details a {
            color:#ffffff;
        }

    
#contact {
    background: #FEFEFE url(images/contactbg.png) no-repeat bottom left;
    padding-top: 16rem;
}

    #industry-contact {
      background: #FEFEFE url(images/contactbg.png) no-repeat bottom left;
    }

    @media only screen and (min-width : 992px) {
        #contact {
            padding-top: 16rem;
        }
    }

    @media only screen and (min-width : 1400px) {
        #contact {
            padding-top: 12rem;
        }
    }

    @media only screen and (min-width : 1200px) {
        #contact .subheading::after {
            width: auto;
            content: " ";
            height: auto;
            margin-left: 1rem;
            min-width: 20px;
            max-width: 90px;
            flex-grow: 1;
            border-top: 1px solid rgba(130, 130, 130, 0.3);
            display: inline-flex;
            margin-top: 14px;
        }
    }

#contact.signup {
    background-color: #2F2D2E;
    color: #ffffff;
}    
    


/* Contact Form */
.wpcf7 p {
    margin-bottom:0;
}

.contact input[type="text"], .contact input[type="email"], .contact input[type="tel"], .contact textarea {
    width: 100%;
    padding: 15px 20px 14px;
    border: none;
    border-radius: 20px;
    outline: none;
    color:#707070;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    background-color:#F8F8F8;
}

.contact textarea {
    height: 100px;
}

.wpcf7-submit {
    width:100%;
    padding: 14px 25px 13px;
}

.captcha .quiz-box {
    width: 100%;
    padding: 15px 20px 14px;
    border: none;
    border-radius: 20px;
    outline: none;
    background-color: #F8F8F8;
}

.captcha .quiz-box p {
    color: #707070;
    font-size: 14px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.captcha label {
    display: inline !important;
}

.captcha .wpcf7-quiz-label {
    margin-right: 5px;
}
.contact .captcha input[type="text"] {
    width: 50%;
    background-color: transparent;
    border: none;
    border-left: 1px solid #767676;
    border-radius: 0;
    padding: 0;
    margin-left: 5px;
}

::-webkit-input-placeholder { /* WebKit browsers */
  opacity: 1;
  color: #707070;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  color: #707070;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  opacity: 1;
  color: #707070;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
  opacity: 1;
  color: #707070;
}

/* Contact Form End */



/* Footer */

footer {
    background-color: #1D1D1D;
    padding-top:3rem;
    padding-bottom:3rem;
    color: #fff;
}

    @media only screen and (min-width : 1200px) {
        footer {
            background-color: #1D1D1D;
            //background-image: url(images/footerbg.jpg);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }
    }
        
        footer.footer-padding {
            padding-top:16rem;
        }
        
        @media only screen and (min-width : 992px) {
            footer.footer-padding {
                padding-top: 15rem;
            }
        }

        @media only screen and (min-width : 1400px) {
            footer.footer-padding {
                padding-top: 10rem;
            }
        }    

    footer .heading {
        color: #FFF;
        leading-trim: both;
        text-edge: cap;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    footer a {
        color:#ffffff;
    }
    
        footer a:hover {
            color:var(--lightblue)
        }
        
        footer li {
            line-height:34px;
        }
        
        footer li a {
            color:#BBBBBE;
            text-transform:uppercase;
            font-size: 14px;
        }
        
            footer li a.active, footer li a:hover {
                color:#ffffff;
            }
     
    footer .circle {
        background: rgba(255, 255, 255, 0.10);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    } 
        
    footer .footer-bottom .line {
        border-top: 1px solid rgba(255,255,255,0.25)
    }


/* Footer End */

.modal.show .modal-dialog {
    z-index: 100;
    margin-top: 50px;
}

.modal-title {
    display: none;
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
}

.pagination .inactive,
.pagination  .current {
    margin: 0 5px;
    padding: 8px 18px;
    background-color: #7D7D7D;
    color: #fff;
}

    .pagination  .current,
    .pagination .inactive:hover {
        background-color: var(--lightblue);
    }
    



/* Mobile Queries
-------------------------------------------------------------- */

/* Max Width */
@media (max-width: 495px) {}
@media (min-width: 576px) {}
@media (max-width: 768px) {}
@media (max-width: 992px) {}

/* min Width */
@media only screen and (min-width : 480px) {}
@media only screen and (min-width : 768px) {}
@media only screen and (min-width : 992px) {}
@media only screen and (min-width : 1200px) {}
