:root {
    --blue: #323232;
    --charcol: #272727;
    --gold: #CB713D;
    --cream:  #fff9f0;
    --grey: #FCFCFC;
    --darkgrey: #7D7D7D;
    --white:  #ffffff;
    --black: #000000;
    --primary-font: 'Oswald', sans-serif;
    --secondry-font: 'Montserrat', sans-serif;
    --p-weight-1: 300;
    --p-weight-2: 400;
    --p-weight-3: 500;
    --p-weight-4: 600;
    --p-weight-5: 700;
    --p-weight-6: 800;
    --p-weight-7: 900;
    --s-weight-1: 300;
    --s-weight-2: 400;
    --s-weight-3: 500;
    --s-weight-4: 600;
    --s-weight-5: 700;
    --s-weight-6: 800;
    --s-weight-7: 900;
}

h1,h2,h3,h4,h5,h6,a,h1>span, h2>span, h3>span, h4>span, h5>span, h6>span{ 
    font-family: var(--primary-font);
}

*{
    font-family: var(--secondry-font);
}

.vrel{
    position: relative;
    width: 100%;
    height: 100%;
}

.vmid{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.borderbtn{
    border-radius: 0px;
    color: var(--gold);
    background: transparent;
    transition: 1s;
    display: inline-block;
    font-size: 18px;
    padding: 8px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: max-content;
    margin: 20px;
    border: solid 2px var(--gold);
    font-family: var(--primary-font);
    font-weight: var(--p-weight-1);
    text-transform: uppercase;
}

.borderbtn:hover{
    color: var(--white);
    background: var(--gold);
    transform: scale(1.2);
    transition: 1s;
}

.bluebtn{
    border-radius: 0px;
    color: var(--white);
    background: var(--blue);
    transition: 1s;
    display: inline-block;
    font-size: 18px;
    padding: 8px 30px;
    border: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: max-content;
    margin: 20px;
    font-family: var(--primary-font);
    font-weight: var(--p-weight-1);
    text-transform: uppercase;
}

.bluebtn:hover{
    color: var(--white);
    background: var(--gold);
    transform: scale(1.2);
    transition: 1s;
}

.goldbtn{
    border-radius: 0px;
    color: var(--white);
    background: var(--gold);
    transition: 1s;display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    padding: 8px 30px;
    border: none;-webkit-transition: 0.5s;
    transition: 0.5s;
    width: max-content;
    margin: 20px;
    font-family: var(--primary-font);
    font-weight: var(--p-weight-1);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.goldbtn:hover{
    color: var(--white);
    background: var(--blue);
    transform: scale(1.2);
    transition: 1s;
}

.navbar-area{
    background: var(--gold)!important;
}

.navbar-area .logo1{
    display: block;
}

.navbar-area .logo2{
    display: none;
}

.navbar-area.sticky{
    background: var(--white)!important;
}

.navbar-area.sticky .logo2{
    display: block;
}

.navbar-area.sticky .logo1{
    display: none;
}

@media (max-width: 767px) {
    .navbar .navbar-nav .nav-item a {
        color: var(--black) !important;
    }
}

.bluebg{
    background: var(--blue)!important;
}

.goldbg{
    background: var(--gold)!important;
}

.greybg{
    background: var(--grey)!important;
}

.creambg{
    background: var(--cream)!important;
}

.whitebg{
    background: var(--white)!important;
}

.bluetxt{
    color: var(--blue)!important;
}

.goldtxt{
    color: var(--gold)!important;
}

.creamtxt{
    color: var(--cream)!important;
}

.whitetxt{
    color: var(--white)!important;
}

.border1{
    border: solid 1px var(--gold);
}

p{
    text-align: justify!important;
    font-size: 14px;
}

.navbar .navbar-nav .nav-item a{
    color: var(--white);
}

.navbar .button a{
    background: var(--blue);
}

.dualheading{
    font-size: 40px;
    font-weight: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.dualheading span{
    color: var(--gold);
    margin-left: 8px;
}

.herobanner{
    position: relative;
}

.herobanner img{
    width: 100%;
    height: auto;
}

.herobanner .herotext{
    width: 30%;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translate(0, -50%);
}

.herobanner .herotext h1{
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.herobanner .herotext h3{
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 100;
    letter-spacing: 4px;
}

.herobanner .herotext .goldbtn{
    margin: 0;
    background: transparent;
    border: solid 1px var(--gold);
    letter-spacing: 4px;
}

#homebanner2 {
    display: none;
}

.key-usp {
    color: #ffffff;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 767px) {
    #homebanner1 {
        display: none;
    }
    
    #homebanner2 {
        display: block;
    }
    
    .herobanner {
        padding-top: 70px;
    }
    
    .herobanner .herotext {
        background-color: #272727;
        width: 100%;
        position: static;
        transform: none;
        padding: 10px 40px 40px 40px;
        text-align: center;
    }
    
    .herobanner .herotext h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .herobanner .herotext h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    div#tns2-ow {
        display: block !important;
    }
}

/*----------- Counter Section ----------------*/

.countersec .countcard{
    padding: 20px 0;
    text-align: center;
}

.countersec .countcard h2{
    color: var(--gold);
    font-family: var(--primary-font);
    font-size: 70px;
    margin-bottom: 15px;
    font-weight: 100;
}

.countersec .countcard h5{
    font-family: var(--secondry-font);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .countersec .countcard {
        padding: 10px 0px;
    }
    
    .countersec .countcard h2 {
        font-size: 40px;
        margin-bottom: 8px;
    }
}

/*-------------- About Section --------------*/
.aboutpr h3{
    color: var(--gold);
    text-transform: uppercase;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 100;
    word-spacing: 4px;
    line-height: 1.6;
}


.aboutpr p{
    line-height: 1.6;
    font-weight: 400;
}

.aboutpr .goldbtn{
    margin: 20px 0 0 0;
    border: 1px solid var(--gold);
    background: var(--white);
    color: var(--blue);
}

@media (max-width: 767px) {
    .aboutpr .goldbtn {
        margin: 20px 0px !important;
    }
}

/*------------------ Experties Section ------------------*/
.experties .card{
    position: relative;
    background: url(../img/common/noise.jpg)!important;
    background-size: cover!important;
    background-repeat: repeat!important;
    padding: 20px;
    text-align: right;
    border: unset !important;
}

.experties .card p{
    color: var(--gold);
    text-align: right !important;
    margin-left: 85px;
}

.experties .card .iconpair{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.experties .card .iconpair img{
    height: 110px;
    width: auto;
    float: left;
}

.experties .card .iconpair h3{
    font-weight: 100;
}

@media (max-width: 767px) {
    .experties .card .iconpair img {
        height: 70px;
    }
    
    .experties .card {
        margin-bottom: 15px;
    }
}

/*----------- Why Us Section -------------*/

.whyus{
    background: var(--charcol);
    margin: 100px 0;
}

.whyus img{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.whyus h2{
    color: var(--white);
}

.whyus h3{
    color: var(--gold);
    text-transform: uppercase;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 100;
    word-spacing: 4px;
    line-height: 1.6;
}

.whyus p{
    line-height: 1.6;
    font-weight: 200;
}

.whyus .goldbtn{
    margin: 20px 0 0 0;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--white);
}

@media (max-width: 767px) {
    .dualheading span {
        margin-left: 0px;
    }
    
    .whyus img {
        position: unset;
    }
}

/*---------- Pillars Section -------------*/
 
.pillars h3{
    color: var(--gold);
    text-transform: uppercase;
    margin: 20px 0 0 0;
    font-size: 18px;
    font-weight: 100;
    word-spacing: 4px;
    line-height: 1.6;
}

.pillars p{
    line-height: 1.6;
    font-weight: 400;
}

.pillars .goldbtn{
    margin: 20px 0 0 0;
    border: 1px solid var(--gold);
    background: var(--white);
    color: var(--blue);
}

.pillars img{
    height: 100%;
    width: auto;
    position: absolute;
    bottom: 0;
    right: -30px;
}
.pillars .img-2{
    width: 200px;
    height: auto;
    position: absolute;
    bottom: 7%;
    left: 20%;
}

.pillars{
    background: var(--blue);
    margin-bottom: 50px;
}
.pillars p{
    color: var(--white);
}
.pillars .dualheading{
    color: var(--white);
}

@media (max-width: 767px) {
    .m-0 {
        margin-left: 0px !important;
    }
    
    .p-0 {
        padding: 50px 20px !important;
    }
    
    .pillars img {
        position: unset;
    }
    
    .pillars .img-2 {
        width: 130px;
        left: 12%;
    }
}

/*------------- Portfolio Page -----------------*/

.portfolio-section {
    padding-top: 100px;
}

/*.portfolio-item-wrapper {*/
/*    box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.05);*/
/*}*/

.portfolio-img img {
    /*height: 100%;*/
    /*object-fit: cover;*/
}

.portfolio-img img{
    min-height: 100%;
    transition: all ease-in-out 1.5s;
}

.portfolio-img:hover img {
    transform: scale(1.5);
}

.accordion {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border-top: none !important;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

/*.active, .accordion:hover {*/
/*    background-color: #ccc;*/
/*}*/

.accordion:after {
    content: '⌄';
    color: var(--black);
    font-weight: bold;
    float: right;
    margin: -6px 5px 0px 0px;
}   

.accordion .active:after {
    content: "\2212";
    margin: -1px 5px 0px 0px;
}

.panel {
    /*padding: 0 18px;*/
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border: 1px solid var(--darkgrey);
    border-top: none;
}

.portfolio-section .grid .grid-item>a{
    width:100%;
}

.pf-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border: 1px solid var(--darkgrey);
    border-bottom: unset;
    background-color: unset;
}

.left-txt, .right-txt{
    font-weight: 500;
    color: var(--darkgrey);
    text-transform: uppercase;
}

.right-txt {
    color: var(--darkgrey);
    margin-left: auto;
    margin-right: 10px;
}

.no-border {
    border: none;
}

.project-card {
    margin: 0px !important;
}
.cardhead{
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
}
.cardhead span{
    font-family: var(--primary-font);
    color: var(--gold);
}
.portfolio-section .pf-content h4 a{
    color: var(--gold);
    text-transform: uppercase;
    margin: 0;
    font-size: 18px;
    font-weight: 100;
    word-spacing: 4px;
    line-height: 1.6;
}

.portfolio-item-wrapper .goldbtn {
    background: var(--blue);
}

.overlayHero{
    width: 100%;
    height: 100%;
}

.overlayHero img{
    width: 100%;
    max-width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
}

.overlayHero .heroCover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(177, 151, 119, 0.2);
}

.overlayHero .bannerContent{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70%;
}

.overlayHero .bannerContent h1{
    font-size: 2rem;
    margin-bottom: 30px;
}

.overlayHero .bannerContent p{
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gold);
}

@media (max-width: 767px) {
    .portfolio-section .grid {
        margin-top: 5px;
    }
    
    .portfolio-section {
        padding-top: 50px;
    }
    
    .portfolio-section .pf-content {
        margin-top: 0px;
    }
    
    .op-head {
        margin-top: 20%;
    }
    
    .filter-btns {
        margin-bottom: 20%;
    }
}


.homeTopCards{
    margin-top: -15vh;
    z-index: 3;
    position: relative;
    background: transparent;
}

.homeTopCards h3 a{
    font-size: 1.4rem;
}

.homeTopCards .single-service .icon ::after{
    display: none;
}

.homeTopCards .single-service .icon{
    height: 100px;
    width: 100px;
    background: #fff;
    padding: 20px;
    margin: 0 0 20px 0;
}

.homeAbout ul li{
    margin-bottom: 20px;
}

.homeAbout ul li i{
    color: var(--gold);
    font-size: 2rem;
    margin-right: 10px;
    line-height: 1;
}

.homeAbout .about-right img{
    width: 100%;
}

.homeAbout p{
    margin-bottom: 20px;
}

.amlCounter i{
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 30px;
}

.amlCounter h3{
    font-size: 3rem;
}

.amlCounter h6{
    margin-top: 20px;
    color: var(--gold);
}

.guidance .single-service{

}

.guidance .single-service::before{
    background: var(--blue);
}

.guidance .single-service .icon img{
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}

.guidance .single-service:hover .icon img{
    width: 33px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}

.blog-banner.img1 {
    background: linear-gradient(116deg, var(--cream), var(--gold));
    background-position: center top;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    width: 100%;
}

.breadcrumbs-inner {
    padding: 110px 0 110px;
}

.contact-banner {
    background-image: url(../../assets/img/contact-us-banner.jpg);
    background-position: center;
    background-size: cover;
    height: 450px;
    background-repeat: no-repeat;
}

.latest-news-area .single-news .content-body .title.tools{
    margin: 30px 0;
    letter-spacing: 5px;
    word-spacing: 10px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: var(--p-weight-1);
}

.latest-news-area .single-news.toolsrow{
    margin-bottom: 30px;
}

.latest-news-area .toolsrow .content-body p{
    color: var(--gold);
    margin-bottom: 20px;
}

.expert .single-table{
    padding: 40px 20px 10px 20px;
    -webkit-box-shadow: 0 10px 30px rgba(111, 111, 111, .2);
    box-shadow: 0 10px 30px rgba(111, 111, 111, .2);
}

.expert .single-table .table-head h6{
    font-size: 14px;
    margin: 10px 0;
}

.expertimg img{
    width: 120px;
    width: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.blog .single-news .image{
    border-radius: 0;
}

.blog .single-news .content-body .title{
    background: var(--blue);
    margin: 0;
    padding: 20px;
    color: var(--white);
}

.blog .single-news .content-body .title a{
    color: var(--white);
    font-size: 14px;
    line-height: 1.2;
}

.blog .single-news .content-body .social-links {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-top: 15px;
}

.blog .single-news .content-body .social-links .social li {
  display: inline-block;
  margin-right: 15px;
}

.blog .single-news .content-body .social-links .social li:last-child {
  margin-right: 0px;
}

.blog .single-news .content-body .social-links .social {
  border: 1px solid var(--gold);
  padding: 12px 30px;
  border-radius: 30px;
  text-align: center;
}

.blog .single-news .content-body .social-links .social li a {
  color: var(--blue);
  display: block;
  font-size: 18px;
}

.blog .single-news .content-body .social-links .social li a:hover {
  color: var(--gold);
}

.uservideo .mainvideo{
    position: relative;
}

.uservideo .mainvideo .videothumb{
    width: 100%;
}

.uservideo .mainvideo .videooverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background: rgba(9, 27, 84, .8);
}

.uservideo .mainvideo .videooverlay a{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 110px;
    width: 110px;
    text-align: center;
    line-height: 116px;
    background: var(--white);
    border-radius: 50%;
    padding-left: 5px;
    font-size: 25px;
    color: var(--gold);
}

.uservideo .mainvideo .videooverlay a::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border-2 1.5s linear infinite;
    animation: pulse-border-2 1.5s linear infinite;
}

.uservideo .mainvideo .videooverlay a::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1s linear infinite;
    animation: pulse-border 1s linear infinite;
}

.uservideo .oddvideo a{
    background: var(--white);
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

.uservideo .oddvideo a i{
    background: var(--gold);
    border-radius: 50%;
    color: var(--white);
    padding: 15px;
    display: inline-block;
    font-size: 18px;
    margin-right: 30px;
}

.uservideo .oddvideo a h3{
    color: var(--blue);
    display: inline-block;
    font-size: 22px;
}

.uservideo .evenvideo{
}

.uservideo .evenvideo a{
    background: var(--white);
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    text-align: right;
    margin-top: 20px;
}

.uservideo .evenvideo a i{
    background: var(--gold);
    border-radius: 50%;
    color: var(--white);
    padding: 15px;
    display: inline-block;
    font-size: 18px;
    margin-left: 30px;
}

.uservideo .evenvideo a h3{
    color: var(--blue);
    display: inline-block;
    font-size: 22px;
}

.imgbtn {
    border-radius: 0px;
    color: var(--white);
    background: var(--gold);
    transition: 1s;
    display: inline-block;
    font-size: 18px;
    padding: 10px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: max-content;
    border: solid 1px var(--gold);
    position: absolute;
    bottom: -22px;
    right: 50px;
    font-family: var(--primary-font);
    font-weight: var(--p-weight-1);
    text-transform: uppercase;
}

.imgbtn:hover{
    background: transparent;
    transform: scale(1.1);
    transition: 1s;
    border: solid 1px var(--gold);
    color: var(--gold);
}



.footerimg{
    position: relative;
    height: 450px;
    overflow: hidden;
    background: url(../img/common/image-5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footerimg img{
    width: 100%;
}

.footerimg .heroCover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.f-about ul {
  display: inline-block;
  position: relative;
}

.f-about ul li {
  display: inline-block;
  margin-right: 5px;
}

.f-about ul li:last-child {
  margin-right: 0;
}

.f-about ul li a {
  color: var(--garkgrey);
  font-size: 14px;
  position: relative;
  height: 30px;
  width: 30px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  border: solid 1px var(--darkgrey);
  border-radius: 50%;
}

.f-about ul li a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.f-about ul li a:hover .icon-1 {
  top: -15px;
}

.f-about ul li a .icon-2 {
  top: 50px;
  color: var(--blue);
}

.f-about ul li a:hover .icon-2 {
  top: 15px;
}

.f-about ul li a:hover {
  color: #fff;
}

.conter-box{
    border: solid 1px var(--gold);
}

.conter-box .fancycount h3{
    font-size: 4rem;
    font-weight: var(--p-weight-7);
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    text-align: center;
}

.conter-box .fancycount p{
    color: var(--blue);
    font-weight: var(--s-weight-7);
    margin-top: 15px;
}

.conter-box .diagline{
    border-right: solid 2px var(--gold);
    height: 100%;
    transform: rotate(32deg);
}

.icons-mt ul li a span {
    margin: 2px 0 0 0px !important;
}

/*----------Address of excellence section--------------*/

.head-style {
  font-size: 80px !important;
  text-transform: none !important;
  margin: 0 0 30px;
}

.sub-head-pr {
    color: var(--black);
    font-size: 30px;
    line-height: 48px;
    background: url(../img/double-border-line.jpg) repeat-x left bottom;
    padding-bottom: 60px !important;
    margin-bottom: 60px !important;
}

.usp-content {
    float: left;
    margin: 0 0 65px !important;
    font-size: 18px !important;
    color: var(--black) !important;
    line-height: 1.6 !important;
}

.lft {
    float: left;
    font-size: 100px !important;
    line-height: 90px;
    margin: 0 10px 0 0;
}

.pr-logo-img {
    position: absolute;
    right: 0;
}

.pr-logo-img img {
    height: 480px;
    width: 100%;
    /*filter: grayscale(100%);*/
}

/*------------ 3 Cards Area ------------------*/

.t-cards {
    background-color: var(--gold);
}

.card {
    background: none !important;
    border-radius: unset !important;
    padding: 60px 5%;
    border: 1px solid rgb(255 255 255 / 30%);
}

.c-icon img {
    height: 50px;
    width: 50px;
    margin-bottom: 25px;
}

.c-head h3 {
    color: var(--white) !important;
    padding-bottom: 22px !important;
    font-size: 28px !important;
}

.c-head p {
    color: var(--white) !important;
    padding-bottom: 22px !important;
    font-size: 14px !important;
    line-height: 1.6;
}

/*------------Contact Us Form----------------*/

.pr-logo-cf {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
}

.contact-us .button .goldbtn {
    width: 100%;
}

/*------------First Section Area--------------*/

.num-inc {
    color: var(--gold);
    font-size: 40px;
}

.usp-head {
    padding-top: 20px;    
}

.c-one, .c-two, .c-three {
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    position: relative;
    top: 17%;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%);
    height: 146px;
}

.c-one p, .c-two p, .c-three p {
    display: inline-block;
    vertical-align: middle;
    line-height: 147px;
    margin-bottom: 0px;
    font-size: 20px;
    color: var(--black);
}

.block-e {
    line-height: 1.6 !important;
    padding-top: 80px;
}

.dotted-line {
    height: 2px;
    background: repeating-linear-gradient( to right, white, white 10px, grey 10px, grey 20px );
    width: 58%;
    position: relative;
    bottom: 52%;
    left: 86%;
}

.dl-b {
    width: 45%;
    left: 80%;
}

.dl-c {
    width: 23%;
    left: 82%;
}

.dl-d {
    width: 50%;
    bottom: 60%;
    right: 35%;
    left: unset;
}

.dl-e {
    left: unset;
    right: 16%;
    width: 36%;
    bottom: 30%;
}

.c-four, .c-five {
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    position: relative;
    top: 25%;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%);
    height: 220px;
}

.c-four p, .c-five p {
    display: inline-block;
    vertical-align: middle;
    line-height: 220px;
    font-size: 20px;
    color: var(--black);
}

.center-img {
    border-bottom: 2px solid var(--gold);
}

.center-img img {
    height: 438px;
    width: 100%;
} 

.modal-header {
    padding: 1rem 2rem !important;
}

.modal-body {
    padding: 1rem 2rem !important;
}

.item a {
    color: var(--blue);
}

@media (max-width: 767px){
    .dotted-line {
        display: none;
    } 
    .hero-area{
        min-height: 60vh;
        overflow: hidden;
    }
    .hero-inner{
        min-height: 60vh;
    }
    .overlayHero img{
        height: 100%;
        width: auto;
    }
    .overlayHero .bannerContent{
        width: 100%;
    }
    .overlayHero .bannerContent h1 {
        font-size: 1.2rem;
    }
    .overlayHero .bannerContent p{
        font-size: 18px;
    }
    .bluebtn{
        margin: 20px 0;
    }
    .intro-video-area .play-thumb{
        left: 0;
    }
    .amlCounter i{
        margin-bottom: 0;
        font-size: 2rem;
    }
    .amlCounter h3{
        margin: 10px 0;
        line-height: 1;
        font-size: 1.4rem;
    }
    .amlCounter h6{
        margin-top: 0;
        font-size: 18px;
    }
    .intro-video-area .play-thumb{
        width: 90%;
    }
    .uservideo .evenvideo a i{
        margin-left: 0;
        margin-right: 30px;
        float: left;
    }
    .uservideo .mainvideo{
        margin: 30px;
    }
    .uservideo .oddvideo a h3{
        float: right;
        line-height: 2;
    }
    .uservideo .evenvideo a h3{
        line-height: 2;
    }



    .conter-box{
        padding: 1rem!important;
        margin: 50px 0px;
    }
    .conter-box .fancycount{
        padding: 0;
    }
    .conter-box .fancycount h3{
        
    }
    .toolspage .py-5{
        padding: 0!important;
    }
    .section-title h2 span{
        font-size: 25px;
    }
    .footer-bottom .col-12 p{
        text-align: center!important;
        padding: 0;
    }
    .footer-bottom .col-12 ul{
        text-align: center!important;
        padding: 0;
        margin-top: 15px;
    }
    .navbar-brand img{
        width: 150px;
    }
    .navbar-toggler .toggler-icon{
        background: var(--white);
    }
}

/*<!------------- About Us Section --------------------!>*/

@media (max-width: 576px) {
    .about-left {
        padding-left: 0px !important;
    }
    .conter-box {
        margin: 50px 0px;
    }
}

@media (max-width: 576px) {
    .portfolio-section .portfolio-btn-wrapper {
        margin-bottom: -60px;
        text-align: left;
    } 
}

.carousel-control-prev, .carousel-control-next {
    display: none;
}


/*Product Page (A - 125)*/

@media (max-width: 767px){
     .main_image {
       padding: 10px !important; 
    }   
    
    .main_image>img {
        height: 200px !important;
    }
    
    .thumbnail_images ul {
        margin: 0px 0px 40px 0px;
    }
    
    .productPage .about-tab .tab-content {
        padding: 20px 0px 0px 0px !important;
    }
    
    .px-5 {
        padding: 0px !important;
    }
    
    .pr-logo-img {
        position: unset !important;
    }
    
    .usp-content {
        margin: 0px !important;
    }
    
    .block-wrapper.section-padding2 {
        padding-bottom: 0px;
    }
}


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

.copyright-txt {
    justify-content: center;
    align-self: center;
}

/*#contact-us{*/
/*    background: url(../img/common/noise.jpg)!important;*/
/*    background-repeat: repeat!important;*/
/*}*/

/*----------- About Us Page --------------*/

.about-us {
    padding-top: 150px;
}

/*--------- Footer Section --------------*/

.footer-col-link ul li a {
    color: var(--bs-gray);
    font-weight: 400;
    font-size: 14px;
    font-family: var(--secondry-font);
}

.footer-col-head h5 {
    font-size: 16px;
    font-weight: 400;
}

.footer-col-link .icons-mt ul {
    margin-top: 5px;
}

.get-to-know li a {
    color: var(--darkgrey);
    font-size: 14px;   
}

.footer-area {
    padding: 30px 0;
    border-top: 1px solid rgba(177, 151, 119, 0.5);
    text-align: center;
}

@media (max-width: 767px) {
    .project-col, .reach-us-col{
        margin-top: 10px;
    }
    
    .contact-us .single-info {
        padding-left: 30px;
    }
    
    .footer-col-head {
        padding-bottom: 0px;
    }
}
































