html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    /* padding: 0; */
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 10vh;
    background-color: rgb(255, 255, 255);
    font-family: 'Montserrat', sans-serif;
}

.logo {
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}
.logo:img{
    width:100%;
}

.bottom-space{
    position:absolute;                  
    bottom:0;                          
    right:0;  
    width: 80%;
}

.nav-links {
    position:absolute;                  
    bottom:0;                          
    right:8%;        
    display: flex;
    justify-content: space-around;
    width: 65%;
    padding-right: 10px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: black;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
    transition: all 0.3s ease;
}

/* @media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }
} */

/* @media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #5D4954;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
        cursor: pointer;
    }
} */

.nav-active {
        transform: translateX(0%);
}

/* @keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mt20{
    margin-top: 20px !important;
}

.mt50{
    margin-top: 50px !important;
}

.mt100{
    margin-top: 100px;
}

.mt250{
    margin-top: 400px;
}

.mb20{
    margin-bottom: 20px;
}

.mb50{
    margin-bottom: 50px;
}

.mb40{
    margin-bottom: 40px;
}

.mb100{
    margin-bottom: 100px;
}

.bg-home {
    background-image: url("../images/home/headerhome.png");
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.custom-carousel-caption{
    left: 8% !important;
    top: 25% !important;
    right: 50%;
    text-align: left;
    font-weight: 700 !important;
    width:34% !important;
}

.custom-carousel-caption h1{
    font-weight: 700 !important;
    font-size:45px;
    padding-bottom:20px;
}

.custom-carousel-caption p {
    font-weight: 400 !important;
    font-size: 24px;
    padding-top:20px;
}

@media(max-width:991px) {
    .custom-carousel-caption{
        left: 0% !important;
        right: 0%;
        top: 20% !important;
        width:100% !important;
        text-align: center;
    }

    .custom-carousel-caption h1{
        font-size:24px;
        padding-bottom:10px;
    }
}

.custom-carousel-portofolio{
    top: 8% !important;
    text-align: center;
    font-weight: 700 !important;
}

.custom-carousel-portofolio h1{
    font-weight: 700 !important;
    font-size:48px;
    padding-bottom:10px;
}

.custom-carousel-portofolio p {
    font-weight: 400 !important;
    font-size: 18px;
    padding-top:20px;
}

@media(max-width:991px) {
    .custom-carousel-portofolio{
        left: 0% !important;
        right: 0%;
        top: 20% !important;
        width:100% !important;
        text-align: center;
    }

    .custom-carousel-portofolio h1{
        font-size:24px;
        padding-bottom:10px;
    }
}

.btn-readmore {
    background-color: white;
    color: black;
    font-size: 18px !important;
    border-color: rgba(111,111,111,0.2) transparent transparent;
    letter-spacing: 1px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left:60px;
    padding-right:60px;
    border-radius: 10px;
    width: 50%;
    font-weight: 400;
    /* border: 1px solid; */
    box-shadow: 0px 7px 10px 0px rgb(49, 49, 49);
  }
  
  .btn-readmore:hover{
    text-decoration: none;
    /* color: white; */
  }
  
  @media(max-width:991px) {
    .btn-readmore {
        text-align:center;
        padding-top: 5px;
        padding-bottom: 10px;
        padding-left:10px;
        padding-right:10px;
        border-radius: 10px;
        width: 50%;
      }
}

.section-class{
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-class-index{
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-class-tmedia{
    position: relative;
    padding-top: 100px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

@media(max-width:991px) {
    .section-class-index{
        padding-top: 100px;
    }
    .section-class-tmedia{
        padding-top: 100px;
    }
    
}

.section-nopadding{
    padding-top: 0px;
    padding-bottom: 0px;
}

.tos-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
    color: #0C3559;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media(max-width:991px) {
    .tos-title{
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 1;
        color: #0C3559;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
}

.is-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #FF6600;
    margin-bottom: 20px;
}

@media(max-width:991px) {
    .is-title{
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
        color: #FF6600;
        margin-bottom: 20px;
    }
}

.wof-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media(max-width:991px) {
    .wof-title{
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
        color: #000000;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
}

.wdy-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    color: #000000;
    margin-bottom: 20px;
}

@media(max-width:991px) {
    .wdy-title{
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 1;
        color: #000000;
        margin-bottom: 20px;
    }
}

.whatwecando-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 1;
    color: #0C3559;
    margin-bottom: 20px;
}

@media(max-width:991px) {
    .whatwecando-title{
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 26px;
        line-height: 1;
        color: #0C3559;
        margin-bottom: 20px;
    }
}

.whatwecando-title-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.whatwecando-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.nil-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 1;
    color: #0C3559;
    margin-bottom: 20px;
}

@media(max-width:991px) {
    .nil-title{
        font-size: 28px;
    }
}

.nil-title-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.nil-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.nil-text{
    font-size:18px;
    font-weight: 700;
    /*font-family: 'PT Sans', sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    color:#000000;
    line-height: 2.0;
}

.centered-things{
    margin: auto; 
}

.card{
    border: none;
}

.section-class-footer{
    position: relative;
    padding-top: 100px;
}

@media(max-width:991px) {
    .section-class-footer{
        padding-top: 100px;
    }
}
.footer-container{
    background-color: #3B3939;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.white-color{
    color:rgb(255, 255, 255);
}

.img-wwc{
    width:100%;
    -webkit-transition: margin 0.5s ease-out;
    -moz-transition: margin 0.5s ease-out;
    -o-transition: margin 0.5s ease-out;
    transition: 0.5s  ease-out;
}

.img-wwc:hover{
    cursor:pointer;
    margin-top: -25px;
}  

@media(max-width:991px) {
    .img-wwc{
        padding-top: 10px;
        width:100%;
    }

    .footer-ul{
        padding-left: 60px;
        padding-right: 60px;
    }

    .logo-footer{
        padding-bottom:30px;
    }
}

.navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.map-class{
    text-align: right;
}

@media(max-width:991px) {
    .map-class{
        text-align: left;
    }
}

.nopadding{
    padding:0px;
}

.img-project{
    width:100%;
    height: 550px;
}

.minus-m100{
    margin-bottom:-100px;
}

.bg-project-1{
    background-image: url("../images/project/jobdesignpic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-2{
    background-image: url("../images/project/jobdesigntext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-3{
    background-image: url("../images/project/datasenterpic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-4{
    background-image: url("../images/project/datacentertext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-5{
    background-image: url("../images/project/monitorpic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-6{
    background-image: url("../images/project/monitortext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-7{
    background-image: url("../images/project/peralatanpic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-8{
    background-image: url("../images/project/peralatantext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-9{
    background-image: url("../images/project/scuritypic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-10{
    background-image: url("../images/project/scuritytext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-11{
    background-image: url("../images/project/wifisolutionpic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-12{
    background-image: url("../images/project/wifisolutiontext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-13{
    background-image: url("../images/project/fiberopticpic.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.bg-project-14{
    background-image: url("../images/project/fiberoptictext.png");
    width:100%;
    height: 600px;
    background-size: cover;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
}

.text-project{
    color:rgb(255, 255, 255);
    font-size:30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.text-project-2{
    font-family: 'Montserrat', sans-serif;
    color:rgb(255, 255, 255);
    font-size:40px;
    font-weight: 800;
}

.text-project-3{
    color:rgb(255, 255, 255);
    font-size:30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.text-slider-aplikasi{
    font-family: 'Montserrat', sans-serif;
    color:rgb(255, 255, 255);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    font-size:40px;
}

.text-slider-aplikasi-2{
    font-family: 'Montserrat', sans-serif;
    color:rgb(255, 255, 255);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
}

.custom-carousel-caption-aplikasi{
    left: 8% !important;
    top: 25% !important;
    right: 50%;
    text-align: left;
    font-weight: 700 !important;
    width:40% !important;
}

.custom-carousel-caption-aplikasi-2{
    text-align: left;
    font-weight: 700 !important;
}


.text-home-2{
    font-family: 'Montserrat', sans-serif;
    color:rgb(255, 255, 255);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 18px;
}

@media(max-width:1200px){
    .text-slider-aplikasi{
        font-family: 'Montserrat', sans-serif;
        color:rgb(255, 255, 255);
        font-weight: 800;
        letter-spacing: 1px;
        line-height: 1;
        font-size:24px;
        width: 100%;
    }

    .text-slider-aplikasi-2{
        font-family: 'Montserrat', sans-serif;
        color:rgb(255, 255, 255);
        font-weight: 300;
        letter-spacing: 1px;
        line-height: 1.5;
        font-size: 12px;
    }

    .custom-carousel-caption-aplikasi{
        left: 2% !important;
        top: 1% !important;
        right: 25%;
        text-align: left;
        font-weight: 700 !important;
        width:50% !important;
    }

}

.slider-png-aplikasi{
    width: 50%;
    /* position:absolute;
    float:center;
    left:25%; */
    margin-top:-50px;
}

@media(max-width:991px){
    .slider-png-aplikasi{
        width: 80%;
        /* position:absolute;
        float:center;
        left:25%; */
        margin-top:-20px;
    }
}

.attendance-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 1;
    color: #FF5700;
    margin-bottom: 20px;
}

.attendance-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.onlineticket-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    color: #FF5700;
    margin-bottom: 20px;
}

.custom-carousel-caption-digital{
    /*left: 8% !important;
    top: 12% !important;
    right: 45%;*/
    top: 28% !important;
    text-align: center;
    font-weight: 700 !important;
    /*width:100% !important;*/
}

.text-slider-digital{
    font-family: 'Montserrat', sans-serif;
    color:rgb(255, 255, 255);
    font-weight:300;
    letter-spacing: 1px;
    line-height: 2.0;
    font-size:20px;
}


@media(max-width:1200px){
    .custom-carousel-caption-digital{
         top: 4% !important;
        text-align: center;
        font-weight: 700 !important;
    }
    .text-slider-digital{
        font-family: 'Montserrat', sans-serif;
        color:rgb(255, 255, 255);
        font-weight:300;
        letter-spacing: 1px;
        line-height: 1.2;
        font-size:16px;
    }
}

.bg-grey{
    background-color: #404040;
}

.smg-text{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #FF5700;
    margin-bottom: 20px;
}

.smg-text-2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.custom-padding{
    padding-left: 120px;
    padding-right: 120px;
}

.no-padding-bottom{
    padding-bottom: 0px !important;
}

.no-padding-top{
    padding-top: 0px !important;
}

.latest-project-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 1;
    color: #0C3559;
    margin-bottom: 20px;
}

@media(max-width:991px){
    .latest-project-title{
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 28px;
        line-height: 1;
        color: #0C3559;
        margin-bottom: 20px;
    }
}

.bg-home {
    /* The image used */
    background-image: url("../images/home/headerhome.png");
  
    /* Full height */
    height: 500px; 
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mbr-table-cell{
    display: table-cell;
    float: none;
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    vertical-align: middle;
}

.ots-image{
    width:120%; 
    margin-left:-100px;
}

@media(max-width:991px) {
    .ots-image{
        width:100%; 
        margin-left:0px;
    }
}

.img-sosmed{
    width:100%;
    margin-top:-150px; 
    padding-bottom:50px;
}

@media(max-width:1200px) {
    .img-sosmed{
        width:100%;
        margin-top:0px; 
        padding-bottom:0;
    }
}

.minus-mt100{
    margin-top:-100px; 
}

.minus-mt370{
    margin-top:-370px; 
}

.minus-mt480{
    /*margin-top:-480px; */
    margin-top:-580px; 
}

.bg-kik{
    background-image: url("../images/digitalmarketing/websitesuportpic.png");
    width:100%;
    background-size: cover;
    height: 500px;
}

.digital-title-2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.3;
    color: #FF5700;
    margin-bottom: 20px;
}

.forg-title-2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.3;
    color: #FF5700;
    margin-bottom: 20px;
}

@media(max-width:991px){
    .minus-mt480{
        margin-top:0px; 
    }
    
    .forg-title-2{
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 38px;
        line-height: 1.3;
        color: #FF5700;
        margin-bottom: 20px;
    }
}

.digital-teks-2{
    font-weight: 400;
}

.forg-teks-2{
    font-weight: 400;
    font-size: 20px;
}


.datacenter-teks-2{
    font-weight: 600;
    font-size: 24px;
}

.bg-gd {
    /* The image used */
    background-image: url("../images/digitalmarketing/grapicdesignbg.png");
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padding-50{
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-teks-2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: black;
    margin-bottom: 20px;
}

.active{
    color : #ff6600 !important;
}

.navbar-nav{
    /* position: relative !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
    flex-direction: row; */
}

.navbar-nav a {
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.owl-carousel .owl-video-tn {
  background-size: cover;
  padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
}

.owl-video-frame {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.owl-video-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  display: inline-block;
}

.owl-dot span {
  width: 11px;
  height: 11px;
  background-color: #ccc;
  border-radius: 50%;
  display: block;
  margin: 5px 3px;
}

.owl-dot.active span {
  background-color: #000;
}

/*.owl-video-tn{
    opacity: 1 !important;
    background-image: url("../images/digitalmarketing/moviepic.png") !important;
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
*/
.smm-mt{
    margin-top:-130px;
}

@media(max-width:991px){
    .smm-mt{
        margin-top:0px;
    }
}

.mp-padding{
    padding-left:80px; padding-right:80px;
}

@media(max-width:991px){
    .mp-padding{
        padding-left:0px; padding-right:0px;
    }
}

.col-form-label{
    font-weight: 700;
    color: rgb(121, 121, 121);
    letter-spacing: 2px;
    text-align: left;
}


@media(max-width:991px){
    .col-form-label{
        text-align: left;
    }
    
}

.required-field{
    color:#b41d1d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.text-app-sub{
    font-weight: 600;
}

.vertical { 
    border-left: 2px solid grey; 
    height: 100%; 
    position:absolute; 
} 

.fiai-teks{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.0;
    padding-left:50px;
    width:80%;
}

.line-height15{
    line-height: 1.2;
}

.card-text{
    font-family: 'Montserrat', sans-serif !important;
    font-size:12px;
}

.text-black{
    color:black;
}

.bg-socialmedia{
    background-image: url("../images/home/bgsocialmedia.png") !important;
}

.text-white{
    color: white;
}

.bg-multimedia{
    background-image: url("../images/digitalmarketing/bgmediaprojek.png") !important;
}

.bg-brown{
    background-color: #413127;
}

.btn-navy{
    background-color: #3276B1;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.sub-menu-contact{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 20px;
    color: #FF5700;
}

.contact-title-text{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: #FF5700;
    margin-bottom: 20px;
}

.createyourown-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    color: #FF5700;
    margin-bottom: 20px;
    width:80%;
}

.createyourown-sub{
    font-weight: 600;
    width:80%;
}

.bg-aplikasi{
    background-image: url("../images/aplikasi/bg.png") !important;
}

.bg-portofolio{
    background-image: url("../images/portofolio/bg_portofolio.png") !important;
}

.bg-digital{
    background-image: url("../images/digitalmarketing/digital_marketing.png") !important; 
}

.bg-govern{
    background-image: url("../images/tmedia/govermentimage.jpg") !important;
     background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-hover-zoom {
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

.img-hover-zoom img {
    transition: transform .5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.3);
}

.img-sfy{
    width:80%;
}

.box-border{
    border: 4px solid #FF6600;
    padding: 50px;
    height: 300px;
}

@media(max-width:991px) {
    .box-border{
        height: 350px;
    }
    
}

.max-dedicated-text{
    padding-top:30px;
    font-size:16px;
    font-weight: 500;
    text-align: left;
}

.mr-20{
    margin-right:20px;
}

.ml-20{
    margin-left:20px;
}

.padding-numberof{
    padding-top: 60px;
    padding-bottom: 60px;
}

.title-numberof{
    font-size: 60px;
    font-weight: 700;
    text-align: center;
}

.text-numberof{
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.text-tmedia{
    padding-top: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #2A5A9C;
}

.img-tmedia{
    width:40%;
}

@media(max-width:991px) {
    .img-tmedia{
        padding-top:20px;
        width:20%;
    }

    .text-tmedia{
        padding-top: 15px;
    }
}

.bg-navy {
    background-color: #2A5A9C;
}

.card-text-add{
    font-size:14px;
    font-weight: 400;
    color: white;
}

.pd-100{
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-foot-teks{
    font-size: 15px;
}

.logo_header{
	width: 220px;
}

.img-footer{
	width: 220px;
}

.portofolio-card{
    background-color: rgba(255,255,255,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px 30px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0px 12px 21px 2px rgb(0 0 0 / 10%);
    min-height: 220px;
}

.portofolio-card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.cursor-pointer {
    cursor: pointer;
}

.animate-portofolio{
    width:100%;
    -webkit-transition: margin 0.5s ease-out;
    -moz-transition: margin 0.5s ease-out;
    -o-transition: margin 0.5s ease-out;
}

.animate-portofolio:hover{
    cursor:pointer;
    margin-top: -25px;
}  

.mt50m {
    margin-top: 50px;
}

.ptm20 {
    padding-top: 0px;
}

@media(max-width:991px){
    .ptm20 {
        padding-top: 20px;
    }
    
    .portofolio-card{
        min-height: 150px;
    }
    .animate-portofolio:hover{
        cursor:pointer;
        margin-top: 0px;
    }
    .mt50m {
        margin-top: 0px;
    }
}