

/*======= Google Fonts =======*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/*====== Root for all color combo and font style section ======*/
:root {
  --font-normal:'Montserrat', sans-serif;
  --gray-color: #43464B;
  --dark-blue-color: #0C6196;
  --light-blue-color:#70C8FF;
  --black-color:#0A0A0A;
}
/* ======== Common Style ======*/
html {
  font-family: var(--font-normal);
  overflow-x: hidden;
}
body {
  position: relative;
}
/* fix-header */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff!important;
  z-index: 100;
}
#myHeader{
  background-color: #fff!important;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p{
  letter-spacing: 0.5px;
  font-family: var(--font-normal);
  line-height: 26px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-normal);
  text-transform: capitalize;
  color: var(--gray-color);
  letter-spacing: 1px;
  position: relative;
}
a {
  letter-spacing: 1px;
  transition: all 0.5s;
  color: #5f95b7;
  text-decoration: none;
}
a:hover{
  cursor: pointer;
  color: #1C3879!important;
}

.btn_blue {
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  font-size: 16px;
  padding: 8px 15px;
  background-color: var(--dark-blue-color)
}
.btn_blue:hover{
  background-color: #fff;
  border: thin solid var(--light-blue-color);
  transition: 0.2s ease-in-out;
}
.btn_active {
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  font-size: 16px;
  padding: 8px 15px;
  background-color: var(--dark-blue-color) !important
}
.btn_white {
  background-color: white;
  font-weight: 600;
  border-radius: 50px;
  font-size: 16px;
  padding: 8px 15px;
  color: var(--dark-blue-color);
  transition: all 0.3s
}
.btn_white:hover {
  background-color: #fff!important;
  border: thin solid var(--light-blue-color)!important;
  transition: 0.2s ease-in-out!important;
}
/* dianamic-images */

.grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  width: 90%;
  margin: 0 auto;
}
.grid-container div {
  width: 150px;
  margin: 5px 0px;
  display: inline-block;
  width: 100%;
  border: solid 2px rgb(163, 155, 155);
  padding: 5px;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
  background-color: #fff!important;
}
.grid-container div:hover img {
  filter: grayscale(1);
}
.grid-container div:hover {
  border-color: #1C3879;;
  border-top-color: #1C3879;
  /* filter: brightness(80%); */
}
.grid-container div img {
  width: 100%;
  filter: grayscale(0);
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
}
.grid-container div span {
  margin: 5px 0;
  padding-right: 8px;
  text-align: center;
  font-style: italic;
}
/*Header ===========*/
.mid_head {
  border-top: thin solid var(--light-blue-color);
}
.info_menus li  {
  position: relative;
}
.info_menus li a::after {
  content: '|';
  position: absolute;
  top: 0;
  right: 0;
  color: var(--dark-blue-color);
}
.info_menus li:last-child a::after {
  display: none;
}
/* portfolio-header-section */
.site-header .social-icons.topnav.sc--clean > li > a{
  opacity: 0;
}
.siteheader-container{
  opacity: 0;
}
#portfolio-head > a{
  opacity: 0;
}
.ctabutton{
  font-size: 12px!important;
  margin-bottom: 20px;
  opacity: 0;
  visibility: hidden;
}
/* portfolio-card-section and detail-section*/
#flexible-content{
  border: 1px solid #fff;
  border-radius: 30px;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}
#listings h4{
  font-weight: 700;
  color: cadetblue;
  text-transform: capitalize;
  font-size: 30px!important;
  margin: 30px 0;
}
#listings p{
  line-height: 1.8;
  letter-spacing: 1px;
  font-size: 18px;
  color: black;
  margin: 15px 0;
  margin-bottom: 30px;
  
}
.flexible-img{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.col-8 h2{
  font-size: 40px;
  font-weight: 400;
  margin-top: 10px;
  color: #1C3879;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
#banner-box{
  border-radius: 10px;
}
.flexible-img span{
  position: absolute;
  right: 0px;
  margin-right: 15px;
}
.boxes{
  margin: 20px 0;
  border-radius: 10px;
}
/* .:hover{
  trancardssform: scale(1.015);
  transition: 0.2s ease-in-out;
} */

.cards {
  background: white;
  margin: auto;
  margin-top: 5%;
  /* max-width: 32%; */
  /* width: 100%; */
  padding: 20px 50px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.cards:hover {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  animation-name: example;
  animation-duration: 0.25s;
  border-left: 8px solid red;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
#colors img{
  height: 340px!important;
  object-fit: cover;
}
.flexible-img span{
  background: #1C3879;
  border-radius: 5px;
  width: 70px;
  height: 32px;
  color: white;
  text-align: center;
  top: 298px;
  right: 1px;
  border-radius: 25px 0px 0px 25px;
}
.flexible-img span:hover{
  text-decoration: underline;
}
.flexible-img .view_total{
  background: #1C3879;
  border-radius: 5px;
  width: 60px;
  height: 32px;
  color: white;
  text-align: center;
  position: relative;
  bottom: 50px;
  border-radius: 0px 25px 25px 0px;
}
.flexible-img .view_total:hover{
  text-decoration: underline;
}
.detail-view span{
  background: #1C3879;
  border-radius: 5px;
  width: 70px;
  height: 32px;
  color: white;
  text-align: center;
  position: relative;
  border-radius: 0px 25px 25px 0px;
}
.detail-view span:hover{
  text-decoration: underline;
}
.detail-view .view_total{
  background: #1C3879;
  border-radius: 5px;
  width: 70px;
  color: white;
  text-align: center;
  position: relative;
  left: 45px;
  border-radius: 25px 0px 0px 25px;
}
.detail-view .view_total:hover{
  text-decoration: underline;
}
/*Search  Bar ================*/

/*.search_head {
  border-bottom: thin solid var(--light-blue-color);
}*/
.search_bar {
  border:thin solid var(--light-blue-color);
  border-radius: 55px;
  height: 55px;
  overflow: hidden;
  background-color: #fff!important;
}
.search_bar .col-md-10 {
  position: relative;
}
.heading h2{
  text-align: center;
  margin-top: 15px;
  text-transform: capitalize!important;
  color: #1C3879;
  font-weight: 700!important;
}
.search_bar input {
  border:none;
  background-color: transparent!important;
  height: 55px;
  width: 100%;
  padding-left: 60px; 
  /* border-left: thin solid var(--light-blue-color);*/
}
.search_bar input {
  outline: none;
}
.search_bar button {
  font-size: 12px;
  padding: 8px 14px;
  letter-spacing: 1px;
  font-weight: 600;
}
.search_bar button.searchicon  {
  position: absolute;
  left: 10px;
  top: 8px;
}
.search_bar button.searchicon i {
  font-size: 25px;
  color:#43464B;
}

.btn_drop {
  border:thin solid var(--light-blue-color);
  background-color: #fff;
  color: var(--dark-blue-color)
}
.btn_drop strong {
  display: block;
  text-align: left;
}
/*Creative listing box style ==============*/

.creative_box {
  position: relative;
  height: 325px;
  overflow: hidden;
}
.creative_box .creative_img {
  height: 300px;
  position: relative;  
  border-radius: 2px;
  border: 1px solid;
  background: #fff!important;
}
.creative_box .creative_img img {
  height: 235px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.creative_box .creative_img > span {
  position: absolute;
  top: 68%;
  right: 0px;
  z-index: 5;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #FCE2DB;
  background: #1C3879;
  border-radius: 25px 0px 0px 25px;
}
.creative_box .creative_img > span:hover{
  cursor: pointer;
  text-decoration: underline;
} 
.creative_box .content h5 {
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  text-align: left!important;
  position: absolute;
  bottom: 20px;
  padding-left: 5px;
}
.creative_box .content h5:hover{
  cursor: pointer;
  color:#1C3879;
  transition: 0.5s;
  text-decoration:#0A0A0A;
}
.creative_box .content span {
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  position: absolute;
  bottom: 30px;
  
}
.creative_box .content span:hover{
  cursor: pointer;
  color:#F15412;
  transition: 0.5s;
}

.creative_box .content span i {
  color: #0A0A0A;
  padding-top: 10px;
  
}
.creative_box .content span i:hover{
  cursor: pointer;
  color: #0A0A0A;
  transition: 0.5s;
}
/*Creative Detail Style ===============*/
.social_media {
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 100;
  text-align: center;
  background-color: #fff;
  border: 2px solid var(--light-blue-color);
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
}
.social_media ul li {
  display: block;
  padding: 8px;
  border-bottom: 1px solid var(--light-blue-color);
}
.social_media ul li i {
  font-size: 30px;
}
.detail_creative_img  {
  /*height: 325px;*/
  position: relative;  
  border-radius: 15px;
}
.detail_creative_img  img {
  /*height: 325px;*/
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.detail_creative_img > .btn_box {
  position: absolute;
  bottom:5%;
  right: 0px;
  z-index: 5;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
}
.detail_creative_img > span {
  position: absolute;
  top:15%;
  right: 0px;
  z-index: 5;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(112, 200, 255,0.8);
  border-radius: 25px 0px 0px 25px;
}
.view_total .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-blue-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view_total .text strong {
  display: block;
}
.detail_creative_info .textarea_box {
  border: thin solid var(--light-blue-color);
  color: var(--dark-blue-color);
  border-radius: 20px;
}
.col-md-2{
  max-width: 200px!important;
}
/*Heading Style =========*/

.heading h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.heading span {
  color: var(--yellow-color)
}
.heading .line {
  width: 40%;
  height: 2px;
  background-color: var(--yellow-color);
  margin: 0 auto;
  display: block;
}
.col-md-6{
  padding: 0;
  display: flex!important;
  justify-content: center!important;
}
/* detail-page-effects */
.overview .bg {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: .25s;
  pointer-events: none;
}

li
{  list-style:none;
}

.overview li a
{ display:block;
  float:left;
  max-width: 16%;
  width: 100%;
  padding:30px 0;
  text-align:center;
  font-family: 'HeydingsCommonIconsRegular', Helvetida Neue, sans-serif;
  font-weight:700;
  letter-spacing:1px;
  font-size:40px;
  color:#fff;
  background:#ccc;
  text-decoration:none;
  text-transform:uppercase;
  text-shadow:2px 2px 0 rgba(0,0,0,.25);
  transition:.25s;}
  
  .overview li a:hover  {
    margin:-10px 0 0 0;
  }
  
  .overview
  {  max-width:600px;
    width: 100%;
    margin:20px auto;
    border-radius:10px;
    overflow:hidden;}
    
    .overview li:first-child a {  background:#ffca6d !important;}
    .overview li:nth-child(2) a {  background:#ff6d6d !important;}
    .overview li:nth-child(3) a {  background:#6dffb9 !important;}
    .overview li:nth-child(4) a {  background:#6dcaff !important;}
    .overview li:nth-child(5) a {  background:#ec6dff !important;}
    .overview li:nth-child(6) a {  background:#ffca6d !important; border-radius: 0px 10px 10px 0px!important;}
    
    .overview li:first-child:hover ~ .bg {
      background: #ffca6d;
      
    }
    .overview li:nth-child(2):hover ~ .bg {
      background: #ff6d6d;
    }
    .overview li:nth-child(3):hover ~ .bg {
      background: #6dffb9;
    }
    .overview li:nth-child(4):hover ~ .bg {
      background: #6dcaff;
    }
    .overview li:nth-child(5):hover ~ .bg {
      background: #ec6dff;
    }
    .overview li:nth-child(6):hover ~ .bg {
      background: #ffca6d;
      
    }
    .overview li:nth-child(6):hover ~ .bg {
      background: #ffca6d; 
    } 
    .btn_blue{
      margin: 2px 0;
    }
    /* hide default header from view page and detail-page*/
    .site-header-wrapper{
      display: none!important;
    }
    
    .main-nav{
      opacity: 0;
      visibility: hidden!important;
    }
    /* style of form */
  .contact-popup-title {
    font-size: 22px !important;
    margin-top: 45px!important;
    padding-left:98px!important;
    line-height: 1.4;
    color: #075e95 !important;
    font-family: Open sans-serif!important;
}
  .fw-thin{
    margin-left: 98px!important;
    margin-top: 10px;
}
.demo-btn{
    background: black;
    margin-bottom: 50px;
    padding: 12px;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}
.demo-btn:hover{
  color: #fff!important;
}
.col-sm-12 a{
  all: unset;
}
/* hide icon from detail page */
.st-btn{
  opacity: 0;
} 
.st-btn:hover{
  opacity: 0!important;
}  
  .st-last{
    opacity: 10;
    font-weight: 600!important;
    border-radius: 50px!important;
    font-size: 16px!important;
    padding: 0 30px!important;
    background-color: var(--dark-blue-color)!important;
    display: inline-block!important;
}
.st-last:hover{
  opacity: 10!important;
}
@media (min-width: 576px){
  .col-sm-6{
    padding: 0!important;
    max-width: 48%!important;
    width: 100%!important;
  } 
  .mt-40 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    width: 100%;
    margin-left: 70px;
    margin-right: 70px;
  }
}
/* low-resolution */
@media (min-width:250px) {
  .contact-popup-title{
    margin-right: 50px;
  }
  .close{
    position: relative;
    top: 1px;
    left: 40px;
    bottom: 40px;
  }
}
    /* Responsive detail page */
    @media screen and (max-width:767px) and (min-width: 300px){
      .creative_box .content h5{
        bottom: 25px!important;
      }
      /* .row>* {
        padding-right: 0px!important;
      } */
      .btn_blue{
        margin: 0 30px;
        margin-top: 3px;
        padding: 8px;
      }
      .col-8 h2{
        text-align: left;
        font-size: 25px;
      }
      
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    