/*Imports*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');



/*Fonts*/

@font-face {
    font-family: 'Ostrich Sans';
    src: url('/assets/fonts/ostrich-sans/OstrichSansInline-Regular.otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/assets/fonts/Quicksand-Regular.otf');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Quicksand-bold';
    src: url('/assets/fonts/Quicksand-Bold.otf');
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family: 'segoe-ui-regular';
    src: url('/assets/fonts/segoe-ui-4-cufonfonts/Segoe\ UI.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family: 'segoe-ui-italics';
    src: url('/assets/fonts/segoe-ui-4-cufonfonts/Segoe\ UI\ Italic.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family: 'segoe ui';
    src: url('/assets/fonts/segoe-ui-4-cufonfonts/Segoe\ UI\ Bold.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family: 'Dosis-Light';
    src: url('/assets/fonts/Dosis-Light.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family: 'Dosis-Bold';
    src: url('/assets/fonts/Dosis-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face{
    font-family: 'Dosis-ExtraBold';
    src: url('/assets/fonts/Dosis-ExtraBold.ttf');
    font-weight: 700;
    font-style: normal;
}


/*Color Declerations*/
:root {

    /*Solid Colors*/
    --drm-primary-color: #FF4500;
    --drm-primary-background: #FF4500;
    --drm-secondary-color: #ffffff;
    --drm-tertiary-color: #000000;
    --drm-quaternary-color: #ffffff;

    /*Gradient*/

    --drm-primary-gradient: linear-gradient(to left, #FED70C 0%, #B41F24 100%);
    --drm-secondary-gradient: linear-gradient(90deg, #ffffff 0%, #000000 100%);
}

/*Custom Class*/
.container {
    max-width: 1200px;
    margin: 0 auto;

}

.main-bg {
    background: #ffffff;
    height: 100%;
}


body {
    font-family: 'Roboto', sans-serif;
    background: rgb(230, 230, 230);

}
a
{
    text-decoration: none;
    color: inherit;
}
a:hover
{
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
.primary-color
{
    color: var(--drm-primary-color) !important;
}

.main_wrapper {

    height: 100%;
    width: 100%;


}
.navbar-section
{
    height: 50px;
    width: 100%;
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  
  
}
.navbar-section .logo
{
    position: relative;
    top: 20px;
    z-index: 10;

}
.navbar-section .menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0 16px;
}
.navbar-section .menu ul li {
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    transition: all 0.3s ease-in-out;
    font-size: 12px;

}
.navbar-section .menu ul li:nth-child(3)
{
    width: 180px;
}
.navbar-section .menu ul li  a {
    font-family: 'Quicksand', sans-serif;
    color: rgb(46, 46, 46);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    letter-spacing: 0;
    position: relative;
    text-align: center;
  
}
.navbar-section .menu ul li a::after {
    content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  top: 30px;
  background: var(--drm-primary-gradient);
  height:8px;
  width: 30px;
  margin: 0 auto;
  border-radius:10px 10px 10px 10px;
  z-index: 10;
}
.navbar-section .menu ul li
{
    position: relative;
}
.navbar-section .menu ul li:nth-child(2) ul
{
    position: absolute;
    top: 34px;
    left: 10px;
    background: #ffffff00;
    z-index: 100;
    padding: 0;
    margin: 0;
    box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #d9926c;
    height: 150px;
    width: 160px;
    display:  none ;
    
  
}
.active-dd
{
    display: block !important;
    translate: all 0.3s ease-in-out;
}
.navbar-section .menu ul li ul li{
    height:45px;
    width: 100% !important;
    display: flex;
    justify-content: space-between;

}
.navbar-section .menu ul li ul li i {
    color:white;
}
.navbar-section .menu ul li:nth-child(2):hover.ul{
    display: block ;
}
.navbar-section .menu ul li ul li a{
    color: white;
    text-align: start !important;
}
.navbar-section .menu ul li ul li a::after {
  width: 0;
  margin: 0 auto;
  border-radius:0 !important;


}





.main_wrapper .service-section {
    background: var(--drm-primary-gradient);
    height: 280px;
    width: 100%;
}

.main_wrapper .service-section .service_cards {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.main_wrapper .service-section .service_cards .service_card {
    background: var(--drm-secondary-color);
    height: 200px;
    width: 250px !important;
    padding: 28px;
    margin: 10px;
    box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.main_wrapper .service-section .service_cards .service_card img {
    height: 75px;
    width: 75px;

}

.main_wrapper .service-section .service_cards .service_card .service_label {
    font-size: 20px;
    font-weight: 700;
    color: var(--drm-primary-color);
    margin-top: 16px;
    text-align: center;
    line-height: 1.1;
}

.swiper {
    width: 100%;
    height: 100%;
 
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_section,.client_section,.service_section,.work_section,.team_section,.contact_section {

    height: 100%;
    width: 100%;
    overflow: auto;
    padding: 24px 64px;

}

.about_section>.client_section, .section_heading  {
    font-size: 32px;
    font-family: 'Ostrich Sans';
    font-weight: 700;
    color: #525252;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to left, #FED70C 0%, #B41F24 100%);
    border-image-slice: 1;

}

.about_section>.service_section, .about-content {
    font-size: 16px;
    color: #707070;
    font-family: 'Quicksand';

}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 32px;
    margin-top: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: 75% 25%;
    grid-gap: 16px;
    margin-top: 32px;

}

.team-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.team-section .label{
    font-size: 32px;
    font-family: 'Ostrich Sans';
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
   
}

.team-card {
    background: var(--drm-primary-background);
    height: 100%;
    width: 100%;
    margin: 16px 16px 0 0 !important;
    padding: 8px;
    
}
.team-card-two:first-child {
  
    height: 100%;
    width: 100%;
    margin: 16px 16px 0 0 !important;
    padding: 8px;
    border: #d9926c 2px solid;
    
}
.team-card-two:nth-child(2),.team-card-two:nth-child(3),.team-card-two:nth-child(4) {
  
    height: 100%;
    width: 100%;
    margin: 0 16px 0 0 !important;
    padding: 8px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
    
   
    
}
.team-card-two .team-name{
    font-family: 'segoe ui';
    font-size: 16px;
    color: #272727;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
   
}
.team-card-two .team-position{
    font-family: 'segoe-ui-regular';
    font-size: 14px;
    color: #606060;
    text-align: center;
    font-weight: normal;
    line-height: 1.5;
   
}
.team-card-two .qoute-title{
    font-family: 'segoe ui';
    font-size: 16px;
    color: #272727;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
   
}
.team-card-two .qoute-desc{
    font-family: 'segoe-ui-italics';
    font-size: 14px;
    color: #272727;
    text-align: center;
    font-weight: normal;
    line-height: 1.2;
   
}
.team-section
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
}
.team-section:last-child{
    background: var(--drm-primary-background);
    height: 100%;
    width: 100%;

    padding: 8px;
}

.team-section-one
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.team-card:first-child
{
        font-family: 'Ostrich Sans';
        font-size: 32px;
        color: #fff; 
        text-align: center;
}
.team-card{
        font-family: 'Quicksand-bold';
        font-size: 22px;
        font-weight: 700;
        color: #fff; 
        text-align: center;
        line-height: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
}
.team-card-two:first-child
{
        font-family: 'Ostrich Sans';
        font-size: 32px;
        color: #d9926c;
        text-align: center;

}
.team-card-two{
        font-family: 'Quicksand-bold';
        font-size: 22px;
        font-weight: 700;
        color: rgb(71, 71, 71); 
        text-align: center;
        line-height: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
}

.client-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
    margin-top: 32px;
}
.view_more_btn
{
    display: flex;
    font-family: 'Quicksand-bold';
    font-size: 18px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 16px;
    background:white;
    color: rgb(46, 46, 46);
  margin: 24px auto;
    width: 25%;
    box-shadow: 3px 6px 12px  rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.service-grid
{
    display: grid;
    grid-template-columns: 75% 25%;
    grid-gap: 16px;
    margin-top: 32px;
}
.service_detais_cards
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 16px;
    margin-top: 32px;
}
.service_detais_card
{
    background: var(--drm-primary-background);
    height: 100%;
    width: 100%;
    margin: 16px 16px 0 0 !important;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    position: relative;
}
.details_arrow
{
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.5s ease;
    color: #fff;
    background-color: red;
    padding: 12px;
    font-size: 24px;
    box-shadow: 3px 6px 12px  rgba(0, 0, 0, 0.2);
}
.service_card_heading
{
    font-family: 'Ostrich Sans';
    font-size: 32px;
    color: #fafafa;
    font-weight: bold;
}
.service_details
{
    font-family: 'Quicksand';
    font-size: 16px;
    color: #fafafa;
    font-weight: normal;
    padding-top: 16px;
}
.work-grid
{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 75% 25%;
    grid-gap: 16px;
   
}
.work-with-label
{
   display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background: var(--drm-primary-background);
    color: white;
    height: 84%;
    margin-bottom: 10px;
}
.linkedin_banner
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background:#0077B7;
    color: white;
    height: 10%;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.contact_cards
{
    display:flex;
    flex-direction: column;
    
}
.contact_card
{
    display:flex;
    flex-direction:column;
    padding-bottom: 8px;
}
.contact-heading
{
    font-family: 'Quicksand-bold';
    font-size: 20px;
    color: #272727;
    font-weight: bold;
    padding-bottom: 8px;
}
.enquiry_btn
{
    font-family: 'Quicksand-bold';
    font-size: 12px;
    color: #ffffff;
    font-weight: normal;
    padding-bottom: 4px;
    background: var(--drm-primary-background);
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px;
    width: 25%;
    box-shadow: 3px 6px 12px  rgba(0, 0, 0, 0.2);
}
.linkedin_btn
{
    font-family: 'Quicksand-bold';
    font-size: 12px;
    color: #ffffff;
    font-weight: normal;
    padding-bottom: 4px;
    background: #0077B7;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px;
    margin-top: 8px;
    text-align: center;
    box-shadow: 3px 6px 12px  rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}
.footer-grid
{
    display: grid;
    grid-template-columns: 50% 16.66% 16.66% 16.66%;
    grid-gap: 16px;
    margin-top: 32px;
    justify-content: center;
    align-items: center;
    align-content: center;

    padding: 32px 64px;
}


.footer-copyright-section
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #858585;
    color: white;
    width: 100%;
    
}
.mt-6
{
    margin-top: 6rem;
}
.mt-7
{
    margin-top: 7rem;
}

.no-padding
{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/*Publishing Page CSS*/
.connector_section
{
    position: relative;
    width: 100%;
    height: 175px;
    background: #ffffff;
}
.connector_section .orange_banner
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FF4500;
    z-index: 1;
}
.connector_section .orange_banner-2
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: #FF4500;
    z-index: 1;
}
.connector_section .orange_banner-3
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: #FF4500;
    z-index: 1;
}
.connector_section .connector_monitor img
{
    position: absolute;
    bottom: 0;
    left: 80px;
    z-index: 2;
    width: 234px;

   
}
.connector_section .connector_monitor-3 img
{
    position: absolute;
    bottom: 0;
    left: 70px;
    z-index: 2;
    width: 380px;

   
}
.connector_section .connector_magazine img
{
    position: absolute;
    bottom: 0px;
    left: 65px;
    z-index: 2;
    width: 80px;
    height: 122px;
   
}
.connector_section .connector_magazine-3 img
{
    position: absolute;
    bottom: -17px;
    left: 65px;
    z-index: 2;
    width: 100px;
    height: 122px;
   
}
.connector_section  .connector_logo img
{
    position: absolute;
   top: 25px;
    left: 350px;
    z-index: 2;
   

}
.connector_section  .connector_logo-3 img
{
    position: absolute;
   top: -54px;
    left: 440px;
    z-index: 2;
   

}
.connector_section .description
{
    position: absolute;
    bottom:30px;
    left:350px;
    width: 600px;
    z-index: 3;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;

}
.connector_section .description-3
{
    position: absolute;
    bottom:30px;
    left:440px;
    width: 600px;
    z-index: 3;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;

}
.connector_section .connector_monitor-rtl img
{
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: 2;
    width: 234px;

   
}
.connector_section .connector_monitor-rtl-2 img
{
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 2;
    width: 380px;

   
}
.connector_section .connector_magazine-rtl img
{
    position: absolute;
    bottom: -17px;
    right: 65px;
    z-index: 2;
    width: 100px;
    height: 122px;
   
}
.connector_section  .connector_logo-rtl img
{
    position: absolute;
   top: 14px;
    left: 80px;
    z-index: 2;
   

}
.connector_section  .connector_logo-rtl-2 img
{
    position: absolute;
   top: -50px;
    left: 80px;
    z-index: 2;
   

}
.connector_section  .connector_logo-rtl-2 h3
{
    position: absolute;
   top: -80px;
    left: 80px;
    z-index: 2;
    font-weight: bolder;
    font-size: 40px;
   

}
.connector_section .description-rtl
{
    position: absolute;
    bottom:30px;
    right:320px;
    width: 600px;
    z-index: 3;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;

}
.connector_section .description-rtl-2
{
    position: absolute;
    bottom:28px;
    left:74px;
    width: 600px;
    z-index: 3;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;

}
.content_description
{
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 16px;
    margin-top: 32px;

}
.content_description-common
{
    display: grid;
    grid-template-columns: 80% 20%;
    grid-gap: 16px;
    margin-top: 32px;

}
.content_description,.content_description-common div
{
    padding: 0 48px  0 64px ;
}
.enquiry-btn
{
    background: #FF4500;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    /* box-shadow: 3px 6px 12px  rgba(0, 0, 0, 0.2); */
}

.dm-section
{
    display: grid;
    grid-template-columns: 40% 60%;
    grid-gap: 16px;
    margin-top: 32px;
    padding-left: 64px;
    width: 100%;
    padding-right: 64px;
}
.dm-section h3
{
    font-size: 54px;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 16px;
    font-family: 'Dosis-light', sans-serif;
}
.dm-section .img img{
    width: 674px;

}

.dm-section-rtl
{
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 16px;
    margin-top: 32px;
    padding-left: 64px;
    width: 100%;
    padding-right: 64px;
}
.dm-section-rtl h3
{
    font-size: 54px;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 16px;
    font-family: 'Dosis-light', sans-serif;
}
.dm-section-rtl .img img{
    width: 674px;
    height: auto;
    

}
.section_heading
{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.section_heading .back_btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.section_heading .back_btn span
{
    font-size: 18px;
    font-weight: 500;
    color: #484848;
    padding-right: 8px;
    font-family: 'Dosis-light', sans-serif;


}
