/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  /* min-height: 100vh; */
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #ffffff7d;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: block;
  height: 100%;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
  line-height: 25px;
}
nav .navbar .links li a{
  /* height: 100%; */
  text-decoration: none;
  white-space: nowrap;
  color: #000000;
  font-size: 15px;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #000000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 2px 2px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 175px;
}
.navbar .links li .sub-menu a{
  color: #000000;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #80808036;
  width: 100%;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box {
    display: none;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
    border-bottom: 1px solid #80808040;
    line-height: 45px;
  }
  nav .navbar .links li a{
    font-size: 15px;
    width: 85%;
    display: block;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #ffffff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #000000;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: flex;
    flex-wrap: wrap;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
  width: 100%;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
  width: 100%;
  line-height: 25px;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
  width: 70%;
  padding: 7px;
} 
}


/*======================*/
.banner-link {
    /* position: fixed; */
    /* top: 16%; */
    /* right: 2%; */
    color: #fff;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    display: block;
    transform: rotate(270deg);
}

section.section.banner-section {
    position: relative;
}

.banner-link a {
    margin: 8px;
    font-size: 17px;
    color: #fc6501;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.2);
}

.banner-column:before {
    content:"";
    width: 100px;
    height: 1px;
    vertical-align: middle;
    background-color: #fff;
    display: inline-block;
    -webkit-animation: move 1.6s infinite;
    animation: move 1.6s infinite;
    -webkit-animation-timing-function: cubic-bezier(.645,.045,.355,1);
    animation-timing-function: cubic-bezier(.645,.045,.355,1);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 115px;
    bottom: 51%;
}

@keyframes move {
    0% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }

    51% {
        -webkit-transform-origin: left;
        transform-origin: left
    }

    to {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}
.banner-column {
    position: fixed;
    top: 16%;
    right: 2%;
    transform: rotate(90deg) !important;
    z-index: 9;
}
img.banner-image {
    width: 100%;
}

.iwug_tri {
    font-size: 38px;
    display: block;
}

.igdfwug_tri {
    font-size: 80px;
    color: #000000;
    font-family: Anton;
}

.fugb_tri {
    position: absolute;
    top: 35%;
    left: 9%;
}
a.efugb_tri {
    display: flex;
    width: 100%;
    border-bottom: 5px solid #e45b01;
}
section.efueg_tri {
    position: relative;
}

a.gyy_tri {
    color: #fff;
    background-color: #ed6e14;
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    margin-top: 12px;
    box-shadow: 0 1px 3px rgb(0 0 0);
}
header.header_tri.fixed-header nav {
    background: #fff;
}
header.header_tri nav img {
    margin-top: 10px;
    height: 48px;
}
picture {
    display: flex
;
    width: 100%;
}
picture img {
   width:100%;
}

@media only screen and (max-width: 767px) {
    section.efueg_tri {
        background-image: url('../images/YogeshPatel_image_mobile_bg.png');
        background-size: cover;
        padding: 30px 0 0;
        text-align: center;
    }

.fugb_tri {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 29px;
}

.igdfwug_tri {
    font-size: 50px;
    font-weight: 600;
}

.iwug_tri {
    font-size: 30px;
}
img.iuhjk_tri {
    height: auto !important;
    width: 94%;
}
.banner-column {
    top: 30%;
}
.fugb_tri.egr_tri {
    position: absolute;
    top: 0;
    right: 0!important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #000000a3;
    padding: 0 25px;
}
section.efueg_tri.hhrh_tri {
    background: no-repeat;
    padding: 0;
}
.fugb_tri.egr_tri .iwug_tri {
    color: #fff;
    font-size: 21px;
}
.efhjk_tri a.gyy_tri.thbb_tri {
        font-size: 14px;
        padding: 10px 10px;
        width: auto;
    }
}
.fugb_tri.egr_tri {
    left: auto;
    right: 9%;
}
a.gyy_tri.thbb_tri {
    font-size: 18px;
    padding: 12px 20px;
    width: 188px;
    text-align: center;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.gyy_tri.thbb2_tri {
    font-size: 18px;
    padding: 12px 20px;
    width: 188px;
    text-align: center;
    border-radius: 2px;
    color: #ffffff;
    background: #853209;
    margin-left: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugy_tri {
    display: flex;
}