@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  padding: 0px;
  margin: 0px;
}
img {
  width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
p {
  margin-bottom: 0px;
  line-height: 1.6;
}
:root {
  --c1: rgb(196 137 46);
  --c2: rgb(0, 0, 0);
  --c3: rgb(255, 255, 255);
}
::selection {
  color: var(--c3);
  background: var(--c1);
}
::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 0;
}
body{
    font-family: "Roboto", sans-serif;
}

/* HEADER */

.logo span {
    font-size: 30px;
    color: var(--c2);
    font-weight: 700;
    letter-spacing: 2px;
}
.head-main ul {
    display: flex;
    gap: 30px;
}
.head-main ul li a {
    color: var(--c3);
    transition: all .5s;
}
.head-main ul li i {
    margin-right: 10px;
    color: var(--c1);
}
.head-main ul li a:hover {
    color: var(--c1);
}
.web-btn, .contact-btn input {
    padding: 12px 30px;
    background-color: var(--c1);
    color: var(--c3);
    font-weight: 600;
    border-radius: 4px;
    transition: all .5s;
}
.web-btn:hover, .contact-btn input:hover {
    background-color: var(--c2);
    color: var(--c3);
}
.header {
    padding: 20px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.logo a {
    width: 120px;
    display: block;
    margin: 0 auto;
}

/* SECTION BANNER */

/*.banner-img img {*/
/*    height: 1000px;*/
/*    object-fit: cover;*/
/*    object-position: center;*/
/*}*/
.banner {
    position: relative;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-title {
    text-align: center;
    color: var(--c3);
}
.banner-title h1 {
    text-transform: capitalize;
    font-size: 44px;
}
.banner-title p {
    margin: 15px 0px 25px 0px;
}
/*.banner::before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #00000021;*/
/*}*/
.banner-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--c1);
    border-radius: 50%;
    color: var(--c1);
    transition: all .5s;
    font-size: 20px;
    cursor: pointer;
    z-index: 9;
}
.banner-slider .slick-arrow:hover {
    background-color: var(--c1);
    color: var(--c3);
}
.banner-slider .slick-prev {
    left: 30px;
}
.banner-slider .slick-next {
    right: 30px;
}
.banner-slider ul.slick-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.banner-slider ul.slick-dots li button {
    width: 30px;
    font-size: 0px;
    border: 0;
    height: 5px;
    background-color: var(--c1);
    cursor: pointer;
}
.banner-slider ul.slick-dots li.slick-active button {
    background-color: var(--c2);
}

/* SECTION CONTACT US */

.contact-item input, .contact-item textarea {
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 12px;
    border: 1px solid #0000001c;
    outline: 0;
    color: var(--c4);
    transition: all .5s;
}
.contact-form-main .wpcf7-response-output {
    font-size: 14px;
    text-align: center;
}
.contact-item span.wpcf7-not-valid-tip {
    font-size: 14px;
    padding-top: 8px;
}
.contact-item input::placeholder, .contact-item textarea::placeholder {
    color: #0000008a;
}
.contact-item input:focus, .contact-item textarea:focus {
    border-color: var(--c1);
}
.contact-item textarea {
    height: 200px;
}
.contact-form-main form .row {
    row-gap: 20px;
}
.contact-btn input {
    border: 0;
}
.contact-img {
    overflow: hidden;
	position: relative;
}
.contact-img img {
    transition: all .8s;
}
.contact-img:hover img {
    transform: scale(1.1);
}
.contact-img::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(280deg, #ffffff, transparent);
    z-index: 1;
}
.spacing {
    padding: 100px 0px;
}
.web-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}
.web-title h2 span {
    color: var(--c1);
}
.web-title {
    margin-bottom: 50px;
}

/* FOOTER */

.footer-nav ul {
    display: flex;
    gap: 30px;
    justify-content: end;
}
.footer-nav ul li a {
    color: var(--c3);
    transition: all .5s;
}
.footer-nav ul li i {
    color: var(--c3);
    margin-right: 10px;
}
.footer-nav ul li a:hover {
    color: var(--c2);
}
.foot-logo a {
    display: block;
    width: 100px;
}
.footer {
    background-color: var(--c1);
    padding: 12px 0px;
}

/* SECTION ZIGZAG */

.zigzag-content h2 {
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.zigzag-content p {
    margin-bottom: 15px;
}
.zigzag-img {
    border-radius: 15px;
    overflow: hidden;
}
.zigzag-img img {
    transition: all .5s;
    height: 400px;
    object-fit: cover;
}
.zigzag-img:hover img {
    transform: scale(1.1);
}
.zigzag .container .row:nth-child(even) {
    flex-direction: row-reverse;
}
.zigzag .container .row {
    margin-bottom: 50px;
}
.zigzag .container .row:last-child {
    margin-bottom: 0px;
}
.zigzag {
    background-color: rgb(196 137 46 / 8%);
}



@media only screen and (min-width: 100px) and (max-width: 1399px){
    /*.banner-img img {*/
    /*    height: 800px;*/
    /*}*/
    .banner-title h1 {
        font-size: 40px;
    }
    .spacing {
        padding: 80px 0px;
    }
    .web-title h2 {
        font-size: 36px;
    }
    .logo a {
        width: 100px;
    }
    .zigzag-content h2 {
        font-size: 30px;
    }
    .head-main ul li a {
        font-size: 15px;
    }
    .head-main ul {
        gap: 20px;
    }
}

@media only screen and (min-width: 100px) and (max-width: 1199px){
    .web-btn, .contact-btn input {
        padding: 12px 24px;
    }
    .banner-title h1 {
        font-size: 36px;
    }
    .banner-slider .slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 15px;
    }
    .web-title h2 {
        font-size: 32px;
    }
    .spacing {
        padding: 70px 0px;
    }
    .zigzag-content h2 {
        font-size: 26px;
    }
    .logo a {
        margin: unset;
    }
    .head-btn {
        display: flex;
        justify-content: end;
        gap: 10px;
    }
    .head-btn ul {
        display: flex;
        gap: 10px;
    }
    .head-btn ul li a {
        width: 50px;
        height: 50px;
        background-color: var(--c1);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c3);
        font-size: 18px;
    }
}

@media only screen and (min-width: 100px) and (max-width: 991px){
    .banner-title h1 {
        font-size: 30px;
    }
    .web-btn, .contact-btn input {
        padding: 10px 24px;
        font-size: 15px;
    }
    /*.banner-img img {*/
    /*    height: 700px;*/
    /*}*/
    .web-title h2 {
        font-size: 30px;
    }
    .web-title {
        margin-bottom: 30px;
    }
    .zigzag-content {
        margin-top: 20px;
    }
    .zigzag .container .row {
        margin-bottom: 30px;
    }
    .foot-logo a {
        margin: 0 auto;
    }
    .footer-nav ul {
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 100px) and (max-width: 767px){
    .spacing {
        padding: 50px 0px;
    }
    p {
        font-size: 15px;
    }
    .web-title h2 {
        font-size: 26px;
    }
    .zigzag-content h2 {
        font-size: 22px;
    }
    .foot-logo a {
        margin: 0 auto;
        width: 80px;
    }
    .zigzag .container .row {
        margin-bottom: 20px;
    }
    .logo a {
        width: 60px;
    }
    
}

@media only screen and (min-width: 100px) and (max-width: 575px){
    .header {
        padding: 4px 0px;
    }
    .logo a {
        width: 50px;
    }
    .banner-title h1 {
        font-size: 26px;
    }
    .banner-slider ul.slick-dots li button {
        width: 20px;
        height: 4px;
    }
    /*.banner-img img {*/
    /*    height: 600px;*/
    /*}*/
    .zigzag-img img {
        height: 250px;
    }
    .footer-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }
    .head-btn ul li a {
        width: 40px;
        font-size: 15px;
        height: 40px;
    }
    .head-btn ul {
        gap: 5px;
    }
    .head-btn {
        gap: 5px;
    }
    .head-btn a.web-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .head-main ul {
        gap: 10px;
    }
    .head-main ul li a {
        font-size: 11px;
    }
    .head-main ul li i {
        margin-right: 6px;
        font-size: 12px;
    }

}