/*
Name : style.css
Type : Default Style
*/

/* FONT LOAD
----------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Bangers&subset=vietnamese");
@font-face {
  font-family: ocra-std;
  src: url("../fonts/ocra-std.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: ocra-ext;
  src: url("../fonts/ocra-ext.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

/* SKELTON STRUCTURE
----------------------------------*/
body {
  font-family: "ocra-std";
  font-size: 13px;
  overflow: hidden;
  background: #d8c5b7;
  /*background: #D8C5B7 url(../images/bg.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;

  	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
}
textarea {
  resize: none;
}
audio,
canvas,
progress,
video {
  display: inline;
  width: 100%;
}
*:focus {
  outline: 0 !important;
}
.no-bg {
  background: none !important;
}

/* MARGIN PADDING DEFAULT
----------------------------------*/
.no-margin {
  margin: 0 !important;
}
.no-ml {
  margin-left: 0 !important;
}
.no-mr {
  margin-right: 0 !important;
}
.no-mt {
  margin-top: 0 !important;
}
.no-mb {
  margin-bottom: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-pl {
  padding-left: 0 !important;
}
.no-pr {
  padding-right: 0 !important;
}
.no-pt {
  padding-top: 0 !important;
}
.no-pb {
  padding-bottom: 0 !important;
}

/* HEADING TAG STYLE
----------------------------------*/
h1 {
  font-size: 54px;
  margin-bottom: 10px;
}
h2 {
  font-size: 23px;
  margin-bottom: 10px;
}

/* BUTTON THEMES STYLE
----------------------------------*/
.btn {
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.btn-grey {
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px;
  background: #dfdfdf;
  color: #898989;
  height: 41px;
  width: 130px;
}
.btn-grey:hover {
  background: linear-gradient(180deg, #faae3c 0%, #f3bc2d 100%);
  color: #fff;
  border: 1px solid;
}

/* BORDER THEMES STYLE
----------------------------------*/
.no-border {
  border: none !important;
}

/* MAIN WRAPPER STYLE
----------------------------------*/
.main-wrapper {
  padding: 0;
  margin: 0;
}
.container {
  position: relative;
  z-index: 1;
  width: 1070px;
}

/* ANIMATION STYLE
----------------------------------*/
.fade-up {
  transform: translateY(150px);
  animation: fade-up 1.3s ease forwards;
}
@keyframes fade-up {
  to {
    transform: translateY(0);
  }
}
.fade-bottom {
  transform: translateY(-150px);
  animation: fade-bottom 1.3s ease forwards;
}
@keyframes fade-bottom {
  to {
    transform: translateY(0);
  }
}
.fade-left {
  transform: translateX(-150px);
  animation: fade-left 1.3s ease forwards;
}
@keyframes fade-left {
  to {
    transform: translateX(0);
  }
}
.fade-right {
  transform: translateX(150px);
  animation: fade-right 1.3s ease forwards;
}
@keyframes fade-right {
  to {
    transform: translateX(0);
  }
}
.fade-right-inverse {
  transform: translateX(1050px);
  animation: fade-right-inverse 1.3s ease forwards;
}
@keyframes fade-right-inverse {
  to {
    transform: translateX(450px);
  }
}

.fade-up-full {
  transform: translateY(0);
  animation: fade-up-full 1.3s ease forwards;
}
@keyframes fade-up-full {
  to {
    transform: translateY(-1000%);
  }
}
.fade-bottom-full {
  transform: translateY(0);
  animation: fade-bottom-full 1.3s ease forwards;
}
@keyframes fade-bottom-full {
  to {
    transform: translateY(300px);
  }
}

/* PANEL STYLE
----------------------------------*/
.bg-base {
  position: fixed;
  background-image: url(../images/bg.jpg);
  background-position: top center;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  top: 0;
  border: 0;

  -webkit-transition: background-image 0.5s ease;
  -moz-transition: background-image 0.5s ease;
  -o-transition: background-image 0.5s ease;
  transition: background-image 0.5s ease;
}
.bg-base.bg2 {
  background-image: url(../images/bg2.jpg);
}
.panel {
  position: relative;
  background-color: transparent;
  border: transparent;
  box-shadow: none;
}

/* CONTENT STYLE
----------------------------------*/
.logo {
  margin-bottom: 30px;
}
.mouse-scroll-style {
  width: 40px;
}
.wrap-text {
  font-size: 21px;
  line-height: 28px;
  background-color: #000;
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
}
.wrap-text.style2 {
  font-size: 19px;
  line-height: 23px;
  max-width: 250px;
}
.wrap-text.style3 {
  font-size: 16px;
  line-height: 19px;
  max-width: 250px;
}
.wrap-text.style4 {
  font-size: 12px;
  line-height: 18px;
  max-width: 370px;
}
.wrap-text.style5 {
  font-size: 17px;
  line-height: 19px;
  max-width: 250px;
}
.wrap-text.style6 {
  background-color: inherit;
  font-size: 13px;
  line-height: 18px;
  padding: 15px;
}
.wrap-text.style7 {
  background-color: inherit;
  font-size: 10px;
  line-height: 16px;
}
.wrap-text.style8 {
  display: none;
  background-color: inherit;
  color: #000;
  font-size: 12px;
  line-height: 15px;
}

.wrap-img {
  position: relative;
  display: inline-block;
  width: 100%;
}
.wrap-img .left {
  float: left;
  width: 50%;
}
.wrap-img .right {
  float: right;
  width: 50%;
}

.slide1 .content .wrap {
  position: fixed;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: top 0.8s ease 0s;
  transition: top 0.8s ease 0s;
}
.slide1 .content .wrap#anim-1.move {
  top: 30%;
}
.slide1 .content .wrap#anim-1.move-out {
  position: relative;
  top: -30%;
}

/*.slide2 .content {
	position: relative;
	height: 100vh;
}*/
.slide2 .content .wrap {
  position: fixed;
  bottom: -30%;
  left: 0;
  width: 100%;
  font-size: 18px;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide2 .content .wrap > div {
  margin-top: 15px;
}
.slide2 .content .wrap#anim-2.move {
  bottom: 30%;
}

.slide3 .content .wrap#anim-3 {
  position: fixed;
  bottom: -100%;
  left: 20%;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide3 .content .wrap#anim-3.move {
  bottom: 50%;
}
.slide3 .content .wrap#anim-3.move2 {
  bottom: 50%;
}
.slide3 .content .wrap#anim-3.move-out {
  bottom: -100%;
}

.slide4 .content .wrap#anim-4 {
  position: fixed;
  bottom: -100%;
  right: 20%;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide4 .content .wrap#anim-4.move {
  bottom: 30%;
}
.slide4 .content .wrap#anim-4.move-out {
  bottom: -100%;
}

.slide5 .content .wrap#anim-5 {
  position: fixed;
  bottom: -100%;
  left: 20%;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide5 .content .wrap#anim-5.move {
  bottom: 10%;
}
.slide5 .content .wrap#anim-5.move-out {
  bottom: -100%;
}

.slide6 .content .wrap#anim-6 {
  position: fixed;
  bottom: -100%;
  right: 20%;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide6 .content .wrap#anim-6.move {
  bottom: 60%;
}
.slide6 .content .wrap#anim-6.move2 {
  bottom: 60%;
}
.slide6 .content .wrap#anim-6.move-out {
  bottom: -100%;
}

.slide7 .content .wrap#anim-7 {
  position: fixed;
  bottom: -100%;
  left: 20%;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide7 .content .wrap#anim-7.move {
  bottom: 40%;
}
.slide7 .content .wrap#anim-7.move-out {
  bottom: -100%;
}

.slide8 .content .wrap#anim-8 {
  position: fixed;
  bottom: -100%;
  right: 20%;
  -webkit-transition: bottom 0.8s ease 0s;
  transition: bottom 0.8s ease 0s;
}
.slide8 .content .wrap#anim-8.move {
  bottom: 20%;
}
.slide8 .content .wrap#anim-8.move-out {
  bottom: -100%;
}

.slide9 .content .wrap {
  position: relative;
  top: 25px;
}
.slide9 .content .wrap img.style1 {
  display: none;
}
.slide9 .content .wrap img.style2 {
  display: none;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  left: -105px;
  right: 0;
  text-align: center;
}
.slide9 .content .wrap img.style3 {
  display: none;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 45%;
  left: 0;
  right: 0;
  text-align: center;
}
.slide9 .content .wrap img.style4,
.slide9 .content .wrap img.style5 {
  display: none;
}

.slide10 .content .wrap {
  position: relative;
  display: none;
}
.slide10 .content .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.slide10 .content .wrap .wrap-text {
  display: none;
  position: absolute;
  top: 23%;
  right: 18%;
}

.slide11 .content .wrap {
  position: relative;
  margin: 3% 15%;
}
.slide11 .content .wrap .wrap-text.style5 {
  display: none;
  margin-bottom: 10px;
}
.slide11 .content .wrap .wrap-img .left,
.slide11 .content .wrap .wrap-img .right {
  position: relative;
}
.slide11 .content .wrap .wrap-img .left img,
.slide11 .content .wrap .wrap-img .right img {
  display: none;
}
.slide11 .content .wrap .wrap-text.style6 {
  display: none;
  position: absolute;
  top: 0;
  width: 80%;
}
.slide11 .content .wrap .wrap-text.style7 {
  display: none;
  position: absolute;
  top: 10%;
  right: 0;
  width: 50%;
  padding: 20px;
}
.slide11 .content .wrap .wrap-text.style8 {
  display: none;
  position: absolute;
  top: 81%;
  right: 0;
  width: 50%;
  padding: 0;
}

.slide12 .content .wrap {
  margin: 3% 15%;
}
.slide12 .content .wrap .wrap-img .left,
.slide12 .content .wrap .wrap-img .right {
  position: relative;
}
.slide12 .content .wrap .wrap-img .left img,
.slide12 .content .wrap .wrap-img .right img {
  display: none;
}
.slide12 .content .wrap .wrap-img .left img {
  margin-left: 10%;
}
.slide12 .content .wrap .wrap-img .right img {
  margin-bottom: 25px;
}
.slide12 .content .wrap .wrap-img .left img.style2 {
  position: absolute;
  left: 4%;
  top: 2%;
}
.slide12 .content .wrap .wrap-img .left img.style2:nth-child(3) {
  top: 15%;
}
.slide12 .content .wrap .wrap-img .right img.style2 {
  position: absolute;
  right: 4%;
  top: 2%;
}
.slide12 .content .wrap .wrap-img .right img.style2:nth-child(4) {
  top: inherit;
  right: inherit;
  bottom: 0;
  left: 0;
  width: 44.5%;
}
.slide12 .content .wrap .wrap-img .right .wrap-text.style3 {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 100%;
  background: transparent;
  font-size: 12px;
  line-height: 16px;
  color: #000;
  padding: 0;
}

.slide13 .content .wrap {
  margin: 3% 15%;
}
.slide13 .content .wrap .wrap-img .left,
.slide13 .content .wrap .wrap-img .right {
  position: relative;
}
.slide13 .content .wrap .wrap-img .left img,
.slide13 .content .wrap .wrap-img .right img {
  display: none;
}
.slide13 .content .wrap .wrap-img .left img.style2 {
  position: absolute;
  right: 26%;
  top: 2%;
}
.slide13 .content .wrap .wrap-img .right img.style2 {
  position: absolute;
  top: 2%;
  left: 3%;
  width: 75%;
}
.slide13 .content .wrap .wrap-img .right img.style3 {
  position: absolute;
  top: 35%;
  left: 3%;
  width: 40%;
}

.slide14 .content .wrap {
  margin: 3% 15%;
}
.slide14 .content .wrap .wrap-img img {
  display: none;
}
.slide14 .content .wrap .wrap-img img.style2 {
  position: absolute;
  top: 10px;
  left: 10px;
}
.slide14 .content .wrap .wrap-img img.style3 {
  position: absolute;
  top: 15px;
  right: 15px;
}

.slide15 .content .wrap {
  margin: 3% 15%;
}
.slide15 .content .wrap .wrap-img img {
  display: none;
}
.slide15 .content .wrap .wrap-img img.style2 {
  position: absolute;
  top: 15px;
  left: 15px;
}
.slide15 .content .wrap .wrap-img img.style3 {
  position: absolute;
  top: 24%;
  right: 15px;
}

.slide16 .content .wrap {
  margin: 3% 15%;
}
.slide16 .content .wrap .wrap-img img {
  display: none;
}
.slide16 .content .wrap .wrap-img img.style1 {
  width: 90%;
}
.slide16 .content .wrap .wrap-img img.style2 {
  width: 90%;
  margin-top: 25px;
}
.slide16 .content .wrap .wrap-img img.style3 {
  position: absolute;
  left: 9%;
  bottom: 10%;
}
.slide16 .content .wrap .wrap-img img.style4 {
  position: absolute;
  right: 2%;
  bottom: -5%;
}

.slide17 .content .wrap {
  margin: 3% 15%;
}
.slide17 .content .wrap .wrap-img img {
  display: none;
}
.slide17 .content .wrap .wrap-img img.style1 {
  width: 90%;
}
.slide17 .content .wrap .wrap-img img.style2 {
  width: 90%;
  margin-top: 15px;
}
.slide17 .content .wrap .wrap-img img.style3 {
  position: absolute;
  top: 2%;
  left: 7%;
}
.slide17 .content .wrap .wrap-img img.style4 {
  position: absolute;
  right: 6%;
  bottom: 36%;
}

.slide18 .content .wrap {
  margin: 10% 15%;
}
.slide18 .content .wrap .wrap-img img {
  display: none;
}
.slide18 .content .wrap .wrap-img img.style1 {
  width: 100%;
}
.slide18 .content .wrap .wrap-img img.style2 {
  position: absolute;
  top: 5%;
  left: 3%;
}
.slide18 .content .wrap .wrap-img img.style3 {
  position: absolute;
  top: 33%;
  left: 3%;
}

.slide19 .content .wrap {
  margin: 10% 15%;
}
.slide19 .content .wrap .wrap-img img {
  display: none;
}
.slide19 .content .wrap .wrap-img img.style1 {
  width: 100%;
}
.slide19 .content .wrap .wrap-img img.style2 {
  position: absolute;
  top: 5%;
  left: 3%;
}
.slide19 .content .wrap .wrap-img img.style3 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -15%;
  margin: 0 auto;
}

.slide20 .content .wrap {
  margin: 10% 15%;
}
.slide20 .content .wrap .wrap-img img {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
}
.slide20 .content .wrap .wrap-img img.style2 {
  margin-top: 4%;
  width: 40%;
}

.slide21 .content .wrap {
  margin: 3% 15%;
}
.slide21 .content .wrap .wrap-img {
  height: 88vh;
}
.slide21 .content .wrap .wrap-img img {
  display: none;
}
.slide21 .content .wrap .wrap-img img.style1 {
  position: absolute;
  margin-top: 10%;
  left: 0;
  right: 0;
}
.slide21 .content .wrap .wrap-img img.style2 {
  position: absolute;
  /*margin-top: 5%;*/
  left: 0;
  z-index: 1;
}
.slide21 .content .wrap .wrap-img img.style3 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.slide22 .content .wrap {
  margin: 3% 15%;
}
.slide22 .content .wrap .wrap-img img {
  display: none;
}
.slide22 .content .wrap .wrap-img img.style1 {
  position: absolute;
  top: -80%;
  right: 0;
}

.slide23 .content .wrap {
  position: relative;
  /*top: 40%;*/
  left: 50%;
  transform: translate(-50%, 10%);
  -webkit-transition: top 0.8s ease 0s;
  transition: top 0.8s ease 0s;
  max-width: 504px;
}
.slide23 .content .wrap.move {
  position: fixed;
}
.slide23 .content .wrap.move-out {
  position: fixed;
  top: -20%;
}
.slide23 .content .wrap .wrap-img img {
  display: none;
}
.slide23 .content .wrap .wrap-img img.style1 {
  margin-top: 30%;
}
.slide23 .content .wrap .wrap-img img.style2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 9%;
}
.slide23 .content .wrap .wrap-img img.style3 {
  position: absolute;
  top: -5%;
  left: 0;
  right: 65%;
  bottom: 0;
  margin: 0 auto;
}
.slide23 .content .wrap .wrap-img img.style4 {
  position: absolute;
  bottom: 2%;
  right: 0;
  left: 90%;
  margin: 0 auto;
}
.slide23 .content .wrap .wrap-text.style5 {
  display: none;
  position: absolute;
  left: 15px;
  bottom: 25px;
  font-size: 12px;
  max-width: 150px;
}

.slide24 .content .wrap {
  margin: 10% 15%;
  text-align: center;
  display: none;
}
.slide24 .content .wrap .wrap-text {
  border: 5px solid #000;
  background: #fff;
  color: #000;
  font-size: 14px;
  padding: 15px;
}
.slide24 .content .wrap ul {
  list-style: none;
  margin: 15% 10% 5% 10%;
  text-align: center;
}
.slide24 .content .wrap ul > li {
  color: #000;
}
.slide24 .content .wrap ul > li:nth-child(odd) {
  text-transform: uppercase;
  font-size: 11px;
}
.slide24 .content .wrap ul > li:nth-child(even) {
  font-size: 16px;
  margin-bottom: 15px;
}
.slide24 .content .footer {
  position: relative;
  width: 100%;
  height: 33px;
  white-space: nowrap;
}
.slide24 .content .footer .left {
  width: 18%;
  display: inline-block;
}
.slide24 .content .footer .right {
  width: 15%;
  display: inline-block;
  text-align: right;
}
.slide24 .content .footer .center {
  width: 67%;
  display: inline-block;
  border-bottom: 1px solid #000;
}

/* OTHER STYLE
----------------------------------*/
.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

/* loading */
.loader-container {
  position: absolute;
  z-index: 1000;
  width: 100%;
  background: #fff;
  font-family: "Bangers", cursive;
  text-align: center;
}
.loader-container h4 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.5rem;
  position: relative;
}
.loader-container h4:after {
  position: absolute;
  content: "";
  animation: Dots 2s cubic-bezier(0, 0.39, 1, 0.68) infinite;
}
.loader-container .loader {
  margin: 5% auto 30px;
}
.loader-container .book {
  background: #fff;
  border: 4px solid #000;
  width: 60px;
  height: 45px;
  position: relative;
  perspective: 150px;
}
.loader-container .page {
  display: block;
  width: 30px;
  height: 45px;
  border: 4px solid #000;
  border-left: 3px solid #666;
  margin: 0;
  position: absolute;
  right: -4px;
  top: -4px;
  overflow: hidden;
  background: #eee;
  transform-style: preserve-3d;
  transform-origin: left center;
}
.loader-container .page:before {
  content: "";
  width: 55%;
  height: 40%;
  background: #eee;
  position: absolute;
  top: 10%;
  left: 20%;
  border-radius: 20%;
  z-index: 9;
}
.loader-container .page:after {
  content: "";
  width: 55%;
  height: 40%;
  background: #eee;
  position: absolute;
  top: 55%;
  left: 20%;
  border-radius: 20%;
  z-index: 9;
}
.loader-container .book .page:nth-child(1) {
  animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.6s infinite;
}
.loader-container .book .page:nth-child(2) {
  animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.45s infinite;
}
.loader-container .book .page:nth-child(3) {
  animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.2s infinite;
}
/* Page turn */
@keyframes pageTurn {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    background: #666;
    border-color: #666;
  }
  40% {
    background: #fff;
    transform: rotateY(-180deg);
  }
  100% {
    background: #fff;
    transform: rotateY(-180deg);
  }
}
/* Dots */
@-webkit-keyframes Dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
@keyframes Dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

/* socmed */
.socmed-section {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
.socmed {
  position: absolute;
  /*top: 10px;*/
  right: 15px;
  z-index: 10;
  list-style: none;
  display: none;
}
.icon-bisnis {
  list-style: none;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 10;
  width: 97%;
  /*display: none;*/
}
.socmed > li,
.icon-bisnis > li {
  display: inline-block;
  text-align: center;
  margin: 0 10px 0 0;
}
.icon-bisnis > li:nth-child(2) {
  float: right;
}
.socmed > li > a,
.icon-bisnis > li > a {
  color: #fff;
  font-size: 26px;
  line-height: 26px;
}
.socmed > li > a.fb {
  color: #1877f2;
}
.socmed > li > a.tw {
  color: #1da1f2;
  border: 3.5px solid #1da1f2;
  border-radius: 50%;
  font-size: 22px;
  line-height: 26px;
  position: relative;
  top: 5px;
  width: 28px;
  height: 28px;
  display: inline-block;
  overflow: hidden;
}
.socmed > li > a.tw:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 5px solid #1da1f2;
  position: absolute;
  left: -2px;
}

.socmed2 {
  margin: 0 !important;
  z-index: 10;
  list-style: none;
}
.socmed2 > li {
  display: inline-block;
  text-align: center;
  margin: 0 10px 0 0 !important;
}
.socmed2 > li > a {
  color: #000;
  font-size: 26px;
  line-height: 26px;
}
.socmed2 > li > a.fb {
  color: #000;
}
.socmed2 > li > a.tw {
  color: #000;
  border: 3px solid #000;
  border-radius: 50%;
  font-size: 22px;
  line-height: 26px;
  position: relative;
  top: 5px;
  width: 28px;
  height: 28px;
  display: inline-block;
  overflow: hidden;
}
.socmed2 > li > a.tw:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 5px solid #000;
  position: absolute;
  left: -2px;
}
