:root {
    --primary: #8a8a8a;
    --secondary: rgb(180, 180, 180);
    --light: #F7F7F7;
    --dark: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

body {
    background-image: url("../img/bg.png");
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed; 
}


.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}
 *{font-family: 'Nunito', sans-serif;}

 h1 {
    font-family:"Poppins", sans-serif;
 }

 .with-margin {
    margin-left: 20px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: #919191;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    position: fixed;
    width: 100%;
    transition: .5s;
    background-color: #161719; 
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #9B9D9A; 
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif !important;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #9B9D9A;
    }

}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Hero ***/
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../img/hero-bg.jpg") center/cover no-repeat fixed; 
    z-index: -1;
}

.upper_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    left: 5%;
}

#hero h1 {
    color: #888987;
    margin: 15px 0 0 0;
    font-size: 60px;
    font-family: "Poppins", sans-serif;
}

#hero .social-links a {
    font-size:25px;
    display: inline-block;
    color: #888987;
    line-height: 1;
    margin-right: 20px;
    transition: color 0.3s; 
    text-decoration: none; 
}

#hero .social-links a:hover {
color: #bdbdbd;
}

#hero .text1 {
    overflow: hidden; 
    border-right: .15em solid rgb(197, 197, 197);
    white-space: nowrap; 
    margin: 0 auto; 
    margin-right: 0;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    0% { width: 0; visibility: visible; }
    20% { visibility: visible; }
    100% { width: 100%; visibility: visible; }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgb(213, 213, 213); }
}

@media (max-width: 815px) {
    #hero h1 {
        font-size: 40px; 
    }

    #hero .social-links a {
        font-size: 18px; 
    }
}
.navigation-text {
    position: absolute;
    display: flex;
    gap: 20px;
    bottom: 50px; 
    left: 3%; 
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
}

.navigation-text:hover {
    color: #c9c9c9;
}


@media screen and (max-width: 768px) {
    .navigation-text {
        gap: 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .navigation-text {
        gap: 10px; 
        padding: 10px;
        font-weight: bold;
        font-size: 12px;
    }
}
@media screen and (max-width: 450px) {
    .navigation-text {
        gap: 5px; 
        padding: 0px;
        font-weight: bold;
        font-size: 10px;
    }
}


/*** Header ***/

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: transparent;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.text-left-justify {
    text-align: justify;
}

.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*** Experiences ***/
.testimonial-item h5,
.testimonial-item span {
    margin-top: 1px; 
    margin-bottom: 1px; }

.testimonial-carousel {
    max-width: 250px;
    position: relative;
    margin-right: 30px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.testimonial-carousel .owl-nav .owl-prev {
    display: none;}

.testimonial-carousel .owl-nav .owl-next {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #343434;
    color: var(--secondary);
    border-radius: 12.5px;
    box-shadow: 0 0 45px rgba(178, 178, 178, 0.2);
    font-size: 10px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(212, 212, 212, 0.07);
    margin-right: 1.5rem;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #b6b6b5c6;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: rgba(158, 158, 158, 0.838);
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(207, 207, 207, 0.1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
    font-family: "Poppins", sans-serif;
    color: #e3dfdf;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #dbdbdb;
}

.service-item .service-text .btn {
    color: var(--dark);
    background: #e3dfdf;
}

.service-item .service-text .btn:hover {
    color: var(--secondary);
    background: #f5f5f5;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.services_section {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(98, 98, 98, 0.07);
    margin-bottom: 20px;
    margin-right: 45px;
    background-color: #eef7ff;}

.product-item .product-overlay {
    position: fixed; 
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 24, 24, 0.595);
    opacity: 0;
    transition: 0.5s;
    padding: 20px; 
    box-sizing: border-box;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item img {
    min-height: 100%;
    max-height: 100%; 
    width: 100%;
    object-fit: cover;
}

.product-item .text-center {
    max-width: 500px;
}

.product-item a {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: -4px;
}


.product-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    background-color: transparent;
    border: none;
    color: #bebebe;
    font-size: 24px;
    padding: 10px;
    margin: 0 px; 
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; 
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: #bababa;
}

.product-carousel .owl-nav .owl-prev {
    left: 0;
}

.product-carousel .owl-nav .owl-next {
    right: 0;
}

.logo-carousel .owl-carousel {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .logo-carousel .owl-item {
    height: 330px;
    width: 100%;  
  }

  .logo-carousel .owl-carousel img {
    max-width: 100%;
    height: auto;
    margin: 0;
  }

  
  .logo-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
}

.logo-carousel .owl-nav .owl-prev,
.logo-carousel .owl-nav .owl-next {
    background-color: transparent;
    border: none;
    color: #bebebe;
    font-size: 24px;
    padding: 10px;
    margin: 0 px; 
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; 
}

.logo-carousel .owl-nav .owl-prev:hover,
.logo-carousel .owl-nav .owl-next:hover {
    color: #bababa;
}

.logo-carousel .owl-nav .owl-prev {
    left: 0;
}
.logo-carousel .owl-nav .owl-next {
    right: 0;
}

.socmed-carousel .owl-carousel {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .socmed-carousel .owl-item {
    height: 520px;
    width: 50%;  
  }

  .socmed-carousel .owl-carousel img {
    max-width: 80%;
    height: auto;
    margin: 0;
  }

  
  .socmed-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
}

.socmed-carousel .owl-nav .owl-prev,
.socmed-carousel .owl-nav .owl-next {
    background-color: transparent;
    border: none;
    color: #bebebe;
    font-size: 24px;
    padding: 10px;
    margin: 0 px; 
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; 
}

.socmed-carousel .owl-nav .owl-prev:hover,
.socmed-carousel .owl-nav .owl-next:hover {
    color: #bababa;
}

.socmed-carousel .owl-nav .owl-prev {
    left: 0;
}
.socmed-carousel .owl-nav .owl-next {
    right: 0;
}

.illus-carousel .owl-carousel {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .illus-carousel .owl-item {
    height: 520px;
    width: 50%;  
  }

  .illus-carousel .owl-carousel img {
    max-width: 80%;
    height: auto;
    margin: 0;
  }

  
  .illus-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
}

.illus-carousel .owl-nav .owl-prev,
.illus-carousel .owl-nav .owl-next {
    background-color: transparent;
    border: none;
    color: #bebebe;
    font-size: 24px;
    padding: 10px;
    margin: 0 px; 
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; 
}

.illus-carousel .owl-nav .owl-prev:hover,
.illus-carousel .owl-nav .owl-next:hover {
    color: #bababa;
}

.illus-carousel .owl-nav .owl-prev {
    left: 0;
}
.illus-carousel .owl-nav .owl-next {
    right: 0;
}


/*digmag*/
    #digmag {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 50px 0; 
    }

    #digmag img {
        margin-bottom: 5px; 
    }
    

/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-image {
    max-width: 100%;
    height: 100%; 
    object-fit: cover;}

.team-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.team-carousel .owl-nav button {
    color: #ffffff; 
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5); 
}

#Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}



@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*** Footer ***/
#footer {
    background:transparent;
    color: #bbbdc0;
    font-size: 18px;
    text-align: center;
    padding: 30px 0;
  }
  
  #footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
  }
  
  #footer p {
    font-size: 20px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
  }
  
  #footer .social-links {
    margin: 0 0 40px 0;
  }
  
  #footer .social-links a {
    font-size: 20px;
    display: inline-block;
    background: #9eb5ca;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center justify;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .social-links a:hover {
    background: #627587;
    color: #fff;
    text-decoration: none;
  }

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}



@media (max-width: 600px) {
    .services_section {
        flex-direction: column;
    }

}

.photography_words {
    text-align: center;
}

.cow_pict_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cow_pict_section .button_section {
    margin-top: 1rem;
}