/*
 * Theme Name: 
 * Theme URI: 
 * Author: Milan Savov, Nikola Kostov
 * Author URI/Mail: milan.savov@gmail.com, nikolakostov1991@gmail.com
 * Version: 1.0
 * */

 /* TABLE OF CONTENT 
*
* - CUSTOM RESETS
    - Buttons
    - Forms
* - LAYOUT
* - HEADER 
    - Site Logo
    - Navigation
* - HERO (BANNER)
* - HOMEPAGE SECTIONS
    - Features 
    - Services
    - Map Feature 
    - Portfolio
    - Newsletter 
* - FOOTER
* - PAGES
    - PORTFOLIO
    - PORTFOLIO ITEM
    - BLOG
    - BLOG POST
    - CONTACT
*
*/


/* CUSTOM RESETS
================================================== */
a {
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    cursor: pointer;
    color: #9fa3a7;
}

a:focus,
a:hover {
    color: #6fc754;
    outline: 0 none;
    text-decoration: none;
}

p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    color: #9fa3a7;
    line-height: 22px;
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 42px;
}

h1,h2,h3,h4,h5 {
    color: #26292c;
}

p + p {
    margin-top: 40px;
}

/* Buttons */
.btn {
    line-height: 50px;
    min-width: 200px;
    font-size: 16px;
    font-weight: 300;
    border: 0;
    border-radius: 50px;
    color: #26272d;
    background-color: #fff;
    padding: 0;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.btn-border {
    border: 1px solid #26272d;
}

.btn-fill {
    background-color: #267df4;
    color: #fff;
}

.btn-gray {
    background-color: #f5f5f8;
    color: #26272d;
}

.btn-green {
    background-color: #6fc754;
    color: #fff;  
}

.btn:hover,
button.btn:hover,
.btn:focus,
button.btn:focus {
    background-color: #26272d;
    color: #fff;
}

.btn-gray:hover,
.btn-gray:focus {
    background-color: #6fc754;
    color: #fff;    
}

/* 
 * Forms 
 */
/* Input fields */
.form-group {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.form-control {
    border-radius: 25px;
    height: 50px;
    padding: 15px 20px;
    border-color: #f5f5f8;
}

.form-control + .form-control {
    margin-top: 10px;
}

.form-control:focus {
    background-color: #f5f5f8;
    border-color: #f5f5f8;
    box-shadow: none;
    outline: none;
}

.form-group .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 40px;
    min-width: 60px;
    font-size: 16px;
    border-radius: 25px;
}

.form-control-comment {
    height: 100px;
    resize: none;
}

.search-form .form-group .form-control {
    padding-right: 80px;
}

/* ELEMENTS
================================================== */
/* Checkbox fields */
input[type=checkbox],
input[type=radio] {
    position: absolute;
    visibility: hidden;
    height: auto;
    margin-top: 0;
}

.checkbox {
    margin: 0;
} 

.checkbox + .checkbox,
.radio-btn + .radio-btn {
    margin-top: 15px;
}

.checkbox [type="checkbox"]:not(:checked) + label,
.checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.checkbox [type="checkbox"]:not(:checked) + label:before,
.checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    width: 20px; 
    height: 20px;
    background-color: #fff;
    border: 1px solid #f5f5f8;
    border-radius: 3px;
    box-shadow: none;
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after,
.checkbox [type="checkbox"]:checked + label:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    font-size: 15px;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    color: #fff;
    background-color: #6fc754;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
      transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

.checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
}

.checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.checkbox [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.checkbox [type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.checkbox [type="checkbox"]:disabled + label {
    color: #aaa;
}

.checkbox [type="checkbox"]:checked:focus + label:before,
.checkbox [type="checkbox"]:not(:checked):focus + label:before {
    border: 1px dotted #6fc754;
}

.checkbox [type="checkbox"]:not(:checked) + label:hover:before,
.checkbox [type="checkbox"]:checked + label:hover:before {
    border: 1px solid #6fc754;
}

/* Radiobutton fields */
.radio-btn label {
    font-weight: 400;
}

.radio-btn [type="radio"]:not(:checked) + label,
.radio-btn [type="radio"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-btn [type="radio"]:not(:checked) + label:before,
.radio-btn [type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #f5f5f8;
    border-radius: 50px;
    box-shadow: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after,
.radio-btn [type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 4px;
    background-color: #6fc754;
    border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after {
    opacity: 0;
}
.radio-btn [type="radio"]:checked + label:after {
    opacity: 1;
}

.radio-btn [type="radio"]:disabled:not(:checked) + label:before,
.radio-btn [type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.radio-btn [type="radio"]:disabled:checked + label:after {
    color: #999;
}

.radio-btn [type="radio"]:disabled + label {
    color: #aaa;
}

.radio-btn [type="radio"]:checked:focus + label:before,
.radio-btn [type="radio"]:not(:checked):focus + label:before {
    border: 1px dotted #6fc754;
}

.radio-btn [type="radio"]:checked + label:hover:before,
.radio-btn [type="radio"]:not(:checked) + label:hover:before {
    border: 1px solid #6fc754;
}

/* Selectpicker */
/* select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
} */

.bootstrap-select .btn {
    border: 1px solid #26272d;
    border-radius: 10px;
}

.bootstrap-select span.pull-left {
    padding-left: 10px;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static; *
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bootstrap-select.open .dropdown-menu {
    display: block;
    border: 1px solid #26272d; 
    border-radius: 10px;
}

.bootstrap-select.btn-group .dropdown-menu {
    padding: 5px 0;
    min-width: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9999;
}

.bootstrap-select .dropdown-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    padding: 0;
}

.bootstrap-select .bs-caret {
    float: right;
    padding-right: 10px;
}

.bootstrap-select .bs-caret .caret {
    border-top: 6px dashed;
    border-top: 6px solid\9;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;   
}

.bootstrap-select .selected {
    color: #6fc754;
}

.bootstrap-select .check-mark {
    display: none;
}

/*  Tabs  */
.tab-style {
    border-bottom: none;
}

.tab-style + .tab-content {
    padding: 15px;
    border: 1px solid #26272d;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.nav-tabs.tab-style > li.active > a,
.nav-tabs.tab-style > li > a:hover {
    border: 1px solid #6fc754;
    background-color: #6fc754;
    color: #fff;
}

.nav-tabs.tab-style > li > a {
    position: relative;
    color: #26272d;
    margin-right: 0;
    border: 1px solid #26272d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.nav-tabs.tab-style > li + li {
    margin-left: 10px;
}

/* Accordion */
.accordion.panel-group {
    margin-bottom: 0;
}

.accordion.panel-group .panel + .panel {
    margin-top: 0;
}

.accordion .panel {
    border: 0;
    box-shadow: none;
    border: 1px solid #26272d;
    border-bottom: 0;
    border-radius: 0;
}

.accordion .panel:first-child,
.accordion .panel:first-child .panel-heading a {
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}

.accordion .panel:last-child {
    border-bottom-right-radius:10px;
    border-bottom-left-radius:10px;
    border-bottom: 1px solid #26272d;
}

.accordion .panel:last-child .panel-heading a.collapsed {
    border-bottom-right-radius:10px;
    border-bottom-left-radius:10px;
}

.accordion .collapsed {
    height: auto;
}

.accordion .panel-heading {
    background-color: transparent;
    padding: 0;
}

.accordion .panel-heading a {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 40px 10px 15px;
}

.accordion .panel-heading a.collapsed {
    background-color: transparent;
    color: #26272d;
}

.accordion .panel-heading a.collapsed:hover,
.accordion.accordion-gray .panel-heading a.collapsed:hover,
.accordion .panel-heading a {
    background-color: #6fc754;   
    color: #fff; 
}

.accordion .panel-heading a.collapsed::after {
    content: "\f107";
}

.accordion .panel-heading a::after {
    font-family: "FontAwesome";
    content: "\f106";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.panel-group .panel-heading+.panel-collapse>.list-group, 
.panel-group .panel-heading+.panel-collapse>.panel-body {
    border: none;
}

/* Pagination */
.pagination {
  margin: 0;
  vertical-align: middle;
}

.pagination > li > a {
  border: none;
  color: #292a2c;
  background-color: #f5f5f8;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 12px;
}

.pagination > li + li > a {
  margin-left: 5px;
}

.pagination > li.active > a,
.pagination > li > a:hover,
.pagination > li.active > a:hover {
  background-color: #6fc754;
  color: #fff;
}

.pagination > li:first-child > a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.pagination > li:last-child > a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.pagination > li.more > a {
  margin-left: 0;
  padding: 10px 5px;
  pointer-events: none;
  background-color: transparent;
}

.pagination > li.more + li > a {
  margin-left: 0;
}

/* LAYOUT
================================================== */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #26272d;
    
}
.site-footer{
    background-color: rgb(34, 32, 32) !important;
}
.img-res {
    display: block;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Background colors */
.gray-bg {
  background-color: #f5f5f8;
}

/* Margin and padding resets */
.mb-10 {margin-bottom: 10px;}
.mt-20 {margin-top: 20px;}
.mt-50 {margin-top: 50px;}

/* HEADER
================================================== */
.site-header {
    position: absolute;
    padding: 50px 0 0;
    background-color: transparent;
    width: 100%;
    z-index: 3;
}

/* Site-logo */
.site-title {
    font-size: 18px;
    line-height: 26px;
    color: #26272d;
}

.site-title:hover {
    color: #26272d;   
}

.site-title span {
    font-weight: 700;
}

.site-title a:hover {
    color: #fff;
}

/* Navigation */
.navbar-collapse {
    text-align: center;
}

.navbar-nav {
    float: none;
    display: inline-block;
}

.navbar-nav > li > a, 
.slicknav_nav > li > a {
    padding: 0;
    font-size: 16px;
    position: relative;
    color: #26272d;
    line-height: 26px;
}

.site-header-white .navbar-nav > li > a,
.site-header-white .site-title {
    color: #fff;
}

.navbar-nav > li > a i {
    margin-left: 5px;
}

.navbar-nav > li + li {
    margin-left: 30px;
}

.nav .open > a, 
.nav .open > a:focus, 
.nav .open > a:hover,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.active > a,
.navbar-collapse li a:hover,
.dropdown.open > a, 
.site-header-white .dropdown.open > a,
.dropdown-menu a:hover, 
.dropdown:hover > a, 
.dropdown-menu>li>a:focus,
.dropdown-menu li a:hover,
.slicknav_nav > li.active a,
.slicknav_open .slicknav_arrow,
.slicknav_nav > li a:hover {
    background-color: transparent;
    color: #6fc754;
}

.navbar-toggle {
    border-color: #fff;
    margin: 0 15px 0 0;
    position: relative;
    top: -1px;
}

.navbar-toggle:hover,
.navbar-toggle[aria-expanded=true] {
    background-color: #fff;
    border-color: #000;
    cursor: pointer;
}

.navbar-toggle:hover .icon-bar,
.navbar-toggle[aria-expanded=true] .icon-bar {
    background-color: #000;
}

.navbar-toggle  .icon-bar {
    background-color: #fff;
}

.navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    min-width: 130px;
    border: 0;
    border-top: 5px solid #6fc754;
    top: 140%;
    transition: all 0.4s;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
}

.navbar-nav li a:hover + .dropdown-menu,
.navbar-nav .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition-delay: 0s;
}

.dropdown-menu li a {
    padding: 5px 15px;
    position: relative;
    left: 0;
}

.dropdown-menu li a:hover {
    left: 15px;
}

/* HERO
================================================== */
.hero { 
    background: url(../img/latehar/cover.jpg) no-repeat center / cover; 
    height: 100%;
    width: 100%;
    display: table;
    position: relative;
}

.overlay:before {
  content: '';
  background-color: rgba(255,255,255,0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-content {
    display: table-cell;
    vertical-align: middle;
    padding-top: 75px;
}

.hero-text {
    max-width: 890px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.hero-text h1 {
    position: relative;
    margin: 0;
}

.hero-text p {
    position: relative;
    margin: 45px 0 30px;
    font-size: 20px;
    color: #26272d;
}

.hero-text .btn {
    position: relative;
    background-color: transparent;
}

.hero-text .btn:hover {
    background-color: #26272d;
    color: #fff;
}

.hero .breadcrumb {
    padding-top: 60px;
    margin-bottom: 0;
}

.hero .breadcrumb:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 45px;
    height: 12px;
    width: 80px;
    border-top: 5px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.subpage-hero {
    height: 400px;
}

.subpage-hero.overlay:before {
    background-color: rgba(38,39,45,0.5);
}

.subpage-hero .hero-content,
.subpage-hero .hero-content h1,
.subpage-hero a  {
    color: #fff;
}

.subpage-hero a:hover {
    color: #6fc754;
}

.portfolio-hero {
    background: url(../img/portfolio-hero.jpg) no-repeat center / cover;     
}

.blog-hero {
    background: url(../img/blog-hero.jpg) no-repeat center / cover;     
}

.contact-hero {
    background: url(../img/contact-hero.jpg) no-repeat center / cover;     
}

/* SITEMAIN
================================================== */
/* site-section */
.site-section {
   padding: 100px 0 140px;
}

.subheading-text {
    font-size: 20px;
    font-style: italic;
}

.heading-separator {
    position: relative;
    margin: 0;
    padding-bottom: 70px;
}

.heading-separator:after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    height: 2px;
    width: 50px;
    margin: 0 auto;
    background-color: #267df4;
}

/* Section: Features */
.section-features h2 {
    padding-bottom: 40px;
    font-size: 30px;
}

.section-features img {
    position: absolute;
    right: 15px;
    height: 380px;
}

/* Section: Services */
.section-services .subheading-text {
    margin-bottom: 90px;
}

.section-services .col-md-3:nth-child(n+5) .service {
    margin-top: 60px;
}

.service {
    min-height: 250px;
}

.service-title {
    margin: 35px 0 25px;
    font-size: 13px;
    text-transform: uppercase;
}

.service-info {
    font-size: 13px; 
}

/* Section: Map Feature */
.section-map-feature {
    padding-top: 250px;
    background: #071021 url(../img/map.png) no-repeat top center / cover; 
}

.section-map-feature h2 {
    padding-bottom: 30px;
    margin: 0;
}

.section-map-feature h2,
.section-map-feature p {
    color: #fff;
}

.section-map-feature .btn {
    margin: 80px 0 215px;
}

.counter {
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}

.counter-item h3 {
    margin: 0;
    font-size: 16px;
    color: #0960d7;
}

/* Section: Portfolio */
.portfolio-item {
    margin-top: 30px;
}

.portfolio-item {
    height: 270px;
    position: relative;
}

.portfolio-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 100%;
    bottom: 0;
    background-color: #f5f5f8;
    transition: right 0.25s ease-in-out;
    -moz-transition: right 0.25s ease-in-out;
    -webkit-transition: right 0.25s ease-in-out;
    -o-transition: right 0.25s ease-in-out;
    -ms-transition: right 0.25s ease-in-out;
}

.portfolio-item:hover:before {
    right: 25%;
}

.portfolio-item-title,
.portfolio-item a {
    position: absolute;
    left: 0px;
    margin: 0;
    font-size: 16px;
    opacity: 0;
}

.portfolio-item-title {
    width: 150px; 
    top: 15px;  
    transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -moz-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -webkit-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -o-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
    -ms-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.portfolio-item:hover .portfolio-item-title {
    left: 15px;
    opacity: 1;
}

.portfolio-item a {
    bottom: 15px;
    color: #26272d;
    padding: 5px 12px;
    border: 1px solid #26272d;
    border-radius: 50px;
}

.portfolio-item:hover a {
    left: 55%;
    opacity: 1;
}

.portfolio-item a:hover {
    background-color: #26272d;
    color: #fff;
}

.portfolio-item a i {
    width: 16px;
    text-align: center;
}

/* Section: Newsletter */
.section-newsletter h2 {
    padding-bottom: 30px;
    margin: 0;
}

.newsletter-group {
    max-width: 550px;
}

.newsletter-group .form-control {
    padding-right: 125px;
}

.newsletter-group .btn {
    min-width: 120px;
}

/* FOOTER
================================================== */
.site-footer {
    background-color: #101013;
    padding-top: 95px;
}

.site-footer .site-title {
    display: inline-block;
    margin-bottom: 40px;
}

.site-footer h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin:0 0 40px;
}

.site-footer > .container {
    padding-bottom: 170px;
}

.site-footer .list-unstyled li + li {
    margin-top: 20px;
}

.contact-links li {
    position: relative;
}

.contact-links li i {
    position: absolute;
    top: 50%;
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: #8c8f94;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.contact-links li a,
.contact-links li p {
    margin-left: 40px;
}

.list-unstyled {
    margin-bottom: 0;
}

.list-unstyled li a,
.list-unstyled li p {
    font-size: 16px;
    color: #8c8f94;
    font-weight: 300;
}

.list-unstyled li a:hover,
.list-unstyled li.active a {
    color: #6fc754;
}

/* Copyright */
.copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(38, 41, 44, 0.05);
}

.social-links a {
    line-height: 36px;
    padding: 5px 15px;
    font-size: 18px;
    border: 1px solid;
    border-radius: 50px;
}

.social-links a:hover {
    color: #fff;
}

.social-links a i {
    width: 18px;
    text-align: center;
}

a.twitter-bg {
    color: #55acee;
    border-color: #55acee; 
}

a.twitter-bg:hover {
    background-color: #55acee;
}

a.facebook-bg {
  color: #3b5998;
  border-color: #3b5998;
}

a.facebook-bg:hover{
  background-color: #3b5998;
}

a.pinterest {
  color: #dd4b39;
  border-color: #dd4b39;
} 

a.pinterest:hover{
  background-color: #dd4b39;
} 

a.linkedin-bg {
  color: #007bb5;
  border-color: #007bb5;
}

a.linkedin-bg:hover {
  background-color: #007bb5;
}

.copyright .text-right {
    padding: 4px 0;
}

.copyright p {
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    color: #26272d;
}

.copyright p + p {
    margin-top: 2px;
}

/* PAGES
================================================== */
.subpage-site-section {
    padding: 60px 0;
}

.breadcrumb {
    background-color: transparent;
    position: relative;
}

.breadcrumb .active {
    color: #fff;
}

/* 
 * Portfolio
 */
.portfolio-sorting li:nth-child(-n+3){
    margin-bottom: 5px;
}

.portfolio-sorting li a {
    line-height: 40px;
    min-width: 120px;
    font-size: 16px;
}

.portfolio-sorting li .active {
    background-color: #6fc754;
    color: #fff;  
    box-shadow: none;   
}

#grid {
    margin-top: 25px;
}

#grid .col-md-4 {
    display: none;
}

#loadMore {
    margin-top: 30px;
}

#loadMore.disabled {
    background-color: #eee;
    color: #000;
    opacity: 0.3;
}

/* 
 * Portfolio-item
 */
.project-img {
    height: 480px;
}

.project-img + .project-img  {
    margin-top: 20px;
}

.project-info h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}

.project-description,
.project-date-category {
    margin: 30px 0 0;
}

.project-date-category p + p {
    margin-top: 10px;
}

.project-date-category p span {
    font-size: 14px;
    text-transform: uppercase; 
    color: #26272d;
    font-weight: 400;
}

.project-info .btn {
    margin-top: 25px;
    line-height: 40px;
    min-width: 120px;
}

.project-info .social-links {
    margin-top: 25px;
}

.section-related-projects {
    padding-top: 0;
}

/* 
 * Blog
 */
.blog-post + .blog-post {
    margin-top: 60px;
}

.blog-post img {
    height: 480px;
}

.post-content,
.post-content .text-right,
.post-meta {
    margin-top: 25px;
}

.blog-post .post-title {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content p {
    margin: 25px 0 0;
}

.post-content .post-title a {
    color: #26292c;
}

.post-content a {
    color: #8c8f94;   
}

.post-content .read-more {
    position: relative;
    padding-right: 30px;
    text-transform: uppercase;
}

.post-content .read-more:after {
    content: '';
    display: block;
    background-color: #8c8f94;  
    width: 20px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 8px;
    transition: background-color 0.25s ease-in-out;
    -moz-transition: background-color 0.25s ease-in-out;
    -webkit-transition: background-color 0.25s ease-in-out;
    -o-transition: background-color 0.25s ease-in-out;
    -ms-transition: background-color 0.25s ease-in-out;
}

.post-content .read-more:hover:after {
    background-color: #6fc754; 
}

.blog-post a:hover + .post-content .post-title a,
.post-content a:hover {
    color: #6fc754;
}

.post-meta {
    padding: 5px 0;
}

.post-meta span {
    padding: 6px 0;
}

.post-meta span + span {
    margin-left: 40px;
}

.post-meta span a {
    position: relative;
    padding: 6px 0 6px 40px;
}

.post-meta i,
.post-author img {
    position: absolute;
    left: 0;
    top: 0;
}

.post-author img {
    height: 30px;
    width: 30px;
}

.post-meta i {
    font-size: 30px;
}

.post-category i {
    top: 1px;
}

.section-blog .ui-pagination {
    margin-top: 60px;
}

/* 
 * Blog post
 */
/* Post Comments */
.post-comments {
    margin-top: 40px;
}

.post-comments h3,
.respond h3 {
    font-size: 16px;
    margin: 30px 0 15px;
    text-transform: uppercase;
}

.post-comment {
    padding-left: 70px;
    position: relative;
}

.post-comment + .post-comment,
.replied + .post-comment {
    margin-top: 30px;
}

.replied {
    margin: 20px 0 0 70px;
    padding-top: 20px;
    border-top: 1px solid rgba(38,41,44, 0.05)
}

.post-comment img {
    width: 70px;
    height: 70px;
    position: absolute;
    left: 0;
    top: 0;
}

.post-comment-content-details {
    background-color: #f5f5f8;
    padding: 10px 0 10px 20px;
}

.post-comment-content-details p {
    display: inline-block;
    color: #8c8f94;
}

.post-comment-content-details p + p {
    margin: 0 0 0 20px;
}

.post-comment-date i {
    margin-right: 5px;
    line-height: 18px;
}

.comment {
    padding: 15px 0 0 20px;
}

.comment + .comment {
    margin-top: 0px;
}

.comment-reply {
    margin-top: 5px;
}

/* Respond */
.respond .form-control + .btn {
    margin-top: 10px;
}

/* Sidebar */
.sidebar {
    padding-left: 30px;
}

.widget + .widget {
    margin-top: 60px;
}

.widget-title {
    font-size: 18px;
    margin: 0 0 30px;
    text-transform: uppercase;
    letter-spacing: 1px;   
}

.widget .list-unstyled a:hover {
    padding-left: 15px;
}

.widget .list-unstyled li + li {
    margin-top: 20px;
}

.widget-categories li a span {
    float: right;
}

.widget-tags .list-unstyled li + li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(38,41,44,0.05)
}

/* 
 * Contact
 */
/* Section: Contact-us */
.section-contact-us h2 {
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 50px;
    letter-spacing: 1px;
}

.section-contact-us .form-group label,
.contact-info h3 {
    margin: 0 0 10px 20px;
    color: #26292c;
    font-size: 16px;
    font-weight: 300; 
}

.section-contact-us textarea {
    height: 130px;
}

.section-contact-us .btn {
    margin-top: 35px;
}

.contact-info {
    padding-left: 30px;
}

.contact-info h3 {
    margin-left: 0;
    color: #8c8f94;
}

.contact-info .list-unstyled li {
    font-size: 14px;
    font-weight: 300;
    color: #8c8f94;
}

.contact-info .list-unstyled + h3,
.contact-info a + h3 {
    margin-top: 30px;
}

.section-contact-us .row + .form-group,
.section-contact-us .form-group + .form-group {
    margin-top: 25px;
}

/* Section: map */
.section-map {
  height: 500px;
  width: 100%
}
.d-none{
    display: none;
}
/*----- banner-start ------*/
.banner-main-wrap {
    /* banner service section */
  }
  .banner-main-wrap .banner-wrap {
    position: relative;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-nav {
    position: absolute;
    bottom: 15px;
    display: flex;
    max-width: 270px;
    justify-content: space-between;
    width: 100%;
    left: 20px;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-nav .owl-prev span, .banner-main-wrap .banner-wrap .owl-carousel .owl-nav .owl-next span {
    font-size: 40px;
    color: #ffffff;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-dots {
    position: absolute;
    bottom: 35px;
    left: 60px;
    display: flex;
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.34);
    position: relative;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-dots .owl-dot::after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 1px;
    left: 28px;
    background-color: #ffffff;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-dots .owl-dot.active {
    background-color: #ffffff;
  }
  .banner-main-wrap .banner-wrap .owl-carousel .owl-dots .owl-dot:last-child::after {
    display: none;
  }
  .banner-main-wrap .banner-counter-wrap {
    background-color: #0c4da1;
    margin: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
  }
  .banner-main-wrap .banner-counter-wrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .banner-main-wrap .banner-counter-wrap:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    -moz-column-gap: 130px;
         column-gap: 130px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-img {
    max-width: 30px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-img img {
    width: 100%;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box {
    background-color: #0c4da1;
    text-align: center;
    height: 100%;
    transform: translateY(0px);
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    -moz-column-gap: 12px;
         column-gap: 12px;
    min-width: 165px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-txt {
    text-align: left;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-txt h2 {
    color: #ffffff;
    position: relative;
    display: inline-block;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-txt h2::after {
    content: "+";
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-txt h2.plus-remove::after {
    display: none;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-txt span {
    display: inline-block;
    font-size: 22px;
    color: #ffffff;
    margin-left: 5px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-box .counter-txt p {
    color: #ffffff;
    letter-spacing: 0.5px;
    font-size: 14px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter h2 {
    font-size: 26px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-one {
    background-color: #0c4da1;
    display: flex;
    justify-content: space-between;
    padding: 22px;
    border-radius: 8px;
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter .counter-one span {
    color: #ffffff;
  }
  .banner-main-wrap .banner-counter-wrap .banner-counter h6 {
    font-weight: 500;
  }
  .banner-main-wrap .banner-service-wrap {
    margin: 30px 30px;
  }
  .banner-main-wrap .banner-service-wrap p {
    padding: 55px 0 0;
  }
  .banner-main-wrap .banner-service-wrap p a {
    color: #08b278;
    border-bottom: 1px solid #08b278;
    font-size: 18px;
    margin-left: 10px;
  }
  
  @media (max-width: 1700px) {
    .banner-main-wrap .banner-counter-wrap .banner-counter {
      -moz-column-gap: 10px;
           column-gap: 10px;
      justify-content: space-between;
    }
  }
  @media (max-width: 1440px) {
    .banner-main-wrap .banner-counter-wrap {
      margin: 30px 10px;
    }
    .banner-main-wrap .banner-service-wrap {
      margin: 30px 10px;
    }
  }
  @media (max-width: 767px) {
    .banner-main-wrap .banner-wrap .owl-carousel .owl-dots {
      bottom: 18px;
    }
    .banner-main-wrap .banner-wrap .owl-carousel .owl-nav {
      bottom: 0;
    }
    #scroll-down-animation {
      display: none;
    }
    .slide-nav .owl-carousel .owl-dots .owl-dot::after {
      left: 20px;
    }
  }
  @media (max-width: 576px) {
    .banner-main-wrap .banner-wrap .owl-carousel .owl-dots {
      display: none;
    }
    .banner-main-wrap .banner-wrap .owl-carousel .owl-nav {
      max-width: 50px;
      right: 20px;
      left: auto;
    }
  }
  @media (max-width: 480px) {
    .banner-main-wrap .banner-counter-wrap:before {
      display: none;
    }
    .banner-main-wrap .banner-counter-wrap::after {
      display: none;
    }
    .banner-main-wrap .banner-counter-wrap .banner-counter {
      flex-direction: column;
      align-items: flex-start;
      row-gap: 25px;
    }
  }
  /*----- banner-end ------*/
       

.cpwdHeadingCommon {
    margin-bottom: 50px;
    position: relative;
    h2 {
        font-size: 44px;
        color: #65318e !important;
        position: relative;
        font-weight: 500;

        &::after {
            content: "";
            position: absolute;
            bottom: -32px;
            width: 200px;
            height: 20px;
            background-image: url(../images/title-line.png);
            background-size: contain;
            background-repeat: no-repeat;
            left: 0;
        }
    }
}

.cpwdVideo {
    .cpwdVideoOuter {
        position: relative;

        .cpwdFullVideoInner {
            position: relative;
            background-color: #09254c;

            .cpwdFullVideoBtn {
                background: #fff3;
                border: 0;
                position: absolute;
                top: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                border-radius: 50px;
                color: #ccc;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .cpwdVideoCategories {
            position: absolute;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 15%;
            border: 1px solid #fff;
            border-radius: 10px;
            overflow: hidden;

            .cpwdVideoCategoriesOuter {
                position: relative;

                &::after {
                    content: "";
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgb(0 0 0);
                    z-index: -1;
                    opacity: 0.6;
                }

                .cpwdVideoCategoriesInner {
                    .cpwdVideoCategoriesHead {
                        padding: 20px;
                        border-bottom: 1px solid #fff;

                        h5 {
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            color: #fff;
                        }
                    }

                    .cpwdVideoCatgNavOuter {
                        padding: 10px 4px 20px 0;

                        .cpwdVideoCategoriesNav {
                            height: 320px;
                            overflow-y: scroll;

                            // padding: 10px 0;
                            /* Scrollbar Styling */
                            &::-webkit-scrollbar {
                                width: 6px;
                            }

                            &::-webkit-scrollbar-track {
                                background-color: #656464;
                                -webkit-border-radius: 10px;
                                border-radius: 10px;
                            }

                            &::-webkit-scrollbar-thumb {
                                -webkit-border-radius: 10px;
                                border-radius: 10px;
                                background: rgb(255 255 255 / 60%);
                            }

                            ul {
                                flex-direction: column;
                                padding-right: 10px;

                                li {
                                    a {
                                        font-size: 16px;
                                        color: #fff;
                                        font-weight: 400;
                                        border-top-right-radius: 8px;
                                        border-bottom-right-radius: 8px;
                                        display: flex;
                                        gap: 50px;
                                        justify-content: space-between;

                                        &:hover {
                                            background: #069d6a;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.cpwdOffice {
    padding: 80px 0px;
    width: 100%;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/img/bg2.png');
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .cpwdOfficeHead {
        h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1968cf;
        }
    }

    .cpwdOfficeTbl {
        .cpwdOfficeTblInner {
            .table {
                border-radius: 8px;
                overflow: hidden;

                thead {
                    background-color: #1968cf;
                    color: #fff;
                }

                tbody {
                    background-color: #fff;
                }
            }
        }


    }
}

.cpwdPaginationBox {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    .cpwdShowing {
        p {
            color: #000;
            font-size: 16px;
            font-weight: 500;
        }
    }

    .cpwdPagination {
        .pagination {
            gap: 10px;

            li {
                a {
                    border: 0;
                    border-radius: 6px;
                }

                &.cpwdPageItemBtn {
                    a {
                        border: 1px solid #0d6efd;
                        border-radius: 6px;
                    }
                }
            }
        }
    }
}

.cpwdOfficeFilter {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 40px;

    .cpwdOfficeHead {
        padding: 20px;
        border-bottom: 1px solid #ccc;
    }

    .cpwdOfficeSelectGroup {
        padding: 20px;

        .cpwdOfficeSelectItem {
            form {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .formGroup {
                label {
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 6px;
                }

                .select {
                    width: 100%;
                    background-color: #f8fbff;

                    .selectBtn {
                        border: 1px solid #83b2ee;
                        border-radius: 10px;

                        &:after {
                            border-right: 2px solid #0c4da1;
                            border-bottom: 2px solid #0c4da1;
                        }
                    }

                    .selectDropdown {
                        border-radius: 10px;
                    }
                }

                button.filterFrmBtn {
                    width: 100%;
                    background: #1968cf;
                    border: 0;
                    color: #fff;
                    padding: 14px;
                    border-radius: 8px;
                }
            }
        }
    }
}

.cpwdTopBanner {
    background-size: cover;
    background-repeat: no-repeat;

    &.cpwdTopBannerOffice {
        background-image: url('../images/img/bg1.png');
    }

    &.cpwdTopBannerContractors {
        background-image: url('../images/img/bg3.png');
    }

    &.cpwdTopBannerVideo {
        background-image: url('../images/img/bg1.png');
    }

    &.cpwdTopBannerAboutUs {
        background-image: url('../images/about-us/banner.png');
    }

    padding: 80px 0px;

    .cpwdTopBannerInner {
        .breadcrumb {
            .breadcrumb-item+.breadcrumb-item::before {
                color: #fff;
            }

            li {
                font-size: 18px;
                color: #fff;
                font-weight: 600;

                a {
                    font-size: 18px;
                    color: #fff;
                    font-weight: 400;
                }
            }
        }

        h5 {
            font-size: 30px;
            color: #fff;
        }

        .cpwdVideoSearch {
            margin-top: 20px;

            form {
                .input-group {
                    border-radius: 10px;
                    overflow: hidden;
                    background-color: #fff;

                    input {
                        height: 50px;
                        border: 0;

                        &::placeholder {
                            font-style: italic;
                        }
                    }

                    .input-group-text {
                        background-color: #fff;
                        border: 0;

                        img {
                            width: 20px;
                        }
                    }
                }
            }
        }
    }
}


.cpwdListContractors {
    background-image: url(../images/img/bg4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;

    .cpwdListContractorsInner {
        .cpwdListContractorsHead {
            padding-bottom: 50px;

            h2 {
                font-size: 42px;
                color: #000;
                position: relative;
                text-align: center;
                font-weight: 700;

                &::after {
                    content: "";
                    position: absolute;
                    bottom: -32px;
                    width: 200px;
                    height: 20px;
                    background-image: url(../images/img/title-line.png);
                    background-size: contain;
                    background-repeat: no-repeat;
                    transform: translateX(-50%);
                    left: 50%;
                }
            }
        }

        .cpwdListContractorsCardGroup {
            margin-top: 50px;

            .cpwdListContractorsCard {
                text-align: center;
                background: #fff;
                padding: 50px 20px 30px;
                border-radius: 10px;
                display: flex;
                flex-direction: column;
                gap: 20px;
                position: relative;
                height: 100%;

                .bgLineClr {
                    position: absolute;
                    display: inline-block;
                    height: 15px;
                    border-bottom-left-radius: 8px;
                    border-bottom-right-radius: 8px;
                    width: 80%;
                    transform: translateX(-50%);
                    left: 50%;
                    top: 0;

                    &.bgLineClr1 {
                        background: #423d9b;
                    }

                    &.bgLineClr2 {
                        background: #f6b940;
                    }

                    &.bgLineClr3 {
                        background: #e76e54;
                    }

                    &.bgLineClr4 {
                        background: #548fe7;
                    }
                }

                .cpwdListContractorsCardItem {
                    margin-bottom: 20px;
                }
                &:hover{
                    .cpwdListContractorsContent {
                        h4 {
                            a{
                                color: #08ae76;
                                text-decoration: none;
                            }
                        }     
                    }      
                }

                .cpwdListContractorsContent {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;

                    h4 {
                        font-size: 22px;
                        color: #000;
                        a{
                            text-decoration: none;
                            font-size: 22px;
                            color: #000; 

                        }
                    }

                    p {
                        font-size: 16px;
                        color: #000;
                    }

                    a {
                        font-size: 16px;
                     
                        display: inline-block;
                        &:hover{
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }
}
.cpwdGenesisSec{
    .cpwdcpwdGenesisInner{
        .cpwdGenesisImg{
            .cpwdGenesisImgInner{
                .ytCpwdGenesisvideo{
                    position: relative;
                    .ytVideoCover{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 460px;
                        z-index: 4;
                        object-fit: cover;
                        border-radius: 20px;
                    }
                    .cwpdTogglePlay{
                        border: 0;
                        background-color: transparent;
                        position: absolute;
                        left: 20px;
                        bottom: 30px;
                        z-index: 6;
                    }
                    .cpwdFullVideo{
                        &.cpwdFullVideo2{
                            border-radius: 20px;
                            position: relative;
                            z-index: 4;
                        }
                    }
                    .cwpdTogglePlay{
                        width: 60px;
                        height: 60px;
                        border-radius: 50%;
                        background-color: #fff;
                        color: #08254b;
                        font-size: 20px;
                    }
                    &.ytCpwdGenesisBgvideo{
                        background-color: #08254b;
                        position: relative;
                        z-index: 4;
                        border-radius: 20px;
                        .cwpdTogglePlay{
                            bottom: 124px;
                            width: 60px;
                            height: 60px;
                            border-radius: 50%;
                            background-color: #fff;
                            color: #08254b;
                            font-size: 20px;
                        }
                        .cpwdFullVideo{
                            border-top-left-radius: 20px;
                            border-top-right-radius: 20px;

                        }
                        .ytVideoCover{
                            border: 3px solid #08254b;
                            border-top-left-radius: 20px;
                            border-top-right-radius: 20px;
                            border-bottom-left-radius: 0px;
                            border-bottom-right-radius: 0px;
                        }
                    }
                    .ytCpwdGenesisContant{
                        background-color: #08254b;
                        padding: 25px;
                        position: relative;
                        z-index: 4;
                        border-bottom-left-radius: 20px;
                        border-bottom-right-radius: 20px;
                        p{
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
} 


.cpwdContractorsManagement {
    background-image: url(../images/img/bg5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;

    .row {
        align-items: center;
    }

    .cpwdContractorsManagementSystem {
        display: flex;
        align-items: center;
        gap: 20px;

        .cpwdContractorsManagementIcon {
            span {
                display: inline-block;
                width: 120px;
                height: 120px;
                background-color: #fff;
                border-radius: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .cpwdContractorsManagementTxt {
            width: 60%;

            h5 {
                font-size: 36px;
                color: #fff;
                margin-bottom: 10px;
                font-weight: 700;
            }

            p {
                font-size: 16px;
                color: #fff;
            }
        }
    }

    .cpwdVisitBtn {
        display: flex;
        align-items: center;

        .view-btn {
            height: 54px;
        }
    }
}

.cpwdCircularsRelated {
    background-image: url(../images/img/bg6.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;

    .cpwdCircularsRelatedInner {
        .cpwdCircularsRelatedContent {
            .cpwdCircularsRelatedHeading {
                h2 {
                    position: relative;
                    color: #fff;
                    margin-bottom: 50px;
                    font-weight: 700;
                    &::after {
                        content: "";
                        position: absolute;
                        bottom: -32px;
                        width: 200px;
                        height: 20px;
                        background-image: url(../images/img/title-line-white.png);
                        background-size: contain;
                        background-repeat: no-repeat;
                        left: 0;
                    }
                }

                p {
                    font-size: 16px;
                    font-weight: 400;
                    color: #fff;
                }
            }

            .cpwdCircularsRelatedCardGroup {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 20px;

                .cpwdCircularsRelatedCard {
                    padding: 40px;
                    border-radius: 10px;
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    text-align: center;

                    &.cpwdCircularsClr1 {
                        background-color: #08264c;
                        .cpwdCircularsIcon{
                            transition: all 0.4s ease;
                            border: 4px solid #08264c;
                        }
                        &:hover{
                            .cpwdCircularsIcon{
                                border-color: #08b278;
                            }
                        }
                    }

                    &.cpwdCircularsClr2 {
                        background-color: #08b278;
                        .cpwdCircularsIcon{
                            transition: all 0.4s ease;
                            border: 4px solid #08b278;
                        }
                        &:hover{
                            .cpwdCircularsIcon{
                                border-color: #08264c;
                            }
                        }
                    }

                    .cpwdCircularsRelatedIcon {
                        span.cpwdCircularsIcon {
                            width: 100px;
                            height: 100px;
                            border-radius: 100%;
                            background-color: #fff;
                            display: inline-block;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            margin: 0 auto;
                        }
                    }

                    .cpwdCircularsRelatedTxt {
                        p {
                            font-size: 22px;
                            color: #fff;
                        }

                        a {
                            display: inline-block;
                            margin-top: 20px;
                        }
                    }
                }
            }
        }
    }
}

.cpwdSurveyProcurement {
    padding: 80px 0;
    &.cpwdSurProcurement{
        background-image: url(../images/about-us/contact-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .cpwdSurveyProcurementInner {
        .cpwdSurveyProcurementCard {
            display: flex;
            gap: 20px;
            background: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 100%;

            &::before {
                content: '';
                top: 0;
                left: 0;
                width: 95px;
                height: 100%;
                position: absolute;
            }
            &::after {
                content: '';
                top: 0;
                left: 95px;
                width: 100%;
                height: 100%;
                position: absolute;
                background-image: url(../images/about-us/h3_testimonial_bg.png);
                background-size: contain;
                background-repeat: no-repeat;
            }

            .cpwdSurveyProcurementIcon {
                position: relative;
                z-index: 1;
                display: flex;
                align-items: center;

                span {
                    display: inline-block;
                    width: 120px;
                    height: 120px;
                    border-radius: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    &.cpwdSurveyClr1 {
                        background-color: #08264c;
                        border: 5px solid #fff;
                    }

                    &.cpwdSurveyClr2 {
                        background-color: #08ae76;
                        border: 5px solid #fff;
                    }
                }
            }

            .cpwdSurveyProcurementContent {
                position: relative;
                z-index: 2;
                h4 {
                    font-size: 30px;
                    color: #08264c;
                    margin-bottom: 5px;
                    font-weight: 700;
                }
                p{
                    margin-bottom: 10px;
                }

                a {
                    font-size: 16px;
                    color: #000;
                    font-weight: 700;
                    &:hover{
                        color: #08264c;
                        text-decoration: underline;
                    }
                }
            }

            &.cpwdSurveyProcurementCard1 {
                &::before {
                    background-color: #08264c;
                }
            }

            &.cpwdSurveyProcurementCard2 {
                &::before {
                    background-color: #08ae76;
                }

                .cpwdSurveyProcurementContent {
                    h4 {
                        color: #08ae76;
                    }
                }
            }

        }
    }
}

.cpwdKnowledgeVideosFilter {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 40px;

    .cpwdKnowledgeVideosFilterInner {
        .cpwdKnowledgeVideosHeading {
            padding: 20px;
            border-bottom: 1px solid #ccc;

            h4 {
                display: flex;
                align-items: center;
                gap: 10px;
                color: #0c4ca1;
            }
        }

        .cpwdKnowledgeOptGroup {
            display: flex;
            flex-direction: column;
            padding: 20px 20px 20px 0;

            .cpwdFormCheck {
                padding: 8px 18px;
                border-top-right-radius: 8px;
                border-bottom-right-radius: 8px;

                label {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    cursor: pointer;
                    gap: 20px;
                }

                &:hover {
                    background-color: #08ae76;
                    color: #fff;
                }
            }

            .allFormCheckBtn {
                padding: 0 20px;
            }
        }

        .cpwdKnowledgeVideoBtn {
            padding: 0px 20px 40px;

            .view-btn {
                height: 40px;
                width: 200px;
            }
        }
    }
}


.cpwdKnowledgeVideos {
    .cpwdKnowledgeVideosInner {
        margin-bottom: 40px;

        .cpwdKnowledgeVideosImg {
            position: relative;

            img {
                width: 100%;
            }

            .flVideo {
                position: absolute;
                transform: translate(-50%, -50%);
                top: 50%;
                left: 50%;
            }
        }

        .cpwdKnowledgeVideosCard {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;

            .cpwdKnowledgeVideosCardInner {
                .cpwdKnowledgeVideosImg {
                    overflow: hidden;

                    img {
                        transition: all 0.4s ease;
                    }
                }
            }

            &:hover {
                .cpwdKnowledgeVideosCardInner {
                    .cpwdKnowledgeVideosImg {
                        img {
                            transform: scale(1.1);
                        }
                    }

                    .cpwdKnowledgeVideosContent {
                        h4 {
                            color: #0f56b8;
                        }
                    }
                }
            }

            .cpwdKnowledgeVideosContent {
                padding: 15px;
                display: flex;
                flex-direction: column;
                gap: 10px;

                span {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 14px;

                    img {
                        width: 15px;
                    }
                }

                h4 {
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    line-clamp: 2;
                    -webkit-box-orient: vertical;
                    font-size: 18px;
                    color: #000;
                }

                p {
                    font-size: 14px;
                    color: #000;
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    img {
                        width: 15px;
                    }
                }
            }
        }
    }
}

.cpwdMissionVision {
    background-image: url('../images/about-us/bg3.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;

    .cpwdMissionVisionInner {
        .cpwdMissionVisionCard {
            .cpwdSurveyProcurement {
                padding: 0;
                margin-bottom: 50px;

                .cpwdSurveyProcurementInner {
                    .cpwdSurveyProcurementCard {
                        height: 100%;
                    }
                }
            }

            .cpwdMissionVisionCounter {
                .national-counter {
                    padding-top: 20px;
                    display: flex;
                    column-gap: 50px;
                    justify-content: space-between;

                    li {
                        display: flex;
                        column-gap: 25px;
                        align-items: center;
                        row-gap: 15px;

                        img {
                            width: 50px;
                            margin-top: 10px;
                        }

                        .counter-txt {
                            padding-right: 35px;
                            .counter-count {
                                font-size: 60px;
                                font-weight: 700;
                                position: relative;
                                display: inline-block;
                                width: fit-content;
                                color: #fff;
                                align-items: center;

                                &::after {
                                    content: '+';
                                    position: absolute;
                                    right: -35px;
                                    top: -2px;
                                    color: $white-color;
                                }

                                &.office-count {
                                    &::after {
                                        display: none;
                                    }
                                }
                            }

                            p {
                                text-transform: uppercase;
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

.cpwdHeadingCommon {
    margin-bottom: 50px;
    position: relative;
    h2 {
        font-size: 44px;
        color: #08264c;
        position: relative;
        font-weight: 700;

        &::after {
            content: "";
            position: absolute;
            bottom: -32px;
            width: 200px;
            height: 20px;
            background-image: url(../images/img/title-line.png);
            background-size: contain;
            background-repeat: no-repeat;
            left: 0;
        }
    }
}

.cpwdReadMoreBtn {
    background-color: #08264c;
    color: #fff;
    padding: 10px 20px;
    &:hover{
        color: #fff;
    }
}

.cpwdGenesisSec {
    background-image: url(../images/about-us/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    // &.cpwdAboutUsSec{

    // }
    .cpwdcpwdGenesisInner {
        .row {
            align-items: center;
        }

        .cpwdGenesisContent {
            .cpwdGenesisContentPara {
                margin-bottom: 20px;
            }

        }

        .cpwdGenesisImg {
            &.aboutCpwdSec{
                .cpwdGenesisImgInner {
                    &::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        background-color: #1968cf;
                        width: 300px;
                        height: 100%;
                        border-radius: 20px;
                    }
                }
                .cpwdGenesisImgInner{
                    margin-bottom: 30px;
                }
               
            }
            .cpwdGenesisImgInner {
                position: relative;
                padding: 40px;

                &::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    background-color: #1968cf;
                    width: 300px;
                    height: 100%;
                    border-radius: 10px;
                }

                iframe {
                    position: relative;
                    z-index: 2;
                    width: 100%;
                    height: 460px;
                    border-radius: 30px;
                }

                img {
                    position: relative;
                    z-index: 1;
                }
            }
        }
    }
}

.cpwdHistoricalBackgroundSec {
    background-color: transparent;
    margin-top: -40px;
    .cpwdHistoricalBackgroundInner {
        position: relative;
        overflow: hidden;
        
        &::after {
            content: "";
            position: absolute;
            top: 30px;
            width: 100%;
            height: 100%;
            background-image: url(../images/about-us/bg1.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            left: 0;
        }
    }
}

.cpwdHistoricalBackgroundBox {
    background-color: #1968cf;
    padding: 40px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: relative;
    z-index: 1;

    .cpwdHeadingCommon {
        h2 {
            color: #fff;

            &::after {
                background-image: url(../images/img/title-line-white.png);
            }
        }
    }

    p {
        font-size: 16px;
        font-weight: 400;
        color: #fff;
    }

    .cpwdHistoricalBackgroundList {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 20px 0;

        .cpwdHistoricalBackgroundListCol {
            ul {
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 6px;

                li {
                    position: relative;
                    padding-left: 22px;
                    font-size: 16px;
                    font-weight: 400;
                    color: #fff;

                    &::after {
                        content: "";
                        position: absolute;
                        top: 5px;
                        width: 15px;
                        height: 15px;
                        background-image: url(../images/about-us/checked.png);
                        background-size: contain;
                        background-repeat: no-repeat;
                        left: 0;
                    }
                }
            }
        }
    }
}

.cpwdOurUnitsSec {
    padding: 80px 0;
    background-image: url(../images/about-us/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    .cpwdOurUnitsInner {
  
        .cpwdOurUnitsCarousel{
            position: relative;
            .ourUnitsOwlCarousel {
                .projectBox {
                    overflow: hidden;

                    a {
                        display: block;

                        .projectBoxInner {
                            position: relative;

                            .projectTxt {
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                width: 100%;
                                padding: 20px;
                                color: #fff;

                                h4 {
                                    margin-bottom: 5px;
                                }

                                span {
                                    text-decoration: underline;
                                }
                            }
                        }
                    }
                }
            }
        }

        .owlControlGroup {
            position: absolute;
            z-index: 4;
            top: 0;
            right: 20px;
            width: fit-content !important;

        }
    }
}

.ourUnitsOwlCarousel .owl-nav {
    display: none;
}

.cpwdSurveyProcurementSec {
    background-image: url(../images/about-us/bg4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cpwdGenesisImgInner a.flVideo {
    position: absolute;
    left: 50px;
    bottom: 50px;
}


/**********/
.cpwdTimeline {
    display: flex;
    overflow-x: hidden;
    max-width: fit-content;
    margin: 0 auto;
}

.cpwdTimeline .cpwdTimelineItem {
    font-family: sans-serif;

    border-radius: 8px;
    background: transparent;
    color: white;

    margin: 2rem 1rem;
}

.cpwdTimeline .cpwdTimelineItem:nth-child(even) {
    padding-top: 90px;
    margin-left: -300px;
}


.cpwdTimelineSec {
    padding: 150px 0 80px;
    position: relative;
    background-image: url(../images/about-us/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #cddcef;

    &::after{
        content: '';
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100px;
        background-image: url(../images/img/mask1.png);
        background-repeat: no-repeat;
        background-size: contain;
    }
    .cpwdTimelineOuter {
        .container-space {
            padding: 0px 0px 0 20px;
            overflow: hidden;
        }

        .cpwdTimelineInner {
            display: flex;
            gap: 80px;

            .cpwdTimelineHeadingContent {
                display: flex;
                align-items: center;
                width: 400px;

                .cpwdTimelineHeadingContentInner {
                    .cpwdTimelineHeading {
                        position: relative;
                        width: fit-content;
                        margin-bottom: 40px;
                        &::before {
                            content: "";
                            position: absolute;
                            bottom: -30px;
                            width: 100px;
                            height: 20px;
                            background-image: url(../images/img/title-line.png);
                            background-size: contain;
                            background-repeat: no-repeat;
                            left: 0;
                        }

                        &::after {
                            content: '';
                            background-image: url(../images/about-us/arrow.png);
                            background-size: contain;
                            background-repeat: no-repeat;
                            width: 50px;
                            height: 50px;
                            position: absolute;
                            top: 0;
                            right: -58px;
                        }

                        span {
                            font-size: 22px;
                            color: #000;
                            font-weight: 600;
                            text-transform: uppercase;
                        }

                        h4 {
                            font-size: 52px;
                            text-transform: uppercase;
                            color: #1968cf;
                            font-weight: 800;
                        }
                    }

                    .cpwdTimelinePara {
                        p {
                            font-size: 16px;
                            color: #000;
                            font-weight: 400;
                        }
                    }
                }
            }

            .cpwdTimelineSlider {
                background-image: url(../images/about-us/timeline-bg2.png);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                width: calc(100% - 400px);
                padding-left: 80px;
                position: relative;
                cursor: grab;

                .cpwdTimeline {
                    .cpwdTimelineItem {
                        .cpwdTimelineItemInner {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;

                            .cpwdTimelineContent {
                                display: grid;
                                gap: 20px;
                                align-items: center;
                                grid-template-columns: 130px 350px;

                                .cpwdTimelineImg {
                                    img {
                                        width: 100%;
                                    }
                                }

                                .cpwdTimelineTxt {
                                    h4 {
                                        color: #1868ce;
                                        font-size: 20px;
                                        font-weight: 600;
                                        margin-bottom: 10px;
                                    }

                                    p {
                                        font-size: 16px;
                                        display: inline;
                                        color: #000;
                                        overflow: hidden;
                                        display: -webkit-box;
                                        -webkit-line-clamp: 3;
                                        line-clamp: 3;
                                        -webkit-box-orient: vertical;
                                    }

                                    a {
                                        font-size: 16px;
                                        color: #1968cf;
                                    }
                                }
                            }

                            .cpwdTimelineYear span.cpwdTlYearInner {
                                font-size: 70px;
                                font-weight: 600;
                                display: flex;
                                align-items: center;
                                gap: 12px;
                            }
                        }
                    }
                }
            }
        }
    }
}





/**********/

.cpwdFilter{
    background: #fff;
    .cpwdFilterBtn{
        .cpwdFilterInner {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            background: #fff;
            padding: 20px 0;
            border-radius: 10px;
            h5{
                font-weight: 500;
                font-size: 22px;
                color: #000;
            }
            span{
                font-weight: 500;
                font-size: 22px;
                color: #000
            }
        }
    }
}


.scrollNav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #a4b0c0;
    width: fit-content;
    padding: 20px 12px;
    border-radius: 50px;
    position: fixed;
    right: 14px;
    z-index: 6;
    transform: translateY(-50%);
    top: 50%;
    a {
        display: inline-block;
        width: 15px;
        height: 15px;
        border: 2px solid #fff;
        border-radius: 50px;
        &.active{
            background-color: #1968cf;
        }
    }
}


/* Tooltip container */
.scrollNavTooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* dotted underline */
    cursor: help; /* cursor style */
    margin-right: 20px; /* spacing between links */
    margin: 0;
  }

  /* Tooltip text */
  .scrollNavTooltip .tooltiptext {
    visibility: hidden;
    width: fit-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 16px;
    padding: 5px 14px;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 120%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    text-wrap: nowrap;
  }

  /* Tooltip arrow on the right */
  .scrollNavTooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px; /* adjust the arrow to the right */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333; /* set the border on the right */
  }

  /* Show tooltip on hover */
  .scrollNavTooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }


  /*data table css start*/
  .cpwdOfficeTblInner{

    table.dataTable.display>tbody>tr.odd>.sorting_1, table.dataTable.order-column.stripe>tbody>tr.odd>.sorting_1,  table.dataTable.stripe>tbody>tr.odd>*, table.dataTable.display>tbody>tr.odd>*, table.dataTable.display>tbody>tr.even>.sorting_1, table.dataTable.order-column.stripe>tbody>tr.even>.sorting_1, table.dataTable.hover>tbody>tr:hover>*, table.dataTable.display>tbody>tr:hover>*{
        box-shadow: unset;
    }

    .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter{
        margin-bottom: 20px;
    }

    .cpwdDataTableOffice{
        border-radius: 10px;
        overflow: hidden;
        thead{
            background-color: #1968cf;
            color: #fff;

            tr{
                th{
               
                }
            }
        }
        tbody{
            background-color: #fff;
            tr{
                td{
                    
                }
            }
        }
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
        color: #fff !important;
        background-color: #0d6efd;
        border-color: #0d6efd;
        border-radius: 6px;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button{
        color: #0d6efd !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.first.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled,  .dataTables_wrapper .dataTables_paginate .paginate_button.last.disabled {
        border: 1px solid #0d6efd;
        border-radius: 6px;
        color: #0d6efd !important;
        background-color: transparent;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.next,  .dataTables_wrapper .dataTables_paginate .paginate_button.last, .dataTables_wrapper .dataTables_paginate .paginate_button.previous,  .dataTables_wrapper .dataTables_paginate .paginate_button.first{
        background-color: #0d6efd;
        border: 1px solid #0d6efd;
        border-radius: 6px;
        color: #fff !important;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button:hover, .dataTables_wrapper .dataTables_paginate .paginate_button:focus{
        background: transparent;
        border-color:transparent;
        box-shadow: unset;
    }
    .dataTables_wrapper .dataTables_info{
        font-weight: 600;
    }
    .dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_info{
        margin-top: 20px;
    }
    .dataTables_wrapper .dataTables_paginate a {
        margin-bottom: 10px;
        margin-right: 5px;
    }
  }
  /*data table css end*/

.cpwdOfficeFilterInner{
    position: relative;
    .cpwdCloseToggle {
        position: absolute;
        right: 0;
        top: 0;
        color: #111;
    } 
}


/*  cpwd Employee Login css start */
.cpwdEmployeeLogin{
    width: 100%;
    background-image: url(../images/about-us/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* cpwdEmployeeFaq css start */
.cpwdEmployeeFaq{
    width: 100%;
    background-image: url(../images/about-us/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
}


/*responsive css*/
@media only screen and (min-width: 1440px) {
    .custom-container-xxl{
       max-width: 1350px;  
    }
}
@media only screen and (min-width: 1600px) {
    .custom-container-xxl{
       max-width: 1500px;  
    }
}
@media only screen and (min-width: 1700px) {
    .custom-container-xxl{
       max-width: 1600px;  
    }
}
@media only screen and (max-width: 1899px) {
    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 76px;
    }
}

@media only screen and (max-width: 1699px) {
    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 64px;
    }
}

@media only screen and (max-width: 1599px) {
    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories {
        left: 20%;
    }

    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 1499px) {
    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 22px;
    }
}

@media only screen and (max-width: 1399px) {
    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter li .counter-txt .counter-count {
        font-size: 50px;
    }
    .cpwdTimelineSec {
        padding: 100px 0 80px;
    }
    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineYear span.cpwdTlYearInner {
        font-size: 50px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineYear span.cpwdTlYearInner img {
        width: 26px;
    }

    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 37px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider {
        padding-left: 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter li .counter-txt .counter-count {
        font-size: 38px;
    }
    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 15px;
    }

    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories {
        left: 25%;
    }

    .cpwdListContractorsCardGroup {
        .row {
            gap: 20px 0;
        }
    }

    .cpwdVisitBtn {
        .view-btn {
            width: 200px;
        }
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem .cpwdContractorsManagementTxt {
        width: 100%;
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem {
        margin-bottom: 40px;
    }

    .cpwdContractorsManagement .cpwdVisitBtn {
        justify-content: center;
    }

    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .row {
        gap: 20px 0;
    }

    .cpwdKnowledgeVideosFilter {
        border-radius: 0px;
        margin-bottom: 40px;
        position: fixed;
        z-index: 99;
        background: #fff;
        left: 0;
        padding: 20px;
        top: 0;
        overflow-y: scroll;
        width: 400px;
        transform: translateX(-500px);
        transition: all 0.5s ease;
        box-shadow: 0 0 10px 1px #363535;
        &.active{
            transform: translateX(0px); 
        }
    }

    .cpwdOfficeFilter {
        border-radius: 0px;
        margin-bottom: 40px;
        position: fixed;
        z-index: 99;
        background: #fff;
        left: 0;
        padding: 20px;
        top: 0;
        overflow-y: scroll;
        width: 400px;
        transform: translateX(-500px);
        transition: all 0.5s ease;
        box-shadow: 0 0 10px 1px #363535;
        &.active{
            transform: translateX(0px); 
        }
    }

    
}


@media only screen and (max-width: 991px) {
    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter {
        gap: 18px;
    }
    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter .cpwdVideoCategoriesInner .cpwdVideoCatgNavOuter .cpwdVideoCategoriesNav {
        height: 160px;
    }

    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories {
        left: 30%;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner {
        flex-direction: column;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider {
        width: 100%;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineContent .cpwdTimelineTxt p,
    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineContent .cpwdTimelineTxt a {
        font-size: 14px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineHeadingContent .cpwdTimelineHeadingContentInner .cpwdTimelineHeading h4 {
        font-size: 32px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineHeadingContent .cpwdTimelineHeadingContentInner .cpwdTimelineHeading span {
        font-size: 16px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineHeadingContent .cpwdTimelineHeadingContentInner .cpwdTimelineHeading::after {
        width: 30px;
        height: 30px;
        right: -40px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineHeadingContent {
        width: 98%;
    }

    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .cpwdGenesisContent {
        margin-bottom: 20px;
    }

    .cpwdHeadingCommon h2 {
        font-size: 30px;
    }

    .cpwdHeadingCommon h2::after {
        width: 100px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner .circle img {
        width: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .scrollNav{
        display: none;
    }
    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories {
        left: 30%;
        position: static;
        transform: unset;
        border-radius: 0;
        margin: 15px;
    }

    .cpwdOfficeFilter .cpwdOfficeSelectGroup {
        padding: 20px 0;
    }

    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter::after {
        background: rgb(9 37 76);
    }

    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter .cpwdVideoCategoriesInner .cpwdVideoCatgNavOuter .cpwdVideoCategoriesNav {
        height: 320px;
    }

    .cpwdPaginationBox {
        flex-direction: column;
    }

    .cpwdOffice {
        padding: 40px 0px;
    }

    .cpwdPaginationBox .cpwdPagination .pagination {
        flex-wrap: wrap;
    }

    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard .cpwdSurveyProcurementContent h4 {
        font-size: 24px;
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem .cpwdContractorsManagementTxt h5 {
        font-size: 26px;
    }

    .cpwdListContractors .cpwdListContractorsInner .cpwdListContractorsHead h2 {
        font-size: 30px;
    }

    .cpwdListContractors .cpwdListContractorsInner .cpwdListContractorsHead h2::after {
        width: 100px;
    }

    .cpwdListContractors .cpwdListContractorsInner .cpwdListContractorsCardGroup {
        margin-top: 20px;
    }

    .cpwdListContractors,
    .cpwdContractorsManagement,
    .cpwdCircularsRelated,
    .cpwdSurveyProcurement {
        padding: 40px 0;
    }

    .cpwdCircularsRelated .cpwdCircularsRelatedInner .cpwdCircularsRelatedContent .cpwdCircularsRelatedCardGroup .cpwdCircularsRelatedCard .cpwdCircularsRelatedTxt p {
        font-size: 16px;
    }

    .cpwdCircularsRelated .cpwdCircularsRelatedInner .cpwdCircularsRelatedContent .cpwdCircularsRelatedCardGroup .cpwdCircularsRelatedCard {
        padding: 40px 20px;
    }

    .cpwdTopBanner .cpwdTopBannerInner .breadcrumb li a,
    .cpwdTopBanner .cpwdTopBannerInner .breadcrumb li {
        font-size: 14px;
    }

    .cpwdTopBanner {
        padding: 40px 0px;
    }

    .cpwdCircularsRelated .cpwdCircularsRelatedInner .cpwdCircularsRelatedContent .cpwdCircularsRelatedHeading h2::after {
        width: 100px;
    }

    .cpwdKnowledgeVideosFilter .cpwdKnowledgeVideosFilterInner .cpwdKnowledgeOptGroup .cpwdFormCheck label {
        font-size: 14px;
    }

    .cpwdTopBanner .cpwdTopBannerInner .cpwdVideoSearch form .input-group input,
    .cpwdTopBanner .cpwdTopBannerInner .cpwdVideoSearch form .input-group input::placeholder {
        font-size: 14px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineYear span.cpwdTlYearInner img {
        width: 16px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineContent {
        grid-template-columns: 100px 300px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineContent .cpwdTimelineTxt h4 {
        font-size: 16px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider .cpwdTimeline .cpwdTimelineItem .cpwdTimelineItemInner .cpwdTimelineYear span.cpwdTlYearInner {
        font-size: 30px;
    }

    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 44px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner iframe {
        height: 360px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner {
        padding: 20px 20px 20px 0px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg.aboutCpwdSec .cpwdGenesisImgInner {
        padding: 20px 0px 20px 20px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg.aboutCpwdSec .cpwdGenesisImgInner::after {
        width: 200px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner .ytCpwdGenesisvideo .ytVideoCover {
        height: 360px;
    }
    .cpwdGenesisSec, .cpwdOurUnitsSec {
        padding: 40px 0;
    }
    .cpwdGenesisImg {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner .ytCpwdGenesisvideo.ytCpwdGenesisBgvideo .cwpdTogglePlay {
        bottom: 158px;
    }
    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter li .counter-txt .counter-count::after {
        right: -19px;
    }
    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter {
        gap: 15px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner .ytCpwdGenesisvideo.ytCpwdGenesisBgvideo .cwpdTogglePlay img {
        width: 80px;
    }
    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter .cpwdVideoCategoriesInner .cpwdVideoCatgNavOuter .cpwdVideoCategoriesNav ul li a {
        font-size: 14px;
    }

    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter .cpwdVideoCategoriesInner .cpwdVideoCategoriesHead h5 {
        font-size: 16px;
    }

    .cpwdVideo .cpwdVideoOuter .cpwdFullVideoInner .cpwdFullVideoBtn {
        top: 10px;
        right: 10px;
    }

    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter .cpwdVideoCategoriesInner .cpwdVideoCategoriesHead h5 img {
        width: 20px;
    }

    .cpwdOffice {
        padding: 40px 0px;
    }

    .cpwdOffice .cpwdOfficeTbl .cpwdOfficeTblInner .table {
        font-size: 12px;
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem {
        flex-direction: column;
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem .cpwdContractorsManagementTxt {
        text-align: center;
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem .cpwdContractorsManagementTxt h5 {
        font-size: 20px;
    }

    .cpwdListContractors .cpwdListContractorsInner .cpwdListContractorsHead h2 {
        font-size: 26px;
    }

    .cpwdTopBanner .cpwdTopBannerInner h5 {
        font-size: 25px;
    }

    .cpwdCircularsRelated .cpwdCircularsRelatedInner .cpwdCircularsRelatedContent .cpwdCircularsRelatedCardGroup {
        grid-template-columns: repeat(1, 1fr);
    }

    .cpwdTopBanner .cpwdTopBannerInner .breadcrumb li a,
    .cpwdTopBanner .cpwdTopBannerInner .breadcrumb li {
        font-size: 12px;
    }

    .cpwdCircularsRelated .cpwdCircularsRelatedInner .cpwdCircularsRelatedContent .cpwdCircularsRelatedHeading h2 {
        font-size: 20px;
    }

    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard {
        flex-direction: column;
    }

    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard::before {
        width: 100%;
        height: 100px;
    }

    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard .cpwdSurveyProcurementContent h4 {
        font-size: 18px;
    }

    .cpwdContractorsManagement .cpwdContractorsManagementSystem .cpwdContractorsManagementTxt p,
    .cpwdListContractors .cpwdListContractorsInner .cpwdListContractorsCardGroup .cpwdListContractorsCard .cpwdListContractorsContent p {
        font-size: 14px;
    }

    .cpwdListContractors .cpwdListContractorsInner .cpwdListContractorsCardGroup .cpwdListContractorsCard .cpwdListContractorsContent h4 {
        font-size: 18px;
    }

    .cpwdTopBanner .cpwdTopBannerInner h5 {
        font-size: 20px;
    }

    .cpwdKnowledgeVideosFilter .cpwdKnowledgeVideosFilterInner .cpwdKnowledgeOptGroup .cpwdFormCheck label {
        font-size: 12px;
    }

    .cpwdKnowledgeVideos .cpwdKnowledgeVideosInner .cpwdKnowledgeVideosCard .cpwdKnowledgeVideosContent h4 {
        font-size: 14px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineHeadingContent .cpwdTimelineHeadingContentInner .cpwdTimelinePara p {
        font-size: 14px;
    }

    .cpwdTimelineSec,
    .cpwdMissionVision {
        padding: 40px 0;
    }

    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdSurveyProcurement {
        padding: 0;
        margin-bottom: 10px;
    }

    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter li .counter-txt .counter-count {
        font-size: 26px;
    }

    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter li .counter-txt p,
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisContent .cpwdGenesisContentPara p,
    .cpwdHistoricalBackgroundBox p,
    .cpwdHistoricalBackgroundBox .cpwdHistoricalBackgroundList .cpwdHistoricalBackgroundListCol ul li {
        font-size: 14px;
    }

    .cpwdHistoricalBackgroundBox .cpwdHistoricalBackgroundList {
        grid-template-columns: repeat(1, 1fr);
        gap: 6px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner::after {
        width: 200px;
    }

    .cpwdTimelineSec .cpwdTimelineOuter .cpwdTimelineInner .cpwdTimelineSlider {
        padding-left: 30px;
    }

    .cpwdMissionVision .cpwdMissionVisionInner .cpwdMissionVisionCard .cpwdMissionVisionCounter .national-counter {
        grid-template-columns: repeat(1, 1fr);
    }

    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard {
        padding: 40px 15px;
    }

    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 15px;
    }

    .cpwdHistoricalBackgroundBox {
        padding: 15px;
    }

    .cpwdHeadingCommon h2 {
        font-size: 25px;
    }

    .cpwdSurveyProcurementContent p {
        font-size: 14px;
    }

    .cpwdOurUnitsSec .cpwdOurUnitsInner .ourUnitsOwlCarousel .projectBox a .projectBoxInner .projectTxt h4 {
        font-size: 18px;
    }

    .cpwdOurUnitsSec .cpwdOurUnitsInner .ourUnitsOwlCarousel .projectBox a .projectBoxInner .projectTxt span {
        font-size: 12px;
    }
    .cpwdKnowledgeVideosFilter, .cpwdOfficeFilter {
        width: 300px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg.aboutCpwdSec .cpwdGenesisImgInner::after {
        width: 150px;
    }
    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard::after {
        top: 104px;
        left: 0;
    }
    .cpwdSurveyProcurement .cpwdSurveyProcurementInner .cpwdSurveyProcurementCard .cpwdSurveyProcurementContent {
        position: relative;
        z-index: 2;
        text-align: left;
        width: 100%;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner img {
        width: 80px;
    }
}

@media only screen and (max-width: 350px) {
    .cpwdVideo .cpwdVideoOuter .cpwdVideoCategories .cpwdVideoCategoriesOuter .cpwdVideoCategoriesInner .cpwdVideoCatgNavOuter .cpwdVideoCategoriesNav ul li a {
        font-size: 12px;
    }

    .cpwdTimeline .cpwdTimelineItem:nth-child(even) {
        padding-top: 10px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner {
        padding: 10px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner::after {
        width: 100px;
    }

    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner iframe {
        height: 300px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg.aboutCpwdSec .cpwdGenesisImgInner::after {
        width: 100px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner .ytCpwdGenesisvideo.ytCpwdGenesisBgvideo .cwpdTogglePlay {
        bottom: 204px;
    }
    .cpwdGenesisSec .cpwdcpwdGenesisInner .cpwdGenesisImg .cpwdGenesisImgInner .ytCpwdGenesisvideo .ytVideoCover {
        height: 300px;
    }
}

p{
    color:#000;
}
h2:after {
    background-image: url(../images/title-line.png);
} 


