.header {
  height: 100%;
}

.main_container {
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
}

.container2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .img img {
  width: 70%;
  display: block;
  margin: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container2 .img img {
  width: 70%;
  display: block;
  margin: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container2 h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.nav_background {
  position: absolute;
  top: 0;
  right: 0;
  height: 90%;
  width: 90%;
  z-index: -1;
  transform-origin: top right;
  -webkit-clip-path: circle(90vh at 80% -2vh);
          clip-path: circle(90vh at 80% -2vh);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#888888));
  background: linear-gradient(to bottom, transparent, #888888);  
  transform: scale(.2);
  transition: all .1s ease;
} 

.nav_background.show{
  animation: nav_back_animate 1s 2s ease forwards;
} 

@keyframes nav_back_animate{
  to{ 
    transform: scale(1);
  }
}

.nav_hamburger_background {
  position: fixed;
  top: 5px;
  right: 5px;
  height: 90px;
  width: 100px;
  background: var(--radial-gradient);
  z-index: -1;
  display: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  border-radius: 62% 10% 49% 100% / 68% 47% 44% 90%;
}

.nav_hamburger_background.show {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.body_content_header .header_top {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_text .text {
  line-height: 60px;
  min-width: 500px;
  padding: 10px;
}

.text span {
  position: relative;
  text-transform: capitalize;
  font-size: 2.3rem;
  -webkit-text-stroke: 1px #666666;
  color: var(--text-color);
}

.text h3 {
  color: var(--text-color);
  font-size: 1.3rem;
}

.btn-group button.btn {
  position: relative;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 20px;
  background: transparent;
  margin-top: 20px;
  margin: 7px;
  font-size: 17px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 2px solid #273166;
  color: #273166;
  font-family: inherit;
}

.btn-group button.btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid #8082ff;
  background: #505694;
}

img.nav_background_img {
  margin-right: 10rem;
  height: 350px;
}

.btn-group button.btn:hover a {
  color: #fff;
}

.btn-group button.btn a {
  text-decoration: none;
  color: var(--text-color);
}

h3 {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 5%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0355f8), to(white));
  background: linear-gradient(#0355f8, white);
  color: transparent;
  -webkit-text-stroke: 1px #797979;
  -webkit-background-clip: text;
}

@media (max-width: 700px) {
  .nav_hamburger_background {
    display: block;
  }
  .nav_background {
    width: 99%;
    -webkit-clip-path: circle(70vh at 90% -25vh);
            clip-path: circle(70vh at 90% -25vh);
  }
  img.nav_background_img {
    display: none;
  }
  .header_text {
    width: 80%;
    overflow-x: hidden;
  }
  .header_text .text {
    width: 90%;
    overflow-x: hidden;
  }
  .header_text .text span {
    font-size: 1.5rem;
  }
}

@media (max-width: 1700px) {
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 1000px) and (min-width: 700px) {
  .nav_background {
    width: 85%;
    -webkit-clip-path: circle(90vh at 135% -10%);
            clip-path: circle(90vh at 135% -10%);
  }
  img.nav_background_img {
    margin-top: 80%;
    height: 200px;
  }
  .header_text .text {
    min-width: 380px;
    margin-left: 20%;
    margin-top: -40%;
  }
  .header_text .btn-group {
    margin-left: 20%;
  }
  .header_text .text span {
    font-size: 1.8rem;
  }
  .header_text .text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1300px) and (min-width: 1000px) {
  .nav_background {
    width: 99vw;
    -webkit-clip-path: circle(90vh at 85% -5%);
            clip-path: circle(90vh at 85% -5%);
  }
  img.nav_background_img {
    margin-right: 5rem;
    height: 250px;
  }
}
/*# sourceMappingURL=other-header.css.map */




/* comment part  */


.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 100%;
}

.comment input {
  font-size: 20px;
  padding: 10px;
  border: 2px solid gray;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-radius: 10px;
  background: transparent;
}

.comment input:focus {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.comment  {
  min-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button {
  font-size: 20px;
  padding: 5px 20px;
  margin: 5px;
  border: none;
  outline: none;
  border-radius: 5px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-transition: all .3s easy;
  transition: all .3s easy;
}

.comment input[type="submit"] {
  background: var(--radial-gradient);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}



/* show comment  */

.comment_show{
  position: relative;
  height: 100%;
  width: 100%; 
}

.comment_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:5px 5% ;
  border-bottom: 1px solid var(--text-color);
  padding: 10px;
}

.comment_header .right{
  height: 40px;
  width: 40px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative; 

}

.comment_header .right svg{
  position: absolute;
  width: 60%;
  height: 60%;
  fill: var(--text-color);
}

.comment_body{ 
  margin: 5px 10%; 
  display: flex; 
}

.comment_logo{
  height: 40px;
  width: 40px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 10px;
}

.comment_logo svg{
  position: absolute;
  width: 60%;
  height: 60%;
  fill: var(--text-color);
}

.comment_box{ 
  transform: translateX(20px); 
  padding: 10px; 
}
 
.comment_box p{ 
  word-break: break-all;
}




















