b/* Base */
body {
  line-height: 1.7;
  color:#fff;
  font-weight: 400;
  font-size: 1rem;
  font-family: 'Calibre'
   }

::-moz-selection {
  background: #000;
  color: #fff; }

::selection {
  background: #000;
  color: #fff; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
color: #0b5be0;  }
  a:hover {
    text-decoration: none;
      color: #3F51B5 !important;
  }

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }



.home-banner {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    max-height: 650px;
    background: #c2c2c2b0;

}


/*.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 89%);

}*/

.home-banner .top-style {
    position: absolute;
    width: 400px;
    top: -49px;
    left: -50px;
}

.home-banner .top-style svg {
    color: #fdb624e6;
}

.rotate-both-side {
  -webkit-animation: rotate-both-side 4s infinite both;
  animation: rotate-both-side 4s infinite both;
}

@keyframes rotate-both-side {
  from {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}

.slide-both-side {
  -webkit-animation: slide-both-side 4s infinite both;
  animation: slide-both-side 4s infinite both;
}

@keyframes slide-both-side {
  from {
    -webkit-transform: translate(-5px);
    transform: translateY(-5px);
  }

  50% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  to {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.home-banner .bottom-style svg {
    color: #fdb624e6;
}

.home-banner .bottom-style {
    position: absolute;
    width: 400px;
    bottom: -100px;
    right: -50px;
}


.brand-img img {
    width: 22%;
    height: 100%;
}

.brand-img {
    text-align: center;
        padding: 250px 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 44;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  position: absolute;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff !important;
    height: 70px;
    position: fixed;
    width: 100%;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 8px 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #635551;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#main {
  z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
display: block;
    position: relative;
    color:#292828;
    padding: 11px 15px;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fdb624;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 8px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: lightne(#473d3a, 10);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ff5821;
}



.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


nav.nav-menu{
    /* margin: 0 auto; */
    position: absolute;
    right: 0;
    text-align: left;
}

.home-about {
    padding: 73px 0;
    background: #f9d38524;
}

.home-about h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1c1d24;
    text-align: center;
}

.home-about p {
    text-align: center;
    padding-top: 20px;
}

.black-strip {
    background: #000;
    height: 70px;
}

.after-left-section:after{
 content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    width: 40%;
    background: #fdb624e6;
  }

.after-left-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.about-section .img-box {
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
    background: #fff5ec;
    padding: 10px;
    z-index: 1;
}

.typo-box.about-me h3 {
    font-size: 40px;
    margin-bottom: 15px;
}


.typo-box.about-me h5 {
    line-height: 26px;
    font-size: 17px;
    color: #000;
}

.typo-box.about-me p {
    padding-top: 9px;
    font-size: 15px;
    color: #4c4c4c;
}

.img-box.con-box {
    box-shadow: 0px 12px 50px -12px rgb(0 0 0 / 25%);
    background: #fff;
}

.sm-title h4 {
    color: #1c1d24;
    font-size: 25px;
    position: relative;
    padding: 0 0 15px;
    margin: 0;
    font-weight: 700;
}

.sm-title h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #fdb624;
}

.sm-title p {
    margin-top: 15px;
    color: gray;
        margin-bottom: 20px;
}

.media {
    display: flex!important;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info .media .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdb52342;
    color: #585858;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-info .media .media-body {
padding-left: 15px;
    color: #1c1d24;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
}

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

.footer {
    padding: 12px 0;
    background: #1c1d24;
}

.footer p {
margin: 0px;
    color: #cfcfcf;
    font-size: 13px;
    letter-spacing: 0.4px;
}

img.head-logo {
    width: 102px;
}

.copyrights {
    text-align: right;
}

nav.nav-menu a:hover {
    color: #fdb624 !important;
}

.follow-us {
    margin-top: 30px;
}

.social ul {
    list-style-type: none;
    padding: 0;
    margin-top: 25px;
}

.social ul li {
    float: left;
    /*border: 3px solid #fdb624;*/
    /*width: 40px;*/
    /*height: 40px;*/
    margin-right: 15px;
    /*text-align: center;*/
    /*line-height: 33px;*/
    /*background: #fdb624;*/
}

.social ul li a{
    color:#fff;
}

.social img {
    width: 40px;
}

.my-works {
    background: #fff;
    padding: 60px 0;
}

.my-works h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1c1d24;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.single-work.img-effect {
    position: relative;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    animation-name: slideIn;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    background-color: #efefef;
}

.over-lay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #1d1d1d;
    opacity: 0;
    transition: all 0.3s;
}



.single-work.img-effect:hover .over-lay {
    opacity: 0.7;
}

.overlay-text {
    position: absolute;
    text-align: center;
    top: 45%;
    width: 100%;
    padding: 10px;
}

.overlay-text h5 {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
    overflow: hidden;
    margin-bottom:0px;
    padding: 10px 0;
    opacity:0;
}

.overlay-text h5:before, .overlay-text h5:after{
content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: white;
    transition: all 0.6s;
     margin-left: 100%;
}

.single-work.img-effect:hover .overlay-text h5:before{
    margin-left: 0%;
}

.single-work.img-effect:hover .overlay-text h5:after{
    margin-left: 0%;
}

.single-work.img-effect:hover .overlay-text h5{
    opacity:1;
}
  
  
 .my-works p {
    text-align: center;
    font-size: 15px;
    color: #606060;
    margin-bottom: 50px;
} 

.work-border {
    border: 2px solid #000;
    background: #000;
    margin-bottom: 50px;
    width: 5%;
    margin: 0 auto;
    text-align: center;
}

.home-contact {
    background: #111111c7;
    padding: 45px 0;
}

.get-touch {
    text-align: right;
        display: flex;
}

a.btn.get-in-touch {
    background: #000;
    border-radius: 25px;
    color: #ffd171;
    font-weight: 500;
    padding: 7px 22px;
}

a.btn.get-in-touch:hover {
    color:#fff !important;
}

.get-touch span {
    border: solid;
    height: 40px;
    width: 40px;
    display: block;
    border-radius: 30px;
    text-align: center;
    margin-right: 10px;
        line-height: 28px;
        color:#ffffff;
}

.home-contact h2 {
    display: flex;
    margin: 0px;
    color: #fff;
}

.home-contact p {
    margin-top: 10px;
    margin-bottom: 0px;
    color: #f7f7f7;
}

.get-touch span svg {
    color: #ffffff;
}

.contact-info.get-info {
    padding-left: 0px;
    display: flex;
}

.contact-info.get-info .icon {
    background: #fdb624;
}

.contact-info.get-info .media-body {
    color: #fff !important;
}

.contact-info.get-info .media {
    margin-right: 35px;
}

.home-contact h4 {
    color: #fff;
    margin-bottom: 20px;
}

.follow-us.get-follow-us {
    /*margin-top: 70px;*/
    float: right;
}

.explore {
    text-align: center;
    margin-top: 80px;
}

a.btn.btn-explore {
    background: #2b2b2b;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 10px 30px;
        border-radius: 25px;
}

.carousel-indicators .active {
    background-color: #6b6b6b !important;
}
a.btn.btn-explore:hover {
    background: #fdb624;
    color: #fff !important;
}

section.main-section h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 27px;
    letter-spacing: 2.3px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 12px;
    padding-top: 10px;
}

p.t-desc {
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
    color: #737373;
        margin-top: 55px;
}



section.main-section h2 {
    margin-top: 54px;
    font-size: 18px;
    font-weight: 400;
    color: #838383;
    letter-spacing: 0.3px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


.single-content {
    box-shadow: 0px 12px 50px -12px rgb(0 0 0 / 25%);
    padding: 10px;
    margin-bottom: 25px;
}


.content-sec {
    margin-top: 50px;
}

.single-content img {
    padding-top: 11px;
}

.single-content p {
    font-size: 15px;
    color: gray;
    line-height: 25px;
}


.brand-section {
    background: #f9d38524;
    padding: 50px 0;
}


/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



.brand-section h1 {
    text-align: center;
    margin-bottom: 19px;
    text-transform: uppercase;
}

.slider-section {
    padding-top: 13px;
}

.brand-section p {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-indicators li {
    width: 9px;
    height: 9px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fdb624;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -56px;
}

.main-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.carousel-inner>.item {
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: -o-transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
}

/*.carousel-item-next, .carousel-item-prev, .carousel-item.active {*/
/*    display: block;*/
/*    -webkit-transition: -webkit-transform 0.3s ease !important;*/
/*    transition: -webkit-transform 0.3s ease !important;*/
/*    -o-transition: transform 0.3s ease !important;*/
/*    transition: transform 0.3s ease !important;*/
/*    transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;*/
/*}*/

/*MOBILE CODE*/

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 45;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 13px;
    color: #f9b935;
    display: block;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #333333;
}

.sidebar a:hover {
  color: #f1f1f1 !important;
}

.sidebar .closebtn {
    position: absolute;
    top: -7px;
    right: 1px;
    font-size: 36px;
    margin-left: 50px;
    border: none;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
    position: absolute;
    right: 10px;
    
    top: 3px;
}

.openbtn:hover {
  background-color: #444;
}


/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: #f9b935;
    font-size: 13px;
    border: none;
    cursor: pointer;
    padding: 8px 8px 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #333333;
    width: 100%;
    text-align:left;
}

.dropdown span {
    position: absolute;
    right: 10px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: transparent;
      outline: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width:100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
    background-color: #252525;
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
    width: 100%;
}

/* Links inside the dropdown */
.dropdown-content a {
color: #f9b935;
padding: 8px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #1f1f1f;
    color: #f9b935 !important;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

button.openbtn:focus {
    outline: none;
}

.mobile-header {
    display: none;
}

@media screen and (max-width:768px){
 header#header {
    display: none;
}

.mobile-header {
    display: block !important;
    background: #000;
    height:60px;
}

.mobile-log img {
    width: 86px;
    position: absolute;
    left: 13px;
    top: 8px;
}

.home-banner .top-style {
    width: 310px;
}

.home-banner .bottom-style {
    width: 310px;
}

.brand-img img {
    width: 37%;
}

.home-about h2, .brand-section h1 {
    font-size: 26px;
}

.home-about p, .brand-section p {
    font-size: 13px;
}

.contact-info.get-info {
    display: initial;
}

.black-strip{
    display:none;
}

}


@media screen and (max-width:500px){
.home-banner .top-style {
    width: 160px;
} 

.home-contact {
    padding: 25px 0;
}

.brand-img {
    padding: 133px 0;
}

.brand-img img {
    width: 57%;
}

.home-banner .bottom-style {
    width: 160px;
    bottom: -49px;
    right: -36px;
}

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

.carousel-inner img {
margin-bottom:25px;
}

.follow-us.get-follow-us {
    /*margin-top: 7px;*/
    float: none;
}

.footer {
    text-align: center;
}

.footer p {
    text-align: center;
    padding-top: 2px;
}

.after-left-section:after {
    width: 100%;
    background: transparent;
}

.after-left-section {
    padding: 25px 0;
}

.typo-box.about-me h3 {
    color: #fdb624;
    font-size:28px;
    margin-bottom: 3px;
}

.typo-box.about-me {
    text-align: center;
}

.typo-box.about-me p {
    font-size: 13px;
}

.my-works {
    padding: 15px 0 0px;
}

.after-left-section {
    position: unset;
}

.after-left-section:after {
    position: unset;
}

.main-section {
    padding-top: 30px;
}

section.main-section h1 {
    font-size: 22px;
}

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

.social img {
    width: 23px;
}

.follow-us {
    margin-left: 10px;
}

.mob-show{
    display:block !important;
}

.desk-show{
    display:none !important;
}

.carousel-indicators {
    bottom: -18px !important;
}

p.t-desc {
    margin-top: 15px !important;
}

.main-section {
    padding-bottom: 13px !important;
}

.typo-box.about-me h5 {
    line-height: 22px;
    padding: 0 40px;
        margin-bottom: 18px;
}

p.a-text {
    margin-top: 29px;
    text-align: center;
}

.brand-section .carousel-indicators {
    bottom: -39px !important;
}

.explore {
    margin-top: 55px;
}

a.btn.btn-explore {
    background: #2b2b2b;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 7px 22px;
    border-radius: 25px;
    font-size: 13px;
}

.brand-section {
    padding: 50px 0 35px;
}

}

.mob-show{
    display:none;
}


