/*
 Theme Name: Secure RCS
 Theme URI: https://brilliantdigital.com.au/
 Description: Custom theme.
 Author: Brilliant
 Author URI: https://brilliantdigital.com.au/
 License: Everything copyrighted
 Version: 1.1
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --primary: #006696;
    --monostone: #00ADC1;
    --paynes-gray: #1E1E1E;
    --secondary: #1E1E1E;
    --gray-3: #4F4F4F;
    --color: #4F4F4F;
    --gray-5: #E0E0E0;
    --cadet-gray: #8F9DB0;
    --white: #ffffff;
    --light-gray: #F9F9F9;
    --black: #000000;
    --font-poppins: "Inter", sans-serif;
    --font-pt-sans: "Inter", sans-serif;
}
.primary-color{color:var(--primary);}
.secondary-color{color:var(--secondary);}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,
pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,
s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

*,:after,:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    line-height: 1.5;
    font-family: var(--font-poppins);
    font-size: 18px;
    overflow-x: hidden;
    font-weight: 400;
    color: var(--fdai-gray3);
}

p {
    font-family: var(--font-poppins);
    color: var(--paynes-gray);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 24px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in 0s;
    -moz-transition: all 0.2s ease-in 0s;
    -o-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
    color: var(--primary);
}

a img {
    outline: none;
    border: none;
}

img {max-width: 100%;}
input:focus,input:active {outline: none;}
blockquote,q {quotes: none;}
form,fieldset {border-style: none;margin: 0;padding: 0;}
table {border-collapse: collapse;border-spacing: 0;}
sup {vertical-align: super;    font-size: smaller;}
.clearfix {clear: both;}
b,strong {font-weight: 700;}
i,em {font-style: italic;}
ol {padding-left: 20px;margin-bottom: 25px;}
ol li {list-style-position: outside;list-style-type: decimal;}
ul li {list-style: none;margin: 0;padding: 0;}
img {max-width: 100%;height: auto;vertical-align: top;}
sub {vertical-align: sub; font-size: smaller;}
sup {vertical-align: super; font-size: smaller;}

.clear {clear: both;}
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.visible-lg {display: block;}
.visible-xs {display: none;}
.pd-100 {padding: 100px 0;}
.pd-80 {padding: 80px 0;}
.pd-60 {padding: 60px 0;}
.pd-50 {padding: 50px 0;}
.pd-40 {padding: 40px 0;}
.pdt-0 {padding-top: 0;}
.pdt-60 {padding-top: 60px;}
.pdb-0 {padding-bottom: 0;}
.pdb-20 {padding-bottom: 20px;}
.pdb-40 {padding-bottom: 40px;}
.pdb-60 {padding-bottom: 60px;}
.pdb-80 {padding-bottom: 80px;}
.pdb-100 {padding-bottom: 100px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}
.mt-80 {margin-top: 80px;}
.mt-100 {margin-top: 100px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-80 {margin-bottom: 80px;}
.mb-100 {margin-bottom: 100px;}
.site-btn {
    padding: 18px 36px;;
    font-size: 18px;
    line-height: 22px;
    font-family: var(--font-poppins);
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-align: center;
    border-width: 0;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .4s ease-in 0s;
    -moz-transition: all .4s ease-in 0s;
    -o-transition: all .4s ease-in 0s;
    transition: all .4s ease-in 0s;
    min-width: 164px;
    z-index: 1;
    text-transform: uppercase;
}

.site-btn:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    transition: all .5s ease-in-out;
    z-index: -1;
}

.site-btn:hover:after {
    width: 100%;
}

.primary-btn {
    background: var(--primary );
    color: var(--white);
}

.primary-btn:after {
    background: var(--paynes-gray);
}

.secondary-btn {
    background: var(--white);
    color: var(--primary);
}

.secondary-btn:after {
    background: var(--paynes-gray);
}
.secondary-btn:hover {
    color: var(--white);
    transition: .5s ease-in-out all;
}

.transparent-btn {
    background: transparent;
    color: var(--primary);
}

.transparent-btn:after {
    background-color: var(--primary);
    color: var(--white);
}

.read-more {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.read-more:hover {
    transform: translateY(3px);
    transition: 0.3s ease-in-out all;
}

.read-more i {
    margin-left: 5px;
}

section .btn,
section .btn-wrap a {
    text-decoration: none;
}

section ul,
section ol {
    margin-bottom: 15px;
}

section ul li {
    list-style: none;
    margin-left: 0;
    position: relative;
    padding-left: 30px;
}

section li {
    font-family: var(--font-poppins);
    color: var(--paynes-gray);
    font-size: 18px;
    line-height: 1.5;
}

section ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--paynes-gray);
    border-radius: 9999px;
    position: absolute;
    left: 8px;
    top: 9px;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-pt-sans);
    color: var(--primary);
    margin-bottom: 15px;
}

h1 {
    font-size: 58px;
    line-height: 1;
}

h2 {
    font-size: 50px;
    line-height: 1;
}

h3 {
    font-size: 44px;
    line-height: 1;
}

h4 {
    font-size: 36px;
    line-height: 1;
}

h5 {
    font-size: 24px;
    line-height: 1;
}

h6 {
    font-size: 18px;
    line-height: 1;
}

.section-title h1,
.section-title h2,
.section-title h3 {
    color: var(--secondary);
}

.section-title.title-white h1,
.section-title.title-white h2,
.section-title.title-white h3 {
    color: var(--white);
}

.section-title h2 {
    font-size: 48px;
    line-height: 52px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.2px;  
}

.section-title h3 {
    margin-bottom: 24px;
    /* Heading/H3 */
    font-size: 32px;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    text-transform: capitalize;
} 

.section-title p {
    max-width: 1024px;
}

.section-title.title-white p {
    color: var(--white);
}

.section-title.text-center p {
    margin: 0 auto 20px auto;
}

.page-title {
    display: inline-block;
    width: 100%;
}

.bg-image {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.clearfix {
    clear: both;
}

.clearfix:after {
    clear: both;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clear {
    clear: both;
}

.text-center {
    text-align: center;
}

.cbp-spmenu-push {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1255px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.container2 {
    max-width: 1470px;
    padding: 0 1.5rem;
    width: 100%;
    margin: 0 auto;
}

.max-w-full {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cbp-spmenu-push {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.round-corner {
    border-radius: 16px;
}

/* ======================================= */
/* ============== Header ================= */
/* ======================================= */

.flex{
    display: flex;
    align-items: center;
    flex-flow:row;
    justify-content: space-between;
    width: 100%;
}
.grid {
    display: grid;
    grid-gap: 2rem;
}
.grid-1-2 {
    grid-template-columns: 1fr 2fr;
}

svg:not(:root) {
    overflow: hidden;
}

svg.icon {
    display: inline-block;
    fill: currentcolor;
    height: 1em;
    position: relative;
    top: -0.0625em;
    vertical-align: middle;
    width: 1em;
}

.site-header {
    position: relative;
    width: 100%;
    background-color: var(--white);
    z-index: 999;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
}

.site-header.sticky-header {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.site-header .top-row {
    background-color: var(--primary);
    position: relative;
}

.site-header .top-row .container2 {
    display: flex;
    justify-content: space-between;
}

.site-header .top-row .address {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-header .top-row .right-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}
.site-header .site-nav {
    z-index: 2;
    position: relative;
}
span.visible-lg.in {
    display: inline-block;
}
.search-wrap {
    display: flex;
    gap: 10px;
	position: relative;
}

.search-wrap p {
    font-weight: 500;
}

.search-box {
  position: relative;
/*  height: 24px;
  width: 24px;*/
}
.search-box form {
    display: flex;
}

.search-box .search-input input[type="search"]{
  padding: 10px 10px 10px 47px;
  font-size: 16px;
  border-radius: 50px;
  width: 200px;
  color: var(--paynes-gray);
  border: 1px solid var(--paynes-gray);
  
}
.search-box .search-input {
  position: relative;
  box-sizing: border-box;
}

.search-box .search-btn {
  cursor: pointer;
  text-align: center;
  line-height: 24px;  
  transition: all 0.8s ease;
  position: relative;
}

.search-box .sb-search-submit{
    visibility: hidden;
}
.search-box .search-icon {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 0;
    left: 15px;
    width: 24px;
}

.search-box .search-btn svg {
    font-size: 24px;
    color: #fff;
}

.search-box .search-input.active {
    width: 222px;
    opacity: 1;
    z-index: 22;
}

.site-header .top-row .phone a {
    font-weight: 700;
    display: flex;
    gap: 6px;
}
.site-header .right-wrap {
    display: flex;
    width: 380px;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

/*.site-header .right-wrap .phone {
    padding: 20px 0 0;
}*/
.site-header .top-row .header-buttons {
    display: flex;
}

.site-header .top-row .header-buttons .site-btn {
    border-radius: 0;
    padding: 12px 16px;
    min-width: 128px;
    text-align: center;
}

.site-header .top-row p,
.site-header .top-row a {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    margin-bottom: 0;
}

.site-header .bottom-row {
    padding: 16px 0;
}

.site-header .bottom-row .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.site-header .bottom-row .left-wrap {
    width: 200px;
}

.site-header .site-logo {
    padding: 8px 0;
}

/*.site-header .site-logo img {
    border-right: 2px solid #b7b7b7;
    padding-right: 9px;
    margin-right: 9px;
}

.site-header .site-logo .tagline {
    font-size: 22.8px;
    line-height: 36px;
    font-weight: 500;
    color: #444;
}*/

.site-header .site-nav {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
}

.site-header .site-nav .nav {
    order: 1;
}

.slidebtn {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    width: 30px;
    float: right;
    display: none;

}

.slidebtn .bar {
    width: 100%;
    background-color: var(--primary);
    height: 3px;
    margin: 5px 0;
}

.crossBtn {
    cursor: pointer;
    float: left;
    width: 46px;
    text-align: center;
    padding: 13px;
    position: absolute;
    left: 5px;
    top: 0;
    z-index: 9999;
    color: #FFF;
    display: none;
}

.crossBtn i {
    font-size: 20px;
    color: #FFF;
}

.round-corner {
    border-radius: 16px;
}

/* =========================== */
/* ====== Slider Section ===== */
/* =========================== */



.hero-block .hero-layer {
    background: rgb(90, 90, 90);
    background: linear-gradient(90deg, rgba(90, 90, 90, 0.8) 0%, rgba(110, 110, 110, 0.5) 50%, rgba(163, 163, 163, 0.4) 100%);
    min-height: 250px;
    display: flex;
    padding: 40px 0;
    align-items: center;
    text-align: center;
}

.hero-block h1 {
    font-family: var(--font-poppins);
    font-size: 42px;
    line-height: 50px;
    text-transform: uppercase;
    color: #FFF
}

.hero-block .hero-text {
    max-width: 750px;
}

.hero-block p {
    font-family: 'Arimo', sans-serif;
    color: #FFF;
    font-size: 18px;
}

.section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 5px;
    padding: 0;
}

.slick-dots {
    bottom: -35px;
}

.slick-dots li {
    width: auto;
    height: auto;
}

.slick-dots li button{
    border:2px solid #D9D9D9;
    background-color: #D9D9D9;
    -webkit-border-radius: 90px; 
    -moz-border-radius: 90px; 
    border-radius: 90px;
    width: 12px;
    height: 12px;
    padding: 3px;
}

.slick-dots li button::before,
.slick-dots li::before {
    content: none !important;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    background-color: var(--primary);
    border-color: var(--primary);
}

.slick-prev:before, .slick-next:before {
    content: none;
}

.slick-prev, .slick-next {
    top: 36%;
    height: 48px;
    width: 48px;
}

.slick-arrow.slick-disabled {
    opacity: 0.6;
}

/* ================================ */
/* ========= Other Section ========= */
/* ================================ */



.lr-block {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.lr-block:first-child {
    margin-top: 0;
}

.lr-block.image-left {
    flex-direction: row;
}

.lr-block.image-right {
    flex-direction: row-reverse;
}

.lr-block .img-block {
    width: 50%;
}

.lr-block.image-right .img-block {
    padding-left: 20px;
}

.lr-block.image-left .img-block {
    padding-right: 20px;
}

.lr-block .text-block {
    width: 50%;
}

.lr-block.image-left .text-block {
    padding-left: 40px;
}

.lr-block.image-right .text-block {
    padding-right: 40px;
}

.lr-block{
    position: relative;
}

.wwa-wrap .text-block h2 {
    font-size: 48px;
    line-height: normal;
    color: var(--secondary);
    letter-spacing: 0.2px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

section.page-block {
    padding: 100px 0;
}



/*.cta-wrap .overlay {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 19.31%, rgba(0, 0, 0, 0.56) 62.64%);
    padding: 145px 0;
}

.cta-wrap .content {
    max-width: 650px;
}

.cta-wrap h2 {
    color: var(--white);
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-wrap p {
    color: var(--white);
}*/



.blog-wrap .blog-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-wrap .blog-content .left-wrap {
    width: 32%;
}

.blog-wrap .blog-content .right-wrap {
    width: 66%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
}

.blog-wrap .blog-content .left-wrap .post {
    height: 100%;
}

.blog-wrap .blog-content .left-wrap .post .cont {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 23.21%, rgba(0, 0, 0, 0.60) 100%);
}

.blog-wrap .blog-content .right-wrap .post .cont {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.blog-wrap .blog-content .post {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.blog-wrap .blog-content .post .text {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.blog-wrap .blog-content .right-wrap .post {
    min-height: 321px;
}

.blog-wrap .top-row h2 {
    margin-bottom: 0;
}

.blog-wrap .post h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.blog-wrap .post h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.blog-wrap .post p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    color: var(--white);
}

.blog-wrap .post .btn-wrap {
    position: absolute;
    bottom: 20px;
}
.map-wrap #map_canvas {
    height: 450px;
}
#map_canvas {
    min-height: 100%;
    width: 100%;
}

/* ================================ */
/* ============ Footer =========== */
/* ================================ */
.social-links ul li a{
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.1);
}
.site-footer {
    padding: 40px 0 0 0;
    position: relative;
    background-color: var(--secondary);
}

.site-footer .top-wrap {
    padding: 0;
}

.site-footer .top-wrap .content {
    display: flex;
    flex-wrap: row;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.site-footer .top-wrap .left-wrap {
    
}

.site-footer .top-wrap .right-wrap {
    
}

.site-footer ul li {
    list-style: none;
    display: inline-block;
}

.site-footer ul li a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    color: var(--white);
    transition: .3s all ease-in-out;
    padding: 7px 12px;
   
}

.site-footer ul li a:hover {
    transform: translateY(3px);
    color: var(--monostone);
}

.site-footer ul li ul li a {
    font-weight: 400;
}

.site-footer .contact-info {
    padding-top: 10px;
}

.site-footer .contact-info div {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.site-footer .bottom-wrap {
    background: var(--secondary);
    padding: 36px 0;
}

.site-footer .copyright p{
    color:var(--white);
}


.site-footer .bottom-wrap ul {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.site-footer .bottom-wrap .social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--monostone);
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    padding: 7px;
}

.site-footer .bottom-wrap .social-links a {
    font-size: 20px;
}

.site-footer .bottom-wrap .social-links a:hover {
    background-color: var(--primary);
}

.site-footer p,
.site-footer a {
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

.site-footer .copyright a:hover {
    transform: translateY(3px);
}
.site-footer .copyright .flinks {
    display: flex;
    gap: 35px;
    justify-content: flex-end;
	margin-top: 15px;
}
.site-footer .copyright .flinks a {
	color: #fff;
}
/* ================================ */
/* ========= Media Query ========== */
/* ================================ */

@media screen and (max-width: 1300px) {
    #hero-slider .slider-content h1, .page-title h1 {
        font-size: 46px;
        line-height: 56px;
    }
}

@media screen and (max-width: 1200px) {
    .max-w-full {
        max-width: 100%;
    }
}
@media screen and (max-width: 1120px) {
    .site-header .site-logo .tagline {
        font-size: 18px;
    }
}

@media screen and (max-width: 1100px) {
    .sm-custom a {
        font-size: 15px;
    }
    #hero-slider .slider-content h1, .page-title h1 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .why-wrap .grid-5 .grid h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .services-wrap .service-grid figcaption {
        transform: translateY(72%);
    }
    .services-wrap .service h4 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media screen and (max-width: 1024px) {
    
    .crossBtn {
        display: block;
    }
    .site-header .right-wrap a {
        margin-right: 0;
    }
    .site-header .right-wrap .top-wrap {
        margin-right: 60px;
    }
    .middle-wrap {
        order: 3;
        padding-right: 20px;
    }
    span.visible-lg.in {
        display: none;
    }
    .visible-xs.in {
        display: block;
    }

    .site-header .right-wrap {
        width: 100px;
        margin-left: auto;
        padding-right: 30px;
    }
    .search-box.desktop {
        display: none;
    }
    .search-box.m {
        width: 24px;
        height: 24px;
    }
    .search-box form {
        display: block;
    }
    .search-box .search-input input[type="search"] {
        width: 100%;
    }
    .search-box .search-icon {
        top: 0;
        left: 0;
    }
    .search-box .search-input {
        position: absolute;
        top: -8px;
        right: 35px;
        box-sizing: border-box;
        width: 0px;
        outline: none;
        transition: all 0.8s ease;
        opacity: 0;
    }
    .crossBtn {
        display: block;
    }
    .site-header .right-wrap .top-wrap {
        margin-right: 60px;
    }
    .site-header .top-row .header-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: flex-end;
        align-items: center;
    }
    .site-header .top-row .header-buttons .site-btn {
        margin-right: auto;
        height: 100%;
        min-width: 80px;
        width: 80px;
    }
    
    .site-header .top-row .phone a {
        width: 25px;
    }
    .site-header .top-row p, .site-header .top-row a {
        font-size: 10px;
        line-height: 15px;
        font-weight: 500;
    }
    .site-header .top-row .address span {
        width: 50px;
    }
    .flex{
        display: block;
    }
    #hero-slider .slider-content .content {
        max-width: 520px;
    }
    #hero-slider p {
        font-size: 20px;
        line-height: 30px;
    }
    .pr-wrap .flex-5 .grid {
        width: 31.3%;
    }
    .cta-wrap .overlay {
        padding: 100px 0;
    }
    .wwa-wrap .text-block h2 {
        font-size: 32px;
        line-height: normal;
    }
	.site-footer .bottom-wrap .left-wrap{
        margin-bottom: 20px;
		text-align: center;
    }
	.site-footer .left-wrap .footer-logo {
        margin: auto;
    }
	.site-footer .copyright .flinks {
		justify-content: center;
	}
}

@media screen and (max-width: 900px) {
    .services-wrap .service-grid figcaption {
        transform: translateY(68%);
    }
    
}

@media screen and (max-width: 800px) {
    .services-wrap .service-grid figcaption {
        transform: translateY(71%);
    }
}

@media screen and (max-width: 767px) {
   
    .section-title h2 {
        font-size: 32px;
        line-height: normal;
    }
    .sm-pb-20{
        padding-bottom: 20px;
    }
    .pd-100 {
        padding: 36px 0;
    }

    .pd-80 {
        padding: 40px 0;
    }

    .pd-60 {
        padding: 30px 0;
    }

    .pd-50 {
        padding: 25px 0;
    }

    .pd-40 {
        padding: 20px 0;
    }
    
    .pdt-60 {
        padding-top: 30px;
    }

    .pdb-40 {
        padding-bottom: 20px;
    }

    .pdb-60 {
        padding-bottom: 30px;
    }

    .mt-40 {
        margin-top: 20px;
    }

    .mt-60 {
        margin-top: 30px;
    }

    .mt-80 {
        margin-top: 40px;
    }

    .mt-100 {
        margin-top: 50px;
    }

    .grid {
        display: grid;
        grid-gap: 2rem;
    }
    
    .grid-1-2 {
        grid-template-columns: 1fr;
    }

    
    .grid-3 {
        grid-template-columns: 1fr!important;
    }

    section.page-block {
        padding: 40px 0;
    }

    .lr-block.image-right {
        flex-direction: column-reverse;
    }
    .lr-block.image-right .text-block {
        padding-right: 0;
    }
    .lr-block.image-left .img-block {
        padding-right: 0;
    }
    .container2 {
        padding: 0 0 0 .5rem;
        width: 100%;
    }

    
    .visible-lg {display: none;}
    .visible-xs {display: block;}
    

    #hero-slider .item .mobile-view {
        display: block;
        visibility: visible;
    }
    #hero-slider .item .desktop-view {
        display: none;
        visibility: hidden;
    }
    #hero-slider .slider-content .content {
        max-width: 100%;
    }
    #hero-slider .slider-content h1 br, .page-title h1 br {
        display: none;
    }
    .pr-wrap .flex-5 {
        flex-direction: column;
    }
    .pr-wrap .flex-5 .grid {
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
    }
    .cta-wrap .overlay {
        padding: 64px 0;
    }
    .cta-wrap h2 {
        font-size: 36px;
        line-height: 46px;
    }
    .lr-block {
        flex-direction: column;
    }
    .lr-block .img-block {
        width: 100%;
        padding-right: 0;
    }
    .lr-block.image-right .img-block {
        padding-left: 0;
    }
    .lr-block .text-block {
        width: 100%;
        padding: 0;
    }
    .lr-block:after {
        width: 100%;
        bottom: -15px;
        height: 60%;
    }
    .lr-block.image-left .text-block {
        padding-top: 40px;
        padding-left: 0;
    }
    section.wwa-wrap.pdb-100{
        padding-bottom: 40px;
    }
    
    #capability {
        max-width: 400px;
        margin: 0 auto;
    }
    .blog-wrap {
        padding-bottom: 0;
    }
    #articles {
        max-width: 360px;
        margin: 15px auto;
    }
    .blog-wrap .post {
        margin: 0;
    }
    .contact-wrap .overlay {
        padding: 64px 0;
    }
    .contact-wrap .flex-cont {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .contact-wrap .flex-cont .left-wrap {
        width: 100%;
        padding: 0 10px;
    }
    .contact-wrap .flex-cont .left-wrap h3 {
        font-size:  36px;
        line-height: 42px;
    }
    .contact-wrap .flex-cont .right-wrap {
        width: 100%;
        padding: 0 10px;
    }
    .contact-wrap .flex-cont .contact-detail {
        float: none;
    }
    .contact-wrap .form {
        margin: 0;
        max-width: 100%;
    }
    .site-footer {
        padding: 40px 0 0;
    }
    .site-footer .content {
        flex-direction: column;
    }
    .site-footer .content .left-wrap {
        width: 100%;
        margin-bottom: 25px;
    }
    .site-footer .content .right-wrap {
        width: 100%;
        flex-wrap: wrap;
    }

    .site-footer .content .right-wrap .footer-nav {
        width: 50%;
    }
    .site-footer .bottom-wrap {
        margin-top: 20px;
        text-align: center;
        padding: 24px 0;
        
    }
    
    .site-footer .copyright {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .site-footer .top-wrap .content {
        text-align: center;
        padding-bottom: 24px;
    }
}

@media screen and (max-width: 600px) {
    .site-header .right-wrap .top-wrap a span {
        display: none;
    }
    .site-header .bottom-row .left-wrap {
        width: 150px;
    }
}