CINXE.COM
AISCC – AIS Call Center
<!DOCTYPE html> <html class="no-js" lang="en-US" itemscope itemtype="https://schema.org/WebPage"> <!-- head --> <head> <!-- meta --> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <meta name="keywords" content="myAIS,แก้ปัญหา,คำถาม,Knowledge Center" /> <link rel="shortcut icon" href="https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/favicon.ico" /> <!-- wp_head() --> <title>AISCC – AIS Call Center</title> <!-- script | dynamic --> <script id="mfn-dnmc-config-js"> //<![CDATA[ window.mfn_ajax = "https://aiscallcenter.ais.co.th/wp-admin/admin-ajax.php"; window.mfn = {mobile_init:1240,nicescroll:40,parallax:"translate3d",responsive:1,retina_js:0}; window.mfn_prettyphoto = {disable:false,disableMobile:false,title:false,style:"pp_default",width:0,height:0}; window.mfn_sliders = {blog:0,clients:0,offer:0,portfolio:0,shop:0,slider:0,testimonials:0}; //]]> </script> <link rel='dns-prefetch' href='//aiscallcenter.ais.co.th' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="AISCC » Feed" href="https://aiscallcenter.ais.co.th/feed/" /> <link rel="alternate" type="application/rss+xml" title="AISCC » Comments Feed" href="https://aiscallcenter.ais.co.th/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="AISCC » หน้าแรก Comments Feed" href="https://aiscallcenter.ais.co.th/home/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/aiscallcenter.ais.co.th\/wp-includes\/js\/wp-emoji.js?ver=6.2","twemoji":"https:\/\/aiscallcenter.ais.co.th\/wp-includes\/js\/twemoji.js?ver=6.2"}}; ( function( window, document, settings ) { var src, ready, ii, tests; /* * Create a canvas element for testing native browser support * of emoji. */ var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Check if two sets of Emoji characters render the same. * * @param set1 array Set of Emoji characters. * @param set2 array Set of Emoji characters. * @returns {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph * made of two characters, so some browsers (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @param type {String} Whether to test for support of "flag" or "emoji". * @return {Boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 55356, 56826, 55356, 56819 ], [ 55356, 56826, 8203, 55356, 56819 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447 ], [ 55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447 ] ); return ! isIdentical; case 'emoji': /* * She's the hero Emoji deserves, but not the one it needs right now. * * To test for support, try to render a new emoji (female superhero), * then compare it to how it would look if the browser doesn't render it correctly * (superhero + female sign). */ isIdentical = emojiSetsRenderIdentically( [55358, 56760, 9792, 65039], [55358, 56760, 8203, 9792, 65039] ); return ! isIdentical; } return false; } function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings ); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wpfront-scroll-top-css' href='https://aiscallcenter.ais.co.th/wp-content/plugins/wpfront-scroll-top/css/wpfront-scroll-top.css?ver=2.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='style-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/style.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-base-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/css/base.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-layout-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/css/layout.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-shortcodes-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/css/shortcodes.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-animations-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/assets/animations/animations.min.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-jquery-ui-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/assets/ui/jquery.ui.all.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-prettyPhoto-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/assets/prettyPhoto/prettyPhoto.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-jplayer-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/assets/jplayer/css/jplayer.blue.monday.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='mfn-responsive-css' href='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/css/responsive.css?ver=17.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='Roboto-css' href='https://fonts.googleapis.com/css?family=Roboto%3A1%2C300%2C400%2C400italic%2C500%2C700%2C700italic&ver=6.2' type='text/css' media='all' /> <link rel='stylesheet' id='Lora-css' href='https://fonts.googleapis.com/css?family=Lora%3A1%2C300%2C400%2C400italic%2C500%2C700%2C700italic&ver=6.2' type='text/css' media='all' /> <link rel='stylesheet' id='tablepress-default-css' href='https://aiscallcenter.ais.co.th/wp-content/plugins/tablepress/css/default.css?ver=1.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='js_composer_front-css' href='https://aiscallcenter.ais.co.th/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=5.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='carousel-slider-css' href='https://aiscallcenter.ais.co.th/wp-content/plugins/carousel-slider/assets/css/style.css?ver=1.8.9' type='text/css' media='all' /> <!--n2css--><script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script> <link rel='https://api.w.org/' href='https://aiscallcenter.ais.co.th/wp-json/' /> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://aiscallcenter.ais.co.th/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://aiscallcenter.ais.co.th/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 6.2" /> <link rel="canonical" href="https://aiscallcenter.ais.co.th/" /> <link rel='shortlink' href='https://aiscallcenter.ais.co.th/' /> <link rel="alternate" type="application/json+oembed" href="https://aiscallcenter.ais.co.th/wp-json/oembed/1.0/embed?url=https%3A%2F%2Faiscallcenter.ais.co.th%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://aiscallcenter.ais.co.th/wp-json/oembed/1.0/embed?url=https%3A%2F%2Faiscallcenter.ais.co.th%2F&format=xml" /> <!-- style | custom font --> <style id="mfn-dnmc-font-css"> @font-face {font-family: "db_heavent_cond";src: url("");src: url("#iefix") format("embedded-opentype"),url("https://aiscallcenter.ais.co.th/wp-content/uploads/2018/09/db_heavent_bd_cond_v3.2-webfont.woff") format("woff"),url("") format("truetype"),url("#db_heavent_cond") format("svg");font-weight: normal;font-style: normal;} </style> <!-- style | dynamic --> <style id="mfn-dnmc-style-css"> @media only screen and (min-width: 1240px) {body:not(.header-simple) #Top_bar #menu{display:block!important}.tr-menu #Top_bar #menu{background:none!important}#Top_bar .menu > li > ul.mfn-megamenu{width:984px}#Top_bar .menu > li > ul.mfn-megamenu > li{float:left}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-1{width:100%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-2{width:50%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-3{width:33.33%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-4{width:25%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-5{width:20%}#Top_bar .menu > li > ul.mfn-megamenu > li.mfn-megamenu-cols-6{width:16.66%}#Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto;border-width:0 1px 0 0}#Top_bar .menu > li > ul.mfn-megamenu > li:last-child > ul{border:0}#Top_bar .menu > li > ul.mfn-megamenu > li > ul li{width:auto}#Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400;background:none}#Top_bar .menu > li > ul.mfn-megamenu a .menu-arrow{display:none}.menuo-right #Top_bar .menu > li > ul.mfn-megamenu{left:auto;right:0}.menuo-right #Top_bar .menu > li > ul.mfn-megamenu-bg{box-sizing:border-box}#Top_bar .menu > li > ul.mfn-megamenu-bg{padding:20px 166px 20px 20px;background-repeat:no-repeat;background-position:right bottom}.rtl #Top_bar .menu > li > ul.mfn-megamenu-bg{padding-left:166px;padding-right:20px;background-position:left bottom}#Top_bar .menu > li > ul.mfn-megamenu-bg > li{background:none}#Top_bar .menu > li > ul.mfn-megamenu-bg > li a{border:none}#Top_bar .menu > li > ul.mfn-megamenu-bg > li > ul{background:none!important;-webkit-box-shadow:0 0 0 0;-moz-box-shadow:0 0 0 0;box-shadow:0 0 0 0}.mm-vertical #Top_bar .container{position:relative;}.mm-vertical #Top_bar .top_bar_left{position:static;}.mm-vertical #Top_bar .menu > li ul{box-shadow:0 0 0 0 transparent!important;background-image:none;}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu{width:98%!important;margin:0 1%;padding:20px 0;}.mm-vertical.header-plain #Top_bar .menu > li > ul.mfn-megamenu{width:100%!important;margin:0;}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li{display:table-cell;float:none!important;width:10%;padding:0 15px;border-right:1px solid rgba(0, 0, 0, 0.05);}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li:last-child{border-right-width:0}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li.hide-border{border-right-width:0}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li a{border-bottom-width:0;padding:9px 15px;line-height:120%;}.mm-vertical #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{font-weight:700;}.rtl .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li:first-child{border-right-width:0}.rtl .mm-vertical #Top_bar .menu > li > ul.mfn-megamenu > li:last-child{border-right-width:1px}#Header_creative #Top_bar .menu > li > ul.mfn-megamenu{width:980px!important;margin:0;}.header-plain:not(.menuo-right) #Header .top_bar_left{width:auto!important}.header-stack.header-center #Top_bar #menu{display:inline-block!important}.header-simple #Top_bar #menu{display:none;height:auto;width:300px;bottom:auto;top:100%;right:1px;position:absolute;margin:0}.header-simple #Header a.responsive-menu-toggle{display:block;right:10px}.header-simple #Top_bar #menu > ul{width:100%;float:left}.header-simple #Top_bar #menu ul li{width:100%;padding-bottom:0;border-right:0;position:relative}.header-simple #Top_bar #menu ul li a{padding:0 20px;margin:0;display:block;height:auto;line-height:normal;border:none}.header-simple #Top_bar #menu ul li a:after{display:none}.header-simple #Top_bar #menu ul li a span{border:none;line-height:44px;display:inline;padding:0}.header-simple #Top_bar #menu ul li.submenu .menu-toggle{display:block;position:absolute;right:0;top:0;width:44px;height:44px;line-height:44px;font-size:30px;font-weight:300;text-align:center;cursor:pointer;color:#444;opacity:0.33;}.header-simple #Top_bar #menu ul li.submenu .menu-toggle:after{content:"+"}.header-simple #Top_bar #menu ul li.hover > .menu-toggle:after{content:"-"}.header-simple #Top_bar #menu ul li.hover a{border-bottom:0}.header-simple #Top_bar #menu ul.mfn-megamenu li .menu-toggle{display:none}.header-simple #Top_bar #menu ul li ul{position:relative!important;left:0!important;top:0;padding:0;margin:0!important;width:auto!important;background-image:none}.header-simple #Top_bar #menu ul li ul li{width:100%!important;display:block;padding:0;}.header-simple #Top_bar #menu ul li ul li a{padding:0 20px 0 30px}.header-simple #Top_bar #menu ul li ul li a .menu-arrow{display:none}.header-simple #Top_bar #menu ul li ul li a span{padding:0}.header-simple #Top_bar #menu ul li ul li a span:after{display:none!important}.header-simple #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400}.header-simple #Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto}.header-simple #Top_bar #menu ul li ul li ul{border-left:0!important;padding:0;top:0}.header-simple #Top_bar #menu ul li ul li ul li a{padding:0 20px 0 40px}.rtl.header-simple #Top_bar #menu{left:1px;right:auto}.rtl.header-simple #Top_bar a.responsive-menu-toggle{left:10px;right:auto}.rtl.header-simple #Top_bar #menu ul li.submenu .menu-toggle{left:0;right:auto}.rtl.header-simple #Top_bar #menu ul li ul{left:auto!important;right:0!important}.rtl.header-simple #Top_bar #menu ul li ul li a{padding:0 30px 0 20px}.rtl.header-simple #Top_bar #menu ul li ul li ul li a{padding:0 40px 0 20px}.menu-highlight #Top_bar .menu > li{margin:0 2px}.menu-highlight:not(.header-creative) #Top_bar .menu > li > a{margin:20px 0;padding:0;-webkit-border-radius:5px;border-radius:5px}.menu-highlight #Top_bar .menu > li > a:after{display:none}.menu-highlight #Top_bar .menu > li > a span:not(.description){line-height:50px}.menu-highlight #Top_bar .menu > li > a span.description{display:none}.menu-highlight.header-stack #Top_bar .menu > li > a{margin:10px 0!important}.menu-highlight.header-stack #Top_bar .menu > li > a span:not(.description){line-height:40px}.menu-highlight.header-transparent #Top_bar .menu > li > a{margin:5px 0}.menu-highlight.header-simple #Top_bar #menu ul li,.menu-highlight.header-creative #Top_bar #menu ul li{margin:0}.menu-highlight.header-simple #Top_bar #menu ul li > a,.menu-highlight.header-creative #Top_bar #menu ul li > a{-webkit-border-radius:0;border-radius:0}.menu-highlight:not(.header-fixed):not(.header-simple) #Top_bar.is-sticky .menu > li > a{margin:10px 0!important;padding:5px 0!important}.menu-highlight:not(.header-fixed):not(.header-simple) #Top_bar.is-sticky .menu > li > a span{line-height:30px!important}.header-modern.menu-highlight.menuo-right .menu_wrapper{margin-right:20px}.menu-line-below #Top_bar .menu > li > a:after{top:auto;bottom:-4px}.menu-line-below #Top_bar.is-sticky .menu > li > a:after{top:auto;bottom:-4px}.menu-line-below-80 #Top_bar:not(.is-sticky) .menu > li > a:after{height:4px;left:10%;top:50%;margin-top:20px;width:80%}.menu-line-below-80-1 #Top_bar:not(.is-sticky) .menu > li > a:after{height:1px;left:10%;top:50%;margin-top:20px;width:80%}.menu-link-color #Top_bar .menu > li > a:after{display:none!important}.menu-arrow-top #Top_bar .menu > li > a:after{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;border-color:#ccc transparent transparent;border-style:solid;border-width:7px 7px 0;display:block;height:0;left:50%;margin-left:-7px;top:0!important;width:0}.menu-arrow-top.header-transparent #Top_bar .menu > li > a:after,.menu-arrow-top.header-plain #Top_bar .menu > li > a:after{display:none}.menu-arrow-top #Top_bar.is-sticky .menu > li > a:after{top:0!important}.menu-arrow-bottom #Top_bar .menu > li > a:after{background:none!important;border-color:transparent transparent #ccc;border-style:solid;border-width:0 7px 7px;display:block;height:0;left:50%;margin-left:-7px;top:auto;bottom:0;width:0}.menu-arrow-bottom.header-transparent #Top_bar .menu > li > a:after,.menu-arrow-bottom.header-plain #Top_bar .menu > li > a:after{display:none}.menu-arrow-bottom #Top_bar.is-sticky .menu > li > a:after{top:auto;bottom:0}.menuo-no-borders #Top_bar .menu > li > a span:not(.description){border-right-width:0}.menuo-no-borders #Header_creative #Top_bar .menu > li > a span{border-bottom-width:0}.menuo-right #Top_bar .menu_wrapper{float:right}.menuo-right.header-stack:not(.header-center) #Top_bar .menu_wrapper{margin-right:150px}body.header-creative{padding-left:50px}body.header-creative.header-open{padding-left:250px}body.error404,body.under-construction,body.template-blank{padding-left:0!important}.header-creative.footer-fixed #Footer,.header-creative.footer-sliding #Footer,.header-creative.footer-stick #Footer.is-sticky{box-sizing:border-box;padding-left:50px;}.header-open.footer-fixed #Footer,.header-open.footer-sliding #Footer,.header-creative.footer-stick #Footer.is-sticky{padding-left:250px;}.header-rtl.header-creative.footer-fixed #Footer,.header-rtl.header-creative.footer-sliding #Footer,.header-rtl.header-creative.footer-stick #Footer.is-sticky{padding-left:0;padding-right:50px;}.header-rtl.header-open.footer-fixed #Footer,.header-rtl.header-open.footer-sliding #Footer,.header-rtl.header-creative.footer-stick #Footer.is-sticky{padding-right:250px;}#Header_creative{background:#fff;position:fixed;width:250px;height:100%;left:-200px;top:0;z-index:9002;-webkit-box-shadow:2px 0 4px 2px rgba(0,0,0,.15);box-shadow:2px 0 4px 2px rgba(0,0,0,.15)}#Header_creative .container{width:100%}#Header_creative .creative-wrapper{opacity:0;margin-right:50px}#Header_creative a.creative-menu-toggle{display:block;width:34px;height:34px;line-height:34px;font-size:22px;text-align:center;position:absolute;top:10px;right:8px;border-radius:3px}.admin-bar #Header_creative a.creative-menu-toggle{top:42px}#Header_creative #Top_bar{position:static;width:100%}#Header_creative #Top_bar .top_bar_left{width:100%!important;float:none}#Header_creative #Top_bar .top_bar_right{width:100%!important;float:none;height:auto;margin-bottom:35px;text-align:center;padding:0 20px;top:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#Header_creative #Top_bar .top_bar_right:before{display:none}#Header_creative #Top_bar .top_bar_right_wrapper{top:0}#Header_creative #Top_bar .logo{float:none;text-align:center;margin:15px 0}#Header_creative #Top_bar .menu_wrapper{float:none;margin:0 0 30px}#Header_creative #Top_bar .menu > li{width:100%;float:none;position:relative}#Header_creative #Top_bar .menu > li > a{padding:0;text-align:center}#Header_creative #Top_bar .menu > li > a:after{display:none}#Header_creative #Top_bar .menu > li > a span{border-right:0;border-bottom-width:1px;line-height:38px}#Header_creative #Top_bar .menu li ul{left:100%;right:auto;top:0;box-shadow:2px 2px 2px 0 rgba(0,0,0,0.03);-webkit-box-shadow:2px 2px 2px 0 rgba(0,0,0,0.03)}#Header_creative #Top_bar .menu > li > ul.mfn-megamenu{width:700px!important;}#Header_creative #Top_bar .menu > li > ul.mfn-megamenu > li > ul{left:0}#Header_creative #Top_bar .menu li ul li a{padding-top:9px;padding-bottom:8px}#Header_creative #Top_bar .menu li ul li ul{top:0!important}#Header_creative #Top_bar .menu > li > a span.description{display:block;font-size:13px;line-height:28px!important;clear:both}#Header_creative #Top_bar .search_wrapper{left:100%;top:auto;bottom:0}#Header_creative #Top_bar a#header_cart{display:inline-block;float:none;top:3px}#Header_creative #Top_bar a#search_button{display:inline-block;float:none;top:3px}#Header_creative #Top_bar .wpml-languages{display:inline-block;float:none;top:0}#Header_creative #Top_bar .wpml-languages.enabled:hover a.active{padding-bottom:9px}#Header_creative #Top_bar a.button.action_button{display:inline-block;float:none;top:16px;margin:0}#Header_creative #Top_bar .banner_wrapper{display:block;text-align:center}#Header_creative #Top_bar .banner_wrapper img{max-width:100%;height:auto;display:inline-block}#Header_creative #Action_bar{position:absolute;bottom:0;top:auto;clear:both;padding:0 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#Header_creative #Action_bar .social{float:none;text-align:center;padding:5px 0 15px}#Header_creative #Action_bar .social li{margin-bottom:2px}#Header_creative .social li a{color:rgba(0,0,0,.5)}#Header_creative .social li a:hover{color:#000}#Header_creative .creative-social{position:absolute;bottom:10px;right:0;width:50px}#Header_creative .creative-social li{display:block;float:none;width:100%;text-align:center;margin-bottom:5px}.header-creative .fixed-nav.fixed-nav-prev{margin-left:50px}.header-creative.header-open .fixed-nav.fixed-nav-prev{margin-left:250px}.menuo-last #Header_creative #Top_bar .menu li.last ul{top:auto;bottom:0}.header-open #Header_creative{left:0}.header-open #Header_creative .creative-wrapper{opacity:1;margin:0!important;}.header-open #Header_creative .creative-menu-toggle,.header-open #Header_creative .creative-social{display:none}body.header-rtl.header-creative{padding-left:0;padding-right:50px}.header-rtl #Header_creative{left:auto;right:-200px}.header-rtl.nice-scroll #Header_creative{margin-right:10px}.header-rtl #Header_creative .creative-wrapper{margin-left:50px;margin-right:0}.header-rtl #Header_creative a.creative-menu-toggle{left:8px;right:auto}.header-rtl #Header_creative .creative-social{left:0;right:auto}.header-rtl #Footer #back_to_top.sticky{right:125px}.header-rtl #popup_contact{right:70px}.header-rtl #Header_creative #Top_bar .menu li ul{left:auto;right:100%}.header-rtl #Header_creative #Top_bar .search_wrapper{left:auto;right:100%;}.header-rtl .fixed-nav.fixed-nav-prev{margin-left:0!important}.header-rtl .fixed-nav.fixed-nav-next{margin-right:50px}body.header-rtl.header-creative.header-open{padding-left:0;padding-right:250px!important}.header-rtl.header-open #Header_creative{left:auto;right:0}.header-rtl.header-open #Footer #back_to_top.sticky{right:325px}.header-rtl.header-open #popup_contact{right:270px}.header-rtl.header-open .fixed-nav.fixed-nav-next{margin-right:250px}#Header_creative.active{left:-1px;}.header-rtl #Header_creative.active{left:auto;right:-1px;}#Header_creative.active .creative-wrapper{opacity:1;margin:0}.header-creative .vc_row[data-vc-full-width]{padding-left:50px}.header-creative.header-open .vc_row[data-vc-full-width]{padding-left:250px}.header-open .vc_parallax .vc_parallax-inner { left:auto; width: calc(100% - 250px); }.header-open.header-rtl .vc_parallax .vc_parallax-inner { left:0; right:auto; }#Header_creative.scroll{height:100%;overflow-y:auto}#Header_creative.scroll:not(.dropdown) .menu li ul{display:none!important}#Header_creative.scroll #Action_bar{position:static}#Header_creative.dropdown{outline:none}#Header_creative.dropdown #Top_bar .menu_wrapper{float:left}#Header_creative.dropdown #Top_bar #menu ul li{position:relative;float:left}#Header_creative.dropdown #Top_bar #menu ul li a:after{display:none}#Header_creative.dropdown #Top_bar #menu ul li a span{line-height:38px;padding:0}#Header_creative.dropdown #Top_bar #menu ul li.submenu .menu-toggle{display:block;position:absolute;right:0;top:0;width:38px;height:38px;line-height:38px;font-size:26px;font-weight:300;text-align:center;cursor:pointer;color:#444;opacity:0.33;}#Header_creative.dropdown #Top_bar #menu ul li.submenu .menu-toggle:after{content:"+"}#Header_creative.dropdown #Top_bar #menu ul li.hover > .menu-toggle:after{content:"-"}#Header_creative.dropdown #Top_bar #menu ul li.hover a{border-bottom:0}#Header_creative.dropdown #Top_bar #menu ul.mfn-megamenu li .menu-toggle{display:none}#Header_creative.dropdown #Top_bar #menu ul li ul{position:relative!important;left:0!important;top:0;padding:0;margin-left:0!important;width:auto!important;background-image:none}#Header_creative.dropdown #Top_bar #menu ul li ul li{width:100%!important}#Header_creative.dropdown #Top_bar #menu ul li ul li a{padding:0 10px;text-align:center}#Header_creative.dropdown #Top_bar #menu ul li ul li a .menu-arrow{display:none}#Header_creative.dropdown #Top_bar #menu ul li ul li a span{padding:0}#Header_creative.dropdown #Top_bar #menu ul li ul li a span:after{display:none!important}#Header_creative.dropdown #Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400}#Header_creative.dropdown #Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto}#Header_creative.dropdown #Top_bar #menu ul li ul li ul{border-left:0!important;padding:0;top:0}#Header_creative{transition: left .5s ease-in-out, right .5s ease-in-out;}#Header_creative .creative-wrapper{transition: opacity .5s ease-in-out, margin 0s ease-in-out .5s;}#Header_creative.active .creative-wrapper{transition: opacity .5s ease-in-out, margin 0s ease-in-out;}}@media only screen and (min-width: 1240px) {#Top_bar.is-sticky{position:fixed!important;width:100%;left:0;top:-60px;height:60px;z-index:701;background:#fff;opacity:.97;filter:alpha(opacity = 97);-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.1);-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,0.1);box-shadow:0 2px 5px 0 rgba(0,0,0,0.1)}.layout-boxed.header-boxed #Top_bar.is-sticky{max-width:1240px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layout-boxed.header-boxed.nice-scroll #Top_bar.is-sticky{margin-left:-5px}#Top_bar.is-sticky .top_bar_left,#Top_bar.is-sticky .top_bar_right,#Top_bar.is-sticky .top_bar_right:before{background:none}#Top_bar.is-sticky .top_bar_right{top:-4px;height:auto;}#Top_bar.is-sticky .top_bar_right_wrapper{top:15px}.header-plain #Top_bar.is-sticky .top_bar_right_wrapper{top:0}#Top_bar.is-sticky .logo{width:auto;margin:0 30px 0 20px;padding:0}#Top_bar.is-sticky #logo{padding:5px 0!important;height:50px!important;line-height:50px!important}#Top_bar.is-sticky #logo img:not(.svg){max-height:35px;width:auto!important}#Top_bar.is-sticky #logo img.logo-main{display:none}#Top_bar.is-sticky #logo img.logo-sticky{display:inline}#Top_bar.is-sticky .menu_wrapper{clear:none}#Top_bar.is-sticky .menu_wrapper .menu > li > a{padding:15px 0}#Top_bar.is-sticky .menu > li > a,#Top_bar.is-sticky .menu > li > a span{line-height:30px}#Top_bar.is-sticky .menu > li > a:after{top:auto;bottom:-4px}#Top_bar.is-sticky .menu > li > a span.description{display:none}#Top_bar.is-sticky .secondary_menu_wrapper,#Top_bar.is-sticky .banner_wrapper{display:none}.header-overlay #Top_bar.is-sticky{display:none}.sticky-dark #Top_bar.is-sticky{background:rgba(0,0,0,.8)}.sticky-dark #Top_bar.is-sticky #menu{background:rgba(0,0,0,.8)}.sticky-dark #Top_bar.is-sticky .menu > li > a{color:#fff}.sticky-dark #Top_bar.is-sticky .top_bar_right a{color:rgba(255,255,255,.5)}.sticky-dark #Top_bar.is-sticky .wpml-languages a.active,.sticky-dark #Top_bar.is-sticky .wpml-languages ul.wpml-lang-dropdown{background:rgba(0,0,0,0.3);border-color:rgba(0,0,0,0.1)}}@media only screen and (min-width: 768px) and (max-width: 1240px){.header_placeholder{height:0!important}}@media only screen and (max-width: 1239px){#Top_bar #menu{display:none;height:auto;width:300px;bottom:auto;top:100%;right:1px;position:absolute;margin:0}#Top_bar a.responsive-menu-toggle{display:block}#Top_bar #menu > ul{width:100%;float:left}#Top_bar #menu ul li{width:100%;padding-bottom:0;border-right:0;position:relative}#Top_bar #menu ul li a{padding:0 25px;margin:0;display:block;height:auto;line-height:normal;border:none}#Top_bar #menu ul li a:after{display:none}#Top_bar #menu ul li a span{border:none;line-height:44px;display:inline;padding:0}#Top_bar #menu ul li a span.description{margin:0 0 0 5px}#Top_bar #menu ul li.submenu .menu-toggle{display:block;position:absolute;right:15px;top:0;width:44px;height:44px;line-height:44px;font-size:30px;font-weight:300;text-align:center;cursor:pointer;color:#444;opacity:0.33;}#Top_bar #menu ul li.submenu .menu-toggle:after{content:"+"}#Top_bar #menu ul li.hover > .menu-toggle:after{content:"-"}#Top_bar #menu ul li.hover a{border-bottom:0}#Top_bar #menu ul li a span:after{display:none!important}#Top_bar #menu ul.mfn-megamenu li .menu-toggle{display:none}#Top_bar #menu ul li ul{position:relative!important;left:0!important;top:0;padding:0;margin-left:0!important;width:auto!important;background-image:none!important;box-shadow:0 0 0 0 transparent!important;-webkit-box-shadow:0 0 0 0 transparent!important}#Top_bar #menu ul li ul li{width:100%!important}#Top_bar #menu ul li ul li a{padding:0 20px 0 35px}#Top_bar #menu ul li ul li a .menu-arrow{display:none}#Top_bar #menu ul li ul li a span{padding:0}#Top_bar #menu ul li ul li a span:after{display:none!important}#Top_bar .menu > li > ul.mfn-megamenu a.mfn-megamenu-title{text-transform:uppercase;font-weight:400}#Top_bar .menu > li > ul.mfn-megamenu > li > ul{display:block!important;position:inherit;left:auto;top:auto}#Top_bar #menu ul li ul li ul{border-left:0!important;padding:0;top:0}#Top_bar #menu ul li ul li ul li a{padding:0 20px 0 45px}.rtl #Top_bar #menu{left:1px;right:auto}.rtl #Top_bar a.responsive-menu-toggle{left:20px;right:auto}.rtl #Top_bar #menu ul li.submenu .menu-toggle{left:15px;right:auto;border-left:none;border-right:1px solid #eee}.rtl #Top_bar #menu ul li ul{left:auto!important;right:0!important}.rtl #Top_bar #menu ul li ul li a{padding:0 30px 0 20px}.rtl #Top_bar #menu ul li ul li ul li a{padding:0 40px 0 20px}.header-stack .menu_wrapper a.responsive-menu-toggle{position:static!important;margin:11px 0!important}.header-stack .menu_wrapper #menu{left:0;right:auto}.rtl.header-stack #Top_bar #menu{left:auto;right:0}.admin-bar #Header_creative{top:32px}.header-creative.layout-boxed{padding-top:85px}.header-creative.layout-full-width #Wrapper{padding-top:60px}#Header_creative{position:fixed;width:100%;left:0!important;top:0;z-index:1001}#Header_creative .creative-wrapper{display:block!important;opacity:1!important}#Header_creative .creative-menu-toggle,#Header_creative .creative-social{display:none!important;opacity:1!important;filter:alpha(opacity=100)!important}#Header_creative #Top_bar{position:static;width:100%}#Header_creative #Top_bar #logo{height:50px;line-height:50px;padding:5px 0}#Header_creative #Top_bar #logo img{max-height:40px}#Header_creative #logo img.logo-main{display:none}#Header_creative #logo img.logo-sticky{display:inline-block}.logo-no-sticky-padding #Header_creative #Top_bar #logo{height:60px;line-height:60px;padding:0}.logo-no-sticky-padding #Header_creative #Top_bar #logo img{max-height:60px}#Header_creative #Top_bar #header_cart{top:21px}#Header_creative #Top_bar #search_button{top:20px}#Header_creative #Top_bar .wpml-languages{top:11px}#Header_creative #Top_bar .action_button{top:9px}#Header_creative #Top_bar .top_bar_right{height:60px;top:0}#Header_creative #Top_bar .top_bar_right:before{display:none}#Header_creative #Top_bar .top_bar_right_wrapper{top:0}#Header_creative #Action_bar{display:none}#Header_creative.scroll{overflow:visible!important}}#Header_wrapper, #Intro {background-color: #000119;}#Subheader {background-color: rgba(247, 247, 247, 1);}.header-classic #Action_bar, .header-fixed #Action_bar, .header-plain #Action_bar, .header-split #Action_bar, .header-stack #Action_bar {background-color: #292b33;}#Sliding-top {background-color: #545454;}#Sliding-top a.sliding-top-control {border-right-color: #545454;}#Sliding-top.st-center a.sliding-top-control,#Sliding-top.st-left a.sliding-top-control {border-top-color: #545454;}#Footer {background-color: #484947;}body, ul.timeline_items, .icon_box a .desc, .icon_box a:hover .desc, .feature_list ul li a, .list_item a, .list_item a:hover,.widget_recent_entries ul li a, .flat_box a, .flat_box a:hover, .story_box .desc, .content_slider.carouselul li a .title,.content_slider.flat.description ul li .desc, .content_slider.flat.description ul li a .desc, .post-nav.minimal a i {color: #626262;}.post-nav.minimal a svg {fill: #626262;}.themecolor, .opening_hours .opening_hours_wrapper li span, .fancy_heading_icon .icon_top,.fancy_heading_arrows .icon-right-dir, .fancy_heading_arrows .icon-left-dir, .fancy_heading_line .title,.button-love a.mfn-love, .format-link .post-title .icon-link, .pager-single > span, .pager-single a:hover,.widget_meta ul, .widget_pages ul, .widget_rss ul, .widget_mfn_recent_comments ul li:after, .widget_archive ul, .widget_recent_comments ul li:after, .widget_nav_menu ul, .woocommerce ul.products li.product .price, .shop_slider .shop_slider_ul li .item_wrapper .price, .woocommerce-page ul.products li.product .price, .widget_price_filter .price_label .from, .widget_price_filter .price_label .to,.woocommerce ul.product_list_widget li .quantity .amount, .woocommerce .product div.entry-summary .price, .woocommerce .star-rating span,#Error_404 .error_pic i, .style-simple #Filters .filters_wrapper ul li a:hover, .style-simple #Filters .filters_wrapper ul li.current-cat a,.style-simple .quick_fact .title {color: #0095eb;}.themebg,#comments .commentlist > li .reply a.comment-reply-link,div.jp-interface,#Filters .filters_wrapper ul li a:hover,#Filters .filters_wrapper ul li.current-cat a,.fixed-nav .arrow,.offer_thumb .slider_pagination a:before,.offer_thumb .slider_pagination a.selected:after,.pager .pages a:hover,.pager .pages a.active,.pager .pages span.page-numbers.current,.pager-single span:after,.portfolio_group.exposure .portfolio-item .desc-inner .line,.Recent_posts ul li .desc:after,.Recent_posts ul li .photo .c,.slider_pagination a.selected,.slider_pagination .slick-active a,.slider_pagination a.selected:after,.slider_pagination .slick-active a:after,.testimonials_slider .slider_images,.testimonials_slider .slider_images a:after,.testimonials_slider .slider_images:before,#Top_bar a#header_cart span,.widget_categories ul,.widget_mfn_menu ul li a:hover,.widget_mfn_menu ul li.current-menu-item:not(.current-menu-ancestor) > a,.widget_mfn_menu ul li.current_page_item:not(.current_page_ancestor) > a,.widget_product_categories ul,.widget_recent_entries ul li:after,.woocommerce-account table.my_account_orders .order-number a,.woocommerce-MyAccount-navigation ul li.is-active a, .style-simple .accordion .question:after,.style-simple .faq .question:after,.style-simple .icon_box .desc_wrapper .title:before,.style-simple #Filters .filters_wrapper ul li a:after,.style-simple .article_box .desc_wrapper p:after,.style-simple .sliding_box .desc_wrapper:after,.style-simple .trailer_box:hover .desc,.tp-bullets.simplebullets.round .bullet.selected,.tp-bullets.simplebullets.round .bullet.selected:after,.tparrows.default,.tp-bullets.tp-thumbs .bullet.selected:after{background-color: #0095eb;}.Latest_news ul li .photo, .style-simple .opening_hours .opening_hours_wrapper li label,.style-simple .timeline_items li:hover h3, .style-simple .timeline_items li:nth-child(even):hover h3, .style-simple .timeline_items li:hover .desc, .style-simple .timeline_items li:nth-child(even):hover,.style-simple .offer_thumb .slider_pagination a.selected {border-color: #0095eb;}a {color: #000000;}a:hover {color: #8dc63f;}*::-moz-selection {background-color: #000000;}*::selection {background-color: #000000;}.blockquote p.author span, .counter .desc_wrapper .title, .article_box .desc_wrapper p, .team .desc_wrapper p.subtitle, .pricing-box .plan-header p.subtitle, .pricing-box .plan-header .price sup.period, .chart_box p, .fancy_heading .inside,.fancy_heading_line .slogan, .post-meta, .post-meta a, .post-footer, .post-footer a span.label, .pager .pages a, .button-love a .label,.pager-single a, #comments .commentlist > li .comment-author .says, .fixed-nav .desc .date, .filters_buttons li.label, .Recent_posts ul li a .desc .date,.widget_recent_entries ul li .post-date, .tp_recent_tweets .twitter_time, .widget_price_filter .price_label, .shop-filters .woocommerce-result-count,.woocommerce ul.product_list_widget li .quantity, .widget_shopping_cart ul.product_list_widget li dl, .product_meta .posted_in,.woocommerce .shop_table .product-name .variation > dd, .shipping-calculator-button:after,.shop_slider .shop_slider_ul li .item_wrapper .price del,.testimonials_slider .testimonials_slider_ul li .author span, .testimonials_slider .testimonials_slider_ul li .author span a, .Latest_news ul li .desc_footer {color: #a8a8a8;}h1, h1 a, h1 a:hover, .text-logo #logo { color: #161922; }h2, h2 a, h2 a:hover { color: #161922; }h3, h3 a, h3 a:hover { color: #161922; }h4, h4 a, h4 a:hover, .style-simple .sliding_box .desc_wrapper h4 { color: #161922; }h5, h5 a, h5 a:hover { color: #161922; }h6, h6 a, h6 a:hover, a.content_link .title { color: #161922; }.dropcap, .highlight:not(.highlight_image) {background-color: #0095eb;}a.button, a.tp-button {background-color: #f7f7f7;color: #747474;}.button-stroke a.button, .button-stroke a.button.action_button, .button-stroke a.button .button_icon i, .button-stroke a.tp-button {border-color: #f7f7f7;color: #747474;}.button-stroke a:hover.button, .button-stroke a:hover.tp-button {background-color: #f7f7f7 !important;color: #fff;}a.button_theme, a.tp-button.button_theme,button, input[type="submit"], input[type="reset"], input[type="button"] {background-color: #0095eb;color: #fff;}.button-stroke a.button.button_theme:not(.action_button),.button-stroke a.button.button_theme .button_icon i, .button-stroke a.tp-button.button_theme,.button-stroke button, .button-stroke input[type="submit"], .button-stroke input[type="reset"], .button-stroke input[type="button"] {border-color: #0095eb;color: #0095eb !important;}.button-stroke a.button.button_theme:hover, .button-stroke a.tp-button.button_theme:hover,.button-stroke button:hover, .button-stroke input[type="submit"]:hover, .button-stroke input[type="reset"]:hover, .button-stroke input[type="button"]:hover {background-color: #0095eb !important;color: #fff !important;}a.mfn-link { color: #656B6F; }a.mfn-link-2 span, a:hover.mfn-link-2 span:before, a.hover.mfn-link-2 span:before, a.mfn-link-5 span, a.mfn-link-8:after, a.mfn-link-8:before { background: #0095eb; }a:hover.mfn-link { color: #0095eb;}a.mfn-link-2 span:before, a:hover.mfn-link-4:before, a:hover.mfn-link-4:after, a.hover.mfn-link-4:before, a.hover.mfn-link-4:after, a.mfn-link-5:before, a.mfn-link-7:after, a.mfn-link-7:before { background: #007cc3; }a.mfn-link-6:before {border-bottom-color: #007cc3;}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background-color: #0095eb;color: #fff;}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color: #0095eb;color: #fff;}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit[disabled]:disabled,.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce a.button[disabled]:disabled,.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce button.button[disabled]:disabled,.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce input.button[disabled]:disabled{background-color: #0095eb;color: #fff;}.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit[disabled]:disabled:hover,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled:hover,.woocommerce a.button[disabled]:disabled:hover,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled:hover,.woocommerce button.button[disabled]:disabled:hover,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled:hover,.woocommerce input.button[disabled]:disabled:hover{background-color: #0095eb;color: #fff;}.button-stroke.woocommerce-page #respond input#submit,.button-stroke.woocommerce-page a.button:not(.action_button),.button-stroke.woocommerce-page button.button,.button-stroke.woocommerce-page input.button{border: 2px solid #0095eb !important;color: #0095eb !important;}.button-stroke.woocommerce-page #respond input#submit:hover,.button-stroke.woocommerce-page a.button:not(.action_button):hover,.button-stroke.woocommerce-page button.button:hover,.button-stroke.woocommerce-page input.button:hover{background-color: #0095eb !important;color: #fff !important;}.column_column ul, .column_column ol, .the_content_wrapper ul, .the_content_wrapper ol {color: #737E86;}.hr_color, .hr_color hr, .hr_dots span {color: #0095eb;background: #0095eb;}.hr_zigzag i {color: #0095eb;} .highlight-left:after,.highlight-right:after {background: #0095eb;}@media only screen and (max-width: 767px) {.highlight-left .wrap:first-child,.highlight-right .wrap:last-child {background: #0095eb;}}#Header .top_bar_left, .header-classic #Top_bar, .header-plain #Top_bar, .header-stack #Top_bar, .header-split #Top_bar,.header-fixed #Top_bar, .header-below #Top_bar, #Header_creative, #Top_bar #menu, .sticky-tb-color #Top_bar.is-sticky {background-color: #ffffff;}#Top_bar .wpml-languages a.active, #Top_bar .wpml-languages ul.wpml-lang-dropdown {background-color: #ffffff;}#Top_bar .top_bar_right:before {background-color: #e3e3e3;}#Header .top_bar_right {background-color: #f5f5f5;}#Top_bar .top_bar_right a:not(.action_button) { color: #333333;}#Top_bar .menu > li > a,#Top_bar #menu ul li.submenu .menu-toggle { color: #444444;}#Top_bar .menu > li.current-menu-item > a,#Top_bar .menu > li.current_page_item > a,#Top_bar .menu > li.current-menu-parent > a,#Top_bar .menu > li.current-page-parent > a,#Top_bar .menu > li.current-menu-ancestor > a,#Top_bar .menu > li.current-page-ancestor > a,#Top_bar .menu > li.current_page_ancestor > a,#Top_bar .menu > li.hover > a { color: #0095eb; }#Top_bar .menu > li a:after { background: #0095eb; }.menuo-arrows #Top_bar .menu > li.submenu > a > span:not(.description)::after { border-top-color: #444444;}#Top_bar .menu > li.current-menu-item.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current_page_item.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-menu-parent.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-page-parent.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-menu-ancestor.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current-page-ancestor.submenu > a > span:not(.description)::after,#Top_bar .menu > li.current_page_ancestor.submenu > a > span:not(.description)::after,#Top_bar .menu > li.hover.submenu > a > span:not(.description)::after { border-top-color: #0095eb; }.menu-highlight #Top_bar #menu > ul > li.current-menu-item > a,.menu-highlight #Top_bar #menu > ul > li.current_page_item > a,.menu-highlight #Top_bar #menu > ul > li.current-menu-parent > a,.menu-highlight #Top_bar #menu > ul > li.current-page-parent > a,.menu-highlight #Top_bar #menu > ul > li.current-menu-ancestor > a,.menu-highlight #Top_bar #menu > ul > li.current-page-ancestor > a,.menu-highlight #Top_bar #menu > ul > li.current_page_ancestor > a,.menu-highlight #Top_bar #menu > ul > li.hover > a { background: #F2F2F2; }.menu-arrow-bottom #Top_bar .menu > li > a:after { border-bottom-color: #0095eb;}.menu-arrow-top #Top_bar .menu > li > a:after {border-top-color: #0095eb;}.header-plain #Top_bar .menu > li.current-menu-item > a,.header-plain #Top_bar .menu > li.current_page_item > a,.header-plain #Top_bar .menu > li.current-menu-parent > a,.header-plain #Top_bar .menu > li.current-page-parent > a,.header-plain #Top_bar .menu > li.current-menu-ancestor > a,.header-plain #Top_bar .menu > li.current-page-ancestor > a,.header-plain #Top_bar .menu > li.current_page_ancestor > a,.header-plain #Top_bar .menu > li.hover > a,.header-plain #Top_bar a:hover#header_cart,.header-plain #Top_bar a:hover#search_button,.header-plain #Top_bar .wpml-languages:hover,.header-plain #Top_bar .wpml-languages ul.wpml-lang-dropdown {background: #F2F2F2; color: #0095eb;}.header-plain #Top_bar,.header-plain #Top_bar .menu > li > a span:not(.description),.header-plain #Top_bar a#header_cart,.header-plain #Top_bar a#search_button,.header-plain #Top_bar .wpml-languages,.header-plain #Top_bar a.button.action_button {border-color: #F2F2F2;}#Top_bar .menu > li ul {background-color: #F2F2F2;}#Top_bar .menu > li ul li a {color: #5f5f5f;}#Top_bar .menu > li ul li a:hover,#Top_bar .menu > li ul li.hover > a {color: #2e2e2e;}#Top_bar .search_wrapper { background: #0095eb; }.overlay-menu-toggle {color: #0095eb !important; background: transparent; }#Overlay {background: rgba(0, 149, 235, 0.95);}#overlay-menu ul li a, .header-overlay .overlay-menu-toggle.focus {color: #FFFFFF;}#overlay-menu ul li.current-menu-item > a,#overlay-menu ul li.current_page_item > a,#overlay-menu ul li.current-menu-parent > a,#overlay-menu ul li.current-page-parent > a,#overlay-menu ul li.current-menu-ancestor > a,#overlay-menu ul li.current-page-ancestor > a,#overlay-menu ul li.current_page_ancestor > a { color: #B1DCFB; }#Top_bar .responsive-menu-toggle,#Header_creative .creative-menu-toggle,#Header_creative .responsive-menu-toggle {color: #0095eb; background: transparent;}#Side_slide{background-color: #191919;border-color: #191919; }#Side_slide,#Side_slide .search-wrapper input.field,#Side_slide a:not(.button),#Side_slide #menu ul li.submenu .menu-toggle{color: #A6A6A6;}#Side_slide a:not(.button):hover,#Side_slide a.active,#Side_slide #menu ul li.hover > .menu-toggle{color: #FFFFFF;}#Side_slide #menu ul li.current-menu-item > a,#Side_slide #menu ul li.current_page_item > a,#Side_slide #menu ul li.current-menu-parent > a,#Side_slide #menu ul li.current-page-parent > a,#Side_slide #menu ul li.current-menu-ancestor > a,#Side_slide #menu ul li.current-page-ancestor > a,#Side_slide #menu ul li.current_page_ancestor > a,#Side_slide #menu ul li.hover > a,#Side_slide #menu ul li:hover > a{color: #FFFFFF;}#Action_bar .contact_details{color: #bbbbbb}#Action_bar .contact_details a{color: #0095eb}#Action_bar .contact_details a:hover{color: #007cc3}#Action_bar .social li a,#Action_bar .social-menu a{color: #bbbbbb}#Action_bar .social li a:hover,#Action_bar .social-menu a:hover{color: #FFFFFF}#Subheader .title{color: #444444;}#Subheader ul.breadcrumbs li, #Subheader ul.breadcrumbs li a{color: rgba(68, 68, 68, 0.6);}#Footer, #Footer .widget_recent_entries ul li a {color: #cccccc;}#Footer a {color: #ffffff;}#Footer a:hover {color: #a1a1a1;}#Footer h1, #Footer h1 a, #Footer h1 a:hover,#Footer h2, #Footer h2 a, #Footer h2 a:hover,#Footer h3, #Footer h3 a, #Footer h3 a:hover,#Footer h4, #Footer h4 a, #Footer h4 a:hover,#Footer h5, #Footer h5 a, #Footer h5 a:hover,#Footer h6, #Footer h6 a, #Footer h6 a:hover {color: #ffffff;}/#Footer .themecolor, #Footer .widget_meta ul, #Footer .widget_pages ul, #Footer .widget_rss ul, #Footer .widget_mfn_recent_comments ul li:after, #Footer .widget_archive ul, #Footer .widget_recent_comments ul li:after, #Footer .widget_nav_menu ul, #Footer .widget_price_filter .price_label .from, #Footer .widget_price_filter .price_label .to,#Footer .star-rating span {color: #484947;}#Footer .themebg, #Footer .widget_categories ul, #Footer .Recent_posts ul li .desc:after, #Footer .Recent_posts ul li .photo .c,#Footer .widget_recent_entries ul li:after, #Footer .widget_mfn_menu ul li a:hover, #Footer .widget_product_categories ul {background-color: #484947;}#Footer .Recent_posts ul li a .desc .date, #Footer .widget_recent_entries ul li .post-date, #Footer .tp_recent_tweets .twitter_time, #Footer .widget_price_filter .price_label, #Footer .shop-filters .woocommerce-result-count, #Footer ul.product_list_widget li .quantity, #Footer .widget_shopping_cart ul.product_list_widget li dl {color: #a8a8a8;}#Footer .footer_copy .social li a,#Footer .footer_copy .social-menu a{color: #65666C;}#Footer .footer_copy .social li a:hover,#Footer .footer_copy .social-menu a:hover{color: #FFFFFF;}a#back_to_top.button.button_js{color: #65666C;background:transparent;-webkit-box-shadow:0 0 0 0 transparent;box-shadow:0 0 0 0 transparent;}a#back_to_top.button.button_js:after{display:none;}#Sliding-top, #Sliding-top .widget_recent_entries ul li a {color: #cccccc;}#Sliding-top a {color: #0095eb;}#Sliding-top a:hover {color: #007cc3;}#Sliding-top h1, #Sliding-top h1 a, #Sliding-top h1 a:hover,#Sliding-top h2, #Sliding-top h2 a, #Sliding-top h2 a:hover,#Sliding-top h3, #Sliding-top h3 a, #Sliding-top h3 a:hover,#Sliding-top h4, #Sliding-top h4 a, #Sliding-top h4 a:hover,#Sliding-top h5, #Sliding-top h5 a, #Sliding-top h5 a:hover,#Sliding-top h6, #Sliding-top h6 a, #Sliding-top h6 a:hover {color: #ffffff;}#Sliding-top .themecolor, #Sliding-top .widget_meta ul, #Sliding-top .widget_pages ul, #Sliding-top .widget_rss ul, #Sliding-top .widget_mfn_recent_comments ul li:after, #Sliding-top .widget_archive ul, #Sliding-top .widget_recent_comments ul li:after, #Sliding-top .widget_nav_menu ul, #Sliding-top .widget_price_filter .price_label .from, #Sliding-top .widget_price_filter .price_label .to,#Sliding-top .star-rating span {color: #0095eb;}#Sliding-top .themebg, #Sliding-top .widget_categories ul, #Sliding-top .Recent_posts ul li .desc:after, #Sliding-top .Recent_posts ul li .photo .c,#Sliding-top .widget_recent_entries ul li:after, #Sliding-top .widget_mfn_menu ul li a:hover, #Sliding-top .widget_product_categories ul {background-color: #0095eb;}#Sliding-top .Recent_posts ul li a .desc .date, #Sliding-top .widget_recent_entries ul li .post-date, #Sliding-top .tp_recent_tweets .twitter_time, #Sliding-top .widget_price_filter .price_label, #Sliding-top .shop-filters .woocommerce-result-count, #Sliding-top ul.product_list_widget li .quantity, #Sliding-top .widget_shopping_cart ul.product_list_widget li dl {color: #a8a8a8;}blockquote, blockquote a, blockquote a:hover {color: #444444;}.image_frame .image_wrapper .image_links,.portfolio_group.masonry-hover .portfolio-item .masonry-hover-wrapper .hover-desc { background: rgba(0, 149, 235, 0.8);}.masonry.tiles .post-item .post-desc-wrapper .post-desc .post-title:after,.masonry.tiles .post-item.no-img,.masonry.tiles .post-item.format-quote,.blog-teaser li .desc-wrapper .desc .post-title:after,.blog-teaser li.no-img,.blog-teaser li.format-quote {background: #0095eb;} .image_frame .image_wrapper .image_links a {color: #ffffff;}.image_frame .image_wrapper .image_links a:hover {background: #ffffff;color: #0095eb;}.image_frame {border-color: #f8f8f8;}.image_frame .image_wrapper .mask::after {background: rgba(255, 255, 255, 0.4);}.sliding_box .desc_wrapper {background: #0095eb;}.sliding_box .desc_wrapper:after {border-bottom-color: #0095eb;}.counter .icon_wrapper i {color: #0095eb;}.quick_fact .number-wrapper {color: #0095eb;}.progress_bars .bars_list li .bar .progress { background-color: #0095eb;}a:hover.icon_bar {color: #0095eb !important;}a.content_link, a:hover.content_link {color: #0095eb;}a.content_link:before {border-bottom-color: #0095eb;}a.content_link:after {border-color: #0095eb;}.get_in_touch, .infobox {background-color: #0095eb;}.google-map-contact-wrapper .get_in_touch:after {border-top-color: #0095eb;}.timeline_items li h3:before,.timeline_items:after,.timeline .post-item:before { border-color: #0095eb;}.how_it_works .image .number { background: #0095eb;}.trailer_box .desc .subtitle {background-color: #0095eb;}.icon_box .icon_wrapper, .icon_box a .icon_wrapper,.style-simple .icon_box:hover .icon_wrapper {color: #0095eb;}.icon_box:hover .icon_wrapper:before, .icon_box a:hover .icon_wrapper:before { background-color: #0095eb;}ul.clients.clients_tiles li .client_wrapper:hover:before { background: #0095eb;}ul.clients.clients_tiles li .client_wrapper:after { border-bottom-color: #0095eb;}.list_item.lists_1 .list_left {background-color: #0095eb;}.list_item .list_left {color: #0095eb;}.feature_list ul li .icon i { color: #0095eb;}.feature_list ul li:hover,.feature_list ul li:hover a {background: #0095eb;}.ui-tabs .ui-tabs-nav li.ui-state-active a,.accordion .question.active .title > .acc-icon-plus,.accordion .question.active .title > .acc-icon-minus,.faq .question.active .title > .acc-icon-plus,.faq .question.active .title,.accordion .question.active .title {color: #0095eb;}.ui-tabs .ui-tabs-nav li.ui-state-active a:after {background: #0095eb;}body.table-hover:not(.woocommerce-page) table tr:hover td {background: #0095eb;}.pricing-box .plan-header .price sup.currency,.pricing-box .plan-header .price > span {color: #0095eb;}.pricing-box .plan-inside ul li .yes { background: #0095eb;}.pricing-box-box.pricing-box-featured {background: #0095eb;}input[type="date"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"],select, textarea, .woocommerce .quantity input.qty {color: #626262;background-color: rgba(255, 255, 255, 1);border-color: #EBEBEB;}input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, select:focus, textarea:focus {color: #1982c2;background-color: rgba(233, 245, 252, 1) !important;border-color: #d5e5ee;}.woocommerce span.onsale, .shop_slider .shop_slider_ul li .item_wrapper span.onsale {border-top-color: #0095eb !important;}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {border-color: #0095eb !important;}@media only screen and ( min-width: 768px ){.header-semi #Top_bar:not(.is-sticky) {background-color: rgba(255, 255, 255, 0.8);}}@media only screen and ( max-width: 767px ){#Top_bar{ background: #ffffff !important;}#Action_bar{background: #FFFFFF !important;}#Action_bar .contact_details{color: #222222}#Action_bar .contact_details a{color: #0095eb}#Action_bar .contact_details a:hover{color: #007cc3}#Action_bar .social li a,#Action_bar .social-menu a{color: #bbbbbb}#Action_bar .social li a:hover,#Action_bar .social-menu a:hover{color: #777777}}html { background-color: #FCFCFC;}#Wrapper, #Content { background-color: #FCFCFC;}body, button, span.date_label, .timeline_items li h3 span, input[type="submit"], input[type="reset"], input[type="button"],input[type="text"], input[type="password"], input[type="tel"], input[type="email"], textarea, select, .offer_li .title h3 {font-family: "Roboto", Arial, Tahoma, sans-serif;}#menu > ul > li > a, .action_button, #overlay-menu ul li a {font-family: "Roboto", Arial, Tahoma, sans-serif;}#Subheader .title {font-family: "Lora", Arial, Tahoma, sans-serif;}h1, h2, h3, h4, .text-logo #logo {font-family: "db_heavent_cond", Arial, Tahoma, sans-serif;}h5, h6 {font-family: "Roboto", Arial, Tahoma, sans-serif;}blockquote {font-family: "Roboto", Arial, Tahoma, sans-serif;}.chart_box .chart .num, .counter .desc_wrapper .number-wrapper, .how_it_works .image .number,.pricing-box .plan-header .price, .quick_fact .number-wrapper, .woocommerce .product div.entry-summary .price {font-family: "Roboto", Arial, Tahoma, sans-serif;}body {font-size: 14px;line-height: 25px;font-weight: 400;letter-spacing: 0px;}big,.big {font-size: 16px;line-height: 28px;font-weight: 400;letter-spacing: 0px;}#menu > ul > li > a, a.button.action_button {font-size: 15px;font-weight: 400;letter-spacing: 0px;}#Subheader .title {font-size: 30px;line-height: 35px;font-weight: 400;letter-spacing: 1px;font-style: italic;}h1, .text-logo #logo { font-size: 48px;line-height: 50px;font-weight: 400;letter-spacing: 0px;}h2 { font-size: 24px;line-height: 34px;font-weight: 300;letter-spacing: 0px;}h3 {font-size: 17px;line-height: 29px;font-weight: 300;letter-spacing: 0px;}h4 {font-size: 21px;line-height: 25px;font-weight: 500;letter-spacing: 0px;}h5 {font-size: 15px;line-height: 25px;font-weight: 700;letter-spacing: 0px;}h6 {font-size: 14px;line-height: 25px;font-weight: 400;letter-spacing: 0px;}#Intro .intro-title { font-size: 70px;line-height: 70px;font-weight: 400;letter-spacing: 0px;}@media only screen and (min-width: 768px) and (max-width: 959px){body {font-size: 13px;line-height: 21px;}big,.big {font-size: 14px;line-height: 24px;}#menu > ul > li > a, a.button.action_button {font-size: 13px;}#Subheader .title {font-size: 26px;line-height: 30px;}h1, .text-logo #logo { font-size: 41px;line-height: 43px;}h2 { font-size: 20px;line-height: 29px;}h3 {font-size: 14px;line-height: 25px;}h4 {font-size: 18px;line-height: 21px;}h5 {font-size: 13px;line-height: 21px;}h6 {font-size: 13px;line-height: 21px;}#Intro .intro-title { font-size: 60px;line-height: 60px;}blockquote { font-size: 15px;}.chart_box .chart .num { font-size: 45px; line-height: 45px; }.counter .desc_wrapper .number-wrapper { font-size: 45px; line-height: 45px;}.counter .desc_wrapper .title { font-size: 14px; line-height: 18px;}.faq .question .title { font-size: 14px; }.fancy_heading .title { font-size: 38px; line-height: 38px; }.offer .offer_li .desc_wrapper .title h3 { font-size: 32px; line-height: 32px; }.offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {font-size: 32px; line-height: 32px; }.pricing-box .plan-header h2 { font-size: 27px; line-height: 27px; }.pricing-box .plan-header .price > span { font-size: 40px; line-height: 40px; }.pricing-box .plan-header .price sup.currency { font-size: 18px; line-height: 18px; }.pricing-box .plan-header .price sup.period { font-size: 14px; line-height: 14px;}.quick_fact .number { font-size: 80px; line-height: 80px;}.trailer_box .desc h2 { font-size: 27px; line-height: 27px; }}@media only screen and (min-width: 480px) and (max-width: 767px){body {font-size: 13px;line-height: 19px;}big,.big {font-size: 13px;line-height: 21px;}#menu > ul > li > a, a.button.action_button {font-size: 13px;}#Subheader .title {font-size: 23px;line-height: 26px;}h1, .text-logo #logo { font-size: 36px;line-height: 38px;}h2 { font-size: 18px;line-height: 26px;}h3 {font-size: 13px;line-height: 22px;}h4 {font-size: 16px;line-height: 19px;}h5 {font-size: 13px;line-height: 19px;}h6 {font-size: 13px;line-height: 19px;}#Intro .intro-title { font-size: 53px;line-height: 53px;}blockquote { font-size: 14px;}.chart_box .chart .num { font-size: 40px; line-height: 40px; }.counter .desc_wrapper .number-wrapper { font-size: 40px; line-height: 40px;}.counter .desc_wrapper .title { font-size: 13px; line-height: 16px;}.faq .question .title { font-size: 13px; }.fancy_heading .title { font-size: 34px; line-height: 34px; }.offer .offer_li .desc_wrapper .title h3 { font-size: 28px; line-height: 28px; }.offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {font-size: 28px; line-height: 28px; }.pricing-box .plan-header h2 { font-size: 24px; line-height: 24px; }.pricing-box .plan-header .price > span { font-size: 34px; line-height: 34px; }.pricing-box .plan-header .price sup.currency { font-size: 16px; line-height: 16px; }.pricing-box .plan-header .price sup.period { font-size: 13px; line-height: 13px;}.quick_fact .number { font-size: 70px; line-height: 70px;}.trailer_box .desc h2 { font-size: 24px; line-height: 24px; }}@media only screen and (max-width: 479px){body {font-size: 13px;line-height: 19px;}big,.big {font-size: 13px;line-height: 19px;}#menu > ul > li > a, a.button.action_button {font-size: 13px;}#Subheader .title {font-size: 18px;line-height: 21px;}h1, .text-logo #logo { font-size: 29px;line-height: 30px;}h2 { font-size: 14px;line-height: 20px;}h3 {font-size: 13px;line-height: 19px;}h4 {font-size: 13px;line-height: 19px;}h5 {font-size: 13px;line-height: 19px;}h6 {font-size: 13px;line-height: 19px;}#Intro .intro-title { font-size: 42px;line-height: 42px;}blockquote { font-size: 13px;}.chart_box .chart .num { font-size: 35px; line-height: 35px; }.counter .desc_wrapper .number-wrapper { font-size: 35px; line-height: 35px;}.counter .desc_wrapper .title { font-size: 13px; line-height: 26px;}.faq .question .title { font-size: 13px; }.fancy_heading .title { font-size: 30px; line-height: 30px; }.offer .offer_li .desc_wrapper .title h3 { font-size: 26px; line-height: 26px; }.offer_thumb_ul li.offer_thumb_li .desc_wrapper .title h3 {font-size: 26px; line-height: 26px; }.pricing-box .plan-header h2 { font-size: 21px; line-height: 21px; }.pricing-box .plan-header .price > span { font-size: 32px; line-height: 32px; }.pricing-box .plan-header .price sup.currency { font-size: 14px; line-height: 14px; }.pricing-box .plan-header .price sup.period { font-size: 13px; line-height: 13px;}.quick_fact .number { font-size: 60px; line-height: 60px;}.trailer_box .desc h2 { font-size: 21px; line-height: 21px; }}.with_aside .sidebar.columns {width: 23%;}.with_aside .sections_group {width: 77%;}.aside_both .sidebar.columns {width: 18%;}.aside_both .sidebar.sidebar-1{ margin-left: -82%;}.aside_both .sections_group {width: 64%;margin-left: 18%;}@media only screen and (min-width:1240px){#Wrapper, .with_aside .content_wrapper {max-width: 1240px;}.section_wrapper, .container {max-width: 1220px;}.layout-boxed.header-boxed #Top_bar.is-sticky{max-width: 1240px;}}@media only screen and (max-width: 767px){.section_wrapper,.container,.four.columns .widget-area { max-width: 700px !important; }}#Top_bar #logo,.header-fixed #Top_bar #logo,.header-plain #Top_bar #logo,.header-transparent #Top_bar #logo {height: 60px;line-height: 60px;padding: 15px 0;}.logo-overflow #Top_bar:not(.is-sticky) .logo {height: 90px;}#Top_bar .menu > li > a {padding: 15px 0;}.menu-highlight:not(.header-creative) #Top_bar .menu > li > a {margin: 20px 0;}.header-plain:not(.menu-highlight) #Top_bar .menu > li > a span:not(.description) {line-height: 90px;}.header-fixed #Top_bar .menu > li > a {padding: 30px 0;}#Top_bar .top_bar_right,.header-plain #Top_bar .top_bar_right {height: 90px;}#Top_bar .top_bar_right_wrapper { top: 25px;}.header-plain #Top_bar a#header_cart, .header-plain #Top_bar a#search_button,.header-plain #Top_bar .wpml-languages,.header-plain #Top_bar a.button.action_button {line-height: 90px;}.header-plain #Top_bar .wpml-languages,.header-plain #Top_bar a.button.action_button {height: 90px;}@media only screen and (max-width: 767px){#Top_bar a.responsive-menu-toggle { top: 40px;}.mobile-header-mini #Top_bar #logo{height:50px!important;line-height:50px!important;margin:5px 0!important;}.mobile-sticky #Top_bar.is-sticky #logo{height:50px!important;line-height:50px!important;margin:5px 50px;}}.twentytwenty-before-label::before { content: "Before";}.twentytwenty-after-label::before { content: "After";}.blog-teaser li .desc-wrapper .desc{background-position-y:-1px;} </style> <!-- style | custom css | theme options --> <style id="mfn-dnmc-theme-css"> /* H E A D E R */ .header-stack.header-center #Top_bar .logo { display: none; } body.header-stack:not(.template-slider) #Header { min-height: 0; } #Subheader { display: none; } .header-stack #Top_bar .top_bar_right { display: none; } .header-stack #Top_bar { background-color: #4c4c4c; } .header-stack.header-center #Top_bar #menu { background-color: #4c4c4c; // height: 50px; } #Top_bar .menu > li > a { color: white; } #Top_bar .menu > li.hover > a { color: white; } #Top_bar .menu > li.current_page_item > a { color: #a9c343; } #Top_bar .menu > li > ul.mfn-megamenu { width: 100% !important; text-align: center; max-width: 600px; margin: 0 auto; left: 50%; transform: translateX(-50%); } #Top_bar .menu > li > ul.mfn-megamenu::before { content: ''; position: absolute; top: 0; left: -100%; width: 400%; height: 100%; background-color: #ffffff; } .header-stack #Top_bar .menu_wrapper .menu > li > a { padding: 0 20px; margin-bottom: 0px; font-size: 17px; } .header-stack #Top_bar .menu_wrapper .menu > li > a:hover { color: #a9c343; } .menu_wrapper { height: 60px; } .menu { height: 60px; } .layout-full-width #Wrapper { margin: unset; padding-top: 20px; } #Content { padding-top: 90px; } #Top_bar .menu > li > a span:not(.description) { border-style: unset; } .menu_wrapper { background-color: #4c4c4c; position: fixed; top: 50px; opacity: 0.9; } #Top_bar .menu > li > a span:not(.description) { padding: 0; } /* hover at #ais_topbar-eservice and then img top */ #ais_topbar-eservice:hover { margin-top: -3px; } /* display none at language menu */ #ais_topbar-right div.topbar_lang { display: none!important; } #question1_1 { -moz-appearance: none; } #question1_1:checked { -moz-appearance: none; } #question1_2 { -moz-appearance: none; } #question1_2:checked { -moz-appearance: none; } #question1_3 { -moz-appearance: none; } #question1_3:checked { -moz-appearance: none; } #question1_4 { -moz-appearance: none; } #question1_4:checked { -moz-appearance: none; } #question1_5 { -moz-appearance: none; } #question1_5:checked { -moz-appearance: none; } /* F O O T E R */ @media only screen and (max-width: 767px) { .link_set { height: 32px; } } div#container { padding-top: 0px; } #wpadminbar { display: none; } div.container { padding: 0px !important; max-width: unset !important; } .ic_footer_social-share-wrap-mobile { display: inline-block !important; } .one { padding-top: 0px !important; margin-bottom: 0px !important; } .column { margin: 0px; } .one.column { width: 100%; } .footer_copy { display: none; } .column_blog { margin-top: 75px; } .link_set { text-align: left; } /* font */ span { font-family: "db_heavent_cond", sans-serif; } /* menu slide */ #Side_slide > .menu_wrapper { margin-top: 60px; height: 40px; } #Top_bar .menu_wrapper { float: left; z-index: 10; } .js-nav > .primary-nav { max-width: unset; } #ais_topbar .primary-link ul { list-style: none; margin-left: 0; } #Footer .footer_action .one { text-align: unset; } .primary-nav > ul.secondary-link-custom, .primary-nav.nav-slidedown > ul.secondary-link-custom { list-style: none; margin: 0px; } #Footer h2 a:hover { color: #b4d237; } .mini-menu a.menu__link.nowhover { color: #b2d233 !important; } .primary-link-lv1:hover { cursor: pointer; } #ais_topbar.mini-menu .primary-nav.nav-slidedown { max-height: fit-content; background-color: black!important; } .overlay.is-visible { background: unset; } .js-overlay.overlay.is-visible { background: unset; } .row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } /* overlay */ #overlay { position: absolute; display: block; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5); z-index: 2; cursor: pointer; } #text { position: absolute; top: 50%; left: 50%; font-size: 50px; color: white; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); } .img-custom-web { display: flex; position: relative !important; width: auto !important; margin-left: auto !important; margin-right: auto !important; top: calc(50% - 1 * 30px) !important; left: unset !important; } .img-custom-mobile { display: flex; position: relative !important; width: auto !important; margin-left: auto !important; margin-right: auto !important; top: calc(30% - 1 * 30px) !important; left: unset !important; margin-top: unset !important; } .img-responsive { width: 100%; height: auto; display: inline-block; position: relative; } img { max-width: 100%; height: auto; } @media only screen and (max-width: 575px) { .img-custom-web { display: none!important; } } @media only screen and (min-width: 576px) { .overlay-carousel .img-custom-mobile { display: none!important; } } /* addition of quizzes&surveys */ div.quiz_section.question-section-id-1 > span.mlw_qmn_question > p.p1 { font-size: 22px; color: #767676 !important; } .qsm-comments-label.mlw_qmn_comment_section_text > p { color: #8ec449; } #mlwQuizComments { display: none; } .qsm-comments-label.mlw_qmn_comment_section_text { display: flex; } label.qsm-comments-label.mlw_qmn_comment_section_text > #btn-toggle > .btn-arrows { width: 20px; height: 20px !important; margin-left: 10px; cursor: pointer; } /* display none of menu when tablet and mobile */ @media only screen and (max-width: 1240px) { div.menu_wrapper { display: none; } #Content { padding-top: 50px!important; } } #Content { padding-top: 90px; } .quiz_section.quiz_begin > label { width: unset; } label.qsm-comments-label.mlw_qmn_comment_section_text { cursor: pointer; } /* addition 0612 */ ::selection { background-color: #B3D6FE; color: initial; } button:after { background: unset !important; } div.owl-dots button { -webkit-box-shadow: unset; box-shadow: unset; } div.owl-dots button:focus { outline: 0; } /* addition 2812 */ /* when web size below 920px then hide word */ @media only screen and (max-width: 920px) { .mini-menu .ais_topbar-eservice-text, .mini-menu .ais_topbar-store-text { display: none!important; } } .container-max-width { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media only screen and (min-width: 1200px) { .container-max-width { max-width: 1140px; } div.quiz_section.quiz_begin { max-width: 410px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; width: 20%!important; font-size: 17px!important; } div.wpb_wrapper div.scrollmenu { max-width: 1100px; margin: 0; text-align: unset; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { .container-max-width { max-width: 960px; } div.quiz_section.quiz_begin { max-width: 410px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; width: 30%!important; font-size: 17px!important; } div.wpb_wrapper div.scrollmenu { max-width: 920px; margin: 0; text-align: unset; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .container-max-width { max-width: 720px; } div.quiz_section.quiz_begin { max-width: 410px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; width: 30%!important; font-size: 17px!important; } div.qmn_radio_answers.mlwRequiredRadio .qmn_mc_answer_wrap { width: 20%!important; } div.wpb_wrapper div.scrollmenu { max-width: 680px; margin: 0; text-align: unset; } } @media only screen and (max-width: 767px) { .container-max-width { max-width: 540px; } input[type="submit"] { border-radius: 10px!important; } div.qmn_radio_answers.mlwRequiredRadio .qmn_mc_answer_wrap { width: 100%!important; } span.mlw_qmn_question p.p2 { font-size: 15px!important; } div.wpb_wrapper div.scrollmenu { max-width: 500px; margin: 0; text-align: unset; } .carousel-slider .owl-dots .owl-dot span { width: 5px; height: 5px; border: solid 1px #fff; } .carousel-slider.dots-circle div.owl-dots button.owl-dot.active span { width: 15px!important; border: solid 1px #fff; } button { margin-right: 0px; } } /* custom quizzes&surveys edited 1301*/ #question1_1:checked { -webkit-appearance: none; border: none; width: 55px !important; height: 55px !important; background: url(https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/ic_5.png) center no-repeat !important; border-radius: 50%; background-size: 55px !important; } #question1_2:checked { -webkit-appearance: none; border: none; width: 55px !important; height: 55px !important; background: url(https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/ic_4.png) center no-repeat !important; border-radius: 50%; background-size: 55px !important; } #question1_3:checked { -webkit-appearance: none; border: none; width: 55px !important; height: 55px !important; background: url(https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/ic_3.png) center no-repeat !important; border-radius: 50%; background-size: 55px !important; } #question1_4:checked { -webkit-appearance: none; border: none; width: 55px !important; height: 55px !important; background: url(https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/ic_2.png) center no-repeat !important; border-radius: 50%; background-size: 55px !important; } #question1_5:checked { -webkit-appearance: none; border: none; width: 55px !important; height: 55px !important; background: url(https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/ic_1.png) center no-repeat !important; border-radius: 50%; background-size: 55px !important; } #question1_1, #question1_2, #question1_3, #question1_4, #question1_5 { width: 55px !important; height: 55px !important; background-size: 55px !important; } div.quiz_section.quiz_begin textarea:focus { color: black; background-color: transparent !important; border-color: #d5e5ee; } div.qsm-pagination.qmn_pagination.border.margin-bottom .qsm-submit-btn { color: white!important; } textarea#mlwQuizComments { margin-bottom: 30px!important; } label { font-size: 15px!important; } /* edit font size of related carousel slider */ div.carousel-slider .carousel-slider__caption p.caption { font-size: 14px; } div.qmn_radio_answers.mlwRequiredRadio .qmn_mc_answer_wrap { width: 15%; } span.mlw_qmn_question p.p2 { font-size: 17px; } div.quiz_section.quiz_begin label p { font-size: 17px; } div.quiz_section.quiz_begin textarea { font-family: "db_heavent_cond", sans-serif; } div.quiz_section.quiz_begin label #btn-toggle .btn-arrows { width: 16px !important; height: 16px !important; } .container-max-width { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media only screen and (min-width: 1200px) { .container-max-width { max-width: 1140px; margin: 0 auto 0 auto; } div.quiz_section.quiz_begin { max-width: 410px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; width: 20%!important; font-size: 17px!important; } div.wpb_wrapper div.scrollmenu { max-width: 1100px; margin: 0 auto 0 auto; text-align: unset; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { .container-max-width { max-width: 960px; margin: 0 auto 0 auto; } div.quiz_section.quiz_begin { max-width: 410px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; width: 30%!important; font-size: 17px!important; } div.wpb_wrapper div.scrollmenu { max-width: 920px; margin: 0 auto 0 auto; text-align: unset; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .container-max-width { max-width: 720px; margin: 0 auto 0 auto; } div.quiz_section.quiz_begin { max-width: 410px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; width: 30%!important; font-size: 17px!important; } div.qmn_radio_answers.mlwRequiredRadio .qmn_mc_answer_wrap { width: 20%!important; } div.wpb_wrapper div.scrollmenu { max-width: 680px; margin: 0 auto 0 auto; text-align: unset; } } @media only screen and (max-width: 767px) { .container-max-width { max-width: 540px; margin: 0 auto 0 auto; } input[type="submit"] { border-radius: 10px!important; } div.qmn_radio_answers.mlwRequiredRadio .qmn_mc_answer_wrap { width: 100%!important; } span.mlw_qmn_question p.p2 { font-size: 15px!important; } div.wpb_wrapper div.scrollmenu { max-width: 500px; margin: 0 auto 0 auto; text-align: unset; } .carousel-slider .owl-dots .owl-dot span { width: 5px; height: 5px; border: solid 1px #fff; } .carousel-slider.dots-circle div.owl-dots button.owl-dot.active span { width: 15px!important; border: solid 1px #fff; } button { margin-right: 0px; } } .section_wrapper { max-width: unset; } .the_content_wrapper { margin: 0; } .text-head p { margin-top: 20px!important; font-size: 17px!important; } /* font-size to all pages */ @media only screen and (max-width: 767px) { div.text-topic p { font-size: 18px; line-height: 1.2; } .text-content p { line-height: 1.3; } .mlw_qmn_question p.p1 { font-size: 18px!important; } div.qsm-pagination.qmn_pagination.border.margin-bottom .qsm-submit-btn { width: 65%; } div.empty_space { display: none; } div.wpb_wrapper div.scrollmenu { padding-left: 25px; padding-right: 25px; } } div.scrollmenu { padding-left: 10px; padding-right: 10px; } div.wpb_wrapper div.text-head p { font-size: 24px; color: black; margin-top: 15px; } div.wpb_wrapper div.text-topic p { font-size: 20px; color: #8ec449; margin-top: 15px; } div.wpb_wrapper div.text-subtopic p { color: black; font-size:20px; } @media only screen and (min-width: 768px) and (max-width: 991px) { div.qmn_radio_answers.mlwRequiredRadio { max-width: 410px; } div.qmn_mc_answer_wrap label { width: 100%; } } @media only screen and (min-width: 768px) and (max-width: 959px) { div.related_article .carousel-slider .owl-nav .owl-prev, .related_article .carousel-slider .owl-nav .owl-next { top: 25%; } } @media only screen and (max-width: 767px) { div.related_article .carousel-slider .owl-nav .owl-prev, .related_article .carousel-slider .owl-nav .owl-next { top: 20%!important; } } /* The Modal (background) */ .modal ,.modal2 { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ /* padding-top: 100px; */ margin: auto auto; left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { background-color: #f2f2f2; margin: auto; padding: 20px; border: 1px solid #888; width: 25%; height: auto; text-align: center; } /* The Close Button */ .close { color: #B4D044; float: right; font-size: 17px; margin: 0 auto; background-color: transparent; border-radius: 2em; border: 2px solid #B4D044; padding: 6px 20px; width: 50%; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; background-color: #B4D044; } .btn-close ,.btn-close2 { width: 100%; display: flex; } .btn-close button#btn-close-id ,.btn-close2 button#btn-close-id2 { font-family: "db_heavent_cond", "db_heavent_cond" } .thx-text ,.notice-text { color: #8ec449; margin: 0px; font-size: 20px; font-weight: 400; } @media only screen and (max-width: 767px) { .thx-text ,.notice-text { margin: 0px; font-size: 18px; } .modal-content { width: 50%; height: auto; } .close { font-size: 15px; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .thx-text ,.notice-text { margin: 0px; } .modal-content { width: 40%; height: auto; } } ul { padding-left: 30px; } div.qmn_results_page { display: none; } div.helpdesk-label { display: none; } /* space at footer */ body > div:nth-last-of-type(4) { height: unset !important; } </style> <!-- style | custom css | page options --> <style id="mfn-dnmc-page-css"> .wpb_wrapper > div { margin-bottom: 0px; } .vc_grid-container-wrapper { display: none; } .margin-top-20 { margin-top: 20px; } .vc_col-sm-3 { margin-top: 20px; } .vc_col-sm-6 { margin-top: 0px; } .wpb_wrapper { margin-top: 10px; } .wpb_wrapper { margin-top: 0px; } .wpb_text_column { margin: 10px 10px 0px 10px; } .vc_col-has-fill>.vc_column-inner { padding-top: 0px; } /* 2408 */ .wpb_wrapper > p > a { color: black; text-decoration: none!important; } .vc_col-sm-3 > .vc_column-inner > .wpb_wrapper:hover { cursor: pointer; } .vc_col-sm-3 > .vc_column-inner > .wpb_wrapper > a:hover { cursor: pointer; } p > a { text-decoration: none!important; text-decoration: unset; color: black; } p > a:hover { text-decoration: none!important; text-decoration: unset; color: #8ec449; } .vc_btn3-right > .vc_btn3.vc_btn3-style-custom:hover { background: #FCFCFC!important; border: 1.3px solid #b3d044; } .vc_btn3-left > .vc_btn3.vc_btn3-style-custom:hover { background: #FCFCFC!important; border: 1.3px solid #787978; color: #787978!important; } body > div:nth-last-of-type(2) { height: unset!important; } /* social part at footer */ @media only screen and (max-width: 767px) { .vc_row wpb_row.vc_row-fluid > .vc_col-sm-3 { width: 25%!important; } .vc_btn3-container.vc_btn3-right { text-align: center; } .vc_btn3-container.vc_btn3-left { text-align: center; margin-top: 15px; } .wpb_single_image.vc_align_left { text-align: center; } } @media only screen and (min-width: 680px) and (max-width: 768px) { .vc_col-has-fill { width: 25%; display: inline-table; } } @media only screen and (min-width: 555px) and (max-width: 679px) { .vc_col-has-fill { width: 25%; display: inline-table; } .vc_col-has-fill > .vc_column-inner { padding-left: 0px; padding-right: 0px; } } @media only screen and (max-width: 554px) { .vc_col-has-fill > .vc_column-inner { border: 0px!important; } } /* footer-social */ .row-social { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } html body .p-t-10 { padding-top: 10px; } .border-r { border-right: 1px #eee solid; } .text-center { text-align: center !important; } @media (min-width: 768px) { .col-md-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } } html body .font-20 { font-size: 20px; } html body .font-bold { font-weight: 700; } .text-green { color: #8dc63f !important; } html body .font-10 { font-size: 10px; } .col-2 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .col-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } a { color: #b2d233; text-decoration: none; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; margin: 0px; } .btn-ais-line { color: #b2d234; border: 2px #b2d234 solid; background: transparent; } .btn-circle { border-radius: 100%; width: 40px; height: 40px; padding: 10px; } .btn { display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 0.375rem 0.75rem; font-size: 1rem; line-height: 1.5; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; padding: 7px 12px; font-size: 14px; } svg:not(:root).svg-inline--fa { overflow: visible; } .svg-inline--fa.fa-w-9 { width: .5625em; } .svg-inline--fa { display: inline-block; font-size: inherit; height: 1em; vertical-align: -.125em; } .svg-inline--fa.fa-w-9 { width: .5625em; } .svg-inline--fa.fa-w-16 { width: 1em; } .btn-ais-line:hover { color: #000; background-color: #b2d234; } .btn:hover, .btn:focus { text-decoration: none; } html body .font-12 { font-size: 12px; } @media (max-width: 767px){ .border-r { border-right: 0px #eee solid; } .hidden-sm-down { display: none !important; } } /* addition */ figure.wpb_wrapper.vc_figure a img { padding: 3px; } /* add border on img and change color text */ div.wpb_column.vc_column_container.vc_col-sm-3 div.vc_column-inner div.wpb_wrapper:hover div figure a img { padding: 0px; border: 3px solid lightgray; } div.wpb_column.vc_column_container.vc_col-sm-3 div.vc_column-inner div.wpb_wrapper:hover p a { color: #8ec449; } a:hover { text-decoration: unset; } /* custom dot in carousel */ .vc_images_carousel ol.vc_carousel-indicators li { width: 8px; height: 8px; border: solid 1px #fff; opacity: .2; margin: 0px 4px 0px 4px; } div.vc_images_carousel ol.vc_carousel-indicators .vc_active { width: 8px; height: 8px; background-color:#007aff!important; border: solid 1px #fff; opacity: 1; margin: 0px 4px 0px 4px; } div.vc_images_carousel ol.vc_carousel-indicators { bottom: -10px; } .vc_btn3.vc_btn3-size-md { padding-top: 7px; padding-bottom: 7px; } @media only screen and (max-width: 767px) { div.vc_images_carousel ol.vc_carousel-indicators { bottom: -5px; } h3 { font-size: 20px; line-height: 30px; font-weight: 400; } } @media only screen and (max-width: 767px) and (min-width: 321px) { .custom-meetus { display: inline-flex; margin: 0 auto 0 auto; width: 100%; } .vc_btn3-container.vc_btn3-left { margin-top: 0px; } .custom-meetus .vc_col-sm-6 .vc_column-inner { width: max-content; } .vc_row .vc_column-inner { margin: 0px; } .custom-meetus-head .vc_column-inner .wpb_wrapper .vc_row { margin: 0px!important; } div.vc_empty_space { display: none; } .custom-meetus .vc_col-sm-6 { display: flex; justify-content: center; } } /* change banner */ .banner-web { max-width: 1600px; width: 100%; margin: 0 auto 0 auto; } .banner-mobile { display: none; } @media only screen and (max-width: 767px) { .banner-web { display: none; } .banner-mobile { display: block!important; } .custom-meetus > .vc_column_container > .vc_column-inner { padding-left: 0px; } } .section_wrapper { max-width: unset; } .the_content_wrapper { margin: 0; } @media only screen and (max-width: 767px) { div.section_wrapper { max-width: unset !important; padding-left: 0px!important; padding-right: 0px!important; } .custom-meetus .vc_col-sm-6 .vc_column-inner { padding-right: 5px; } } .vc_left.vc_carousel-control ,.vc_right.vc_carousel-control { display: none; } .text-knowledge p { font-size: 17px; } .carousel-slider.dots-center .owl-dots { margin-top: -20px; } .carousel-slider-outer .carousel-slider .owl-dots .owl-dot span { width: 8px; height: 8px; opacity: .2; } .carousel-slider.dots-circle div.owl-dots button.owl-dot.active span { width: 8px!important; height: 8px; opacity: 1; } @media only screen and (max-width: 991px) and (min-width: 768px) { .carousel-slider.dots-center .owl-dots { margin-top: -15px; } .carousel-slider.dots-center .owl-dots span { border: solid 1px #fff; } .carousel-slider div.owl-dots { display: block; } } div.carousel-slider .owl-dots .owl-dot span { margin: 0 4px; } @media only screen and (min-width: 1200px) { div.carousel-slider-outer.carousel-slider-outer-images { max-width: unset!important; } } @media only screen and (min-width: 992px) and (max-width: 1200px) { div.carousel-slider-outer.carousel-slider-outer-images { max-width: unset!important; } } @media only screen and (min-width: 768px) and (max-width: 991px) { div.carousel-slider-outer.carousel-slider-outer-images { max-width: unset!important; } } @media only screen and (max-width: 767px) { div.carousel-slider-outer.carousel-slider-outer-images { max-width: unset!important; } } .owl-stage-outer .owl-stage { transition: all 0.3s ease 0s !important; } p a { line-height: 1.5; } } .owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item{ -ms-touch-action: auto; touch-action: auto; } .owl-item{ touch-action:auto !important; } .topic-cate a { color: #8ec449!important; } @media only screen and (min-width: 768px) and (max-width: 991px) { div.vc_btn3-container.vc_btn3-right a.vc_btn3.vc_btn3-size-md , div.vc_btn3-container.vc_btn3-left a.vc_btn3.vc_btn3-size-md { font-size: 13px!important; } } div.helpdesk-label { display: block; } </style> <!--[if lt IE 9]> <script id="mfn-html5" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://aiscallcenter.ais.co.th/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><link rel="icon" href="https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/aislogo.png" sizes="32x32" /> <link rel="icon" href="https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/aislogo.png" sizes="192x192" /> <link rel="apple-touch-icon-precomposed" href="https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/aislogo.png" /> <meta name="msapplication-TileImage" content="https://aiscallcenter.ais.co.th/wp-content/uploads/2019/01/aislogo.png" /> <noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head> <!-- body --> <body class="home page-template-default page page-id-2 color-custom style-default button-default layout-full-width header-stack header-center sticky-header sticky-tb-color ab-hide subheader-both-center menu-link-color mobile-tb-center mobile-side-slide mobile-mini-mr-ll be-1771 wpb-js-composer js-comp-ver-5.5.5 vc_responsive"> <!-- mfn_hook_top --><!-- mfn_hook_top --> <!-- #Wrapper --> <div id="Wrapper"> <!-- #Header_bg --> <div id="Header_wrapper" > <!-- #Header --> <header id="Header"> <!-- .header_placeholder 4sticky --> <div class="header_placeholder"></div> <div id="Top_bar" class="loading"> <div class="container"> <div class="column one"> <div class="top_bar_left clearfix"> <!-- Logo --> <div class="logo"><a id="logo" href="https://aiscallcenter.ais.co.th" title="AISCC"><img class="logo-main scale-with-grid" src="https://aiscallcenter.ais.co.th/wp-content/themes/betheme/images/logo/logo.png" alt="" /><img class="logo-sticky scale-with-grid" src="https://aiscallcenter.ais.co.th/wp-content/themes/betheme/images/logo/logo.png" alt="" /><img class="logo-mobile scale-with-grid" src="https://aiscallcenter.ais.co.th/wp-content/themes/betheme/images/logo/logo.png" alt="" /><img class="logo-mobile-sticky scale-with-grid" src="https://aiscallcenter.ais.co.th/wp-content/themes/betheme/images/logo/logo.png" alt="" /></a></div> <div class="menu_wrapper"> <nav id="menu" class="menu-new-container"><ul id="menu-new" class="menu"><li id="menu-item-312" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item"><a href="https://aiscallcenter.ais.co.th/"><span>หน้าแรก</span></a></li> <li id="menu-item-314" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children"><a href="https://aiscallcenter.ais.co.th/knowledge-center/"><span>Knowledge Center</span></a> <ul class="sub-menu mfn-megamenu mfn-megamenu-5"> <li id="menu-item-20478" class="menu-item menu-item-type-custom menu-item-object-custom mfn-megamenu-cols-5"><a class="mfn-megamenu-title" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab1"><span>ลูกค้าไฟเบอร์</span></a></li> <li id="menu-item-20479" class="menu-item menu-item-type-custom menu-item-object-custom mfn-megamenu-cols-5"><a class="mfn-megamenu-title" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab2"><span>ลูกค้ารายเดือน</span></a></li> <li id="menu-item-20480" class="menu-item menu-item-type-custom menu-item-object-custom mfn-megamenu-cols-5"><a class="mfn-megamenu-title" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab3"><span>ลูกค้าเติมเงิน</span></a></li> <li id="menu-item-20481" class="menu-item menu-item-type-custom menu-item-object-custom mfn-megamenu-cols-5"><a class="mfn-megamenu-title" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab4"><span>ลูกค้าองค์กร</span></a></li> <li id="menu-item-20482" class="menu-item menu-item-type-custom menu-item-object-custom mfn-megamenu-cols-5"><a class="mfn-megamenu-title" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab5"><span>แพ็กเกจแนะนำ</span></a></li> </ul> </li> <li id="menu-item-346" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://m.ais.co.th/loHp1jOhB"><span>myAIS</span></a></li> <li id="menu-item-313" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://aiscallcenter.ais.co.th/meet-us/"><span>ร่วมงานกับเรา</span></a></li> <li id="menu-item-20487" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://aiscallcenter.ais.co.th/csr/"><span>CSR</span></a></li> </ul></nav><a class="responsive-menu-toggle " href="#"><i class="icon-menu-fine"></i></a> </div> <div class="secondary_menu_wrapper"> <!-- #secondary-menu --> </div> <div class="banner_wrapper"> </div> <div class="search_wrapper"> <!-- #searchform --> <form method="get" id="searchform" action="https://aiscallcenter.ais.co.th/"> <i class="icon_search icon-search-fine"></i> <a href="#" class="icon_close"><i class="icon-cancel-fine"></i></a> <input type="text" class="field" name="s" id="s" placeholder="Enter your search" /> <input type="submit" class="submit" value="" style="display:none;" /> </form> </div> </div> <div class="top_bar_right"><div class="top_bar_right_wrapper"><a id="search_button" href="#"><i class="icon-search-fine"></i></a></div></div> </div> </div> </div> </header> <div id="Subheader" style=""><div class="container"><div class="column one"><h1 class="title">หน้าแรก</h1><ul class="breadcrumbs no-link"><li><a href="https://aiscallcenter.ais.co.th">Home</a></li></ul></div></div></div> </div> <!-- mfn_hook_content_before --><!-- mfn_hook_content_before --> <!-- #Content --> <div id="Content"> <div class="content_wrapper clearfix"> <!-- .sections_group --> <div class="sections_group"> <div class="entry-content" itemprop="mainContentOfPage"> <div class="section the_content has_content"><div class="section_wrapper"><div class="the_content_wrapper"><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_wp_text wpb_content_element banner-web"><div class="widget widget_text"> <div class="textwidget"><div class="carousel-slider-outer carousel-slider-outer-images carousel-slider-outer-10025"> <style type="text/css"> #id-10025 .carousel-slider-nav-icon { fill: #666666 } #id-10025 .carousel-slider-nav-icon:hover { fill: #007aff } #id-10025 .owl-prev, #id-10025 .owl-next, #id-10025 .carousel-slider-nav-icon { height: 48px; width: 48px } #id-10025.arrows-outside .owl-prev { left: -48px } #id-10025.arrows-outside .owl-next { right: -48px }</p> <p> #id-10025 .owl-dots .owl-dot span { background-color: #666666; width: 8px; height: 8px; } #id-10025 .owl-dots .owl-dot.active span, #id-10025 .owl-dots .owl-dot:hover span { background-color: #007aff } </style> <div id="id-10025" class="owl-carousel carousel-slider arrows-outside arrows-hidden dots-visible-always dots-center dots-circle" data-slide-type="image-carousel" data-margin="10" data-slide-by="1" data-loop="false" data-lazy-load="false" data-stage-padding="0" data-auto-width="false" data-dots="true" data-nav="false" data-autoplay="true" data-autoplay-timeout="5000" data-autoplay-speed="500" data-autoplay-hover-pause="true" data-colums="1" data-colums-desktop="1" data-colums-small-desktop="1" data-colums-tablet="1" data-colums-small-tablet="1" data-colums-mobile="1"> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/knowledge-center/#tab2" target="_blank"><img width="1630" height="510" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/11/Banner_Web_ACC_Desktop.jpg" class="attachment-slider-content size-slider-content" alt="" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/signlanguage/" target="_blank"><img width="1600" height="500" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/11/bannerSignlanguage4.png" class="attachment-slider-content size-slider-content" alt="ภาษามือ" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/fibrelineconnect/" target="_blank"><img width="1600" height="500" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/06/Banner_Web_AIS_Fibre3_Desketop_2024.png" class="attachment-slider-content size-slider-content" alt="fibrelineconnect, บริการ ais fibre" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/knowledge-center/#tab5" target="_blank"><img width="1630" height="510" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2021/11/MicrosoftTeams-image-11.jpg" class="attachment-slider-content size-slider-content" alt="" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/max" target="_blank"><img width="1600" height="500" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2025/02/Banner_ENTERTAINMENT_MAIN_ACCWEBSITE_Desktop_FEB2025.jpg" class="attachment-slider-content size-slider-content" alt="" /></a></div></div> <p><!-- #id-## --> </div> </div> </div></div><div class="vc_wp_text wpb_content_element banner-mobile"><div class="widget widget_text"> <div class="textwidget"><div class="carousel-slider-outer carousel-slider-outer-images carousel-slider-outer-10028"> <style type="text/css"> #id-10028 .carousel-slider-nav-icon { fill: #666666 } #id-10028 .carousel-slider-nav-icon:hover { fill: #007aff } #id-10028 .owl-prev, #id-10028 .owl-next, #id-10028 .carousel-slider-nav-icon { height: 48px; width: 48px } #id-10028.arrows-outside .owl-prev { left: -48px } #id-10028.arrows-outside .owl-next { right: -48px }</p> <p> #id-10028 .owl-dots .owl-dot span { background-color: #666666; width: 10px; height: 10px; } #id-10028 .owl-dots .owl-dot.active span, #id-10028 .owl-dots .owl-dot:hover span { background-color: #007aff } </style> <div id="id-10028" class="owl-carousel carousel-slider arrows-outside arrows-hidden dots-visible-always dots-center dots-circle" data-slide-type="image-carousel" data-margin="10" data-slide-by="1" data-loop="true" data-lazy-load="true" data-stage-padding="0" data-auto-width="false" data-dots="true" data-nav="false" data-autoplay="true" data-autoplay-timeout="5000" data-autoplay-speed="500" data-autoplay-hover-pause="true" data-colums="1" data-colums-desktop="1" data-colums-small-desktop="1" data-colums-tablet="1" data-colums-small-tablet="1" data-colums-mobile="1"> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/knowledge-center/#tab2" target="_blank"><img class="owl-lazy" data-src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/11/Banner_Web_ACC_Mobile.jpg" width="1000" height="1000" alt="" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/signlanguage/" target="_blank"><img class="owl-lazy" data-src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/11/bannerSignlanguage-mobile6.png" width="1040" height="1040" alt="ภาษามือ" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/fibrelineconnect/" target="_blank"><img class="owl-lazy" data-src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/06/Banner_Web_AIS_Fibre3_Mobile_2024.png" width="1040" height="1040" alt="ais fibre line connect, บริการ ais fibre" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/knowledge-center/#tab5" target="_blank"><img class="owl-lazy" data-src="https://aiscallcenter.ais.co.th/wp-content/uploads/2021/11/MicrosoftTeams-image-10.jpg" width="1043" height="1043" alt="" /></a></div> <div class="carousel-slider__item"><a href="https://aiscallcenter.ais.co.th/max" target="_blank"><img class="owl-lazy" data-src="https://aiscallcenter.ais.co.th/wp-content/uploads/2025/02/Banner_ENTERTAINMENT_MAIN_ACCWEBSITE_Mobile_FEB2025.jpg" width="2000" height="2000" alt="" /></a></div></div> <p><!-- #id-## --> </div> </div> </div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid container-max-width"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_wp_text wpb_content_element text-knowledge"><div class="widget widget_text"> <div class="textwidget"><p><img class="alignnone size-full wp-image-56" src="wp-content/uploads/2018/08/i_knowledge.png" alt="" width="36" height="36" /> Knowledge Center</p> </div> </div></div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"></div></div></div></div><div class="vc_row wpb_row vc_row-fluid container-max-width"><div class="wpb_column vc_column_container vc_col-sm-3"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_center"> <figure class="wpb_wrapper vc_figure"> <a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab1" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/07/Fibre274.jpg" width="274" height="274" alt="Fibre274" title="Fibre274" /></a> </figure> </div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p class="topic-cate"><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab1">ลูกค้าไฟเบอร์</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab1">รวมข้อมูลที่ลูกค้าไฟเบอร์ควรรู้, วิธีแก้ไขปัญหา,การตั้งค่า Internet,Wi-Fi และ Play box ง่ายๆด้วยตัวเอง</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab1">อ่านข้อมูลเพิ่มเติม </a><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab1">คลิก..</a></p> </div> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-3"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_center"> <figure class="wpb_wrapper vc_figure"> <a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab2" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/07/post274.jpg" width="274" height="274" alt="post274" title="post274" /></a> </figure> </div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p class="topic-cate"><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab2">ลูกค้ารายเดือน</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab2">รวมข้อมูลที่ลูกค้ารายเดือนต้องรู้</a><br /> <a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab2">วิธีเช็กการใช้งาน, แพ็กเกจ ใบแจ้งยอด<br /> ถามตอบข้อสงสัยต่างๆ</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab2">อ่านข้อมูลเพิ่มเติม คลิก..</a></p> </div> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-3"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_center"> <figure class="wpb_wrapper vc_figure"> <a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab3" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/07/pre274.jpg" width="274" height="274" alt="pre274" title="pre274" /></a> </figure> </div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p class="topic-cate"><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab3">ลูกค้าเติมเงิน</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab3">รวมข้อมูลที่ลูกค้าเติมเงินต้องรู้<br /> วิธีเช็กยอด, เหมาเหมา, ปัญหาเติมเงิน, SMS กวนใจ, ถามตอบข้อสงสัยต่างๆ</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab3">อ่านข้อมูลเพิ่มเติม คลิก..</a></p> </div> </div> </div></div></div><div class="wpb_column vc_column_container vc_col-sm-3"><div class="vc_column-inner"><div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_center"> <figure class="wpb_wrapper vc_figure"> <a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab4" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/07/business274.jpg" width="274" height="274" alt="business274" title="business274" /></a> </figure> </div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p class="topic-cate"><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab4">ลูกค้าองค์กร</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab4">รวมข้อมูลที่ลูกค้าองค์กรต้องรู้, วิธีใช้บริการออนไลน์, แนะนำบริการ และโซลูชั่น จัดการธุรกิจได้ง่ายๆ</a></p> <p><a href="https://aiscallcenter.ais.co.th/index.php/knowledge-center/#tab4">อ่านข้อมูลเพิ่มเติม คลิก..</a></p> </div> </div> </div></div></div></div><div class="vc_row wpb_row vc_row-fluid container-max-width"><div class="custom-meetus-head wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_wp_text wpb_content_element margin-top-20"><div class="widget widget_text"> <div class="textwidget"><p><img class="alignnone size-full wp-image-71" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/08/i_recruit.png" alt="" width="36" height="36" /> ร่วมงานกับเรา</p> </div> </div></div> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <a href="https://aiscallcenter.ais.co.th/meet-us/" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/05/Banner_Home_Recruitment-Recovered_may24.png" width="562" height="260" alt="Banner_Home_Recruitment-Recovered_may24" title="Banner_Home_Recruitment-Recovered_may24" /></a> </figure> </div> <div class="vc_empty_space" style="height: 35px" ><span class="vc_empty_space_inner"></span></div> <div class="vc_row wpb_row vc_inner vc_row-fluid custom-meetus"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_btn3-container vc_btn3-right" > <a style="background-color:#b3d044; color:#000000;" class="vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-round vc_btn3-style-custom" href="https://aiscallcenter.ais.co.th/meet-us/" title="" target="_blank">สมัครงานออนไลน์ที่นี่</a></div> </div></div></div></div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_wp_text wpb_content_element margin-top-20"><div class="widget widget_text"> <div class="textwidget"><p><img class="alignnone size-full wp-image-4657" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/i_myais.png" alt="" width="36" height="36" /> myAIS</p> </div> </div></div> <div class="wpb_single_image wpb_content_element vc_align_left"> <figure class="wpb_wrapper vc_figure"> <a href="http://m.ais.co.th/loHp1jOhB" target="_blank" class="vc_single_image-wrapper vc_box_border_grey"><img class="vc_single_image-img " src="https://aiscallcenter.ais.co.th/wp-content/uploads/2024/10/myAIS_2024_Banner_2024_562X260_NEW.png" width="562" height="260" alt="myAIS_2024_Banner_2024_562X260_NEW" title="myAIS_2024_Banner_2024_562X260_NEW" /></a> </figure> </div> <div class="vc_wp_text wpb_content_element"><div class="widget widget_text"> <div class="textwidget"></div> </div></div><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_wp_text wpb_content_element myAIS-text margin-top-20"><div class="widget widget_text"> <div class="textwidget"></p> <p style="text-align: center; color: #8ec44a;"><a style="text-decoration: none;" href="http://m.ais.co.th/loHp1jOhB" target="_blank" rel="noopener">บริการออนไลน์ ที่คุณจัดการทุกเรื่องง่ายๆ<br /> ได้ด้วยตัวคุณเอง ตลอด 24 ชม.</a></p> </div> </div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid container-max-width"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_empty_space" style="height: 20px" ><span class="vc_empty_space_inner"></span></div> <div class="wpb_raw_code wpb_content_element wpb_raw_html" > <div class="wpb_wrapper"> <div class="row-social"> <div class="col-md-3 col-2 text-center p-t-10 border-r"><span class="text-green font-20 font-bold">1175</span><br><span class="font-10">AIS CONTACT CENTER</span> </div> <div class="col-md-3 col-2 text-center border-r"><a href="https://www.facebook.com/aiscallcenter1175" target="_blank"><button type="button" class="btn btn-circle btn-ais-line"><svg class="svg-inline--fa fa-facebook-f fa-w-9" aria-hidden="true" data-prefix="fab" data-icon="facebook-f" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512" data-fa-i2svg=""><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg><!-- <i class="fab fa-facebook-f"></i> --></button></a><br><span class="font-12 hidden-sm-down">FACEBOOK</span> </div> <div class="col-md-3 col-2 text-center border-r"> <a href="https://askaunjai.ais.co.th/?/channel=WebCC&msg=webmenu" target="_blank"> <button type="button" class="btn btn-circle btn-ais-line" style="padding:0px 0px 0px 0px"> <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="-5 -5 50 50"><defs><style>.cls-1{fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:3.04px;}.cls-2{fill:#b5d03b;}.cls-3{fill:#fff;}.cls-4{fill:#e2e2e2;}.cls-5{fill:#efefef;}.cls-6{fill:#5ae500;}.cls-7{opacity:0.2;}.cls-8{fill:#fafafa;}.cls-9{fill:#202020;}.cls-10{fill:#cfced0;}.cls-11{fill:#6b6d6b;}.cls-12{fill:#545554;}.cls-13{fill:#9ec13b;}.cls-14{fill:#191919;}.cls-15{fill:#284801;}</style></defs><title>aunjai (1)2</title><path class="cls-1" d="M10.58,9.16A11.33,11.33,0,0,1,8.83,6,10.15,10.15,0,0,0,10.58,9.16Z"/><path class="cls-1" d="M8.66,5.51c.05.15.12.31.17.47,0-.15-.09-.29-.13-.44Z"/><path class="cls-1" d="M9.47,2A16.64,16.64,0,0,0,11.9,6.84,17.86,17.86,0,0,1,9.52,2Z"/><path class="cls-1" d="M13.19,8.3a7.82,7.82,0,0,0,.94.75l-.1.11.2-.11C14,8.86,13.57,8.58,13.19,8.3Z"/><path class="cls-1" d="M12.56,7.72a6.89,6.89,0,0,0,.56.52l.07.06L13,8.14A5.62,5.62,0,0,1,12.56,7.72Z"/><path class="cls-1" d="M11.9,6.84c.14.2.27.4.41.59a1.39,1.39,0,0,0,.25.29.72.72,0,0,1-.15-.19C12.23,7.31,12.07,7.07,11.9,6.84Z"/><path class="cls-1" d="M35.73,26.09a.65.65,0,0,0-.27-.58,14.87,14.87,0,0,0,.27-2.77,15.05,15.05,0,0,0-15.11-15h-.1a11.67,11.67,0,0,0-1.42.1,6,6,0,0,0-.63.09c-.55-.25-1.4-.5-2.35-.86a11.88,11.88,0,0,1-3-1.67,8.76,8.76,0,0,0,.81.59,7.6,7.6,0,0,1-.81-.59C12.41,4.8,11.5,3.78,10.69,3A10.28,10.28,0,0,0,9.55,1.89c-.05,0-.08-.06-.08,0a.61.61,0,0,0,0,.12h0a16.34,16.34,0,0,0,2.89,5.45,4.65,4.65,0,0,0,.71.71,6.87,6.87,0,0,0,1.11.91l-.2.11h0l-.16.08h0l0,0,0,0A9.24,9.24,0,0,1,11,7.74,22.73,22.73,0,0,1,9.37,6.11c-.61-.71-.71-.71-.71-.71s0,.1,0,.14h0a13.32,13.32,0,0,0,1.87,3.61l.41.5.91.91A16.69,16.69,0,0,0,9,13.4a2.11,2.11,0,0,0-1.2-.2l-.28-.09v.14a2.68,2.68,0,0,0-.35.1L7,13.41a3.49,3.49,0,0,0-.39.19h0a4.78,4.78,0,0,0-1.81,1.93,4,4,0,0,0-.53,3.31,2.18,2.18,0,0,0,1,1.46,2,2,0,0,0,.41.15,13,13,0,0,0-.2,2.28A15.32,15.32,0,0,0,6,26.28a.33.33,0,0,0,0,.21,15.45,15.45,0,0,0,4.32,7.35l-.06,0,.1.11.1.1a15.68,15.68,0,0,0,7.79,3.73h.09c.4.06.79.12,1.2.15l.5,0c.25,0,.51,0,.76,0h.1a15.21,15.21,0,0,0,9.81-3.57l0,0,.1-.1.1-.1h0a15.5,15.5,0,0,0,4.88-7.8.45.45,0,0,0,0-.27Z"/><path class="cls-2" d="M20.62,7.74a11.67,11.67,0,0,0-1.42.1,5.89,5.89,0,0,0-.71.1c-1.11-.51-3.55-1-5.37-2.54C11.7,4.19,9.47,1.65,9.47,1.86a16.38,16.38,0,0,0,2.94,5.57,4.65,4.65,0,0,0,.71.71,6.87,6.87,0,0,0,1.11.91l-.2.11-.2.1a9.17,9.17,0,0,1-2.94-1.52C10.18,7.13,8.66,5.3,8.66,5.4a13.11,13.11,0,0,0,1.92,3.76l.41.5.91.91C9.57,12.3,5.52,16.76,5.52,22.74a15.11,15.11,0,1,0,15.1-15Z"/><path class="cls-3" d="M20.62,37.85A15,15,0,0,1,10,33.39,15.13,15.13,0,0,1,5.52,22.74,14.54,14.54,0,0,1,7.85,15a16.53,16.53,0,0,1,4.05-4.47L11,9.66l-.41-.5A9.48,9.48,0,0,1,8.66,5.4h0s.1,0,.71.71A22.73,22.73,0,0,0,11,7.74a9.17,9.17,0,0,0,2.94,1.52l.2-.21A6.87,6.87,0,0,1,13,8.14a4.65,4.65,0,0,1-.71-.71A18.1,18.1,0,0,1,9.47,1.86h0c.1,0,.3.2,1.22,1.11S12.41,4.8,13.12,5.4a12.29,12.29,0,0,0,4.16,2.13,6.78,6.78,0,0,0,1.11.41c.1,0,.51-.1.71-.1a11.67,11.67,0,0,1,1.42-.1A15,15,0,0,1,31.17,33.39,14.18,14.18,0,0,1,20.62,37.85ZM8.66,5.51a11.58,11.58,0,0,0,1.92,3.65l.41.5.91.91h0A16.53,16.53,0,0,0,7.85,15a14.54,14.54,0,0,0-2.33,7.7,15.11,15.11,0,1,0,15.1-15,11.67,11.67,0,0,0-1.42.1,5.89,5.89,0,0,0-.71.1h0c-.3-.1-.71-.31-1.11-.41A13.66,13.66,0,0,1,13.12,5.4c-.81-.6-1.72-1.62-2.54-2.33A4.92,4.92,0,0,0,9.47,2a16.38,16.38,0,0,0,2.94,5.57,4.22,4.22,0,0,0,.71.71c.4.31.81.61,1.11.81h0l-.4.21h0a9.17,9.17,0,0,1-2.94-1.52A11.85,11.85,0,0,1,9.27,6.11,3.6,3.6,0,0,0,8.66,5.51Z"/><path class="cls-2" d="M20.62,7.74a11.67,11.67,0,0,0-1.42.1,5.89,5.89,0,0,0-.71.1c-1.11-.51-3.55-1-5.37-2.54C11.7,4.19,9.47,1.65,9.47,1.86a16.38,16.38,0,0,0,2.94,5.57,4.65,4.65,0,0,0,.71.71,6.87,6.87,0,0,0,1.11.91l-.2.11-.2.1a9.17,9.17,0,0,1-2.94-1.52C10.18,7.13,8.66,5.3,8.66,5.4a13.11,13.11,0,0,0,1.92,3.76l.41.5.91.91C9.57,12.3,5.52,16.76,5.52,22.74a15.11,15.11,0,1,0,15.1-15Z"/><path class="cls-4" d="M5.92,26.09a15.39,15.39,0,0,0,29.81,0c.1-.41-.61-1.22-1.93-.81-2.63.71-7.8,3.24-13,3.24s-10.34-2.64-13-3.35C6.53,24.87,5.82,25.68,5.92,26.09Z"/><path class="cls-5" d="M5.92,26.49a15.39,15.39,0,0,0,29.81,0c.1-.4-.61-1.21-1.93-.81-2.63.71-7.8,3.25-13,3.25S10.48,26.29,7.75,25.58C6.53,25.28,5.82,26.19,5.92,26.49Z"/><path class="cls-5" d="M28.23,32.27c-.41-.51-1.52-1.82-1.83-2.33-.91.1-4.66.71-6.08.71s-5.17-.61-6.09-.71c-.4.51-1.41,1.82-1.82,2.33s-1.22,1.12-2,1.83a15.62,15.62,0,0,0,10.34,3.95,15.22,15.22,0,0,0,9.94-3.65A13.62,13.62,0,0,1,28.23,32.27Z"/><path class="cls-6" d="M28.43,32.07c-.51-.61-1.93-2.43-1.93-2.43h0s-4.66.71-6.18.71-6.19-.71-6.19-.71h0s-1.42,1.82-1.92,2.43c-.41.4-1.22,1.11-2,1.82l.1.11.1.1c.81-.71,1.62-1.42,2-1.83s1.52-1.82,1.82-2.33c.92.1,4.67.71,6.09.71s5.17-.61,6.08-.71c.41.51,1.42,1.82,1.83,2.33a28.81,28.81,0,0,0,2.43,2.23l.1-.1.1-.1C30,33.49,28.94,32.58,28.43,32.07Z"/><ellipse cx="12.87" cy="18.82" rx="2.13" ry="1.42" transform="translate(-7.94 28.15) rotate(-79.78)"/><ellipse class="cls-3" cx="13.35" cy="17.82" rx="0.61" ry="0.41" transform="translate(-6.12 28.62) rotate(-82.17)"/><path d="M26.81,15h0c-.21,0-.31-.21-.31-.41a1.54,1.54,0,0,1,.92-1.12,1.86,1.86,0,0,1,1.72.71c.1.11.3.61.1.71s-.3.11-.41-.1c-.5-.61-.91-.71-1.21-.61a.62.62,0,0,0-.41.51C27.21,14.93,27,15,26.81,15Z"/><path d="M14.74,15h0c.2,0,.31-.21.31-.41a1.54,1.54,0,0,0-.92-1.12,1.84,1.84,0,0,0-1.72.71c-.1.11-.3.61-.1.71s.3.11.4-.1c.51-.61.92-.71,1.22-.61a.64.64,0,0,1,.41.51C14.44,14.93,14.54,15,14.74,15Z"/><ellipse cx="28.53" cy="18.99" rx="1.42" ry="2.13" transform="translate(-2.92 5.36) rotate(-10.22)"/><ellipse class="cls-3" cx="28.13" cy="18.08" rx="0.41" ry="0.61" transform="translate(-2.2 4) rotate(-7.83)"/><path d="M23.77,23.25a4.64,4.64,0,0,1-1.63.51,6.74,6.74,0,0,1-1.42.1,6.84,6.84,0,0,1-1.42-.1,8.53,8.53,0,0,1-1.62-.51c-1.32-.71-.1,3.34,3,3.34h0C23.87,26.59,25.08,22.54,23.77,23.25Z"/><path class="cls-3" d="M17.88,23.05h0a25.11,25.11,0,0,1-3.54-.21,12.49,12.49,0,0,1-5.17-2,5.39,5.39,0,0,1-1.63-1.52V13.11l.31.1a28.19,28.19,0,0,0,6.59,1.93,37.5,37.5,0,0,0,5.78.3h.2l-.1,5ZM8,19a7.92,7.92,0,0,0,1.52,1.32,10.94,10.94,0,0,0,5,1.92,20.51,20.51,0,0,0,3.34.21l2-2.23.1-4.26a45,45,0,0,1-5.57-.31A30.49,30.49,0,0,1,8,13.82Z"/><g class="cls-7"><path class="cls-8" d="M7.75,19.09s1.92,2.64,6.59,3.45a32,32,0,0,0,3.44.2L20,20.31l.11-4.56a37.12,37.12,0,0,1-5.78-.31,28.19,28.19,0,0,1-6.59-1.93Z"/></g><path class="cls-3" d="M9.06,13.41c-1.31-.71-3.24.21-4.25,2.13s-.82,4.06.5,4.77,3.25-.2,4.26-2.13S10.38,14.12,9.06,13.41Z"/><path class="cls-9" d="M8.46,13.41c-1-.6-2.64.41-3.65,2.13s-.92,3.65.2,4.16,2.63-.41,3.65-2.13S9.47,14,8.46,13.41Z"/><path class="cls-10" d="M8.15,13.82c-.91-.51-2.33.3-3.14,1.82s-.81,3.05.1,3.55,2.33-.3,3.14-1.82S9.06,14.33,8.15,13.82Z"/><path class="cls-11" d="M7.85,14.12c-.81-.4-2,.31-2.74,1.52s-.71,2.74.1,3.15,2-.31,2.74-1.52S8.66,14.53,7.85,14.12Z"/><g id="Group_1180" data-name="Group 1180"><g id="Group_212" data-name="Group 212"><path class="cls-12" d="M21.47,35.5h-.61l-.2.61h-.61l.81-2.23h.61l.81,2.23h-.61ZM21,35.2h.41l-.2-.61Z"/><path class="cls-12" d="M22.48,36.11V33.88h.61v2.23Z"/><path class="cls-12" d="M24.61,34.59c0-.3-.2-.3-.3-.3s-.3,0-.3.2c0,.41,1.31.41,1.31.91,0,.21,0,.71-.91.71s-1-.71-1-.81H24a.36.36,0,0,0,.4.41c.31,0,.31-.21.31-.21,0-.2-.61-.4-.82-.5s-.4-.21-.4-.51c0-.1,0-.61.91-.61s.91.61.91.71Z"/><g id="Group_209" data-name="Group 209"><g id="Group_208" data-name="Group 208"><g id="Path_252" data-name="Path 252"><path class="cls-13" d="M14.78,33.38a2.52,2.52,0,0,0,.71.81c2.33,2.23,3.85-.2,3.85-.2A3.94,3.94,0,0,1,14.78,33.38Z"/></g></g><g id="Path_253" data-name="Path 253"><path class="cls-13" d="M13.66,32.26c.81.71,3.55,3.45,6.59.81a5.86,5.86,0,0,1,1.83-1.22C20.15,31.55,17.62,34.69,13.66,32.26Z"/></g></g></g></g><path class="cls-14" d="M15.65,26.8a24,24,0,0,1-3.44-1.73,16,16,0,0,1-5.07-5l.71-.51a15.14,15.14,0,0,0,4.76,4.66A25.12,25.12,0,0,0,16.06,26Z"/><path class="cls-15" d="M8.25,21.93S7.64,21.22,7,20.41c-.21-.2.81-1.12.91-.81a5.57,5.57,0,0,0,1.22,1.52Z"/><path d="M8.15,21.93a4.35,4.35,0,0,1-1.22-1.52c-.3-.71.61-1.22.92-.81.91,1.21,1.21,1.52,1.21,1.52Z"/><path class="cls-15" d="M16.47,27.41c-.41.2-2.34-1.12-2.34-1.12l.51-1.12s2.33.51,2.53.92A2.48,2.48,0,0,1,16.47,27.41Z"/><path d="M16.57,27.41c-.41.2-2.34-1.12-2.34-1.12l.51-1.12s2.33.51,2.43.92A1.64,1.64,0,0,1,16.57,27.41Z"/><path class="cls-3" d="M7.52,14.55c-.6-.3-1.52.2-2.12,1.22l.3.2h0c-.41.71-.41,1.52.1,1.73s1.12-.11,1.52-.92h0l.31.21C8.23,16,8.13,14.86,7.52,14.55ZM6,17.19c-.3-.1-.3-.61,0-1H6l1,.51C6.71,17.19,6.31,17.39,6,17.19Zm1.32-.41L5.7,16c.4-.81,1-1.22,1.52-.91S7.73,16.07,7.32,16.78Z"/></svg> </g></g></button></a> <br><span class="font-12 hidden-sm-down">ASK AUNJAI</span> </div> <div class="col-md-3 col-2 text-center"> <a href="https://aiscallcenter.ais.co.th/signlanguage/" target="_blank"> <button type="button" class="btn btn-circle btn-ais-line" style="padding: 5px 5px 4px 8px;"> <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><defs><style>.cls-1{fill:"currentColor";}</style></defs><title>icon 40x40</title><path fill="currentColor" d="M7.79,19.3a15,15,0,0,0-3-5.66c-1-1.19-.46-2.61,1.47-1.85C8,12.47,8.7,14,9.37,15.47c.29.67,1.78,2.57,2.37,2a4.21,4.21,0,0,0,1.15-2.63c0-.86.12-1.95.15-2.81-.15-.7-.43-3.16-.49-3.58A52.08,52.08,0,0,1,12.34,3c0-1.65,1.29-1.56,1.29-1.56C15,1.52,15,3.9,15.09,5A40.57,40.57,0,0,0,16,11.71c.24,1,1.06.71,1.11.55a11.81,11.81,0,0,0,.2-3.14c.05-1.24.2-2.48.23-3.72,0-.93-.24-5.4,1.73-5.4C21,0,20.36,4.15,20.33,5.33s-.13,2.35-.06,3.51c0,.71.09,2.71,0,3.38s.32.61.62.17a10,10,0,0,0,.82-2.48q.73-2.4,1.23-4.86c.15-.76.52-2.73,1.61-2.6,2.12.26.71,3.4.51,4.48-.42,2.25-.78,4.51-1.37,6.73-.22.87-.07,1,0,1.25s.45.29.75.19.34-.21.46-.45c.55-1.08,1.07-2.17,1.51-3.3a5.81,5.81,0,0,1,1.62-2.7.68.68,0,0,1,.69-.15,1.3,1.3,0,0,1,.61,1.26,3.87,3.87,0,0,1-.4,1.55s-2.25,5.31-2.44,6.08c-.11.44-.18.8-.25,1.13C25,19.3,23.82,20,23.55,20.23l-.56.4c-.91.64-1.76,1.25-2.25,1.63L19.11,23a7.09,7.09,0,0,0,1.75-5.33c-.29-2.44-1.84-3.3-3.07-3.3h0a3.49,3.49,0,0,0-3.12,2.32,13.24,13.24,0,0,1-3.14,4.62A8.32,8.32,0,0,0,10.23,23,9.78,9.78,0,0,1,7.79,19.3ZM32.38,36.18a.68.68,0,0,0-.46-.53,5.71,5.71,0,0,0-3.15-.15,33.48,33.48,0,0,1-3.61.23.71.71,0,0,1-.62-.2.58.58,0,0,1-.18-.74c.15-.21.2-.41,1.08-.63,2.23-.53,4.39-1.28,6.57-2,1.06-.33,4.49-.57,3.71-2.56-.4-1-2.31-.41-3-.19-1.6.48-3.22.89-4.87,1.21a9.84,9.84,0,0,1-2.57.45c-.53-.05-.81-.34-.14-.62s2.36-1.25,3-1.62c1-.61,2.08-1.09,3.12-1.61s5-1.91,4.19-3.47c-.93-1.74-4.75.61-5.57,1-1.11.57-2.27,1-3.39,1.57a12.1,12.1,0,0,1-2.86,1.3c-.16,0-.85-.53-.05-1.24A42.19,42.19,0,0,1,29,22.48c1-.6,3.06-1.71,2.43-3,0,0-.51-1.14-2-.4a51.63,51.63,0,0,0-4.67,2.74c-.34.25-2.38,1.67-2.92,2.12-.78.38-1.77.84-2.55,1.2a4.2,4.2,0,0,1-2.86.23c-.78-.25.18-2.45.64-3,1-1.31,2-2.59,1.79-4.45-.24-2.06-1.72-1.82-2.32-.42a15.26,15.26,0,0,1-3.59,5.29c-1.7,1.64-2.12,4.4-3.12,6.52a5.74,5.74,0,0,0,.52,6c.57.73.77,1.77,1.35,2.52,2.24,2.88,6,2.24,9,1.42.79-.21,1.46-.52,2.78-.85.77-.2,6.5-.73,6.51-.73a3.9,3.9,0,0,0,1.56-.38C32,37.08,32.44,36.6,32.38,36.18Z"/></svg><!-- <i class="fas fa-hand-paper"></i> --></button></a><br><span class="font-12 hidden-sm-down">CONTACT CENTER ภาษามือ</span> </div> </div> </div> </div> <div class="vc_empty_space" style="height: 20px" ><span class="vc_empty_space_inner"></span></div> </div></div></div></div> </div></div></div> <div class="section section-page-footer"> <div class="section_wrapper clearfix"> <div class="column one page-pager"> </div> </div> </div> </div> </div> <!-- .four-columns - sidebar --> </div> </div> <!-- mfn_hook_content_after --><!-- mfn_hook_content_after --> <!-- #Footer --> <footer id="Footer" class="clearfix"> <div class="footer_action"> <div class="container"> <div class="column one column_column"> <head> <script src="//assets.adobedtm.com/75133ce79ba1f2c516f7d5f09b683f779a12ac39/satelliteLib-2756bab2480cb6c2674fb064e707912a7e9432b2.js"></script> <script src="https://aiscallcenter.ais.co.th/base_interface_v2/js/jquery-3.2.1.min.js"></script> <script src="https://aiscallcenter.ais.co.th/base_interface_v2/js/jquery.typeahead.min.js"></script> <script src="https://aiscallcenter.ais.co.th/base_interface_v2/js/menutypeahead.js"></script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>AIS CONTACT CENTER | ให้บริการข้อมูลและดูแลช่วยเหลือ</title> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> <meta http-equiv="X-UA-Compatible" content="IE=10,9" /> <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=0" /> <!-- Html Meta --> <meta name="description" content="เอไอเอส ผู้ให้บริการเครือข่ายโทรศัพท์เคลื่อนที่รายเดือนและเติมเงิน รวมทั้งบริการต่างๆเกี่ยวกับอุปกรณ์มือถือ สมาร์ทโฟน iPhone อินเตอร์เน็ต WIFI และ AIS 4G คุณภาพ"> <meta name="keywords" content="ais, เอไอเอส, AIS CONTACT CENTER, มือถือ, เครือข่าย 5g, เครือข่ายอินเตอร์เน็ต, โทรศัพท์เคลื่อนที่, mobile operators thailand, iphone"> <!-- Facebook Propertie --> <meta property="og:title" content="AIS CONTACT CENTER | ให้บริการข้อมูลและดูแลช่วยเหลือ" /> <meta property="og:description" content="เอไอเอส ผู้ให้บริการเครือข่ายโทรศัพท์เคลื่อนที่รายเดือนและเติมเงิน รวมทั้งบริการต่างๆเกี่ยวกับอุปกรณ์มือถือ สมาร์ทโฟน iPhone อินเตอร์เน็ต WIFI และ AIS 4G คุณภาพ" /> <meta property="og:image" content="share.jpg" /> <!-- Google Plus --> <meta itemprop="name" content="AIS CONTACT CENTER | ให้บริการข้อมูลและดูแลช่วยเหลือ"> <meta itemprop="description" content="เอไอเอส ผู้ให้บริการเครือข่ายโทรศัพท์เคลื่อนที่รายเดือนและเติมเงิน รวมทั้งบริการต่างๆเกี่ยวกับอุปกรณ์มือถือ สมาร์ทโฟน iPhone อินเตอร์เน็ต WIFI และ AIS 4G คุณภาพ"> <meta itemprop="image" content="share.jpg"> <!-- apple itunes application --> <!--<meta name ="apple-itunes-app" content="app-id=399758084"/>--> <!-- Start SmartBanner configuration --> <!--<meta name="smartbanner:title" content="my AIS">--> <!--<meta name="smartbanner:author" content="AIS ให้คุณใช้ชีวิตได้มากกว่า">--> <!--<meta name="smartbanner:price" content="FREE">--> <!--<meta name="smartbanner:price-suffix-google" content=" Download Now">--> <!--<meta name="smartbanner:icon-google" content="https://lh3.googleusercontent.com/zpXlAyDbHvn4Q7WijKM_HPMYTXOOAhVTkKqZQS3K-LX6-NX-QH-ghF4R-dQu2T-fcfls=w300-rw">--> <!--<meta name="smartbanner:button" content="VIEW">--> <!--<meta name="smartbanner:button-url-google" content="https://play.google.com/store/apps/details?id=com.ais.mimo.eservice&hl=en">--> <!--<meta name="smartbanner:enabled-platforms" content="android">--> <!--<meta name="smartbanner:disable-positioning" content="true">--> <!--<meta name="smartbanner:hide-ttl" content="10000">--> <!-- ถ้าต้องการแสดง banner andriod ให้คอมเม้นบรรทัดด้านล่าง --> <meta name="smartbanner:enabled-platforms" content="none"> <!-- End SmartBanner configuration --> <!--Include Style Script--> <link rel="shortcut icon" href="https://aiscallcenter.ais.co.th/base_interface_v2/favicon.ico" type="image/x-icon"> <link rel="stylesheet" href="https://aiscallcenter.ais.co.th/base_interface_v2/css/navais_v2.css"> <style> #ais_topbar-sub-wrapper{display: block;} </style> </head> <body> <!--ais_topbar--> <div id="ais_topbar"></div> <!--ais_topbar--> <!--aisfooter--> <div id="aisfooter"></div> <!--aisfooter--> <script src="https://aiscallcenter.ais.co.th/base_interface_v2/js/jquery.nav.control.js"></script> <link rel="stylesheet" href="https://aiscallcenter.ais.co.th/base_interface_v2/fonts/fonts.css" > <!-- Google Tag Manager --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-TRBMW5" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-TRBMW5');</script> <!-- End Google Tag Manager --> <script type="text/javascript">__th_page = "ais";</script> <script type="text/javascript" src="https://lvs.truehits.in.th/datasecure/s0029135.js"></script> <script> $(function() { ais_interface_setup('custom-menu','home','th','','submenu.html'); digitalData = { page:{ pageInfo:{ pageName:"ais:th:home", site: "ais", language: "th" }, category:{ pageType:"home", primaryCategory:"home", } }, }; }); setTimeout(function() {$("#topbar_search").attr("action","https://aiscallcenter.ais.co.th") $("#globalsearch").attr("name","s")}, 1000); </script> <script type="text/javascript">_satellite.pageBottom();</script> <!-- The Modal --> <div id="myModal" class="modal"> <!-- Modal content --> <div class="modal-content"> <!-- <span class="close">×</span> --> <p class="thx-text">ขอบคุณสำหรับความคิดเห็นของท่าน</p> <br> <div class="btn-close"> <button id="btn-close-id" class="close">ตกลง</button> </div> </div> </div> <div id="myModal2" class="modal2"> <!-- Modal content --> <div class="modal-content"> <!-- <span class="close">×</span> --> <p class="notice-text">กรุณาให้คะแนนความพึงพอใจ</p> <br> <div class="btn-close2"> <button id="btn-close-id2" class="close">ตกลง</button> </div> </div> </div> </body> </div> </div> </div> <div class="footer_copy"> <div class="container"> <div class="column one"> <a id="back_to_top" class="button button_js" href=""><i class="icon-up-open-big"></i></a> <!-- Copyrights --> <div class="copyright"> </div> <ul class="social"></ul> </div> </div> </div> </footer> </div><!-- #Wrapper --> <div id="Side_slide" class="right dark"><div class="close-wrapper"><a href="#" class="close"><i class="icon-cancel-fine"></i></a></div><div class="extras"><div class="extras-wrapper"><a class="icon search" href="#"><i class="icon-search-fine"></i></a></div></div><div class="search-wrapper"><form id="side-form" method="get" action="https://aiscallcenter.ais.co.th/"><input type="text" class="field" name="s" id="s" placeholder="Enter your search" /><input type="submit" class="submit" value="" style="display:none;" /><a class="submit" href="#"><i class="icon-search-fine"></i></a></form></div><div class="lang-wrapper"></div><div class="menu_wrapper"></div><ul class="social"></ul></div><div id="body_overlay"></div> <!-- mfn_hook_bottom --><!-- mfn_hook_bottom --> <!-- wp_footer() --> <div id="wpfront-scroll-top-container"> <img src="https://aiscallcenter.ais.co.th/wp-content/uploads/2019/09/ic_GotoTop.png" alt="" /> </div> <script type="text/javascript">function wpfront_scroll_top_init() {if(typeof wpfront_scroll_top == "function" && typeof jQuery !== "undefined") {wpfront_scroll_top({"scroll_offset":100,"button_width":50,"button_height":50,"button_opacity":0.8,"button_fade_duration":200,"scroll_duration":400,"location":1,"marginX":20,"marginY":20,"hide_iframe":false,"auto_hide":false,"auto_hide_after":2,"button_action":"top","button_action_element_selector":"","button_action_container_selector":"html, body","button_action_element_offset":0});} else {setTimeout(wpfront_scroll_top_init, 100);}}wpfront_scroll_top_init();</script><script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/plugins/wpfront-scroll-top/js/wpfront-scroll-top.js?ver=2.0.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/ui/widget.min.js?ver=1.11.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/ui/mouse.min.js?ver=1.11.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/ui/sortable.min.js?ver=1.11.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/ui/tabs.min.js?ver=1.11.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/jquery/ui/accordion.min.js?ver=1.11.4'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/js/plugins.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/js/menu.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/assets/animations/animations.min.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/assets/jplayer/jplayer.min.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/js/parallax/translate3d.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/js/parallax/smoothscroll.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/themes/betheme/js/scripts.js?ver=17.7.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/comment-reply.js?ver=6.2'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/plugins/carousel-slider/assets/lib/owl-carousel/owl.carousel.js?ver=2.2.1'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/plugins/carousel-slider/assets/lib/magnific-popup/jquery.magnific-popup.js?ver=1.1.0'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/plugins/carousel-slider/assets/js/script.js?ver=1.1.0'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-includes/js/wp-embed.js?ver=6.2'></script> <script type='text/javascript' src='https://aiscallcenter.ais.co.th/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=5.5.5'></script> <script type="application/ld+json">{"@context":"http:\/\/schema.org\/","@type":"ImageGallery","associatedMedia":[{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2024\/11\/Banner_Web_ACC_Desktop.jpg","name":"Banner_Web_ACC_Desktop"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2024\/11\/bannerSignlanguage4.png","name":"bannerSignlanguage4"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2024\/06\/Banner_Web_AIS_Fibre3_Desketop_2024.png","name":"Banner_Web_AIS_Fibre3_Desketop_2024"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2021\/11\/MicrosoftTeams-image-11.jpg","name":"MicrosoftTeams-image (11)"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2025\/02\/Banner_ENTERTAINMENT_MAIN_ACCWEBSITE_Desktop_FEB2025.jpg","name":"Banner_ENTERTAINMENT_MAIN_ACCWEBSITE_Desktop_FEB2025"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2024\/11\/Banner_Web_ACC_Mobile.jpg","name":"Banner_Web_ACC_Mobile"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2024\/11\/bannerSignlanguage-mobile6.png","name":"bannerSignlanguage-mobile6"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2024\/06\/Banner_Web_AIS_Fibre3_Mobile_2024.png","name":"Banner_Web_AIS_Fibre3_Mobile_2024"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2021\/11\/MicrosoftTeams-image-10.jpg","name":"MicrosoftTeams-image (10)"},{"@type":"ImageObject","contentUrl":"https:\/\/aiscallcenter.ais.co.th\/wp-content\/uploads\/2025\/02\/Banner_ENTERTAINMENT_MAIN_ACCWEBSITE_Mobile_FEB2025.jpg","name":"Banner_ENTERTAINMENT_MAIN_ACCWEBSITE_Mobile_FEB2025"}]}</script> <!-- script | custom js --> <script id="mfn-dnmc-custom-js"> //<![CDATA[ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> // doing delay setTimeout(function(){ addOverlay(),customSurvey() }, 150); setTimeout(function(){ $(".topbar_menu").click(function() { addMenu(); }); }, 1500); setTimeout(function(){ $(".topbar_menu").click(function() { addMenu(); }); }, 5000); setTimeout(function(){ $(".topbar_menu").click(function() { addMenu(); }); }, 6000); setTimeout(function(){ $(".topbar_menu").click(function() { addMenu(); }); jQuery("#ais_topbar-eservice").attr("href","http://m.ais.co.th/loHp1jOhB"); }, 8000); // add store part at topbar menu var hv=0; var mytimer = setInterval(function(){ if ($(".topbar_menu").length){ jQuery("#ais_topbar-eservice").attr("href","http://m.ais.co.th/loHp1jOhB"); if ($("#ais_topbar-store").length==0) { if (hv===0) { addExtensionTopbarMenu(); hv=1; clearInterval(mytimer); } } } },2000); // doing store menu in the topbar function addExtensionTopbarMenu(){ $("#ais_topbar-right").append( `<a id="ais_topbar-store"> <div class="ais_topbar-store-text">Store</div> <div class="ais_topbar-store-logo"> <div class="store-status">0</div> </div> <div class="ac-gn-bagview-caret pp_onlinestore"></div> </a>` ); jQuery("#ais_topbar-eservice").replaceWith(function() { return `<a id="ais_topbar-eservice" href="http://m.ais.co.th/loHp1jOhB" target="_blank">` + this.innerHTML + "</a>"; }); }; // adding menu when click topbar_menu (hamburger) function addMenu(){ jQuery( ".primary-nav.nav-slidedown > ul.secondary-link-custom" ).html( ` <li class="menu__item"> <h2><a class="menu__link nowhover" href="https://aiscallcenter.ais.co.th/index.php?action=back">หน้าแรก</a></h2> </li> <li class="menu__item"> <h2><a class="menu__link" href="https://aiscallcenter.ais.co.th/knowledge-center/">Knowledge Center</a></h2> <ul class="menu__sub-menu"> <li class="menu__sub-menu--item"><a class="menu__link" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab1"><span>ลูกค้าไฟเบอร์</span></a></li> <li class="menu__sub-menu--item"><a class="menu__link" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab2"><span>ลูกค้ารายเดือน</span></a></li> <li class="menu__sub-menu--item"><a class="menu__link" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab3"><span>ลูกค้าเติมเงิน</span></a></li> <li class="menu__sub-menu--item"><a class="menu__link" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab4"><span>ลูกค้าองค์กร</span></a></li> <li class="menu__sub-menu--item"><a class="menu__link" href="https://aiscallcenter.ais.co.th/knowledge-center/#tab5"><span>แพ็กเกจแนะนำ</span></a></li> </ul> </li> <li class="menu__item"> <h2><a class="menu__link" href="http://m.ais.co.th/loHp1jOhB">myAIS</a></h2> </li> <li class="menu__item"> <h2><a class="menu__link" href="meet-us/">ร่วมงานกับเรา</a></h2> </li> <li class="menu__item"> <h2><a class="menu__link" href="csr/">CSR</a></h2> </li> ` ) }; // adding overlay hover carousel slider function addOverlay(){ jQuery( ".vc_wp_text.wpb_content_element.carousel-img > .widget.widget_text > .textwidget > .carousel-slider-outer.carousel-slider-outer-images > .owl-carousel.carousel-slider > .owl-stage-outer > .owl-stage > div:nth-child(1)" ).append( ` <div class="overlay-carousel" id="overlay" onclick="off()"> <img class="img-custom-web" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/tap-icon-web.png"> <img class="img-custom-mobile" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/tap-icon-mobile.png"> </div> `) jQuery( ".n2-ss-slider-3.n2-ow > div[data-first=1], .n2-ss-slider-3.n2-ow > div[data-first=1] > .n2-ss-layers-container.n2-ow > .n2-ss-layer.n2-ow.n2-ss-layer-needsize > .n2-ss-layer-player.n2-ow-all > .n2-ss-layer-player.n2-ss-layer-player-cover" ).append( ` <div class="overlay-carousel" id="overlay" onclick="off()" style="height: 100%!important"> <img class="img-custom-web" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/tap-icon-web.png"> <img class="img-custom-mobile" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/tap-icon-mobile.png"> </div> `) }; function off() { document.getElementById("overlay").style.display = "none"; } // custom text in quizzes and surveys function customSurvey(){ $(document).ready(function(){ $('.qsm-comments-label.mlw_qmn_comment_section_text > p').text('ความคิดเห็นเพิ่มเติม'); $('.mlw_qmn_question > p.p2').text('หากข้อมูลนี้มีประโยชน์สำหรับท่าน กรุณาให้คะแนนความพึงพอใจ'); $('label.qsm-comments-label.mlw_qmn_comment_section_text').append(`<div id="btn-toggle"><img class="btn-arrows" src="https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/angle-arrow-down-real.png"></div>`); $( "label.qsm-comments-label.mlw_qmn_comment_section_text" ).click(function() { $( "#mlwQuizComments" ).toggle("slow"); if($(".btn-arrows").hasClass("clicked")){ $(".btn-arrows").removeClass("clicked"); $(".btn-arrows").attr("src","https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/angle-arrow-down-real.png"); } else { $(".btn-arrows").addClass("clicked"); $(".btn-arrows").attr("src","https://aiscallcenter.ais.co.th/wp-content/uploads/2018/10/up-arrow-real.png"); } }); }); } $(".qsm-spinner-loader").append("<p>ขอบคุณสำหรับความคิดเห็นของท่าน</p>"); $(document).ready(function(){ $("#menu-item-312:first-child a:first-child").prop("href", "../?action=back"); <!-- if (window.location.pathname.includes("career") || window.location.pathname.includes("csr")||window.location.pathname.includes("knowledge")) { fnccheckloop2(); } --> $("#ais_topbar").css("z-index",10000); var modal = document.getElementById('myModal'); var modal2 = document.getElementById('myModal2'); $( '.qmn_quiz_form, .qmn_quiz_radio').on( "submit", function() { if ($('input[name=question1]:checked').val()=="No Answer Provided") modal2.style.display = "flex"; else modal.style.display = "flex"; }); $('#btn-close-id').click(function() { $('#myModal').hide(); }); $('#btn-close-id2').click(function() { $('#myModal2').hide(); }); window.onclick = function(event) { if (event.target == modal) { modal.style.display = "none"; } if (event.target == modal2) { modal2.style.display = "none"; } } }); $('#Wrapper').css('position','absolute'); $('#Wrapper').css('top','0px'); </script> <script type="text/javascript"> var WidgetConfig = { debug : true, isMyAIS : false, language: 'th', fontHeaderSize: '19px', fontSize: '16px', mainUrl : "https://chatbot.cloud.ais.th" }; </script> <!-- <script type="text/javascript" async src="https://chatbot.cloud.ais.th/chatbot-files/js/workDee/workDee.js"></script> --> <script> var requestURL = 'https://chatbot.cloud.ais.th/recruitment'; var _gaq = []; </script> <script> $("body").append('<a href="https://askaunjai.cloud.ais.th/?/channel=WebCC" target="_blank"><div id="askaunjai" style="background:none;position:fixed;bottom:20px;right:280px;border:none;z-index:1" style="width:100%;height:100%"></div></a>'); $("#askaunjai").append('<img id="aunjai_bubble" style="width:112px;height:112px;margin-bottom:-35px;animation-name: example2; animation-duration: 1.8s; animation-iteration-count: infinite;" src="https://askaunjai.cloud.ais.th/aunjai-get-files/images/aunjai_msgbubble.png"><style>@keyframes example2{0%{margin-top: -39px;}50%{margin-bottom: -25px;}100%{margin-top: -39px;}}</style><br>'); $("#askaunjai").append('<img id="aunjai_img" style="width:96px;height:96px;margin-left:10px;" src="https://askaunjai.cloud.ais.th/aunjai-get-files/images/AJ_Ask_boy_Ask.png">'); checkloop=0; checkloop2=0; function fnccheckloop2(){ if (checkloop2<100){ if ($("#helpdesk").length){ $("#helpdesk").hide(); // checkloop2=100000; console.log('dochkhide'); setTimeout(function(){fnccheckloop2();},100); } else { setTimeout(function(){fnccheckloop2();},100); } checkloop2++; } } function getUrlVars() { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { vars[key] = value; }); return vars; } var urlparam=getUrlVars() ; //if( $('body.home').length && $(window).width() > 500 && urlparam.action!="back"){ // fnccheckloop() //} if (window.location.pathname==='/' || window.location.pathname.includes("career") || window.location.pathname.includes("meet-us")) { var js = document.createElement("script"); js.type = "text/javascript"; js.src = 'https://chatbot.cloud.ais.th/chatbot-files/js/workDee/workDee.js'; document.body.appendChild(js); console.log("run workdee"); } </script> <script> if ( localStorage.getItem('consent')!=="1"){ $("#consent").remove(); $("body").append('<div id="consent" style="background:#c5d445;color:#333000;position:fixed;right:0;left:0;bottom:0;padding:20px;z-index:2000000;display:inline-flex"><div id="onetrust-policy-text" style="padding:20px" >เราใช้คุกกี้ (cookie) เพื่อเพิ่มประสบการณ์และความพึงพอใจของท่านในการได้รับการเสนอข้อมูลและเนื้อหาต่างๆ โดยจะทำให้เราเข้าใจลักษณะการใช้งานเว็บไซต์ของท่านได้เร็ว และทำให้เว็บไซต์ของเราเข้าถึงได้ง่าย สะดวกยิ่งขึ้นโดยการเข้าใช้งานเว็บไซต์นี้ถือว่าท่านได้อนุญาตให้เราใช้คุกกี้ตาม<a style="color:#1276CE" href="http://www.ais.co.th/cookiesPolicy/th/" tabindex="0">นโยบายคุกกี้ของเรา</a></div><div id="conaccept" style="padding:20px;text-align:left;width:200px;"><button id="accbutt" style="background:#333000;color:#fefefe;height:40px;width:100px;margin-top:15px;" onclick="$(\'#consent\').remove();localStorage.setItem(\'consent\',\'1\');">ยอมรับ</button></div><div id="closebutt" style="background:none;color:#333000;border:none;width:100px;height:40px;position:absolute;top:-2px;right:-30px" onclick="$(\'#consent\').remove();">x</div></div>'); } </script> //]]> </script> </body> </html>