﻿@charset "UTF-8";
@import url("/assets/fonts/roboto/font-roboto.css");
@import url("/assets/fonts/roboto/font-roboto.css");
@media only screen and (min-width: 1200px) {
  .container {
    min-width: 80%; } }

/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình ipad hiển thị theo chiều ngang (Landscape)****/
/****Màn hình desktop loại bé****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
/*@mixin mobile {
    @media(max-width: 767px) {
        @content
    }
}


@mixin ipad {
    @media(min-width: 768px) and (max-width:1024px) {
        @content
    }
}
@mixin tablet {
    @media only screen and (max-width: 1200px) {
        @content
    }
}

@mixin ipad {
    @media only screen and (max-width:1024px) {
        @content
    }
}

@mixin ipad-port {
    @media only screen and (max-width:992px) {
        @content
    }
}

@mixin mobile {
    @media only screen and (max-width:769px) {
        @content
    }
}

@mixin ipadSmPort {
    @media only screen and (max-width:600px) {
        @content
    }
}

@mixin mobile-small {
    @media only screen and (max-width: 577px) {
        @content
    }
}

@mixin iphonePlus {
    @media only screen and (max-width: 415px) {
        @content
    }
}

@mixin iphone {
    @media only screen and (max-width: 376px) {
        @content
    }
}

@mixin mobileSm {
    @media only screen and (max-width: 376px) {
        @content
    }
}

@mixin onlyTablet {
    @media (min-width: 1025px) and (max-width: 1200px) {
        @content
    }
}

@mixin onlyIpad {
    @media (min-width: 992px) and (max-width:1024px) {
        @content
    }
}

@mixin onlyIpad-port {
    @media (min-width: 769px) and (max-width:992px) {
        @content
    }
}

@mixin onlyMobile {
    @media (min-width: 577px) and (max-width:769px) {
        @content
    }
}

@mixin onlyMobile-small {
    @media (max-width: 577px) {
        @content
    }
}
@mixin mobile {
    @media (max-width: 600px) {
        @content;
    }
}



@mixin desktop {
    @media (min-width:768px) and (max-width: 1024px) {
        @content;
    }
}

@mixin desktop-up {
    @media (min-width: 1800px) {
        @content;
    }
}*/
ul, li {
  list-style: none; }

body {
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px; }

p {
  margin: 0 auto; }

a:hover {
  text-decoration: none; }

#p-GioiThieu {
  min-height: calc(100vh - 92px); }

.title {
  margin-bottom: 20px;
  text-align: center; }
  .title h4 {
    text-transform: uppercase;
    font-family: Roboto;
    color: #52915a; }

h5 {
  font-family: 'Roboto Condensed';
  margin-bottom: 10px;
  color: #52915a; }

.title-both {
  position: relative; }
  .title-both:before {
    content: "";
    width: 60%;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #657FAD; }
  .title-both h4 {
    display: inline-block;
    background-color: white;
    position: relative;
    z-index: 2;
    padding: 0 1rem; }

.banner {
  height: 150px;
  overflow: hidden; }
  .banner img {
    filter: brightness(0.7) contrast(1.3);
    transform: translate(0, -55%);
    width: 100%; }
  .banner h1 {
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Roboto;
    text-transform: uppercase;
    color: #efeaea; }

.content p {
  font-size: 18px;
  color: #2c2c2c;
  font-weight: normal;
  padding: 40px; }

.overview {
  margin-top: 50px;
  margin-bottom: 30px; }
  .overview .content {
    border: 1px solid #dedede;
    text-align: center;
    padding: 45px 30px 30px;
    border-radius: 5px; }
    .overview .content .icon {
      width: 70px;
      height: 35px;
      margin: -34px auto 0 -35px;
      border: 1px solid #52915a;
      border-bottom: 1px solid #fff;
      border-radius: 50px 50px 0 0;
      position: relative;
      left: 50%;
      top: -45px; }
      .overview .content .icon i {
        width: 56px;
        height: 56px;
        background: #52915a;
        border-radius: 50%;
        line-height: 56px;
        text-align: center;
        color: #fff;
        font-size: 20px;
        margin: 7px 0 0;
        display: inline-block; }

.box-wrapper {
  margin-bottom: 30px;
  padding: 20px; }
  .box-wrapper .box {
    display: flex;
    /*        img {
            width: 35%;
            max-height: 250px;
        }*/ }
    .box-wrapper .box .content {
      padding: 0px 20px; }

/*** Img Border ***/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px; }

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 5px solid #657FAD; }

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  object-fit: cover; }

@media screen and (max-width: 340px) {
  .banner h1 {
    display: none; }
  .box-wrapper .box {
    display: block; }
  .content p {
    padding: 0px;
    padding-top: 15px; } }

@media screen and (min-width: 341px) and (max-width: 428px) {
  .banner h1 {
    display: none; }
  .box-wrapper .box {
    display: block; }
  .content p {
    padding: 0px;
    padding-top: 15px; } }

@media screen and (min-width: 429px) and (max-width: 447px) {
  .banner h1 {
    display: none; }
  .box-wrapper .box {
    display: block; }
  .content p {
    padding: 0px;
    padding-top: 15px; } }

@media screen and (min-width: 448px) and (max-width: 576px) {
  .banner h1 {
    display: none; }
  .box-wrapper .box {
    display: block; }
  .content p {
    padding: 0px;
    padding-top: 15px; } }

@media screen and (min-width: 577px) and (max-width: 768px) {
  .banner h1 {
    display: none; }
  .box-wrapper .box {
    display: block; }
  .content p {
    padding: 0px;
    padding-top: 15px; } }

@media screen and (min-width: 769px) and (max-width: 992px) {
  .banner h1 {
    display: none; }
  .box-wrapper .box {
    display: block; }
  .content p {
    padding: 0px;
    padding-top: 15px; } }

@media screen and (min-width: 993px) and (max-width: 1200px) {
  .banner h1 {
    top: 23%; } }

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .banner h1 {
    top: 23%; } }
