/*============================================================
    BASIC
============================================================*/
html {
    scroll-behavior: smooth;
  }
  
  
  body {
      font-family: 'Poppins', sans-serif;
      color: #262626;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-weight: 700;
  }
  
  a,
  a:hover,
  a:focus,
  button,
  button:focus {
      text-decoration: none;
      outline: none;
      box-shadow: none;
  }
  
  a {
      -webkit-transition: all .3s ease-in 0s;
      -moz-transition: all .3s ease-in 0s;
      -ms-transition: all .3s ease-in 0s;
      -o-transition: all .3s ease-in 0s;
      transition: all .3s ease-in 0s;
  }
  
  p {
    font-size: 14px;
    line-height: 22px;
    color: #4D4D4D;
    font-weight: 300;
}   
  
  .p1 {
      font-size: 22px;
      line-height: 32px;
  }
  
  .p2 {
      font-size: 20px;
      line-height: 30px;
  }
  
  /*============================================================
      HELPER
  ============================================================*/
  
  body>section {
      padding: 80px 0;
      position: relative;
  }
  
  .btn {
      padding: 13px 25px;
      font-size: 16px;
      font-weight: 400;
      transition: all 0.5s;
      color: #fff;
      box-shadow: none !important;
      outline: none !important;
      border-radius: 6px;
      margin-top: 30px;
      position: relative;
      z-index: 1;
      overflow: hidden;
      border: none;
  }
  
  .lg-btn {
      padding: 20px 5%;
  }
  
  .small-btn {
      padding: 10px 20px;
      min-height: auto;
      min-width: auto;
      font-size: 14px;
  }
  
  .dark-btn {
      background-color: #2F313E;
      color: #ffffff;
  }

#header.position-absolute .dark-btn {
    background-color: #fff;
    color: #2F313E;
}

  
  .dark-btn:hover {
    background: #3C85E3 !important;
    color: #fff !important;
  }
  
  
  .border-btn {
      border: 1px solid #fff;
      color: #fff;
  }
  
  .border-btn:hover {
      background-color: #fff;
      color: #3C85E3;
      opacity: 1;
  }
  
  .white-btn {
      background-color: #fff;
      color: #2F313E;
  }

  .white-btn:hover {
    background: #3C85E3;
    color: #fff;
  }
  
  .section-title {
      position: relative;
      z-index: 11;
      margin-bottom: 80px;
  }
  
  .section-title h2 {
      position: relative;
      font-size: 45px;
      display: inline-block;
      font-weight: 700;
  }
  
  
  .section-title h3 {
      font-size: 35px;
  }
  
  .section-title h3 span {
      color: #24CBC7;
  }
  
  .section-title h4 {
      font-size: 24px;
  }
  
  
  .section-title h5 {
      font-size: 20px;
  }
  
  .section-title p {
      color: #010835;
  }

  .title-with-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

  
  /*============================================================
      HEADER
  ============================================================*/
  
  
  .navigation-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  
  
  #header {
    position: relative;
    z-index: 999;
    width: 100%;
    top: 0;
    padding: 10px 0;
}
  
  #header .navbar {
      padding: 18px 0;
  }
  
  #header .navbar-nav .nav-link {
      font-size: 16px;
      font-weight: 500;
      margin-right: 40px;
      color: #000F30;
  }
  
  #header .navbar-nav .dropdown-menu {
      font-size: 13px;
  }
  
  .navbar-btns .dropdown-item:hover {
      background: #0052d3;
      color: #fff;
  }
  
  #header .navbar-toggler {
      color: #ababab;
      border: none !important;
      outline: none !important;
      box-shadow: none;
  }
  
  .nav-right ul li {
    margin-right: 25px !important;
}

.nav-right ul li a {
    color: #2F313E;
    font-size: 20px;
}


#header.position-absolute .navbar-brand img {
    -webkit-filter: brightness(5);
    filter: brightness(5);
}

#header.position-absolute .nav-right ul li a {
    color: #fff;
}



  /*============================================================
     HERO BANNER
  ============================================================*/
  
  .hero-banner {
      background-image: url(../images/banner-bg.png);
      background-size: cover;
      background-position: bottom center;
      max-height: 900px;
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      background-repeat: no-repeat;
      background-color: #2a4a68;
  }
  
  .hero-banner:before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(90deg, rgb(30 30 30 / 87%) 21.44%, rgb(30 30 30 / 76%) 43.81%, rgb(30 30 30 / 44%) 63.8%, rgba(0, 0, 0, 0) 78.21%); */
  }
  
  .hero-banner-inner {
      position: relative;
      max-width: 800px;
      text-align: center;
      margin: auto;
  }
  
  .hero-banner-inner h1 {
      font-size: 40px;
      color: #fff;
      margin-bottom: 60px;
  }

.hero-search .form-control {
    background: #fff;
    text-indent: 50px;
    border-radius: 50px;
    color: #262626;
    font-size: 19px;
    box-shadow: none;
    outline: none;
    min-height: 80px;
}

.hero-search button {
    min-width: 160px;
    height: 60px;
    border: none;
    border-radius: 50px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: #3C85E3;
    color: #fff;
}

.hero-search .form-control::placeholder {
    color: #ddd;
}

.hero-search i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    font-size: 20px;
    color: #767676;
}



.product-card {
    box-shadow: 0px 0px 10px 0px #00000026;
    height: 100%;
}

.product-card img {
    width: 100%;
}

.product-card-content {
    padding: 22px 20px;
}

.product-card-content h4 {
    font-size: 20px;
    color: #2F313E;
}

.product-card-content p {
    margin: 0;
}



#footer {
    background: #2F313E;
    padding: 85px 0;
}

.footer-content {
    color: #fff;
    text-align: right;
}

.footer-content p {
    color: #fff;
    /* margin: 0; */
    /* line-height: 35px; */
}

.footer-content h3 {
    margin-bottom: 20px;
}

.footer-row {
    /* display: flex; */
    justify-content: space-between;
    align-items: flex-end;
}


.breadcrumb-banner {
    background: url(../images/breadcrumb-banner-bg.png);
    background-size: cover;
    background-position: bottom center;
    position: relative;
    background-repeat: no-repeat;
    background-color: #2a4a68;
    padding: 35px 0;
    min-height: 130px;
    display: flex;
    align-items: center;
}


.breadcrumb-banner .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-banner .breadcrumb-item {
    /* font-size: 14px; */
    color: #fff;
    font-weight: 400;
}

.breadcrumb-banner .breadcrumb-item a {
    color: #fff;
}

.breadcrumb-banner .breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    content: "→";
    height: 100%;
}

.breadcrumb-banner .hero-search .form-control {
    min-height: 60px;
}

.breadcrumb-banner .hero-search button {
    height: 44px;
    top: 8px;
    right: 8px;
    min-width: 129px;
}



.trophy-view-main {
    padding-top: 20px;
}

.timeline-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 46px;
}

.timeline-box-inner {
    float: left;
    clear: both;
    width: 50%;
    text-align: right;
    padding-right: 8%;
    position: relative;
}

.timeline-box:nth-child(even) .timeline-box-inner {
    float: right !important;
    text-align: left;
    padding-right: 0;
    padding-left: 8%;
}

.timeline-box-inner:after {
    background-image: url(../images/boat-icon.svg);
    background-size: 100%;
    top: -7px;
    right: -18px;
    height: 84px;
    width: 36px;
    content: "";
    position: absolute;
    padding: 16px 0;
    background-repeat: no-repeat;
    background-position: center;
}

.timeline-box:nth-child(even) .timeline-box-inner:after {
    right: auto;
    left: -18px;
}

.trophy-timeline {
    position: relative;
}

.trophy-timeline:before {
    top: 0;
    bottom: 108px;
    position: absolute;
    content: " ";
    width: 2px;
    background-color: #3C5E82;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-box-inner h3 {
    font-size: 30px;
    color: #1C1D25;
}

.timeline-box-inner h4 {
    font-size: 20px;
    color: #1C1D25;
}

.timeline-box-inner h5 {
    color: #3C5E82;
    font-weight: 400;
}




.inner-page-banner {
    background: url(../images/inner-page-banner.png);
    background-size: cover;
    background-position: bottom center;
    position: relative;
    background-repeat: no-repeat;
    background-color: #2a4a68;
    /* padding-bottom: 0; */
    min-height: 130px;
    display: flex;
    align-items: center;
}

.inner-page-banner-content {
    color: #fff;
    /* padding-bottom: 60px; */
}

.inner-page-banner-content h2 {
    font-size: 40px;
}

.inner-page-banner-content p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}

.inner-page-banner-content h6 {
    margin: 20px 0;
}
/* 
.banner-award-image {
    margin-bottom: -30px;
} */


.timeline-winner-row {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-left: 13px solid #3C85E3;
    padding: 15px 55px;
    margin-bottom: 10px;
}

.timeline-winner-content {
    display: grid;
    flex: 1;
   /* max-width: 50%;*/
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.timeline-winner-content h3 {
    font-size: 15px;
    color: #3C5E82;
    width: 4%;
}

.timeline-winner-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3C5E82;
    width: 45%;
}

.timeline-winner-content h5 {
    color: #3C5E82;
    font-weight: 400;
    width: 50%;
    font-size: 16px;
}

.timeline-winner-content * {
    margin: 0;
}

.select-option {
    /* min-width: 200px; */
    box-shadow: 0px 0px 6px 0px #00000033 !important;
    font-size: 16px;
    color: #3C5E82;
}

.contact {
    background-color: #F2F2F2;
}

.contact-form {
    padding: 7% 30px;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-weight: 800;
    margin-bottom: 30px;
}

.contact-form .form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border-color: #CCCCCC;
    box-shadow: none !important;
    border-radius: 25px;
    font-size: 14px;
    padding: 10px;
    text-indent: 10px;
}



@media (max-width: 1100px) {
    .timeline-winner-content {
        max-width: 70%;
    }
    
}


@media (max-width: 991px) {

   .timeline-winner-content h4{
            width: 100%;
        }

        .timeline-winner-content h3{
           width: 100%;
        }

        .timeline-winner-content h5{
           width: 100%;
        }


    .hero-banner {
        max-height: 500p;
        background-size: contain;
    }

    .hero-banner-inner h1 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .timeline-winner-row {
        padding: 22px;
    }

    .timeline-winner-content {
        max-width: 80%;
    }

    .timeline-winner-content h3 {
        font-size: 14px;
    }

    .timeline-winner-content h4 {
        font-size: 16px;
    }

    .timeline-winner-content h5 {
        font-size: 15px;
    }
    
}

@media (max-width: 767px) {

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title h3 {
        font-size: 24px;
    }

    .hero-banner-inner h1 {
        font-size: 25px;
    }

    .hero-search button {
        min-width: 100px !important;
        height: 45px !important;
        right: 5px !important;
        top: 5px !important;
    }

    .hero-search .form-control {
        min-height: 55px !important;
    }

    .nav-right ul li {
        margin-right: 5px !important;
    }

    .navbar-brand img {
        max-width: 120px;
    }

    .inner-page-banner-content h2 {
        font-size: 30px;
    }

    .breadcrumb-banner .breadcrumb-item {
        font-size: 14px;
    }

    .inner-page-banner-content {
        padding-bottom: 40px;
        text-align: center;
    }

    .timeline-winner-content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 7px;
    }

    .title-with-btn {
        display: block;
    }

    .timeline-winner-row {
        padding: 14px 30px;
        border-width: 7px;
    }

    
}

@media (min-width: 991px) {

.timeline-winner-content {
    display: flex !important;
    flex-direction: row;
}

}

