* {
    padding: 0;
    margin: 0;
}

/* Banner Content */

header {
    background-image: url('../images/Home-BG.jpg');
    height: 1000px;
}

.banner-content {
    margin: 100px 200px;
    overflow: hidden;
    width: 560px;
}

#head-span {
    font-family: 'Rubik', sans-serif;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 2px 10px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(to bottom, #FFB629, #FFDA56, #FFD7A6) 1;
    padding: 2px 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}

.banner-content h1 {
    color: #fff;
    font-weight: 700;
    font-size: 60px;
}

.sub-content p {
    color: #fff;
    text-align: justify;
}

@media screen and (min-width:1600px) {
    .banner-content {
        margin: 100px 360px;
    }
}

@media only screen and (max-width:1190px) {
    header {
        height: fit-content;
    }
}

@media screen and (max-width:780px) {
    .banner-content {
        width: auto;
        margin: 100px 150px;
        padding: 0 40px;
    }
}

@media screen and (max-width:580px) {
    .banner-content {
        margin: 100px auto;
        width: fit-content;
    }
}

/* Banner content ends here */

/* Service section */

.services {
    margin: 60px 200px;
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    grid-template-rows: repeat(2, 1fr);
    font-family: 'Rubik', sans-serif;
    gap: 40px;
}

.service-head {
    grid-row: 1/ 3;
}

.service-head span {
    background-color: #E8E8E880;
    border-left: 3px solid transparent;
    border-image: linear-gradient(to bottom, #FFB629, #FFDA56, #FFD7A6) 1;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 400;
}

.service-head h3 {
    padding: 15px 0;
}

.service-content {
    font-family: 'Krub', sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.service-content h2 {
    line-height: 100%;
}

.content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.content1 img {
    padding: 15px;
    width: 45px;
    height: 45px;
}

.subcontent {
    border-left: 1px solid rgba(0, 0, 0, 0.7);
    padding: 0px 10px;
}

@media screen and (min-width:1600px) {
    .services {
        margin: 100px 360px;
    }
}

@media screen and (max-width:1190px) {
    .services {
        display: flex;
        margin-top: 60px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width:880px) {
    .services {
        margin: 60px 150px;
    }

    .service-content {
        flex-direction: column;
    }
}

@media screen and (max-width:580px) {

    .services {
        margin: 60px 100px;
    }

    .subcontent {
        border: none;
    }
}

/* Service section ends here */

/* About section */

.about-section {
    overflow: hidden;
    background-image: url(../images/Photo.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: auto;
    margin-bottom: 50px;
    align-content: center;
    justify-items: center;
}

.about-content {
    margin: 200px;
    margin-bottom: 100px;
    background-color: white;
    padding: 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
    box-shadow: 0 -10px -15px rgba(0, 0, 0, 0.5);
}

.icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.counter1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px 60px;
    border-top: 1px solid rgba(85, 84, 84, 0.3);
    border-bottom: 1px solid rgba(85, 84, 84, 0.3);
}

.counter1:nth-child(1) {
    border-right: 1px solid rgba(85, 84, 84, 0.3);
}

.counter1 h2 {
    font-size: 50px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
}

.counter1 span {
    font-size: 20px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
}

@media screen and (min-width:1600px) {
    .about-content {
        margin: 360px;
        margin-bottom: 100px;
    }
}

@media screen and (max-width:1500px) {
    .img-box img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width:1190px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width:780px) {
    .about-section {
        height: auto;
    }

    .about-content {
        flex-direction: column;
        margin: 50px 150px;
    }

    .img-box {
        transform: scale(0.7);
    }

    .txt {
        display: inline-block;
    }

    .counter {
        flex-direction: column;
        border-top: 1px solid rgba(85, 84, 84, 0.3);
        border-bottom: 1px solid rgba(85, 84, 84, 0.3);
    }

    .counter1 {
        border: transparent;
    }

    .counter1:nth-child(1) {
        border-right: transparent;
        border-bottom: 1px solid rgba(85, 84, 84, 0.3);
    }
}

@media screen and (max-width:580px) {
    .about-content {
        margin: 50px 100px;
        flex-direction: column;
        width: auto;
        gap: 10px;
        padding: 20px 40px;
    }

    .img-box {
        transform: scale(0.5);
    }

    .txt {
        display: inline-block;
    }
}

/* End of about section */

/* Project section */

.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #fff 50%, transparent 50%), linear-gradient(to right, #FFB629, #FFDA56, #FFD7A6);
    padding: 50px 0;
    margin-bottom: 80px;
    overflow-x: hidden;
    width: auto;
}

.project-section {
    margin: auto 200px;
    width: 70%;
}

.project-section h3 {
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.grid-box {
    height: 350px;
    padding: 0 40px;
    position: relative;
}

.grid1 {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.grid1 p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}

.grid1 span {
    color: #FFB629;
    font-weight: 500;
}

.grid-box:nth-child(1) {
    background-image: url(../images/tanker.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-box:nth-child(2) {
    background-image: url(../images/package.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-box:nth-child(3) {
    background-image: url(../images/truck.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-box:nth-child(4) {
    background-image: url(../images/warehouse-distributioin.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-box:nth-child(5) {
    background-image: url(../images/ship.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:1600px) {
    .project-section {
        margin: auto 360px;
    }
}

@media screen and (max-width:1400px) {
    .img-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width:1190px) {
    .img-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:880px) {
    .project-section {
        margin: auto 150px;
    }

    .img-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:680px) {
    .project-section {
        margin: auto 100px;
    }

    .img-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* End of project section */

/* Why choose us section */

.choose {
    background-image: linear-gradient(to right, #091242 50%, #f4f4f4 50%);
    height: auto;
    margin: 40px 0;
    overflow-x: hidden;
}

.choose-container {
    margin: 100px 200px;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

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

.img-container {
    width: 50%;
}

.choose-content {
    width: 50%;
}

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

@media screen and (min-width:1600px) {
    .choose-container {
        margin: 100px 360px;
    }
    .img-container {
        width: 65%;
    }
    .img-container img {
        width: 100%;
    }
}

@media screen and (max-width:1599px) {
    .choose-container {
        gap: 80px;
    }

    .img-container,
    .choose-content {
        width: fit-content;
    }
}

@media screen and (max-width:1190px) {
    .choose {
        height: auto;
        background-image: linear-gradient(to top, #091242 50%, #F4F4F4 50%);
    }

    .choose-container {
        flex-direction: column-reverse;
        padding: 30px 0;
    }
}

@media screen and (max-width:780px) {
    .choose-container {
        margin: 100px 150px;
    }

    .choose {
        background: #F4F4F4;
    }

    .img-container {
        display: none;
    }

    .feature {
        padding: 0 20px;
    }
}

/* End of why choose us section */

/* Contact section */

.contact-section {
    background-color: #091242;
    overflow: hidden;
}

.contact-container {
    margin: 0 200px;
    padding: 50px 0;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr, 0.5fr;
    gap: 80px;
}

.contact-head span {
    background-color: rgba(255, 255, 255, 0.06);
    border-left: 3px solid transparent;
    border-image: linear-gradient(to bottom, #FFB629, #FFDA56, #FFD7A6) 1;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 400;
}

.contact-head h3 {
    padding: 15px 0;
    color: #fff;
}

.contact-head p {
    font-family: 'Krub', sans-serif;
    font-weight: 400;
    color: #fff;
}

.contact-head .addressbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 39px;
}

@media screen and (min-width:1600px) {
    .contact-container {
        margin: 0 360px;
    }
}

@media screen and (max-width:780px) {
    .contact-container {
        margin: 0 150px;
        display: flex;
        flex-direction: column;
    }

    .contact-head .addressbar {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width:580px) {
    .contact-container {
        margin: 0 100px;
    }
}

/* End of contact section */

/* Blog section */

.blog-section {
    overflow: hidden;
    margin: 50px 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Krub', sans-serif;
    gap: 20px;
}

.blog-container {
    display: flex;
    flex-direction: column;
}

.blog-box {
    border-top: 1px solid rgba(122, 122, 120, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.read-more {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.read-more img {
  display: block;
  width: 100%;
  /* height: 100%; */
}

.read {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 50%;
  background: rgba(28, 31, 53, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.read-more:hover .read {
  opacity: 1;
}

.blog-box:nth-child(3) {
    border-bottom: 1px solid rgba(122, 122, 120, 0.3);
}

.calender {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.calender h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: 600;
}

.calender span {
    font-weight: 500;
}

.vertical-line {
    width: 1px;
    height: auto;
    background-color: rgba(53, 53, 51, 0.3);
    margin: 0 20px;
}


.blog-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-content h6 {
    line-height: 100%;
    cursor: pointer;
}

#highlight h5 {
    color: #FFBE34;
}

.blog-content p {
    font-weight: 500;
    line-height: 156%;
}

.blog-content ul {
    padding: 10px 20px;
    margin: 0 10px;
}

.blog-content ul li {
    font-weight: 500;
    line-height: 167%;
}

@media screen and (min-width:1600px) {
    .blog-section {
        margin: 50px 360px;
    }
}

@media screen and (max-width:1190px) {
    .blog-section {
        margin: 50px 150px;
    }

    .blog-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-box .read-more {
        max-width: 100%;
        height: 100%;
        display: block;
    }

    .calender {
        grid-column: 1 / span 2;
        grid-row: 1 / 2;
        flex-direction: row;
        gap: 10px;
    }

    .blog-content {
        grid-column: 2 / 3;
        grid-row: 2;
    }

    .vertical-line {
        display: none;
    }
}

@media screen and (max-width:800px) {
    .blog-box {
        grid-template-columns: repeat(2, auto);
    }

    .calender {
        grid-column: 1;
    }

    .calender img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .blog-content {
        grid-column: 1 / span 2;
    }
}

@media screen and (max-width:580px) {
    .blog-section {
        margin: 50px 100px;
    }
    .blog-box {
        grid-template-columns: 1fr;
    }
    .calender {
        grid-column: 1;
    }
    .blog-box .read-more {
        grid-column: 1;
        grid-row: 2;
    }
    .blog-content {
        grid-row: 3;
    }
}

/* End of blog section */