.notification-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
  background: #1ABC9C;
  text-align: center;
  color: #FFFFFF;
  font-family: sans-serif;
  font-weight: lighter;
  font-size: 14px;
  padding-bottom:0;
   margin: 0;
    padding: 0;
}


      .small {
  transform: scale(0.9, 0.9);
  -ms-transform: scale(0.9, 0.9); /* IE 9 */
  -webkit-transform: scale(0.9, 0.9); /* Safari and Chrome */
  -o-transform: scale(0.9, 0.9); /* Opera */
  -moz-transform: scale(0.9, 0.9); /* Firefox */
}


        .pricewrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -190px 0 0 -468px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 400;
            color: #9f9f9f;
            font-size: 15px;
        }

  .package {
            box-sizing: border-box;
            /*width: 301px;*/
            width:285px;
            /*width: 23%;*/
            height: 400px;
            /*height: 75%;*/
            border: 3px solid #e8e8e8;
            border-radius: 7px;
            display: inline-block;
            padding: 24px;
            text-align: center;
            float: left;
            -webkit-transition: margin-top 0.5s linear;
            transition: margin-top 0.5s linear;
            position: relative;
            margin-right: 11px;
            background: white;
            opacity: 0.8;

        }
        
        .package:hover {
            margin-top: -5px;
            -webkit-transition: margin-top 0.3s linear;
            transition: margin-top 0.3s linear;
            border: 3px solid #33c4b6;
        }
        
          .name {
            color: #565656;
            font-weight: 300;
            font-size: 3rem;
            margin-top: -5px;
        }
        
        .price {
            margin-top: 7px;
            font-weight: bold;
            padding-bottom: 18%;
        }
        
        .price::after {
            /*content: " / month per user";*/
            font-weight: normal;
        }
        
        hr {
            background-color: #dedede;
            border: none;
            height: 1px;
        }

        .trial li:hover,
        .trial li:focus-within {
        background: none;
        cursor: pointer;
        }

        
        .trial {
            font-size: .9rem;
            font-weight: 600;
            padding: 2px 21px 2px 21px;
            color: #33c4b6;
            border: 1px solid #3bc6b8;
            display: inline-block;
            border-radius: 15px;
            background-color: transparent;
            position: relative;
            bottom: -20px;
        }
        
        .price ul {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 29px;
        }
        
        .price li {
            margin-bottom: -15px;
            list-style-position: inside;
            text-indent: -2em;
            padding-left: 4em;

        }
        
        .trial li {
            margin-bottom: -15px;
            list-style-position: inside;
            text-indent: -2em;
            padding-left: 4em;

        }
        

        .brilliant li {
            margin-bottom: -15px;
            list-style-position: inside;
            text-indent: -2em;
            padding-left: 4em;

        }
        .checkIcon {
            font-family: "FontAwesome";
            content: "\f00c";
        }
        
        .price li::before {
            font-family: "FontAwesome";
            content: "\f00c";
            font-size: 1.3rem;
            color: #33c4b6;
            margin-right: 3px;
        }
        


        .price li:hover,
        .price li:focus-within {
        background: none;
        cursor: pointer;
        }

        .brilliant {
            border-color: #e8e8e8;
        }
        /* Triangle */
        
        .brilliant li:hover,
        .brilliant li:focus-within {
        background: none;
        cursor: pointer;
        }

        .brilliant::before {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 64px 64px 0 0;
            border-color: #3bc6b8 transparent transparent transparent;
            position: absolute;
            left: 0;
            top: 0;
            content: "";
        }
        
        .brilliant::after {
            font-family: "FontAwesome";
            content: "\f00c";
            color: white;
            position: absolute;
            left: 9px;
            top: 6px;
            text-shadow: 0 0 2px #37c5b6;
            font-size: 1.4rem;
        }

#menuToggle
{
  display: block;
  position: relative;
  top: 2vh;
  left: 2vh;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.1s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #2b5292;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

.responsive {  
    display: grid;  
    grid-gap: 5px;  
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(2, 100px);  
}

.responsive > div > img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    
}


#content-desktop {display: block;}
#content-mobile {display: none;}

@media screen and (max-width: 768px) {

#content-desktop {display: none;}
#content-mobile {display: block;}

}

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
/* 
  Paul Flavius - Ui017
  ===========================   
*/

.clearfix:before, .clearfix:after {
content: " "; display: table;
}

.clearfix:after {
clear: both;
}

.blankspace {
   padding: 500px 30px; 
   position: absolute;
   top: 0; 
   left: 0; 
}

.promo{
  width: 90%;
  /*max-width: 760px;*/
  margin: 0 auto;
  /*background-color: #F5F5F5;*/
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;

}

section.main-content{
  width: 50%;
  padding: 1.5%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}

section.main-content .bg-img{
  background: url('../images/single_pod4.jpg') no-repeat;
  /*background-size: cover;*/
  width: 100%;
  /*background: no-repeat;*/
  padding: 5% 3% 10%;

}

section.main-content:nth-child(2){
  padding:2.5% 3% 1.5%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

section.main-content .bg-img h1{
  font-family: 'Permanent Marker', cursive;
  color:#FFF;
  font-size: 2.5em;
  font-size: 6vmax;
  letter-spacing: 15px;
}

section.main-content .bg-img p{
  margin: 55% 0 0;
  position: relative;
  top: 0;
  left: 0;
  color: #FFF;
  font-weight: 400;
  font-size: 1.3em;
}

section.main-content .bg-img p:before{
  content: "";
  /*background: #ED6A4C;*/
  height: 3px;
  width: 10%;
  position: absolute;
  top:-10px;
  left: 0;
}

section.main-content .info-section{
  width: 100%;
}

section.main-content .info-section .informational-info{
  margin: 5% 0 0;
}

section.main-content .info-section .informational-info h1{
  color: #00a500;
  font-size: 7vw;
  float: left;
}

section.main-content .info-section .informational-info h1 span{
  color: #00a500;
  font-size: 6vw;
  display: block;
  float: left;
}

section.main-content .info-section .informational-info h2{
  font-size: 1.5vw;
  clear: left;
}

section.main-content .info-section .informational-info.clock{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content:space-around;
      -ms-flex-pack:distribute;
          justify-content:space-around;
  padding: 4% 0;
}

section.main-content .info-section .informational-info.clock .clock-digits p{
  font-size: 1.3em;
  color: #9D9E9A;
}

section.main-content .info-section .informational-info.clock .clock-digits p span.underline{
  margin: 0 0 0 0;
  border-bottom: 3px solid #CECECD;
  color: #ED6A4C;
  font-weight: 700;
}

section.main-content .info-section .informational-info.txt p{
  line-height: 140%;
}

section.main-content .info-section .informational-info.txt p + p{
  margin: 5% 0 0;
}

section.main-content .info-section .informational-info.button-section{
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

section.main-content .info-section .informational-info.button-section a.button{
  padding: 2% 3.5%;
  /*background:#000;*/
  color: #FFF;
}

.strikethrough {
  position: relative;
}
.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 6px solid #ed6a4c!important;
  border-color: inherit;

  -webkit-transform:rotate(-5deg);
  -moz-transform:rotate(-5deg);
  -ms-transform:rotate(-5deg);
  -o-transform:rotate(-5deg);
  transform:rotate(-5deg);
}




.cards {
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1%;
   /*font: 1em/1.4 Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;*/
   font: 1em/1.4 Verdana;
}

.card {

}

img {
  max-width: 100%;
}

.cards {
  margin: 0 auto;
  max-width: 90%;
}

.card {
  background-color: #fff;
  /*box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);*/
  /*box-shadow:1px 1px 5px 0 rgba(0,0,0,.12);*/
  /*border: 1px;*/
  border: 5px solid #f5f5f5;
}

.card header {
  padding: 10px;
  background-color: white;
    color: #06a5cf;

}

.card header .card h2 {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.card .body {
  padding: 10px;
  font-size: .9rem;
  color: #757575;
  margin-top: 8px  ;
}

 .accordion .accordion-item {
   border-bottom: 1px solid #e5e5e5;
}
 .accordion .accordion-item button[aria-expanded='true'] {
   border-bottom: 1px solid #03b5d2;
}
 .accordion button {
   position: relative;
   display: block;
   text-align: left;
   width: 100%;
   padding: 1em 0;
   color: #7288a2;
   font-size: 1.15rem;
   font-weight: 400;
   border: none;
   background: none;
   outline: none;
}
 .accordion button:hover, .accordion button:focus {
   cursor: pointer;
   color: #03b5d2;
}
 .accordion button:hover::after, .accordion button:focus::after {
   cursor: pointer;
   color: #03b5d2;
   border: 1px solid #03b5d2;
}



 .accordion button .accordion-title {
   padding: 1em 1.5em 1em 0;
}
 .accordion button .icon {
   display: inline-block;
   position: absolute;
   top: 18px;
   right: 0;
   width: 22px;
   height: 22px;
   border: 1px solid;
   border-radius: 22px;
}
 .accordion button .icon::before {
   display: block;
   position: absolute;
   content: '';
   top: 9px;
   left: 5px;
   width: 10px;
   height: 2px;
   background: currentColor;
}
 .accordion button .icon::after {
   display: block;
   position: absolute;
   content: '';
   top: 5px;
   left: 9px;
   width: 2px;
   height: 10px;
   background: currentColor;
}
 .accordion button[aria-expanded='true'] {
   color: #03b5d2;
}
 .accordion button[aria-expanded='true'] .icon::after {
   width: 0;
}
 .accordion button[aria-expanded='true'] + .accordion-content {
   opacity: 1;
   max-height: 9em;
   transition: all 200ms linear;
   will-change: opacity, max-height;
}
 .accordion .accordion-content {
   opacity: 0;
   max-height: 0;
   overflow: hidden;
   transition: opacity 200ms linear, max-height 200ms linear;
   will-change: opacity, max-height;
}
 .accordion .accordion-content p {
   font-size: 1rem;
   font-weight: 300;
   margin: 2em 0;
}
 


.footer-distributed{
  background: #666;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 25px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
  width: 40%;
  /*padding-left: 30px;*/
}

/* The company logo */

.footer-distributed h3{
  color:  #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-distributed h3 span{
  color:  #409ae7;
}

/* Footer links */

.footer-distributed .footer-links{
  color:  #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}

.footer-distributed .footer-company-name{
  color:  #222;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
  width: 35%;
  /*padding-left: -0px;*/
}

.footer-distributed .footer-center i{
  background-color:  #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  lightseagreen;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}


/* Footer Right */

.footer-distributed .footer-right{
  width: 20%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons{
  margin-top: 25px;
}

.footer-distributed .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

  .footer-distributed{
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i{
    margin-left: 0;
  }

}


.navbar a {
  text-decoration: none;
}

.navbar nav {
  font-family: Verdana;
}

.navbar ul {
  background: darkorange;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.navbar li {
  color: #fff;
  background: transparent;
  display: block;
  float: left;
  padding: 1rem;
  position: relative;
  text-decoration: none;
  /*transition-duration: 0.5s;*/
  transition-duration: 0s;
}
  
.navbar li a {
  color: black;
}

.navbar li:hover,
.navbar li:focus-within {
  background: #e0d4e9;
  cursor: pointer;
}

.navbar li:focus-within .navbar a {
  outline: none;
}

.navbar ul li ul {
  background: white;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  /*transition: all 0.5s ease;*/
    transition: all 0s;
  margin-top: 1rem;
  left: 0;
  display: none;
    width: 140px;
}

.navbar ul li:hover > ul,
.navbar ul li:focus-within > ul,
.navbar ul li ul:hover,
.navbar ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block
}

.navbar ul li ul li {
  clear: both;
  width: 100%;
}


.contacts-row {
    display: flex;
    width: 500px;
    margin-bottom: 25px;
    color: #00000;
    margin-left:20px;
}

.dots {
    display: block;
    background: radial-gradient(circle, rgba(0,0,0,.62) 1px, transparent 1px) repeat-x;
    background-size: 20px 28px;
    flex-grow: 10;
}


.top-left {
  position: absolute;
  margin-top:7%;
  /*top: 35px;*/
  top: 10%;
  /*left: 110px;*/
  left: 10%;
  font-size:18px;
}


#major {
    width: 100%;
    /*border: 1px solid black;*/
}

#one {
    width: 50%;
    float: left;
    height: 50%;
}

#two {
    width:50%;
    float: right;
    background-color: transparent;
    height: 50%;
}

.container2{
  margin: 0px auto;
  text-align: center;
  perspective: 600px;
}

.paybutton button{
  font-size: 18px;
  font-family: 'Open Sans'
  line-height: 30px;
  padding: .418em 1em;
  border-radius: 10px 10px 12px 12px;
  box-shadow:
    0px 8px 0px 0px #2980b9, /* button thickness */
    0px 0 20px rgba(255,255,255,.2) inset, /* inner glow */
    2px 0px 0px rgba(255,255,255,.1) inset, /* sublte reflection */
    /*2px 2px 0px -10px #000; */
    /* dark shadow underneath */
  border: 1px solid #2980b9;
  cursor: pointer;
  background: #3498db;
  color: #ecf0f1;
  text-shadow: 1px 1px 1px #34495e;
  transform: rotateX(5deg);
  margin: 2px 10px;
  width: 180px;
  text-align: left;
}
.paybutton button i{
  padding-right: 17px;
  transform: scale(1.1) translate(0,-1px);
}
.paybutton button:hover{
  margin-top: 5px;
  margin-bottom: 5px;
  /*
  box-shadow:
    0px 2px 0px 0px #2980b9,
    0px 0 50px rgba(134, 243, 255, 1) inset,
    5px 28px 0px rgba(255,255,255,.15) inset,
    0px 0px 30px rgba(134,243,255,.2),
    5px 15px 30px -10px #000; */
  
  color: #fff;
  /*filter: saturate(1.5);*/
}
.paybutton button:hover i{
  transform: rotate(-12deg) translate(1px, -3px) scale(1.2);
}
.paybutton button:active{
  /*margin-top: 18px;*/
  
}
.paybutton button:active i{
  transform: rotate(-22deg) translate(2px, -5px) scale(1.3);
}

.example_f {
   border-radius: 4px;
   background: #009600  ;
   border: none;
   color: #FFFFFF;
   text-align: center;
   /*text-transform: small-caps;*/
    font-variant: small-caps;
   font-size: 20px;
   padding: 13px;
   width: 200px;
   transition: all 0.4s;
   cursor: pointer;
   margin: 5px;
   margin-left:150px;

 }
 .example_f span {
   cursor: pointer;
   display: inline-block;
   position: relative;
   transition: 0.4s;
 }
 .example_f span:after {
   content: '\00bb';
   position: absolute;
   opacity: 0;
   top: 0;
   right: -20px;
   transition: 0.5s;
 }
 .example_f:hover span {
   padding-right: 25px;
 }
 .example_f:hover span:after {
   opacity: 1;
   right: 0;
 }

/* desktop */
.heroimage section {
  width: 100%;
  height: 90%;
  /*background: #ccc;*/
  margin: 0;
  padding: 0;
}

.slide-show-container {
  height: 90%;
  width: 100%;
  position: relative;
}
/* CSS Styles in common for all slides */
.wrapper-one,
.wrapper-two,
.wrapper-three {
  background-color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* CSS Styles for each slide */
/* Just add the image as background attribute and add some animation */

.wrapper-one {
    /*background-image: 
    linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),
    url("../images/heroimage1.jpg");*/
    background-image: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../images/heroimage1.jpg");
    background-size: 100% 100%;
}

.wrapper-two {
  background-image: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../images/heroimage6.jpg");
    background-size: 100% 100%;
  animation: slideTwoAnim 10s infinite;
}

.wrapper-three {
  background-image: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../images/heroimage11.jpg");
    background-size: 100% 100%;
  animation: slideThreeAnim 10s infinite;
}

/* Styles for the text */
.wrapper-text {
  font: 700 40px/1.4 Roboto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 35%;
  color: white;
  opacity: 1
}

/* mobile */
.heroimage2 section {
  width: 100%;
  height: 30vh;
  /*background: #ccc;*/
  margin: 0;
  padding: 0;
}

.slide-show-container2 {
  height: 30vh;
  width: 100%;
  position: relative;
}
/* CSS Styles in common for all slides */
.wrapper-one2,
.wrapper-two2,
.wrapper-three2 {
  background-color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* CSS Styles for each slide */
/* Just add the image as background attribute and add some animation */

.wrapper-one2 {
    /*background-image: 
    linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),
    url("../images/heroimage1.jpg");*/
    background-image: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../images/heroimage1.jpg");
    background-size: 100% 100%;
}

.wrapper-two2 {
  background-image: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../images/heroimage6.jpg");
    background-size: 100% 100%;
  animation: slideTwoAnim 10s infinite;
}

.wrapper-three2 {
  background-image: 
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("../images/heroimage11.jpg");
    background-size: 100% 100%;
  animation: slideThreeAnim 10s infinite;
}

/* Styles for the text */
.wrapper-text2 {
  font: 700 5.5vw/1.4 Roboto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20vh;
  text-align: center;
  color: white;
  opacity: 1;
  margin-left: 5%;
  margin-right: 5%;
}

/* Animations */
@keyframes slideTwoAnim {
    0%{opacity:0;}
    17%{opacity:0;}
    33%{opacity:1;}
    50%{opacity:1;}
    67%{opacity:0;}
    100%{opacity:0;}
}

@keyframes slideThreeAnim {
    0%{opacity:0;}
    50%{opacity:0;}
    67%{opacity:1;}
    83%{opacity:1;}
    100%{opacity:0;}
}  
  
/* mobile header */



/* mobile header end */

/* Float four columns side by side */
.columnreview {
  float: left;
  width: 270px;
  padding: 0 20px;
}

/* Remove extra left and right margins, due to padding */
.rowreview {margin: 0 5%;}

/* Clear floats after the columns */
.rowreview:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 700px) {
  .columnreview {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.cardreview {
  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
  padding: 16px;
  text-align: center;
  /*background-color: #f1f1f1;*/

  /*margin: auto;*/
  /*box-shadow: 0 0 15px 5px rgba(0, 0, 0, .07);*/
  background-color: #fff;
  border: 5px solid #f5f5f5;
  height: 325px;
}


.menu,
.nav-icon span {
  transition: all .3s ease-in-out
}

.menu .nav-menu li a,
.nav-menu li a {
  line-height: 56px
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.effectTab-header .caption,
.effectTab-header .title {
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #555;
  margin: 0 0 20px;
  text-align: center;
  text-transform: uppercase
}

.effectTab-header .title {
  font-size: 36px;
  font-family: Oswald, sans-serif
}

.effectTab-header .caption {
  font-size: 30px;
  font-family: 'Open Sans', sans-serif
}

.column-1,
.column-10,
.column-11,
.column-12,
.column-2,
.column-3,
.column-4,
.column-5,
.column-7,
.column-8,
.column-9 {
  float: left;
  padding: 15px
}

.effectTab-header .title::after,
.effectTab-header .title::before {
  position: absolute;
  background: linear-gradient(to right, #ed6ea0 0, #ec8c69 100%);
  content: ""
}

.effectTab-header .title::before {
  left: 0;
  width: 156%;
  height: 3px;
  margin-left: -28%;
  bottom: -1.5px
}

.effectTab-header .title::after {
  left: 50%;
  width: 25px;
  height: 25px;
  bottom: -26px;
  margin: 0 0 0 -10px;
  -webkit-clip-path: polygon(75% 0, 75% 69%, 41% 93%, 0 68%, 0 0);
  clip-path: polygon(75% 0, 75% 69%, 41% 93%, 0 68%, 0 0)
}

body {
  /*background-color: #F5F5F5;*/
  background-image: url(https://www.scalsys.com/backgrounds/light-gray-background-texture/light-gray-background-texture_699054.jpg);
  filter: alpha(opacity=10);
    background-attachment: fixed;
}

.column-1 {
  width: 8.333333333333333%
}

.column-2 {
  width: 16.66666666666667%
}

.column-3 {
  width: 25%
}

.column-4 {
  width: 43.33333333333333%
}

.column-5 {
  width: 41.66666666666667%
}

.column-6 {
  width: 50%;
  float: left;
  padding: 15px
}

.column-7 {
  width: 58.33333333333333%
}

.column-8 {
  width: 56.66666666666667%
}

.column-9 {
  width: 75%
}

.column-10 {
  width: 83.33333333333333%
}

.column-11 {
  width: 91.66666666666667%
}

.column-12,
.wrapper-full {
  width: 100%
}

.nav-icon,
.navigation {
  float: right
}

.custom-row::after {
  content: "";
  display: table;
  clear: both
}

.wrapper {
  max-width: 1340px;
  margin: 0 auto;
  position: relative
}

.header {
  background-color: #485666;
  padding: 8px 0;
  position: static;
  z-index: 2000
}

.header h1 {
  color: #fff;
  font-weight: 400;
  font-size: 2.2rem;
  padding-left: 40px
}

.rotate {
  position: absolute;
  transform: rotate(-20deg);
  left: 0;
  font-size: 2.8rem;
  top: 5px
}

.ex_padd {
  padding-top: 170px!important
}

.nav-icon-container {
  display: block
}

.nav-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  z-index: 100
}

.nav-icon span {
  width: 60%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%)
}

.nav-icon-1 {
  top: 30%
}

.nav-icon-2 {
  top: 50%
}

.nav-icon-3 {
  top: 70%
}

.nav-icon.active .nav-icon-1 {
  top: 50%;
  transform: rotate(45deg);
  left: 22%
}

.nav-icon.active .nav-icon-3 {
  top: 50%;
  transform: rotate(-45deg);
  left: 22%
}

.nav-icon.active .nav-icon-2 {
  width: 0
}

.nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around
}

.nav-menu li {
  list-style: none;
  position: relative
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0 20px
}

.nav-menu li:after,
.nav-menu li:before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: rgba(255, 255, 255, .2);
  bottom: 0;
  width: 0;
  transition: all .3s ease-in-out
}

.nav-menu li:before {
  left: 0
}

.nav-menu li:after {
  right: 0
}

.nav-menu li:hover:after,
.nav-menu li:hover:before {
  width: 50%
}

.nav-menu li.active:after,
.nav-menu li.active:before {
  background-color: rgba(0, 128, 128, 1)
}

.menu {
  width: 200px;
  background-color: #0B466C;
  text-align: center;
  padding: 40px;
  position: fixed;
  top: 96px;
  right: -200px;
  overflow: scroll;
  height: calc(100% - 96px);
  z-index: 1000
}

.menu.active {
  right: 0
}

.menu .nav-menu {
  flex-direction: column;
  width: 150px
}

.menu .nav-menu li {
  margin: 10px 0;
  width: 80%
}

.box-tab {
  margin: 10px 0
}

.effect {
  margin: auto;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, .07);
  background-color: #fff;
  border: 5px solid #f5f5f5
}

.tab-container {
  padding: 50px 0
}

.tab-head {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto
}

.tab .effect {
  position: relative;
  overflow: hidden;
  max-height: 280px;
  max-width: 650px;
  background: #3085a3;
  text-align: center;
  cursor: pointer
}

.grid-width3,
.grid-width6 {
  max-height: 270px!important;
  max-width: 650px!important
}

.grid-width8 {
  max-width: 700px!important
}

.tab .effect img {
  position: relative;
  display: block;
  min-height: 100%;
  opacity: .8
}

.tab .effect .tab-text {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.tab-text h2 {
  color: #fff;
  margin: 0;
  font-size: 1.5rem
}

.tab-text p {
  color: #fff;
  margin: 0;
  font-size: 1rem
}

.hide {
  display: none
}

@media (max-width:575px) {
  .column-xs-1,
  .column-xs-10,
  .column-xs-11,
  .column-xs-12,
  .column-xs-2,
  .column-xs-3,
  .column-xs-4,
  .column-xs-5,
  .column-xs-7,
  .column-xs-8,
  .column-xs-9 {
    float: left;
    padding: 15px
  }
  .column-xs-1 {
    width: 8.333333333333333%
  }
  .column-xs-2 {
    width: 16.66666666666667%
  }
  .column-xs-3 {
    width: 25%
  }
  .column-xs-4 {
    width: 33.33333333333333%
  }
  .column-xs-5 {
    width: 41.66666666666667%
  }
  .column-xs-6 {
    width: 50%;
    float: left;
    padding: 15px
  }
  .column-xs-7 {
    width: 58.33333333333333%
  }
  .column-xs-8 {
    width: 66.66666666666667%
  }
  .column-xs-9 {
    width: 75%
  }
  .column-xs-10 {
    width: 83.33333333333333%
  }
  .column-xs-11 {
    width: 91.66666666666667%
  }
  .column-xs-12 {
    width: 100%
  }
  .hide-xs {
    display: none
  }
  .effectTab-header .title::before {
    width: 125%;
    left: 15%
  }
  .tab-container {
    padding-top: 25px;
    padding-bottom: 25px
  }
}

@media (min-width:576px) and (max-width:767px) {
  .column-sm-1,
  .column-sm-10,
  .column-sm-11,
  .column-sm-12,
  .column-sm-2,
  .column-sm-3,
  .column-sm-4,
  .column-sm-5,
  .column-sm-7,
  .column-sm-8,
  .column-sm-9 {
    float: left;
    padding: 15px
  }
  .column-sm-1 {
    width: 8.333333333333333%
  }
  .column-sm-2 {
    width: 16.66666666666667%
  }
  .column-sm-3 {
    width: 25%
  }
  .column-sm-4 {
    width: 33.33333333333333%
  }
  .column-sm-5 {
    width: 41.66666666666667%
  }
  .column-sm-6 {
    width: 50%;
    float: left;
    padding: 15px
  }
  .column-sm-7 {
    width: 58.33333333333333%
  }
  .column-sm-8 {
    width: 66.66666666666667%
  }
  .column-sm-9 {
    width: 75%
  }
  .column-sm-10 {
    width: 83.33333333333333%
  }
  .column-sm-11 {
    width: 91.66666666666667%
  }
  .column-sm-12 {
    width: 100%
  }
  .hide-sm {
    display: none
  }
  .visible-sm {
    display: block
  }
  .tab-container {
    padding-top: 25px;
    padding-bottom: 25px
  }
}

@media (max-width:1000px) {
  .header h1 {
    padding-left: 70px
  }
  .rotate {
    left: 30px
  }
  @media (min-width:768px) and (max-width:991px) {
    .column-md-1,
    .column-md-10,
    .column-md-11,
    .column-md-12,
    .column-md-2,
    .column-md-3,
    .column-md-4,
    .column-md-5,
    .column-md-7,
    .column-md-8,
    .column-md-9 {
      float: left;
      padding: 15px
    }
    .column-md-1 {
      width: 8.333333333333333%
    }
    .column-md-2 {
      width: 16.66666666666667%
    }
    .column-md-3 {
      width: 25%
    }
    .column-md-4 {
      width: 33.33333333333333%
    }
    .column-md-5 {
      width: 41.66666666666667%
    }
    .column-md-6 {
      width: 50%;
      float: left;
      padding: 15px
    }
    .column-md-7 {
      width: 58.33333333333333%
    }
    .column-md-8 {
      width: 66.66666666666667%
    }
    .column-md-9 {
      width: 75%
    }
    .column-md-10 {
      width: 83.33333333333333%
    }
    .column-md-11 {
      width: 91.66666666666667%
    }
    .column-md-12 {
      width: 100%
    }
    .hide-md {
      display: none
    }
    .visible-md {
      display: block
    }
  }
}

.effect.effect-one {
  background: #18a367;
  position: relative
}

.effect.effect-one .tab-text {
  padding: 1em
}

.effect.effect-one .tab-text::after,
.effect.effect-one .tab-text::before {
  position: absolute;
  content: '';
  opacity: 0
}


/*.effect.effect-one .tab-text::before {
  top:30px;
  right: 30px;
  bottom: 50px;
  left: 30px;
  border-top: 2px solid rgba(255, 255, 255, .3);
  border-bottom: 2px solid rgba(255, 255, 255, .3);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0
}

*/

/*.effect.effect-one .tab-text::after {
  top: 30px;
  right: 50px;
  bottom: 30px;
  left: 50px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0
}


*/
.effect.effect-one .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 14px;
  width: 100%;
  left: 0;
  text-align: center
}

.effect.effect-one .icons-block .social-icon-1,
.effect.effect-one .icons-block .social-icon-2,
.effect.effect-one .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-one:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-one:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-one:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-one .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem
}

.effect.effect-one h2 {
  padding-top: 20%;
  -webkit-transition: -webkit-transform .35s;
  transition: transform .35s;
  font-weight: 600;
  font-size: 1.7rem;
  font-family: Oswald, sans-serif
}`

.effect.effect-one p,
.effect.effect-two h2,
.effect.effect-two p.description {
  font-family: Poppins
}

.effect-one .pt-1 {
  padding-top: 8%!important
}

.effect-one .pt-2 {
  padding-top: 16%!important
}

.effect-one .pt-3 {
  padding-top: 28%!important
}

.effect.effect-one p {
  padding: .5em 2.7em;
  text-transform: none;
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  font-size: .92rem;
  line-height: 16px;
  color: rgba(255, 255, 255, .9)
}

.effect.effect-one h2,
.effect.effect-one img {
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0)
}

.effect.effect-one .tab-text::after,
.effect.effect-one .tab-text::before,
.effect.effect-one img,
.effect.effect-one p {
  -webkit-transition: opacity .35s, -webkit-transform .35s;
  transition: opacity .35s, transform .35s
}

.effect.effect-one:hover img {
  opacity: .1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0) scale(1.1, 1.1)
}

.effect.effect-one:hover .tab-text::after,
.effect.effect-one:hover .tab-text::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1)
}

.effect.effect-one:hover h2,
.effect.effect-one:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.effect.effect-one:hover .tab-text::after,
.effect.effect-one:hover h2,
.effect.effect-one:hover img,
.effect.effect-one:hover p {
  -webkit-transition-delay: .15s;
  transition-delay: .15s
}

.effect.effect-two .tab-text {
  top: auto;
  bottom: 0;
  padding: 1em;
  height: 3.75em;
  background: rgba(241, 169, 1, .95);
  color: #3c4a50;
  -webkit-transition: -webkit-transform .35s;
  transition: transform .35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0)
}

.effect.effect-two .col3 {
  height: 5.5rem!important
}

.effect.effect-two h2 {
  float: left;
  font-size: 1.1rem;
  font-weight: 600;
  word-break: break-all;
  width: 50%;
  text-align: left;
  display: inline-block
}

.effect-two .col3-head {
  width: 100%!important;
  padding-bottom: 10px
}

.effect-two .icon-links a {
  font-size: 1.2rem!important
}

.effect.effect-two p.icon-links a {
  float: right;
  color: #f1f8ff;
  font-size: 1.4em;
  line-height: 20px
}

.effect.effect-two:hover p.icon-links a:focus,
.effect.effect-two:hover p.icon-links a:hover {
  color: #252d31
}

.effect.effect-two p.description {
  position: absolute;
  font-size: 1rem!important;
  bottom: 7em;
  color: #fff;
  text-transform: none;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity .35s;
  transition: opacity .35s;
  line-height: 18px;
  padding: 15px 50px;
  background-color: rgba(0, 0, 0, .5);
  right: 30px;
  left: 30px;
  -webkit-clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 2% 100%)
}

.effect.effect-two p.col6 {
  left: 80px!important;
  right: 80px!important;
  bottom: 8rem
}

.effect.effect-two h2,
.effect.effect-two p.icon-links a {
  -webkit-transition: -webkit-transform .35s;
  transition: transform .35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0)
}

.effect.effect-two:hover p.description {
  opacity: 1
}

.effect.effect-two:hover .tab-text,
.effect.effect-two:hover h2,
.effect.effect-two:hover p.icon-links a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding-right: 10px
}

.effect.effect-two:hover h2 {
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms
}

.effect.effect-two:hover p.icon-links a:nth-child(3) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s
}

.effect.effect-two:hover p.icon-links a:nth-child(2) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s
}

.effect.effect-two:hover p.icon-links a:first-child {
  -webkit-transition-delay: .2s;
  transition-delay: .2s
}

.effect.effect-three {
  background: linear-gradient(-45deg, #0C71E9 0, #034B96, 100%);
  text-align: left
}

.effect.effect-three h2 {
  transform: translate3d(25px, 0, 0);
  -webkit-transform: translate3d(25px, 0, 0);
  transition: all .35s;
  font-family: Oswald;
  font-size: 1.6rem
}

.effect.effect-three h2:before {
  content: "[ ";
  position: absolute;
  left: -15px;
  bottom: 3px;
  font-weight: 400
}

.effect.effect-three:hover h2 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  opacity: .5
}

.effect.effect-three .tab-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border: 140px solid red;
  border-radius: 50% 0 0 50%;
  opacity: 0;
  transform: translate3d(50%, 50%, 0) rotate3d(0, 0, 1, 135deg);
  transition: all .35s .15s;
  border-color: transparent transparent transparent #fff
}

.effect.effect-three:hover .tab-text:before {
  transform: translate3d(50%, 50%, 0) rotate3d(0, 0, 1, 45deg);
  opacity: .8;
  transition-delay: 0s
}

.effect.effect-three p {
  position: absolute;
  width: 31px;
  height: 36px;
  bottom: 70px;
  right: -31px;
  font-size: 120%
}

.effect.effect-three p a {
  width: 31px;
  height: 36px;
  position: absolute;
  opacity: 0;
  transition: all .35s cubic-bezier(.25, .4, .2, .5) 0s
}

.effect.effect-three p a i {
  color: #5d504f;
  transition: transform .35s cubic-bezier(.5, .2, .4, .25) 0s
}

.effect.effect-three p a i:hover {
  color: #cc6055
}

.effect.effect-three:hover p a {
  opacity: 1
}

.effect.effect-three:hover p a:nth-child(1) {
  transform: translate3d(0, 60px, 0);
  -webkit-transform: translate3d(0, 60px, 0);
  transition: all .35s cubic-bezier(.5, .2, .4, .25) .15s;
  -webkit-transition: all .35s cubic-bezier(.5, .2, .4, .25) .15s
}

.effect.effect-three:hover p a:nth-child(1) i {
  transform: translate3d(-100px, 0, 0);
  transition: transform .35s cubic-bezier(.25, .4, .2, .5) .15s;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: transform .35s cubic-bezier(.25, .4, .2, .5) .15s
}

.effect.effect-three:hover p a:nth-child(2) {
  transform: translate3d(0, 30px, 0);
  transition: all .35s cubic-bezier(.5, .2, .4, .25) .25s;
  -webkit-transform: translate3d(0, 30px, 0);
  -webkit-transition: all .35s cubic-bezier(.5, .2, .4, .25) .25s
}

.effect.effect-three:hover p a:nth-child(2) i {
  transform: translate3d(-80px, 0, 0);
  transition: transform .35s cubic-bezier(.25, .4, .2, .5) .25s;
  -webkit-transform: translate3d(-80px, 0, 0);
  -webkit-transition: transform .35s cubic-bezier(.25, .4, .2, .5) .25s
}

.effect.effect-three:hover p a:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: all .35s cubic-bezier(.5, .2, .4, .25) .35s;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all .35s cubic-bezier(.5, .2, .4, .25) .35s
}

.effect.effect-three:hover p a:nth-child(3) i {
  transform: translate3d(-45px, 0, 0);
  transition: transform .35s cubic-bezier(.25, .4, .2, .5) .35s;
  -webkit-transform: translate3d(-45px, 0, 0);
  -webkit-transition: transform .35s cubic-bezier(.25, .4, .2, .5) .35s
}

.effect.effect-three img {
  transform: scale3d(1.1, 1.1, 1) translate3d(15px, 0, 0);
  transition: all .35s;
  transform-origin: 85% 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1) translate3d(15px, 0, 0);
  -webkit-transition: all .35s;
  -webkit-transform-origin: 85% 100%
}

.effect.effect-three:hover img {
  transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0);
  -webkit-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0);
  opacity: .6
}

.effect.effect-four {
  background: #2e5d5a
}

.effect-four .tab-text h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1em 1.2em;
  font-family: Oswald
}

.effect-four .tab-text p {
  width: 65%;
  font-size: 68%;
  line-height: 1;
  letter-spacing: 1px;
  text-align: left;
  float: right;
  padding-left: 15px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate3d(40px, 0, 0);
  -webkit-transform: translate3d(40px, 0, 0);
  opacity: 0;
  transition: all .35s;
  font-family: "Open sans";
  padding-bottom: 5px
}

.effect-four .tab-text p:after,
.effect-four .tab-text p:before {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50px;
  content: "";
  position: absolute
}

.effect.effect-five h2,
.effect.effect-six h2 {
  font-family: Oswald
}

.effect-four .tab-text p:after {
  top: -5px;
  left: -5px;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%)
}

.effect-four .tab-text p:before {
  right: 0;
  bottom: -6px;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%)
}

.effect.effect-four .icons-block {
  z-index: 1000;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 10px;
  padding-top: 9px
}

.effect.effect-four .icon-c3 {
  padding-left: 5px;
  padding-top: 0
}

.effect.effect-four .icons-block .social-icon-1,
.effect.effect-four .icons-block .social-icon-2,
.effect.effect-four .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-four:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-four:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-four:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-four .icons-block i {
  color: rgba(255, 255, 255, .9);
  padding-left: 7px;
  font-size: 1.2rem
}

.effect-four:hover p {
  transform: translate3d(0, 0, 0);
  opacity: 1
}

.effect.effect-four img {
  max-width: none;
  width: calc(100% + 60px);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.12);
  transition: all .35s;
  -webkit-transform: translate3d(0, 0, 0) scale(1.12);
  -webkit-transition: all .35s
}

.effect.effect-four:hover img {
  transform: translate3d(-20px, 0, 0) scale(1);
  -webkit-transform: translate3d(-20px, 0, 0) scale(1);
  opacity: .5
}

.effect.effect-five {
  background: #162633;
  text-align: left
}

.col3-block-height {
  min-height: 480px!important
}

.effect.effect-five h2 {
  transform: translate3d(0, 20px, 0);
  transition: all .35s;
  -webkit-transform: translate3d(0, 20px, 0);
  -webkit-transition: all .35s
}

.effect.effect-five:hover h2 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  opacity: .6
}

.effect.effect-five img {
  transition: all .35s
}

.effect.effect-five:hover img {
  opacity: .6;
  transform: translate3d(0, 0, 0) scale(1.16);
  -webkit-transform: translate3d(0, 0, 0) scale(1.16)
}

.effect.effect-five .tab-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 180%;
  background-color: #FFF;
  opacity: .8;
  transform-origin: 0 100%;
  transform: rotate(90deg);
  transition: all .35s;
  -webkit-transform-origin: 0 100%;
  -webkit-transform: rotate(90deg);
  -webkit-transition: all .35s
}

.effect.effect-seven .tab-text:after,
.effect.effect-six .tab-text:before {
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  content: ""
}

.effect.effect-five:hover .tab-text:before {
  transform: rotate(67deg);
  -webkit-transform: rotate(67deg)
}

.effect.effect-five p {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 15px 25px 0
}

.effect.effect-five p a {
  color: #5d504f;
  margin: 0 5px
}

.effect.effect-five p a:hover {
  color: #cc6055
}

.effect.effect-five p a i {
  opacity: 0;
  font-size: 120%;
  transform: translate3d(0, 50px, 0);
  transition: all .35s;
  -webkit-transform: translate3d(0, 50px, 0);
  -webkit-transition: all .35s
}

.effect.effect-five:hover p a i {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0)
}

.effect.effect-five:hover p a:nth-child(1) i {
  transition-delay: .15s;
  -webkit-transition-delay: .15s
}

.effect.effect-five:hover p a:nth-child(2) i {
  transition-delay: .1s;
  -webkit-transition-delay: .1s
}

.effect.effect-five:hover p a:nth-child(3) i {
  transition-delay: .05s;
  -webkit-transition-delay: .05s
}

.effect.effect-six {
  background-color: #3498db
}

.effect.effect-six h2 {
  text-align: left
}

.effect.effect-six img {
  transition: all .35s;
  transform: translate3d(0, 0, 0) scale(1.05);
  -webkit-transition: all .35s;
  -webkit-transform: translate3d(0, 0, 0) scale(1.05)
}

.effect.effect-six:hover img {
  opacity: .4;
  transform: translate3d(-50px, 0, 0) scale(1);
  -webkit-transform: translate3d(-50px, 0, 0) scale(1)
}

.effect.effect-six .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px
}

.effect.effect-six .icons-block .social-icon-1,
.effect.effect-six .icons-block .social-icon-2,
.effect.effect-six .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-six:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-six:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-six:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-six .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem
}

.effect.effect-six p {
  max-width: 130px;
  padding: 0 10px;
  margin: 30px;
  text-align: right;
  font-size: .9rem;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 3px solid #fff;
  opacity: 0;
  transition: all .35s;
  font-family: Poppins
}

.effect.effect-six:hover p {
  opacity: 1
}

.effect.effect-six .tab-text:before {
  background-color: rgba(255, 255, 255, .4);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  transition: all .6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  -webkit-transition: all .6s
}

.effect.effect-six:hover .tab-text:before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0);
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0)
}

.effect.effect-seven {
  background: linear-gradient(-45deg, #f3cf3f 0, #f33f58 100%)
}

.effect.effect-eight,
.effect.effect-nine {
  background: linear-gradient(-180deg, #fff 10%, #000 100%)
}

.effect.effect-seven img {
  transition: all .35s;
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: all .35s;
  -webkit-transform: translate3d(0, 0, 0) scale(1)
}

.effect.effect-seven:hover img {
  opacity: .6;
  transform: translate3d(-50px, 0, 0) scale(1.1) rotate(3deg);
  -webkit-transform: translate3d(-50px, 0, 0) scale(1.1) rotate(3deg)
}

.effect.effect-seven h2 {
  padding-top: 20%;
  transform: scale3d(.8, .8, 1);
  transition: all .35s;
  -webkit-transform: scale3d(.8, .8, 1);
  -webkit-transition: all .35s;
  font-family: Oswald
}

.effect.effect-seven .col8-head {
  padding-top: 9%
}

.effect.effect-seven:hover h2 {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1)
}

.effect.effect-seven p {
  font-size: .9rem;
  padding: 10px 5px;
  transform: scale3d(.8, .8, 1);
  -webkit-transform: scale3d(.8, .8, 1);
  opacity: 0;
  transition: all .35s;
  -webkit-transition: all .35s;
  font-family: Poppins
}

.effect.effect-seven:hover p {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  opacity: 1
}

.effect.effect-seven .tab-text:after {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
  opacity: 0;
  transition: all .35s;
  -webkit-transition: all .35s
}

.effect.effect-seven:hover .tab-text:after {
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
  opacity: 1
}

.effect.effect-seven .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px
}

.effect.effect-seven .c4 {
  right: 0;
  text-align: right;
  padding-right: 15px
}

.effect.effect-seven .c3 {
  bottom: 50%;
  margin-bottom: -40px;
  left: 23%
}

.effect.effect-seven .icons-block .social-icon-1,
.effect.effect-seven .icons-block .social-icon-2,
.effect.effect-seven .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-seven:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-seven:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-seven:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-seven .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem
}

.effect.effect-eight img {
  transition: all .3s ease-in-out;
  transform: translate3d(0, 0, 0) scale(1, 1);
  -webkit-transition: all .3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) scale(1, 1)
}

.effect.effect-eight:hover img {
  opacity: .6;
  transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
  -webkit-transform: translate3d(-20px, 0, 0) scale(1.1, 1.1)
}

.effect.effect-eight .tab-text h2 {
  font-family: Oswald;
  transform: scale3d(.9, .9, 1);
  transition: all .5s ease-in-out;
  -webkit-transform: scale3d(.9, .9, 1);
  -webkit-transition: all .5s ease-in-out
}

.effect.effect-eight .col8-head {
  padding-top: 9%
}

.effect.effect-eight:hover h2 {
  transform: scale3d(1.1, 1.1, 1);
  transition: all .5s ease-in-out;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  -webkit-transition: all .5s ease-in-out
}

.effect.effect-eight p {
  font-size: .9rem;
  padding: 10px 5px;
  transform: scale3d(.8, .8, 1);
  -webkit-transform: scale3d(.8, .8, 1);
  opacity: 0;
  transition: all .35s;
  -transition: all .35s;
  font-family: Poppins
}

.effect.effect-eight:hover p {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  opacity: 1
}

.effect.effect-eight .tab-text:after {
  content: "";
  position: absolute;
  left: -230px;
  top: 0;
  border-top: 208px solid rgba(7, 0, 2, .3);
  border-left: 140px solid rgba(240, 74, 126, .6);
  border-bottom: 188px solid transparent;
  border-right: 160px solid transparent;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.effect.effect-eight:hover .tab-text:after {
  transform: rotate3d(0, 0, 1, 52deg) scale3d(1, 1, 1);
  -webkit-transform: rotate3d(0, 0, 1, 52deg) scale3d(1, 1, 1);
  opacity: 1;
  top: 103px;
  left: -378px;
  border-top: 325px solid rgba(240, 74, 126, .8);
  border-left: 422px solid rgba(240, 74, 126, .8);
  border-bottom: 218px solid transparent;
  border-right: 160px solid transparent
}

.effect.effect-eight .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 15px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 5px
}

.effect.effect-eight .icons-block .social-icon-1,
.effect.effect-eight .icons-block .social-icon-2,
.effect.effect-eight .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-eight:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-eight:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-eight:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-eight .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem
}

.effect.effect-nine img {
  transition: all .3s ease-in-out;
  transform: translate3d(0, 0, 0) scale(1, 1);
  -webkit-transition: all .3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) scale(1, 1)
}

.effect.effect-nine:hover img {
  opacity: .6;
  transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
  -webkit-transform: translate3d(-20px, 0, 0) scale(1.1, 1.1)
}

.effect.effect-nine .tab-text h2 {
  font-family: Oswald;
  transform: scale3d(.9, .9, 1);
  transition: all .5s ease-in-out;
  -webkit-transform: scale3d(.9, .9, 1);
  -webkit-transition: all .5s ease-in-out;
  z-index: 2;
  position: relative;
  padding-top: 18%
}

.effect.effect-nine:hover h2 {
  transform: scale3d(1, 1, 1);
  transition: all .5s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
  -webkit-transition: all .5s ease-in-out
}

.effect.effect-nine p {
  font-size: .8rem;
  padding: 10px 5px;
  transform: scale3d(.8, .8, 1);
  -webkit-transform: scale3d(.8, .8, 1);
  opacity: 0;
  -webkit-transition: all .35s;
  transition: all .35s;
  font-family: Poppins;
  z-index: 2;
  position: relative
}

.effect.effect-nine:hover p {
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  opacity: 1
}

.effect.effect-nine .tab-text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 0px);
  height: inherit;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid transparent;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.effect.effect-nine:hover .tab-text:after {
  opacity: 1;
  top: 0;
  left: 0;
  border-top: 135px solid rgba(0, 0, 0, .5);
  border-left: 135px solid rgba(0, 0, 0, .5);
  border-bottom: 135px solid rgba(0, 0, 0, .5);
  border-right: 135px solid rgba(0, 0, 0, .5)
}

.effect.effect-nine .icons-block {
  z-index: 1000;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
  padding-top: 10px
}

.effect.effect-nine .icons-block .social-icon-1,
.effect.effect-nine .icons-block .social-icon-2,
.effect.effect-nine .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-nine:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-nine:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-nine:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-nine .icons-block i {
  color: rgba(255, 255, 255, .9);
  padding-left: 7px;
  font-size: 1.2rem
}

.effect.effect-ten {
  background-color: #162633
}

.effect.effect-ten img {
  transition: all .35s;
  transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
  -webkit-transition: all .35s;
  -webkit-transform: translate3d(-20px, 0, 0) scale(1.1, 1.1)
}

.effect.effect-ten:hover img {
  opacity: .85;
  transform: translate3d(0, 0, 0) scale(1, 1);
  -webkit-transform: translate3d(0, 0, 0) scale(1, 1)
}

.effect.effect-ten h2 {
  transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transition: all .35s;
  -webkit-transition: all .35s;
  font-family: Oswald;
  z-index: 2;
  position: relative;
  padding-top: 10%
}

.effect.effect-ten:hover h2 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0)
}

.effect.effect-ten p {
  font-size: .8rem;
  line-height: 1.1;
  padding-top: 5px;
  transform: translate3d(0, 10px, 0);
  transition: all .35s;
  -webkit-transform: translate3d(0, 10px, 0);
  -webkit-transition: all .35s;
  font-family: Poppins
}

.effect.effect-ten:hover p {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0)
}

.effect.effect-ten .tab-text {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 300px
}

.effect.effect-ten .tab-text:after {
  content: "";
  width: 180%;
  height: 180%;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, .45) 50%);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .4s linear;
  transition: all .4s linear
}

.effect.effect-ten .tab-text:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49%, rgba(132, 132, 132, .45) 50%, rgba(255, 255, 255, .65) 65%);
  transform: rotate3d(-1, 1, 0, 20deg);
  transform-origin: 50% 50%;
  transition: width .2s linear .2s, height .2s linear .2s, bottom .2s linear 0s, right .2s linear 0s;
  -webkit-transform: rotate3d(-1, 1, 0, 20deg);
  -webkit-transform-origin: 50% 50%;
  -webkit-transition: width .2s linear .2s, height .2s linear .2s, bottom .2s linear 0s, right .2s linear 0s
}

.effect.effect-ten:hover .tab-text:after {
  top: -80%;
  left: -80%;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, .45) 60%)
}

.effect.effect-ten:hover .tab-text:before {
  width: 100%;
  height: 100%;
  bottom: 50%;
  right: 50%;
  -webkit-transition: width .2s linear 0s, height .2s linear 0s, bottom .2s linear .2s, right .2s linear .2s;
  transition: width .2s linear 0s, height .2s linear 0s, bottom .2s linear .2s, right .2s linear .2s
}

.effect.effect-ten .icons-block {
  z-index: 1000;
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px;
  padding-top: 10px
}

.effect.effect-ten .icons-block .social-icon-1,
.effect.effect-ten .icons-block .social-icon-2,
.effect.effect-ten .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-ten:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-ten:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-ten:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-ten .icons-block i {
  color: rgba(255, 255, 255, .9);
  padding-left: 7px;
  font-size: 1.2rem
}

.effect.effect-eleven {
  background-color: #3498db
}

.effect.effect-eleven img {
  transform: translate3d(-10px, 0, 0);
  transition: all .35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  -webkit-transition: all .35s
}

.effect.effect-eleven:hover img {
  opacity: .6;
  transform: translate3d(-30px, 0, 0) scale(1.1, 1.1);
  -webkit-transform: translate3d(-30px, 0, 0) scale(1.1, 1.1)
}

.effect.effect-eleven h2 {
  text-align: left;
  transform: translate3d(-10px, 0, 0);
  transition: all .55s 0s;
  -webkit-transform: translate3d(-10px, 0, 0);
  -webkit-transition: all .55s 0s;
  font-family: Oswald;
  z-index: 2;
  position: relative;
  padding-top: 10%
}

.effect.effect-eleven:hover h2 {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0)
}

.effect.effect-eleven p {
  text-align: left;
  line-height: 1.2;
  padding-top: 34px;
  padding-left: 1px;
  font-size: .9rem;
  transform: translate3d(15px, 0, 0);
  -webkit-transform: translate3d(15px, 0, 0);
  opacity: 0;
  transition: all .35s 0s;
  z-index: 5;
  position: absolute;
  word-spacing: 3px;
  top: 65px;
  width: calc(100% - 4em);
  font-family: Poppins
}

.effect.effect-eleven:hover p {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition-delay: .2s;
  transition-delay: .2s
}

.effect.effect-eleven .tab-text:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 125px solid rgba(255, 255, 255, .3);
  border-right: 350px solid transparent;
  border-bottom: 125px solid rgba(255, 255, 255, .3);
  transform: translate3d(-100%, 0, 0);
  transition: all .35s;
  -webkit-transform: translate3d(-100%, 0, 0);
  -webkit-transition: all .35s
}

.effect.effect-eleven .tab-text:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-top: 125px solid transparent;
  border-right: 350px solid rgba(255, 255, 255, .3);
  border-bottom: 125px solid transparent;
  transform: translate3d(100%, 0, 0);
  transition: all .35s;
  -webkit-transform: translate3d(100%, 0, 0);
  -webkit-transition: all .35s
}

.effect.effect-eleven:hover .tab-text:after,
.effect.effect-eleven:hover .tab-text:before {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0)
}

.effect.effect-eleven .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px
}

.effect.effect-eleven .icons-block .social-icon-1,
.effect.effect-eleven .icons-block .social-icon-2,
.effect.effect-eleven .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-eleven:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-eleven:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-eleven:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-eleven .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem
}

.effect.effect-twelve {
  background: #42b078
}

.effect-twelve .tab-text h2 {
  position: relative;
  padding: .5em 0;
  text-align: left;
  overflow: hidden;
  font-family: Oswald
}

.effect.effect-twelve h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transform: translate3d(-100%, 0, 0);
  transition: all .35s;
  -webkit-transform: translate3d(-100%, 0, 0);
  -webkit-transition: all .35s
}

.effect.effect-twelve:hover h2:after {
  transform: translate3d(0, 0, 0)
}

.effect-twelve .tab-text p {
  padding: .7em 0;
  font-size: .8rem;
  text-align: left;
  line-height: 1.1;
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition: all .35s;
  -webkit-transition: all .35s;
  font-family: Poppins
}

.effect-twelve:hover p {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  opacity: 1
}

.effect.effect-twelve img {
  max-width: none;
  opacity: 1;
  transform: translate3d(-10px, 0, 0);
  transition: all .35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  -webkit-transition: all .35s
}

.effect.effect-twelve:hover img {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  opacity: .4
}

.effect.effect-twelve .icons-block {
  z-index: 1000;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 15px
}

.effect.effect-twelve .icons-block .social-icon-1,
.effect.effect-twelve .icons-block .social-icon-2,
.effect.effect-twelve .icons-block .social-icon-3 {
  transition: all .5s ease-in-out;
  opacity: 0
}

.effect.effect-twelve:hover .social-icon-1 {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: .5s
}

.effect.effect-twelve:hover .social-icon-2 {
  opacity: 1;
  transition-delay: .4s;
  transition-duration: .5s
}

.effect.effect-twelve:hover .social-icon-3 {
  opacity: 1;
  transition-delay: .5s;
  transition-duration: .5s
}

.effect.effect-twelve .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem
}

@media (max-width:575px) {
  .effect.effect-two p.description {
    bottom: 5.8em
  }
}

@media (min-width:576px) and (max-width:767px) {
  .tab .effect .tab-text h2 {
    font-size: 1.3rem!important;
    font-family: Oswald
  }
  .effect.effect-two p.description {
    bottom: 5.8em
  }
}

@media (min-width:768px) and (max-width:991px) {
  .effect h2 {
    font-size: 1.3rem!important
  }
}